@charset "utf-8";

/*　pc(tablet)・sp　switching  
-------------------------------*/
/* sp */
@media screen and (max-width: 767px) {
  .pc-on {
    display: none;
  }
  .tab-on {
    display: none;
  }
  .sp-on {
    display: block;
  }
}

/*pc・tablet*/ 
@media screen and (min-width: 768px) {
  .pc-on {
    display: block;
  }
  .tab-on {
    display: none;
  }
  .sp-on {
    display: none;
  }
}

/* tablet only */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .tab-on {
    display: block;
  }
}


/*-------------------------------
	Common  (mobile first)
-------------------------------*/
article {
  font-family: "Yu Gothic", "Yu Gothic medium", "Arial", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/*　テキスト
-------------------------------*/
article p{
	font-size: 14px;
}

@media screen and (min-width: 768px) {
	article p{
		font-size: 16px;
	}
}

/*　h2 
-------------------------------*/
.heading-h2 {
    position: relative;
	text-align: center;
	margin: 0 auto 15px;
}

.heading-h2 span {
	display: block; /*縦並び*/
}

.heading-h2-img {
    scale: 0.55;
}

.heading-h2-text {
	font-weight: bold;
	font-size: 18px;
	color: #232323;
}


@media (min-width: 768px) {
	.heading-h2 {
		margin: 0 auto 50px;
	}
	.heading-h2-img {
		scale: 1;
		margin-bottom: 20px;
	}
	.heading-h2-text {
		font-size: 24px;
	}
}

/*　h3
-------------------------------*/
.heading-h3 {
    position: relative;
	text-align: center;
	margin: 0 auto 15px;
}

.heading-h3 span {
	display: block; /*縦並び*/
}

.heading-h3-text {
	font-weight: bold;
	font-size: 16px;
	color: #232323;
}

@media (min-width: 768px) {
	.heading-h3 {
		margin: 0 auto 20px;
	}

	.heading-h3-text {
		font-size: 20px;
	}
}

/*　h4
-------------------------------*/
.heading-h4 {
    position: relative;
	text-align: center;
	margin: 0 auto 15px;
}

.heading-h4 span {
	display: block; /*縦並び*/
	border-bottom: solid 1px #707070;
    text-align: center;
}

.heading-h4-text {
	font-weight: bold;
	font-size: 16px;
	color: #232323;
	padding-bottom: 10px;
}

@media (min-width: 768px) {
	.heading-h4 {
		margin: 0 auto 20px;
	}
	.heading-h4-text {
		font-size: 18px;
	}
}

/*　リストの「・」
-------------------------------*/
.list-dot {
	position: relative;
	padding-left: 15px;
}
.list-dot:before{
	content: "・";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
}

/*　リード文
-------------------------------*/
.text-lead{
	font-weight: bold;
	font-size: 14px;
}

.text-lead-normalweight{
	text-align: left;
}

@media(min-width:768px) {
	.text-lead{
		font-size: 16px;
	}
	.text-lead-normalweight{
		text-align: center;
	}
}

/*　リンクテキスト
-------------------------------*/
.link-text{
    text-align: right;
    text-decoration: underline;
    display: block;
    width: fit-content;
    margin: 0 0 0 auto;
	font-size: 14px;
}
.link-text i{
    padding-left: 8px;
}


/*  ボタン
-------------------------------*/
.link-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    background: #232323;
    border-radius: 60px;
    width: 100%;
	max-width: 278px;
    padding: 15px 50px 15px 30px;
    margin: 20px auto;
	transition: 0.2s;
}
.link-btn:hover {
    color: #fff;
	opacity: 0.8;
	text-decoration: none;
}

/*矢印アイコン*/
.link-btn:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    position: absolute;
	top: calc(50% - 10px);
    right: 1em;
    font-weight: bold;
    z-index: 2;
    color: #fff;
    width: 20px;
	font-size: 15px;
    transform: scale(1);
}

