@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;
  }
  
  .t-left-sp {
    text-align: left!important;
  }
}

/*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-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-kyotango/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: 20px;
	font-weight: bold;
}
#Lead .text-lead-normalweight{
	font-size: 15px;
}

@media(min-width:768px) {
	#Lead{
		padding: 45px 0 110px;
	}
	#Lead .text-lead{
		font-size: 26px;
	}
	#Lead .text-lead-normalweight{
		font-size: 18px;
	}
}

/*-------------------------------
	Schedule
-------------------------------*/
#Schedule{
	padding: 0 0 15px;
    background: url(/static/img/maas/autonomousdriving-kyotango/bg-repeat.png) top left;
/*    background-size: 8px 8px;*/
}

#Schedule .heading-h2{
	top: -40px;
	margin: 0 auto -25px;
}

/*　page-nav
-------------------------------*/
.page-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	margin: 0px 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;
	}
	.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;
	}
}

/*-------------------------------
	Route
-------------------------------*/
#Route{
	padding: 0 0 10px;
    background: url(/static/img/maas/autonomousdriving-kyotango/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;
}

#Route .wrap-attention > p{
	margin: 30px 0;
	font-weight: bold;
}

#Route .area-info-wrap{
	background: #fff;
	border-radius: 20px;
	text-align: center;
	max-width: 947px;
	margin: 50px 20px 50px;
	padding: 50px 20px;
}

/*一乗車あたりの料金*/
.about-price{
	margin-top: 0;
}

/*乗り場*/
.about-boarding{
	margin: 50px auto 0;
	max-width: 730px;
}
.about-boarding ul{
	text-align: left;
}

/*運行スケジュール*/
.about-schedule{
	margin-top: 50px;
}
.text-red{
	color: #B43131;
	font-weight: bold;
}


/*車両について*/
.about-bus{
	margin: 60px auto 0;
	max-width: 371px;
}
.about-bus p{
	text-align: left;
}

/*	オンライン予約*/
.online-reservation{
	margin-top: 60px;
}
/*ボタン*/
.online-reservation .wrap-btn .link-btn{
	padding: 7px 40px 7px 20px;
}

/*その他のエリアはこちらボタン*/
.other-area-btn{
	margin: 0 15px;
}
.other-area-btn .link-btn{
	padding: 15px 25px 15px 15px;
	margin-top: 30px;
}
.other-area-btn .link-btn:hover{
	background: #F3C74F;
	opacity: 1;
}
.other-area-btn .link-btn:before{
	color: #fff;
	right: 0.5em;
}

@media (min-width: 768px) {
	#Route{
		padding: 0 0 20px;
	}
	#Route .heading-h2{
		padding: 35px 0;
	}
	
	#Route .about-bus{
		margin: 60px auto 0;
	}
	
	#Route .about-bus p{
		text-align: center;
	}
	
	/*地図*/
	#Route .map-wrap iframe{
		max-height: 500px;
	}
	
	#Route .area-info-wrap{
		padding: 50px 30px 60px;
		margin: 50px auto 80px;
	}

	/*	オンライン予約ボタン*/
	#Route .online-reservation .wrap-btn .link-btn{
		margin-right: 15px;
		padding: 7px 50px 7px 30px;
	}
	
	/*	他のエリアはこちらボタン*/
	.other-area-btn .link-btn{
		padding: 15px 50px 15px 30px;
		margin-top: 40px;
	}
	.other-area-btn .link-btn:before{
		right: 1em;
	}
}


/* Booking
-------------------------------*/
#Route .Booking-wrap{
	padding: 0;
}
#Route .Booking-wrap .heading-h2{
	background: #fff;
	padding: 15px 0 25px;
	margin: 0 auto 30px;
}

#Route .Booking-wrap .wrap-attention{
	border: solid 1px #B43131;
	background: #fff;
	border-radius: 20px;
	text-align: center;
	max-width: 947px;
	margin: 30px auto 20px;
	padding: 30px 15px;
}

#Route .Booking-wrap .inner-wrap{
	max-width: 700px;
	margin: auto;
}

#Route .Booking-wrap .wrap-attention .heading-h3 span{
	display: inline;
	color: #B43131;
}


#Route .Booking-wrap .red{
    font-weight: bold;
	color: #B43131;
}

