@charset "UTF-8";
/* CSS Document */

@font-face{
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Noto Serif JP', sans-serif;
  font-style:normal;
}

html{
  font-size: 62.5%; /* 62.5％ X 16px=10px */
}

body{
  color: #000000;
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Noto Serif JP', sans-serif, serif;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
}

a{
  color: #000000;
}

img{
  max-width: 100%;
  height: auto;
}

.inner{
  max-width: 1040px;
  margin: 0 auto;
}

.clearfix:after{
  content: "";    /* 擬似要素を実体化 */
  clear: both;    /* floatを解除する */
  display: block; /* ブロック要素にする */
}

.text-center{
  text-align: center;
}  

.sp_img{
  display: none;
}
 
.navToggle{
  display: none;
}

.pc_br{
  display: none;
}




/*------------------ふわっと表示------------------*/
.fadein{
  opacity : 0;
  transform: translateY(200px);
  transition: all 1s;
}
/*------------------ぶるぶる------------------*/
.shake{
  animation: hurueru .8s  infinite;
}
@keyframes hurueru {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(2px, 2px) rotateZ(1deg)}
  50% {transform: translate(0px, 2px) rotateZ(0deg)}
  75% {transform: translate(2px, 0px) rotateZ(-1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}



/*------------------ヘッダー------------------*/
.logo{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  align-items: center; /*--センター揃え--*/
  margin: 28px 40px 25px;
}



/*------------------ヘッダー固定------------------*/
.header_area{
  position: fixed;
  top: 0;
  padding: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}



/*------------------パンくずリスト部分------------------*/
.bread_area{
  background: #f9f2f4;
  padding: 15px 0 15px 40px; 
}

.breadcrumb {
  list-style: none;
}

.breadcrumb li {
  display: inline; /*横に並ぶように*/
  list-style: none;
  font-size: 1.6rem;
}

.breadcrumb li:after { /* >を表示*/
  content: '>';
  padding: 0 10px;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #e60069; /*色*/
}

.breadcrumb li a:hover {
  border-bottom: dashed 1px #e60069;
}



/*------------------共通テキスト部分------------------*/
.neme{
  padding-top: 30px;
  padding-bottom: 12px;
}

.text{
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
  margin-bottom: 24px;
}

.add{
  font-size: 1.5rem;
  font-weight: 400;
}
.add a:hover{
  color: #e60039; /*マウスオーバー時の色*/
  text-decoration: underline;
}

dl{
  display: flex;
}

.info>li>dl>dt,.info>li>dl>dd{
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
}

.info_area{
  margin-top: 18px;
}

.info>li{
  padding-bottom: 5px;
}
.information>dl:last-child{
  padding-bottom: 0;
}

.info10{
  margin-left: 10px;
}

.info_link>a{
  box-shadow: inset 0 0 0 0 #c71585;
  color: #c71585;
	padding: 0 0.25rem;
	margin: 0 -0.25rem;
  transition: color .3s ease-in-out, box-shadow .3s ease-in-out;  
}
.info_link>a:hover{
  color: #fff;
  box-shadow: inset 150px 0 0 0 #c71585;  
}

.size{
  font-size: 1.5rem;
  margin-left: 5px;
}
/*------------------マップ部分------------------*/
.map_right{
  padding-bottom: 15px;
}

.map_left_area{
  display: flex;
}
.map_left{
  padding-right: 25px;
}
/*------------------本文部分------------------*/
.content_area{
  margin-bottom: 160px;
}

.text_area_block{
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔--*/
}

.text_block{
  width: 580px;
}



/*------------------ヒーローイメージ------------------*/
.main_img{
  margin-top: 138px;
  width: 100%;
  height: 0;
  padding-top: calc(640 / 1200 * 100%); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/main.jpg") center / cover no-repeat;
}

.main_text_area{
  display: flex;
  justify-content: space-between; /*--両端に配置、均等に間隔--*/
  margin-top: 60px;
}


.lead_text_area{
  margin-right: 46px; 
}

.lead_text{
  font-size: 2rem;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}

.low_text{
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  padding-top: 10px;
  padding-left: 1.4rem; /*--2行目以降を1文字下--*/
  text-indent: -1.4rem; /*--2行目以降を1文字下--*/
}
/*------------------ドライブコース------------------*/
.spot_title{
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 0 15px;
  color: #2bb7b3; 
}

.course>li>a{
  width: 400px;
  display: block;
  padding: 10px 0;  
  font-size: 2rem;
  font-weight: 700;
  text-align: center;  
  color: #2bb7b3;
  background-color: #d2ebe9;
  border-radius: 20px;
  margin-bottom: 27px;
  transition: 0.4s;
}

.course>li>a:hover{ 
  color: #fff;   
  background-color: #2bb7b3;
}

.course_mg10{
  margin-left: 10px;
  font-weight: 700;
}
/*------------------ページ内リンク------------------*/
#museum{ /*--太地町立くじらの博物館--*/
  margin-top: -500px;
  padding-top: 500px;   
}
#eat{ /*--大和--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#market{ /*--にぎわい市場--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#footbath{ /*--海乃湯--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#island{ /*--弁天島--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#hotel{ /*--ホテル浦島--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#station{ /*--道の駅くしもと橋杭岩--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#nagi{ /*--喫茶yuyano--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#toruko{ /*--トルコ記念館--*/
  margin-top: -430px;
  padding-top: 430px;   
}
#lighthouse{ /*--潮岬灯台--*/
  margin-top: -430px;
  padding-top: 430px;   
}