/*各ボタン*/
.link-btn.bg-white {
    background: #fff;
	color: #232323;
	border: solid 2px #232323;
	max-width: 313px;
	min-height: 60px;
	font-size: 14px;
	padding: 0 50px 0 30px;
	text-align: left;
}
.link-btn.bg-white:before {
	color: #232323;
}

/*赤ボタン*/
.link-btn.bg-red{
	background: #F04848;
	max-width: 370px;
}
/*黄色ボタン*/
.link-btn.bg-yellow{
	background: #F3964F;
	max-width: 370px;
}

/*幅広ボタン*/
.link-btn.wide-btn{
	max-width: 400px;
}
.link-btn.wide-btn:before{
	color: #232323;
}

/*時刻表ボタン*/
.link-btn.timetable-btn:before {
    content: "\f24d";
}

/*アコーディオンボタン「+」*/
.link-btn.accbtn:before {
	content: "\f067";
}

/*その他のエリアはこちらボタン*/
.link-btn.other-tab:before {
    content: "\f24d";
}

@media (min-width: 768px) {
	.link-btn {
		max-width: 340px;
		font-size: 18px;
	}
	.link-btn.bg-white {
		max-width: 340px;
	}
}

/*-------------------------------
	Hero
-------------------------------*/
/* MV
-----------------------------*/
#Hero h1{
	padding: 0;
	margin: 0 auto;
}

/* slider
-----------------------------*/
#Hero .wrap-slider{
	padding: 20px 0;
    background: url(/static/img/maas/autonomousdriving-miyazu/bg-repeat.png) top left;
}

.slider-item-top{
/*	max-width: 300px;*/
	margin: 0 7px;
	border-radius: 10px;
}
.slick-slider{
	margin-bottom: 0;
}
.slick-slide img{
	width: 100%;
	max-width: 300px;
	border-radius: 10px;
}

@media(min-width:768px) {
	#Hero .wrap-slider{
		padding: 37px 0;
	}
	.slider-item-top{
		max-width: 755px;
	}
	.slick-slide img{
		max-width: 755px;
	}
}

@media(min-width:768px) and (max-width:1200px){
	.slick-slide img{
		max-width: 450px;
	}
}

/*-------------------------------
	Lead
-------------------------------*/
#Lead{
	padding: 30px 0 80px;
}

#Lead .text-lead{
	font-size: 16px;
}
#Lead .text-lead-normalweight{
	font-size: 14px;
}

@media(min-width:768px) {
	#Lead{
		padding: 45px 0 110px;
	}
	#Lead .text-lead{
		font-size: 20px;
	}
	#Lead .text-lead{
		font-size: 20px;
	}
	#Lead .text-lead-normalweight{
		font-size: 18px;
	}
}

/*-------------------------------
	Schedule
-------------------------------*/
#Schedule{
	padding: 0 0 15px;
    background: url(/static/img/maas/autonomousdriving-miyazu/bg-repeat.png) top left;
/*    background-size: 8px 8px;*/
}

#Schedule .heading-h2{
	top: -41px;
	margin: 0 auto -25px;
}

/*　page-nav
-------------------------------*/
.page-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 10px auto 35px;
}

/*ナビ幅　余白*/
.page-nav > li{
	width: 49%;
	margin-right: 2%;
}
.page-nav > li:nth-of-type(even){
	margin-right: 0;
}

/*ボタン*/
.page-nav > li a {
	display: block;
	position: relative;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	color: #232323;
	background: #fff;
	border-radius: 40px;
	border: solid 1px #232323;
	padding: 7px 30px 7px 20px;
	margin: 10px 0 0 0;
}
/*テキスト*/
.page-nav > li a span{
	display: block;
}
.page-nav > li a .en-text{
	font-size: 12px;
}