#Route .Booking-wrap p.attention-text{
    font-size: 16px;
	margin-bottom: 20px;
}

.attention-list {
    max-width: 692px;
    text-align: left;
    margin: auto;
	font-size: 14px;
}
.attention-list li{
	margin-bottom: 5px;
}

@media (min-width: 768px) {
	#Route .Booking-wrap .heading-h2{
		margin: 0 auto 45px;
		padding: 35px 0;
	}
	#Route .Booking-wrap .wrap-attention{
		padding: 30px ;
		margin: 50px auto 30px;
	}
}
	

/*　ボタン  アコーディオン　
-------------------------------*/
.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);
	}
	#Route .Booking-wrap .accordion-item:nth-of-type(1){
		margin-right: 20px;
	}
	
	.link-btn.accbtn{
		min-width: 315px;
		padding: 0 35px 0 15px;
	}
	.link-btn.accbtn:before{
		right: 1em;
	}
	
	/*アコーディオン中身*/
	#Route .Booking-wrap .acc-card{
		position: absolute;
	}
}

@media (min-width: 768px) {
	/*　ボタン  同意書・試乗予約*/
	#Route .Booking-wrap .wrap-btn{
		display: flex;
		justify-content: center;
		margin: auto;
		max-width: 770px;
	}
}
	
/*　お問い合わせ
-------------------------------*/
#Route .wrap-contact{
    background: url(/static/img/maas/autonomousdriving-kyotango/img-bg-contact-sp.jpg) no-repeat top center / cover;
	padding: 40px 0;
}
#Route .wrap-contact .inner-wrap{
    max-width: 692px;
	text-align: center;
	margin: auto;
}
#Route .wrap-contact .inner-wrap p{
    font-weight: bold;
	color: #fff;
}
#Route .wrap-contact .inner-wrap p.about-tel{
    font-size: 18px;
}
#Route .wrap-contact .inner-wrap p.tel{
	position: relative;
    font-size: 36px;
	width: fit-content;
	margin: 20px auto;
	padding: 5px 20px 5px 50px;
	border: solid 2px #fff;
    border-radius: 60px;
}

#Route .wrap-contact .tel:before{
	content: "";
	position: absolute;
	background: url(/static/img/maas/autonomousdriving-kyotango/icon-tel.png) no-repeat top center / 100%;
	top: calc(50% - 17px);
    left: 20px;
    width: 25px;
    height: 34px;
}

#Route .wrap-contact .tel a{
	color: #fff;
	text-decoration: none;
}

#Route .wrap-contact .inner-wrap p.about-customer{
    font-size: 18px;
}

#Route .wrap-contact .inner-wrap p.about-step{
	margin-top: 30px;
	font-weight: normal;
}


@media (min-width: 768px) {
	/*お問い合わせ*/
	#Route .wrap-contact{
		background: url(/static/img/maas/autonomousdriving-kyotango/img-bg-contact.jpg) no-repeat top center / cover;
		margin-top: 50px;
		padding: 100px 0;
	}
	#Route .wrap-contact .inner-wrap p.about-tel{
		font-size: 26px;
	}
	#Route .wrap-contact .inner-wrap p.tel{
		font-size: 46px;
		padding: 0px 50px 0px 100px;
	}
	#Route .wrap-contact .tel:before{
		top: calc(50% - 20px);
		left: 55px;
		display: block;
		width: 31px;
		height: 40px;
	}
	
	#Route .wrap-contact .inner-wrap p.about-customer{
		font-size: 20px;
	}
}


/*-------------------------------
	Area
-------------------------------*/
#Area{
	padding: 40px 0;
	text-align: center;
}

/*バナー*/
.bnr-btn{
	display: block;
    margin: 0 0 10px;
	transition: 0.3s;
}
.bnr-btn:hover{
	opacity: 0.8;
}

/*自動運転試乗会開催エリア*/
#Area .test-drive-area{
	margin: 50px 0 0;
}

#Area .area-table {
    max-width: 940px;
    width: 100%;
    margin: auto;
	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;
	padding: 15px 10px;
	font-size: 14px;
}