/*------------------Today’sドライブカー部分------------------*/
.drive_area{
  margin-top: 40px;
  background-color: #f5f5f5;
  padding: 40px 0;
}

.car_area{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  align-items: flex-end; /*--した揃え--*/
}

.drive_name{
  position: relative; /*--親--*/
}

.drive_text_area{
  width: 498px;
}

.drive_title_low{
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 10px;
}
.drive_mg5{
  margin: 10px;
  font-weight: 500;  
}

.drive_title{
  font-size: 3rem;
  font-weight: 900;
  margin-left: 10px;
}

.drive_text{
  font-size: 1.6rem;
  line-height: 1.5;
  padding-bottom: 20px;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}

.drive_img{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
}
/*------------------詳しくはコチラから------------------*/
.balloon_area{
  position: absolute; /*--子--*/
  top: -50px;
  right: 50px;
}
.balloon_btm{ /*--吹き出し本体--*/
  position: relative; /*--親--*/
  padding: 10px 15px;
  background: #e60069;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
.balloon_btm:before{ /*--吹き出し--*/ 
  content: "";
  position: absolute; /*--子--*/
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #e60069;
  border-radius: 50%;
}
.balloon_btm:after{ /*--吹き出し--*/
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #e60069;
  border-radius: 50%;
}
/*------------------試乗車------------------*/
.test_car_area{
  display: flex;
  margin-top: 20px;
}

.test_car{
  margin-right: 24px;
  width: 190px;
  padding: 9px 0;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background: #e6003d; 
  border-radius: 18px;
}

.shop_name{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
} 

.shop_name>li>a{
  margin-right: 24px;
  width: 130px;
  display: block;
  padding: 9px 0;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  color: #e6003d;
  border: solid 1px #e6003d;
  border-radius: 18px;
  transition: 0.4s; 
} 

.shop_name>li>a:hover{ 
  color: #fff;   
  background-color: #e6003d;
}



/*------------------太地町立くじらの博物館------------------*/
.museum_main_img{
  width: 100vw;
  height: 0;
  padding-top: calc(540 / 1200 * 100vw); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/museum_main.jpg") center / cover no-repeat;
  margin: 0 calc(50% - 50vw);
}

.museum_back{
  width: 100vw;
  height: auto;
  background: url("../drive/drive_img/museum_back.png") center / cover no-repeat; 
  padding-bottom: 130px;
  position: relative; /*--親--*/

}
/*------------------泡------------------*/
.bubbles{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  top: 0;
  left: 0;
}
.bubble{
  position: absolute;
  bottom: -40;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: bubble 10s ease-in infinite;
}
.bubble:nth-child(1){
  width: 20px;
  height: 20px;
  left: 20%;
  animation-duration: 6s;
}
.bubble:nth-child(2){
  left: 10%;
  animation-duration: 3.5s;
}
.bubble:nth-child(3){
  width: 30px;
  height: 30px;
  left: 30%;
  animation-duration: 7s;
}
.bubble:nth-child(4){
  width: 50px;
  height: 50px;
  left: 67%;
  animation-duration: 6s;
}
.bubble:nth-child(5){
  width: 20px;
  height: 20px;
  left: 70%;
  animation-duration: 4.5s;
}
.bubble:nth-child(6){
  left: 40%;
  animation-duration: 3.5s;
}
.bubble:nth-child(7){
  width: 80px;
  height: 80px;
  left: 80%;
  animation-duration: 6s;
}
.bubble:nth-child(8){
  width: 70px;
  height: 70px;
  left: 90%;
  animation-duration: 7.5s;
}
@keyframes bubble {
  0%{
    bottom: -100px;
    transform: translateX(0);
  }
  50%{
    transform: translateX(200px);
  }
  100%{
    bottom: 1500px;
  }
}
/*------------------------------------*/

.museum_sub01{
  position: relative; /*--親--*/
}
.museum_copy01{  
  position: absolute; /*--子--*/
  bottom: 190px;
  left: 100px;
}
.museum_copy02{  
  position: absolute; /*--子--*/
  bottom: 200px;
  right: 120px;
}

.museum_sub_area{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/ 
  padding-top: 26px;
}

.museum_sub>li{
  padding-bottom: 9px;
}
.museum_sub>li:last-child{
  padding-bottom: 0;
}

.explanation{
  padding-top: 30px;
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/  
}
.explanation>li>p{
  width: 326px;
  padding-top: 10px;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}

.museum_model_area{
  display: flex;
}

.museum_model{
  padding-top: 25px;
  padding-right: 18px;
}

.museum_text{
  width: 280px;
}

.museum_text_block{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  padding-bottom: 20px;
}

.museum_map{
  margin-top: 70px;
}
/*------------------餌あげ体験------------------*/
.feeding_area{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/  
  padding: 26px 26px 0;
  background-color: #fff5de;  
  border-radius: 30px;
}

.feeding_test>p{
  width: 353px;
  padding-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}

.feeding_sub01{
  position: relative; /*--親--*/
}
.feeding_copy{  
  position: absolute; /*--子--*/
  top: -60px;
  left: -60px;
}



/*------------------大和------------------*/
.eat_area{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  flex-direction: row-reverse; /*--右から左--*/  
}

.eat_sub_img>li{
  padding-top: 30px;
  padding-bottom: 22px;  
}
.eat_sub_img>li:last-child{
  padding-top: 0;
  padding-bottom: 0;  
}

.eat_main{
  position: relative; /*--親--*/
}
.eat_copy{  
  position: absolute; /*--子--*/
  bottom: 160px;
  right: 25px;
}
.eat_product{  
  position: absolute; /*--子--*/
  bottom: -70px;
  right: -40px;
}

.eat_sub{
  position: relative; /*--親--*/
}
.eat_sub_copy_l{  
  position: absolute; /*--子--*/
  top: 5px;
  left: 5px;
}
.eat_sub_copy_r{  
  position: absolute; /*--子--*/
  top: 5px;
  right: -10px;
}



/*------------------にぎわい市場------------------*/
.market_area{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  align-items: flex-end; /*--下揃え--*/
}

.market_text_block{
  width: 379px;
}

.market_main{
  position: relative; /*--親--*/
}
.market_copy_l{  
  position: absolute; /*--子--*/
  top: 270px;
  left: 140px;
}
.market_copy_r{  
  position: absolute; /*--子--*/
  top: 255px;
  right: 45px;
}



/*------------------海乃湯------------------*/
.footbath_area{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  flex-direction: row-reverse; /*--右から左--*/
}

.footbath_name{
  padding-top: 0px;
}

.footbath_main{
  position: relative; /*--親--*/
}
.footbath_copy{  
  position: absolute; /*--子--*/
  top: -50px;
  right: -40px;
}



/*------------------弁天島------------------*/
.island_area{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  padding: 26px;
  background-color: #fffbec;  
  border-radius: 30px;  
}

.island_name{
  padding-top: 0px;
}



/*------------------ホテル浦島------------------*/
.hotel_main_img{
  width: 100vw;
  height: 0;
  padding-top: calc(541 / 1200 * 100vw); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/hotel_main.jpg") center / cover no-repeat;
  margin: 0 calc(50% - 50vw);
}

.hotel_sub{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  margin-top: 10px;
}

.hotel_area{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  flex-direction: row-reverse; /*--右から左--*/
}

.hotel_sub_right>li{
  padding-top: 30px;
  padding-bottom: 22px;  
}
.hotel_sub_right>li:last-child{
  padding-top: 0;
  padding-bottom: 0;  
}

.hotel_sub05{
  position: relative; /*--親--*/
}
.hotel_sub05_copy{  
  position: absolute; /*--子--*/
  top: -100px;
  right: -60px;
}


.hotel_left{
  position: relative; /*--親--*/
}
.hotel_copy02{  
  position: absolute; /*--子--*/
  bottom: 320px;
  right: 100px;
  z-index: 10;
}
.hotel_sub06{  
  position: absolute; /*--子--*/
  bottom: 190px;
  right: -85px;
}
.hotel_copy03{  
  position: absolute; /*--子--*/
  bottom: 130px;
  right: -100px;
  z-index: 10;
}
.hotel_sub07{  
  position: absolute; /*--子--*/
  width: 165px;
  bottom: 150px;
  right: 90px;
}



/*------------------道の駅くしもと橋杭岩------------------*/
.station_area{
  display: flex;
  flex-direction: row-reverse;
  position: relative; /*--親--*/  
}

.station_name{
  padding-top: 0px;
}

.station_text{
  width: 379px;
}

.station_main{  
  position: relative; /*--親--*/  
}
.station_copy01{  
  position: absolute; /*--子--*/
  top: 180px;
  right: 40px;
}

.station_sub03{  
  padding-top: 70px;
  position: relative; /*--親--*/  
}
.station_copy02{  
  position: absolute; /*--子--*/
  top: 20px;
  left: -24px;
}

.station_item{
  position: absolute; /*--子--*/
  top: 0;
  left: -100px;  
}

.station_sub01_area{  
  position: relative; /*--親--*/
}
.station_copy03{
  position: absolute; /*--子--*/
  top: -100px;
  left: 20px;
  z-index: 10;
}

.station_sub01{  
  position: absolute; /*--子--*/
  z-index: 10;
  bottom: -170px;
  left: 60px;
  padding: 12px;
  background: #fff;
  box-shadow: -5px 5px 5px rgba(0,0,0,0.3);
  transform: rotate(-4deg);
}
.station_sub02{  
  position: absolute; /*--子--*/
  bottom: -200px;
  right: 0;
  padding: 12px;
  background: #fff;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
  transform: rotate(4deg);
}





/*------------------喫茶yuyano------------------*/
.nagi_bg{
  background: url("../drive/drive_img/nagi_back.png") center / cover no-repeat;
  padding-bottom: 26px;
  position: relative; /*--親--*/  
}

.nagi_main{
  position: absolute; /*--子--*/
  top: 0;
  left: 0;
}

.nagi_img04_area{
  position: absolute; /*--子--*/
  bottom: 0;
  left: 0;
}
.nagi_img04{  
  position: relative; /*--親--*/
}
.nagi_copy{
  position: absolute; /*--子--*/
  top: -50px;
  left: 110px;
}

.nagi_sub_img{
  display: flex;
  justify-content: flex-end; /*--右揃え--*/
}

.nagi_text_area{
  margin: 0 26px 0 auto; /*--右揃え--*/
}



/*------------------トルコ記念館------------------*/
.toruko_main_img{
  width: 100vw;
  height: 0;
  padding-top: calc(540 / 1200 * 100vw); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../drive/drive_img/toruko_main.jpg") center / cover no-repeat;
  margin: 0 calc(50% - 50vw);
}

.toruko_area{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  flex-direction: row-reverse; /*--右から左--*/
  align-items: flex-end; /*--下そろえ-*/
}

.toruko_sub>li{
  padding-top: 30px;
  padding-bottom: 22px;  
}
.toruko_sub>li:last-child{
  padding-top: 0;
  padding-bottom: 0;  
}

.toruko_left{
  position: relative; /*--親--*/
}
.toruko_toruko04{  
  position: absolute; /*--子--*/
  top: -70px;
  right: 30px;
}
.toruko_copy{  
  position: absolute; /*--子--*/
  bottom: 230px;
  right: -40px;
}
.toruko_toruko03{  
  position: absolute; /*--子--*/
  bottom: 0;
  right: -35px;
}




/*------------------潮岬灯台------------------*/
.lighthouse_sub{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  margin-top: 10px;
}

.lighthouse_sub03{
  position: relative; /*--親--*/
}
.lighthouse_copy01{  
  position: absolute; /*--子--*/
  top: -30px;
  left: -10px;
}

.lighthouse04_item{
  position: absolute; /*--子--*/
  bottom: 0;
  left: -100px;  
}

.lighthouse_area{
  display: flex;
  flex-direction: row-reverse;
  position: relative; /*--親--*/  
}

.lighthouse_sub04{
  position: relative; /*--親--*/
}
.lighthouse_copy02{  
  position: absolute; /*--子--*/
  bottom: 190px;
  left: 60px;
}
.lighthouse_copy03{  
  position: absolute; /*--子--*/
  bottom: 190px;
  right: 170px;
}



/*------------------バックナンバー部分------------------*/
.b_number_area{
  margin-top: 85px;
}

.b_title{
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 12px;
}

.back{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
  flex-wrap: wrap; /*--上から下--*/
}

.back>li{
  width: 325px;
}

.back>li>a{
  margin-bottom: 25px;
  display: block;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  color: #e60069; 
  border: solid 2px #e60069;
  border-radius: 14px;
  padding: 10px 0 12px;
  transition: 0.6s;
}

.back>li>a:hover{
  color: #fff;
  background: #e60069; /*マウスオーバー時の背景色*/
  border: solid 1px #e60069;
}



/*------------------ページトップボタン------------------*/
.PageTopBtn{
  font-size: 1.4rem;
  position: fixed; /*配置場所を固定*/
  bottom: 30px; /*下からの位置*/
  right: 30px; /*右からの位置*/
}

.PageTopBtn>a{
  display: block; /*配置の調整*/
  color: #ff7f00;
  background: #fff;
  border: solid 2px #ff7f00;
  width: 90px;
  height: 50px;
  line-height: 3.5;
  text-align: center;
  border-radius: 10px;
  transition: 0.6s;
}

.PageTopBtn>a:hover{
  color: #fff;
  background: #e60039; /*マウスオーバー時の背景色*/
  border: solid 2px #e60039;
}



/*------------------フッター------------------*/
.footer-area{
  margin-top: 105px;
  background-color: #f9f2f4;
  padding: 30px 0;
}

.footer_logo{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 40px 60px;
}

.copyright{
  font-size: 1rem; 
}





/*------------------タブレット版------------------*/
@media screen and (min-width: 641px) and (max-width: 960px){
  html{
    min-width: 1200px;
  }
 }





/*------------------SP版------------------*/
@media screen and (max-width: 640px){
  
  .inner{
    padding: 0 20px;
  }
  
  .pc_img{
    display: none;
  }

  .sp_img{
    display: block;
  }
 
  .pc_br{
    display: block;
  }
  
  .sp_br{
    display: none;
  }

  .wrap{
    overflow: hidden;
   }
  
  
  
  /*------------------ヘッダー部分------------------*/
  .navi_area_sp{
    padding: 20px 20px;
    display: flex;
    justify-content: center;
  }

 
  
  /*------------------パンくずリスト部分------------------*/
  .bread_area{
    padding: 15px 20px 5px 20px;
    -webkit-overflow-scrolling: touch; /* スマホでスクロールを滑らかにする */
    overflow-x: auto; /* [必須] テキストが多い時はX軸にスクロールバーが出現するように */
  }

  /*------------------【スクロールバー】------------------*/
  .bread_area::-webkit-scrollbar {
    height: 5px;
  }
  .bread_area::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
  }
  .bread_area::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #999;
  }
  .bread_area ol{
    display: table; /* [必須]  */
  } 
  
  .breadcrumb li{
    font-size: 1.5rem;
    padding-bottom: 11px;
    display: table-cell; /* [必須]  */
    white-space: nowrap; /* [必須] テキストを改行させないように */
  }

  .breadcrumb li:after{ /* >を表示*/
    padding: 0 5px;
  }
  
  
 
  /*------------------共通テキスト部分------------------*/
  .neme{
    padding-top: 15px;
    padding-bottom: 8px;
  }

  .text{
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .add{
    font-size: 1.3rem;
  }

  .info>li>dl>dt,.info>li>dl>dd{
    font-size: 1.3rem;
    line-height: 1.4;
  }

 .info>li{
    padding-bottom: 6px;
  }  
 
  .info_area{
    margin-top: 0;
  }
  
  .sp_info{
    padding-top: 10px;
  } 

  
  
  /*------------------マップ部分------------------*/
  .map_right{
    padding-bottom: 0;
  }

  .map_left_area{
    display: block; /*--解除--*/
  }
  .map_left{
    padding-right: 0;
  }  
  /*------------------sp用グーグルマップ------------------*/  
  .access_map{
    position: relative;
    width: 100%;
    padding-bottom: 62.5%; /* = height ÷ width × 100 */
  }  
  .access_map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
  }   
  
  .sp_map{
    margin: 20px 0 10px;
  }
  
  
  
  /*------------------本文部分------------------*/
  .content_area{
    margin-bottom: 50px;
  }

  .text_area_block{
    display: block; /*--解除--*/
  }

  .text_block{
    width: auto;
  }



  /*------------------ヒーローイメージ------------------*/
  .main_img{
    margin-top: 145px;
    padding-top: calc(768 / 780 * 100%); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/main_sp.jpg") center / cover no-repeat;
  }

  .main_text_area{
    display: block; /*--解除--*/
    margin-top: 25px;
  }
  
  .lead_text_area{
    margin-right: 0; 
  }

  .lead_text{
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .low_text{
    font-size: 1.3rem;
    padding-left: 1.3rem; /*--2行目以降を1文字下--*/
    text-indent: -1.3rem; /*--2行目以降を1文字下--*/
  }
  /*------------------ドライブコース------------------*/
  .spot_title{
    font-size: 2rem;
    padding: 20px 0 12px;
  }

  .course>li>a{
    width: auto;
    padding: 12px 0;  
    font-size: 1.8rem;
    margin-bottom: 27px;
  }



  /*------------------ページ内リンク------------------*/
  #museum{ /*--太地町立くじらの博物館--*/
    margin-top: -200px;
    padding-top: 200px;   
  }
  #eat{ /*--大和--*/
    margin-top: -200px;
    padding-top: 200px;   
  }
  #market{ /*--にぎわい市場--*/
    margin-top: -200px;
    padding-top: 200px;   
  }
  #footbath{ /*--海乃湯--*/
    margin-top: -200px;
    padding-top: 200px;   
  }
  #island{ /*--弁天島--*/
    margin-top: -200px;
    padding-top: 200px;   
  }
  #hotel{ /*--ホテル浦島--*/
    margin-top: -200px;
    padding-top: 200px;   
  }
  #station{ /*--道の駅くしもと橋杭岩--*/
    margin-top: -200px;
    padding-top: 200px;   
  }
  #nagi{ /*--喫茶yuyano--*/
    margin-top: -200px;
    padding-top: 200px;   
  }
  #toruko{ /*--トルコ記念館--*/
    margin-top: -200px;
    padding-top: 200px;   
  }
  #lighthouse{ /*--潮岬灯台--*/
    margin-top: -200px;
    padding-top: 200px;   
  }



  /*------------------Today’sドライブカー部分------------------*/
  .drive_area{
    padding: 40px 0 40px;
  }

  .car_area{
    display: block; /*--解除-*/
  }

  .drive_name{
    padding-top: 20px;
  }

  .drive_text_area{
    width: auto;
  }

  .drive_title_low{
    font-size: 1.8rem;
    padding-bottom: 8px;
  }

  .drive_title{
    font-size: 2.8rem;
  }

  .drive_text{
    font-size: 1.5rem;
    line-height: 1.6;
  }
  /*------------------詳しくはコチラから------------------*/
  .balloon_area{
    top: -45px;
    right: -10px;
  }
  .balloon_btm{ /*--吹き出し本体--*/
    font-size: 1.4rem;
    line-height: 1.4;
  }

  /*------------------試乗車------------------*/
  .test_car_area{
    display: block; /*--解除-*/
  }

  .test_car{
    width: auto;
    margin-right: 0;
    margin: 0 auto;
  }

  .shop_name>li{
    width: 48%; /*--幅--*/
    margin-top: 15px;
  }   
  
  .shop_name>li>a{
    margin-right: 0;
    width: auto;
    font-size: 1.8rem;
  } 



  /*------------------太地町立くじらの博物館------------------*/
  .museum_main_img{
    padding-top: calc(450 / 768 * 100vw); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/museum_main_sp.jpg") center / cover no-repeat;
  }

  .museum_back{
    width: 100vw;
    height: auto;
    background: url("../drive/drive_img/museum_back_sp.png") center / cover no-repeat; 
    padding-bottom: 40px;

  }

  .museum_sub_area{
    display: block; /*--解除--*/
    padding-top: 24px;
  }

  .museum_sub_sp{
    display: flex;
  }  
  
  .museum_sub>li{
    padding-bottom: 0;
  }

  .explanation{
    padding-top: 30px;
    display: block; /*--解除--*/
  }
  
  .explanation>li{
    padding-bottom: 18px;
  }   

  .explanation>li>p{
    width: auto;
    padding-top: 8px;
  }

  .museum_model_area{
    display: block; /*--解除--*/
  }

  .museum_neme_sp{
    height: 35px;
    width: auto;
  }   

  .museum_model{
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 10px;
  }

  .museum_text{
    width: auto;
  }

  .museum_text_block{
    display: block; /*--解除--*/
    padding-bottom: 0;
  }

  .museum_map{
    margin-top: 20px;
  }
  /*------------------餌あげ体験------------------*/
  .feeding_area{
    display: block; /*--解除--*/ 
    padding: 20px 20px 0;
    border-radius: 15px;
    margin-top: 20px;
  }

  .feeding_test{
    padding-top: 10px;
  }  
  
  .feeding_test>p{
    width: auto;
    padding-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .feeding_copy{  
    width: 40vw;
    top: -40px;
    left: -30px;
  }

  
  
  /*------------------大和------------------*/
  .eat_area{
    display: block; /*--解除--*/
  }

  .eat_neme_sp{
    height: 35px;
    width: auto;
  }  
    
  .eat_sub_sp{
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
  }  
  
  .eat_sub_sp>li{
    width: 48%;
  }   

  .sp_eat02_img{
    position: relative; /*--親--*/    
  }
  .sp_copy_l{
    position: absolute; /*--子--*/
    width: 15vw;
    top: -20px;
    left: -15px;     
  }
  .sp_copy_r{
    position: absolute; /*--子--*/
    width: 18vw;  
    top: -30px;
    right: -10px;     
  } 
 
  .sp_eat03_img{
    position: relative; /*--親--*/    
  }
  .sp_eat_copy01{
    position: absolute; /*--子--*/
    width: 35vw;
    top: -30px;
    left: 20px;     
  }

  
  
  /*------------------にぎわい市場------------------*/
  .market_area{
    display: block; /*--解除--*/
  }

  .market_text_block{
    width: auto;
  }

  .market_neme_sp{
    height: 35px;
    width: auto;
  }
 
  
  
  /*------------------海乃湯------------------*/
  .footbath_area{
    display: block; /*--解除--*/
  }

  .footbath_name{
    padding-top: 15px;
  }

  .footbath_neme_sp{
    height: 35px;
    width: auto;
  }
  
  .footbath_copy{ 
    width: 28vw;
    top: -30px;
    right: 15px;
  }


  
  /*------------------弁天島------------------*/
  .island_area{
    display: block; /*--解除--*/
    padding: 16px;
  }

  .island_name{
    padding-top: 15px;
  }

  .island_neme_sp{
    height: 35px;
    width: auto;
  } 

  
  
  /*------------------ホテル浦島------------------*/
  .hotel_main_img{
    padding-top: calc(451 / 768 * 100vw); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/hotel_main_sp.jpg") center / cover no-repeat;
  }

  .hotel_sub{
    margin-top: 12px;
  }

  .hotel_area{
    display: block; /*--解除--*/
  }

  .hotel_sub_right>li{
    padding-top: 0;
    padding-bottom: 0;  
  }

  .hotel_name_sp{
    height: 35px;
    width: auto;
  }

  .hotel_sub_sp{
    position: relative; /*--親--*/
  }
  .hotel_sub05_sp{  
    position: absolute; /*--子--*/
    width: 30vw;
    top: -70px;
    right: 20px;
  }

  

  /*------------------道の駅くしもと橋杭岩------------------*/
  .station_area{
    display: block; /*--解除-*/
    position: static; /*--解除--*/  
  }

  .station_name{
    padding-top: 15px;
  }

  .station_neme_sp{
    height: 35px;
    width: auto;
  } 

  .station_text{
    width: auto;
  }

  .station_item{
    position: static; /*--解除--*/ 
  }
  
  .station_sub01_area_sp{  
    display: flex;
  }  

  .station_copy03{
    width: 30vw;
    top: -50px;
    left: -10px;
  }

  .station_sub01{  
    position: static; /*--子--*/
    padding: 0;
    background: none;
    box-shadow: none;
    transform: none;
  }
  .station_sub02{  
    position: static; /*--子--*/
    padding: 0;
    background: none;
    box-shadow: none;
    transform: none;
  }

  
  
  /*------------------喫茶yuyano------------------*/
  .nagi_bg{
    background: url("../drive/drive_img/nagi_back_sp.png") center / cover no-repeat;
    padding-bottom: 10px;
    position: static; /*--解除--*/  
  }

  .nagi_main{
    position: static; /*--解除--*/
  }

  .nagi_text_area{
    margin: 0 0 0 0; /*--右揃え--*/
    padding: 0 16px;
  }

  .nagi_neme{
    height: 35px;
    width: auto;
  } 

  .nagi_main_sp{
    position: relative; /*--親--*/
  }
  .nagi_main_copy_sp{
    position: absolute; /*--子--*/
    top: -10px;
    left: -10px;
  }  

  
  
  /*------------------トルコ記念館------------------*/
  .toruko_main_img{
    padding-top: calc(451 / 768 * 100vw); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../drive/drive_img/toruko_main_sp.jpg") center / cover no-repeat;
  }

  .toruko_neme{
    height: 35px;
    width: auto;
  }    
  
  .toruko_area{
    display: block; /*--解除--*/
  }

  .toruko_sub{
    display: flex;
    padding-top: 15px;
  }  
  
  .toruko_sub>li{
    padding-top: 0;
    padding-bottom: 0;  
  }

  .toruko_toruko04{  
    width: 20vw;
    top: -40px;
    right: 15px;
  }



  /*------------------潮岬灯台------------------*/
  .lighthouse_neme{
    height: 35px;
    width: auto;
  }  
  
  .lighthouse_sub{
    margin-top: 0;
  }

  .lighthouse_copy01{  
    width: 40vw;
  }

  .lighthouse04_item{
    position: static; /*--解除--*/ 
  }

  .lighthouse_area{
    display: block; /*--解除--*/ 
  }

  .lighthouse_sub04{
    position: static; /*--解除--*/
    padding-top: 10px;
  }

  

  /*------------------バックナンバー部分------------------*/
  .b_number_area{
    margin-top: 35px;
  }

  .b_title{
    text-align: center;
  }

  .back{
    display: block; /*--解除--*/
  }

  .back>li{
    width: 100%;
    padding-bottom: 20px;
  }
  .back>li:last-child{
    padding-bottom: 0;
  }
  
  .back>li>a{
    margin-bottom: 0px;
    font-size: 1.5rem;
    line-height: 1.3;
  }  



  /*------------------ページトップ------------------*/
  .PageTopBtn{
    font-size: 1.4rem;
    position: fixed; /*配置場所を固定*/
    bottom: 15px; /*下からの位置*/
    right: 15px; /*右からの位置*/
  }

  
  
  /*------------------フッター------------------*/ 
  .footer-area{
    margin-top: 25px;
    padding: 20px 0 20px 0;
  }

  .footer_logo{
    display: block;
    margin: 10px 20px 10px;
  }
  
  .w_logo_bot{
    margin: 0 auto;
  }
  
  .copyright{
    font-size: 1.2rem; 
    line-height: normal;
    padding: 10px 0 0;
  }

  
  
 }