/*矢印*/
.page-nav > li a::before {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	position: absolute;
	font-weight: 900;
	color: #242424;
	font-size: 10px;
	width: 10px;
	height: 10px;
	right: 9%;
	top: 50%;
	transform: translate(0, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
}
/* hover */
.page-nav > li a:hover {
	opacity: 0.8;
	text-decoration: none;
}

@media (min-width: 768px) {
	#Schedule{
		padding: 0 0 45px;
	}
	#Schedule .heading-h2{
		top: -46px;
	}
	#Schedule .text-lead{
		font-size: 18px;
	}
	.page-nav {
		max-width: 785px;
		margin: 20px auto 20px;
		flex-wrap: nowrap; /*折り返さない*/
	}
	.page-nav > li:nth-of-type(2){
		margin-right: 2%;
	}
	.page-nav > li:last-of-type{
		margin-right: 0;
	}
	.page-nav > li a {
		padding: 10px 30px 10px 20px;
		font-size: 20px;
	}
	.page-nav > li a:before {
		font-size: 12px;
		width: 12px;
		height: 12px;
	}
	.page-nav > li a .en-text{
		font-size: 15px;
	}
}

/*-------------------------------
	Route
-------------------------------*/
#Route{
	padding: 0;
    background: url(/static/img/maas/autonomousdriving-miyazu/bg-repeat.png) top left;
}
#Route .heading-h2{
	background: #fff;
	padding: 15px 0 25px;
}

/*地図*/
#Route .map-wrap {
	margin: 0 0 30px;
}
#Route .map-wrap iframe{
	width: 100%;
	max-width: 1140px;
	max-height: 300px;
	position: relative;
	margin-bottom: 25px;
}

/*タブ全体*/
#TabWrap{
	position: relative; 
	margin: 40px 0 0;
}

/*地図*/
#TabContentsWrap .map-wrap{
    margin: auto;
}

/*白背景　一乗車あたりの料金～以下*/
#Route .area-info-wrap{
	background: #fff;
	border-radius: 20px;
	text-align: center;
	max-width: 947px;
	margin: 30px 20px 50px;
	padding: 50px 20px;
}

/*一乗車あたりの料金*/
#Route .about-price{
	margin-top: 0;
}

/*乗り場*/
#Route .about-boarding{
	margin: 50px auto 0;
	max-width: 730px;
}
#Route .about-boarding ul{
	text-align: left;
	font-size: 14px;
}

/*運行スケジュール*/
#Route .about-schedule{
	margin: 60px auto 70px;
}
#Route .about-schedule .period{
	font-size: 14px;
	margin-bottom: 10px;
}
#Route .about-schedule .small-text{
	font-size: 12px;
}

/*車両について*/
#Route .about-bus{
	margin: 60px auto 0;
}
#Route .about-bus .left{
	margin: 0 0 20px;
}
#Route .about-bus .left img{
	border-radius: 10px;
}
#Route .about-bus .right p{
	text-align: left;
}


@media (min-width: 768px) {
	#Route .heading-h2{
		padding: 35px 0;
	}
	
	/*タブ全体*/
	#TabWrap{
		margin:60px 0 0;
	}
	
	/*地図*/
	#Route .map-wrap iframe{
		max-height: 500px;
		margin-bottom: 40px;
	}
	
	/*白背景　一乗車あたりの料金～以下*/
	#Route .area-info-wrap{
		padding: 70px 30px 60px;
		margin: 30px auto 80px;
	}
	
	/*乗り場*/
	#Route .about-boarding{
		margin: 70px auto 0;
	}
	#Route .about-boarding ul{
		font-size: 16px;
	}
	
	/*運行スケジュール*/
	#Route .about-schedule{
		margin: 60px auto 80px;
	}
	#Route .about-schedule .small-text{
		font-size: 16px;
	}
	#Route .about-schedule .period{
		font-size: 18px;
	}
	
	/*車両について*/
	#Route .about-bus{
		margin: 60px auto 0;
	}
	#Route .about-bus .inner-wrap{
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 700px;
		margin: auto;
	}
	#Route .about-bus .inner-wrap > div{
		width: 44%;
	}
	#Route .about-bus .left{
		margin: 0 50px 0 0;
	}
}