/*タグ　実施中・終了*/
#Area .inner-wrap span{
    border: solid 1px #B43131;
    color: #B43131;
    font-weight: bold;
    border-radius: 5px;
	padding: 3px 3px;
    margin-right: 5px;
	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: 30px auto 15px;
	}
	.wrap-video iframe{
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
	}
}


@media (min-width: 768px) {
	#Area{
		padding: 50px 0 130px;
	}
	
	/*バナー*/
	.bnr-btn{
		margin: 0 0 30px;
	}
	
	/*動画*/
	.wrap-video{
		margin: 50px auto 40px;
	}
}

/*-------------------------------
	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 2px #919191;
	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;
	padding: 10px 15px 10px 7px;
	font-size: 12px;
	max-width: 440px;
}
.fixedBtn .link-btn.reservation-btn{
	margin-right: 10px;
	display: block;
	background: #F04848;
}
.fixedBtn .link-btn:before{
	right: 0;
	font-size: 14px;
}

@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: 20px;
        height: 20px;
    }
}

/*ここまで、自動運転鳥取市から引用css-----------------------------------------*/


/*---------------------------------------------------------------------
	当ページ用css
---------------------------------------------------------------------*/
.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;
}

/*タブ全体*/
#TabWrap{
	position: relative; 
	margin: 100px 0 0;
}
/*タブのナビ背後の線*/
#TabWrap:before{ 
  position: absolute; 
  content: ""; 
  display: block; 
  width: 100%; 
  height: 1px; 
  background: #000; 
  top: 0; 
} 

/*タブの中身全体*/
#TabContentsWrap{
	padding: 50px 0 0;
}

/*タブのナビ全体*/
.tab-nav-wrap { 
  margin: -32px auto 0; 
  position: absolute; 
  left: 0; 
  right: 0; 
  max-width: 1140px; 
} 

.tab-nav-wrap a{ 
  background: #fff; 
  border: solid; 
  margin: 0 10px; 
} 

/*タブのナビ*/
ul.nav-area{
	width: 100%;
	max-width: 1140px;
    margin: 0 auto 20px;
	border: none;
	padding: 0 15px;
}

/*各ナビ*/
li.nav-item{
	display: flex;
	flex: 1;/*幅　均等割り当て*/
	width: 100%;
    max-width: 563px;
	text-align: center;
}
.nav-area > li.nav-item:last-of-type{
    margin-right: 0;
}

/*選択外のタブのデザイン*/
.nav-area a.nav-link,
.nav-area > li.nav-item a.nav-link:hover{
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
    border-radius: 50px;
	width: 100%;
	color: #232323;
    background: #fff;
	border: solid 1px #232323;
	font-size: 14px;
	padding: 7px 15px;
	opacity: 1;
	margin: 5px;
}

/*アクティブ(選択中)のナビ*/
.nav-area > li.nav-item a.nav-link.active{
	background: #f5ce66;
	border: solid 1px #232323;
	color: #232323;
}

/*地図*/
#TabContentsWrap .map-wrap{
	max-width: 970px;
    margin: auto;
}

@media(min-width:768px) {
	/*タブ全体*/
	#TabWrap{
		margin: 110px 0 0;
	}
	/*タブの中身全体*/
	#TabContentsWrap{
		padding: 120px 0 0;
	}

	.nav-area a.nav-link,
	.nav-area > li.nav-item a.nav-link:hover,
	.nav-area > li.nav-item a.nav-link.active{
		border-width:2px;
		font-size: 20px;
		padding: 15px;
		margin: 0 10px;
	}
}
/*京丹後 公共ライドシェアとは？*/
.detail-rideshare{
	background: #faf2f2;
	padding: 20px;
	margin-top: 20px;
	border-radius: 10px;
	font-size: 14px;
}
.detail-rideshare dt::before{
	content: "■";
}
.detail-rideshare dd{
	margin-bottom: 10px;
}


@media(min-width:768px) {
.detail-rideshare{
	display: flex;
	max-width: 900px;
	flex-wrap: wrap;
	margin: 30px auto;
	font-size: 16px;	
}
.detail-rideshare dt{
	width: 14%;
	text-align: right;
	margin-bottom: 5px;
	}
	.detail-rideshare dd{
		width: 86%;
		padding-left: 20px;
		margin-bottom: 5px;	
	}	
	
}