/*-------------------------------
	Routeの中のBooking
-------------------------------*/
#Route .Booking-wrap{
	padding: 0;
}
#Route .Booking-wrap .heading-h2{
	background: #fff;
	padding: 15px 0 25px;
	margin: 0 auto 30px;
}
#Route .Booking-wrap .heading-h2-text{
	margin-top: -6px;
}


/* 注意事項
-------------------------------*/
#Route .wrap-attention{
	border: solid 1px #B43131;
	background: #fff;
	border-radius: 20px;
	text-align: center;
	max-width: 947px;
	margin: 30px auto 20px;
	padding: 20px 15px 10px;
}

/*見出し*/
#Route .wrap-attention .heading-h3{
		margin: 0 auto 11px;
}
#Route .wrap-attention .heading-h3 span{
	display: inline;
	color: #B43131;
	font-size: 16px;
}
#Route .Booking-wrap p.attention-text{
    font-size: 14px;
	margin-bottom: 20px;
}
#Route .Booking-wrap .red{
    font-weight: bold;
	color: #B43131;
}

/*リスト*/
#Route .Booking-wrap .attention-list {
    max-width: 692px;
    text-align: left;
    margin: auto;
	font-size: 14px;
}
#Route .Booking-wrap .attention-list li{
	margin-bottom: 5px;
}

@media (min-width: 768px) {
	#Route .Booking-wrap .heading-h2{
		margin: 0 auto 55px;
		padding: 35px 0;
	}
	#Route .wrap-attention .heading-h3 span{
		font-size: 18px;
	}
	
	#Route .Booking-wrap .wrap-attention{
		padding: 30px 30px 10px;
		margin: 50px auto 30px;
	}
	#Route .Booking-wrap p.attention-text{
		font-size: 16px;
	}
}


/*　オンライン予約
-------------------------------*/
.online-reservation{
	margin-top: 60px;
}

.online-reservation > p{
	margin: 10px auto 10px;
}

@media (min-width: 768px) {
	.online-reservation{
		margin-top: 80px;
	}
	.online-reservation > p{
		margin: 30px auto 10px;
	}
	/*ボタン　横並び*/
	#Route .online-reservation .wrap-btn{
		display: flex;
		justify-content: center;
		margin: auto;
		max-width: 770px;
	}
	#Route .online-reservation .wrap-btn .link-btn{
		margin-right: 15px;
	}
}

/*　ボタン  アコーディオン「小さなお子様～」　
--------------------------------------*/
.link-btn.accbtn{
	padding: 8px 35px 8px 19px;
}
.link-btn.accbtn:before{
	right: 0.5em;
}
/*開いてるとき*/
.link-btn.accbtn:before{
	content: "\f068";
}
/*閉じてるとき*/
.link-btn.accbtn.collapsed:before{
	content: "\f067";
}

/*アコーディオン中身*/
#Route .Booking-wrap .acc-card{
	background: #fff;
	padding: 20px;
	border: solid 2px #232323;
	border-radius: 10px;
	z-index: 5;
	max-width: 680px;
	text-align: left;
	font-size: 14px;
}
#Route .Booking-wrap .acc-card p{
	font-size: 14px;
}

@media (min-width: 768px) {
	/*アコーディオン　ボタン*/
	#Route .Booking-wrap .wrap-accordion{
		display: flex;
		justify-content: center;
		margin: auto;
		max-width: 692px;
	}
	#Route .Booking-wrap .accordion-item{
		width: calc(50% - 10px);
	}
	
	.link-btn.accbtn{
		min-width: 315px;
		padding: 0 35px 0 15px;
	}
	.link-btn.accbtn:before{
		right: 1em;
	}
	
	/*アコーディオン中身*/
	#Route .Booking-wrap .acc-card{
		position: absolute;
	}
}

	
/*　お問い合わせ
-------------------------------*/
#Route .wrap-contact{
    background: url(/static/img/maas/autonomousdriving-miyazu/img-bg-contact-sp.jpg) no-repeat top center / cover;
	padding: 40px 0;
	font-weight: bold;
	color: #fff;
	text-align: center;
}
/*見出し*/
#Route .wrap-contact .heading-h3-text{
    font-size: 18px;
	color: #fff;
}

/*各お問い合わせ先*/
#Route .wrap-contact .inner-wrap{
    max-width: 413px;
	text-align: center;
	margin: auto;
	border-bottom: solid 1px #fff;
    padding-bottom: 15px;
}
#Route .wrap-contact .inner-wrap:last-of-type{
    border-bottom: none;
    padding-bottom: 0;
}

/*電話番号*/
#Route .wrap-contact .inner-wrap .tel{
	position: relative;
    font-size: 32px;
	width: 100%;
	max-width: 310px;
	margin: 20px auto;
	padding: 5px 20px 5px 50px;
	border: solid 2px #fff;
    border-radius: 60px;
}

/*電話番号リンク*/
#Route .wrap-contact .inner-wrap .tel a{
	color: #fff;
	text-decoration: none;
	position: relative;
}
/*電話アイコン*/
#Route .wrap-contact .inner-wrap .tel a:before{
	content: "";
	position: absolute;
	background: url(/static/img/maas/autonomousdriving-miyazu/icon-tel.png) no-repeat top center / 100%;
	top: 50%;
	transform: translate(0, -50%);
	left: -1em;
	display: block;
    width: 20px;
    height: 28px;
}

/*連絡先施設*/
#Route .wrap-contact .inner-wrap .about-customer{
    font-size: 18px;
}
#Route .wrap-contact .inner-wrap .about-customer .small-text{
	font-size: 16px;
}

/*方法詳細*/
#Route .wrap-contact .about-step{
	margin-top: 30px;
	font-weight: bold;
	color: #fff;
	font-size: 14px;
}


@media (min-width: 768px) {
	/*お問い合わせ*/
	#Route .wrap-contact{
		background: url(/static/img/maas/autonomousdriving-miyazu/img-bg-contact.jpg) no-repeat top center / cover;
		margin-top: 50px;
		padding: 50px 0;
	}
	/*見出し*/
	#Route .wrap-contact .heading-h3-text{
		font-size: 26px;
	}
	
	#Route .wrap-contact .outer-wrap{
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 910px;
		padding: 0 10px;
	}
	
	/*各お問い合わせ先*/
	#Route .wrap-contact .inner-wrap{
		width: 50%;
		border-bottom: none;
   		padding-bottom: 0;
	}	
	
	#Route .wrap-contact .inner-wrap .tel{
		font-size: 42px;
		padding: 5px 10px 5px 40px;
		max-width: 370px;
	}
	#Route .wrap-contact .inner-wrap .tel a:before{
		left: -0.7em;
	}
	
	#Route .wrap-contact .inner-wrap .about-customer{
		font-size: 20px;
	}
	#Route .wrap-contact .inner-wrap .about-customer .small-text{
		font-size: 20px;
	}
	/*方法詳細*/
	#Route .wrap-contact .about-step{
		font-size: 18px;
		font-weight: normal;
	}
}

@media (min-width: 992px) {
	#Route .wrap-contact .inner-wrap .tel{
		font-size: 42px;
		padding: 5px 30px 5px 70px;
		max-width: 410px;
	}
	#Route .wrap-contact .inner-wrap .tel a:before{
		left: -1em;
	}
}

/*-------------------------------
	Area
-------------------------------*/
#Area{
	padding: 40px 0 80px;
	text-align: center;
}

#Area .heading-h2-img {
	margin-bottom: 10px;
}
#Area .heading-h2 + .text-lead{
	margin: 40px auto 25px;
}

/*バナー*/
#Area .bnr-btn{
	display: block;
    width: fit-content;
	margin: 0 auto 15px;
	transition: 0.3s;
}
#Area .bnr-btn:hover{
	opacity: 0.8;
}

/*その他の公共ライドシェアエリア*/
#Area .drive-area{
	margin: 50px 0 0;
}

#Area .area-table {
    max-width: 940px;
    width: 100%;
    margin: 20px auto 0;
	border-collapse: separate;
	border-spacing: 0 10px;/*左右　上下*/
}

#Area .area-table tr{
	background: #F8F8F8;
	margin-bottom: 20px;
	vertical-align: baseline;
}

#Area .area-table td{
/*
    width: 50%;
	text-align: left;
*/
    width: 100%;
	text-align: center;
	padding: 15px 10px;
	font-size: 14px;
}
#Area .area-table td a {
    color: #232323;
	font-weight: bold;
	font-size: 14px;
}

/*タグ　実施中・終了*/
#Area .inner-wrap span{
    border: solid 1px #B43131;
    color: #B43131;
    font-weight: bold;
    border-radius: 5px;
	padding: 3px 3px;
    margin-right: 10px;
	display: inline-block;
    width: 4em;
	text-align: center;
	font-size: 12px;
}

/*終了*/
#Area .inner-wrap span.end{
	border: solid 1px #232323;
    color: #232323;
}


/*sp時調整*/
@media (max-width: 991px) {
	/*動画*/
	.wrap-video{
		overflow: hidden;
		padding-bottom: 56.25%;
		position: relative;
		margin: 35px auto 15px;
	}
	.wrap-video iframe{
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
	}
}

@media (min-width: 768px) {
	#Area{
		padding: 80px 0 130px;
	}
	#Area .heading-h2{
		margin: 0 auto 40px;
	}
    #Area .heading-h2-img {
        margin-bottom: 30px;
    }
	#Area .heading-h2 + .text-lead{
		margin: 0 auto 47px;
	}
	/*バナー*/
	#Area .bnr-btn{
		margin: 0 auto 20px;
	}
	
	/*動画*/
	#Area .wrap-video{
		margin: 50px auto 30px;
	}
	
	/*その他の公共ライドシェアエリア*/
	#Area .drive-area{
		margin: 80px 0 0;
	}
	#Area .area-table{
		margin: 40px auto 0;
	}
	#Area .area-table td a {
		font-size: 18px;
	}
	/*タグ　実施中・終了*/
	#Area .inner-wrap span{
		width: 6em;
		font-size: 18px;
		margin-right: 15px;
	}
}

/*-------------------------------
	fixed btn
-------------------------------*/
.fixedBtn {
	opacity: 0;
	position: fixed;
	bottom: 0;
	z-index: 5;
	pointer-events: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin: 0 auto;
	background: rgba(255,255,255,0.6);
	border-top: solid 1px #232323;
	width: 100%;
}

.fixedBtn.is_visible{
  opacity: 1;
  pointer-events: all;
}

.fixedBtn .fixedBtn-inner{
	display: flex;
	justify-content: center;
	margin: auto;
	padding: 0 10px;
}

.fixedBtn .link-btn{
	margin: 15px auto;
	font-size: 14px;
	max-width: 440px;
	min-width: 164px;
	width: 50%;
}
.fixedBtn .link-btn.reservation-btn{
	background: #F04848;
}
.fixedBtn .link-btn:before{
	font-size: 12px;
	content: "\f078";
}

@media (min-width: 768px){
	.fixedBtn{
		padding: 10px 0;
	}
	.fixedBtn .fixedBtn-inner{
		max-width: 910px;
	}
	.fixedBtn .link-btn{
		padding: 15px 50px 15px 30px;
		font-size: 18px;
	}
	.fixedBtn .link-btn:before{
		right: 1rem;
	}
}

/*上に戻るボタン*/
@media (max-width: 991px) {
    #pageup a {
        width: 30px;
        height: 30px;
    }
}









