@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-bottom: 10px;
}

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

dl{
  display: flex;
}

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

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

.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 300px 0 0 0 #c71585;  
}

.info_ann{
  font-size: 1.3rem;
  line-height: 1.3; 
  padding-left: 1.4rem; /*--2行目以降を1文字下--*/
  text-indent: -1.4rem; /*--2行目以降を1文字下--*/    
}

.size{  /*--アイコン--*/
  font-size: 1.5rem;
  margin-left: 5px;
}
/*------------------マップ部分------------------*/
.add_area{
  display: flex;
}
.add_area>li:first-child{
  padding-right: 18px;
}
/*------------------きずなびと------------------*/
.kizuna>li:nth-child(1){
  padding-bottom: 16px;
}
.kizuna>li:nth-child(2){
  padding-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 500;
}
.kizuna>li:nth-child(3){
  padding-bottom: 8px;
  font-size: 2.8rem;
  font-weight: 500;
}
.kizuna>li:nth-child(4){
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}
.kizuna_mgl20{
  margin-left: 20px;
  font-weight: 500;  
}



/*------------------メイン画像------------------*/
.title_area{
  margin: 139px 0 80px;
  position: relative; /*--親--*/
}

.main_img>img{
  width: 100vw;
  height: 100%;  
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

h1{
  position: absolute; /*--子--*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow:0 0 15px #1f2023;
  filter: drop-shadow(0 0 5px rgba(31,32,35,1));   
}

.mark{
  position: absolute; /*--子--*/
  top: 20px;
  right: 20px;
}

.main_text_area{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.main_text_area>li:last-child{
  width: 580px;
}

.title_copy{
  text-align: center;
  padding-bottom: 34px;
}

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

.low_text{
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  padding-top: 8px;
  padding-left: 1.4rem; /*--2行目以降を1文字下--*/
  text-indent: -1.4rem; /*--2行目以降を1文字下--*/
}
/*------------------飛び地------------------*/
.enclave{
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.enclave_text_area{
  width: 289px; 
}

.enclave_title{
  padding-bottom: 10px;
  text-align: center;
}

.enclave_text{
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}
/*------------------ドライブカー------------------*/
.drive_area{
  margin-top: 40px;
  background-color: #f0f8ff;
  padding: 60px 0;
}

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

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

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

.drive_mg5{
  margin: 10px;
  font-weight: 500;  
}

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

.drive_copy{
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 6px;
}

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

.drive_img{
  display: flex;
  justify-content: space-between; /*--両端配置、均等に間隔--*/
}
/*------------------の詳細はコチラから------------------*/
.balloon_area{
  position: absolute; /*--子--*/
  top: -50px;
  right: 0;
}
.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%;
}



/*------------------アイスマン------------------*/
.ice_main{
  position: relative; /*--親--*/
}
.ice_copy01{
  position: absolute; /*--子--*/
  top: 70px;
  left: 150px;
}

.sub_img{
  position: relative; /*--親--*/  
}
.ice_copy02{
  position: absolute; /*--子--*/
  top: 30px;
  right: -30px;
  z-index: 20;
}

.sub_img02{
  position: absolute; /*--子--*/
  top: -200px;
  right: -40px; 
  padding: 10px;
  background: #fff;
  text-shadow:0 0 15px #1f2023;
  filter: drop-shadow(0 0 5px rgba(31,32,35,1));  
  transform: rotate(5deg); 
}

.ice_text_area{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.ice_text_area>li:nth-child(1){
  padding-top: 50px;
}
.ice_text_area>li:nth-child(2){
  position: relative; /*--親--*/  
  width: 580px;
}
.ice_logo{
  position: absolute; /*--子--*/
  top: -130px;
  left: 0
}
.sub_img03{
  position: absolute; /*--子--*/
  top: -190px;
  right: -30px;
  padding: 10px;  
  background: #fff;
  text-shadow:0 0 15px #1f2023;
  filter: drop-shadow(0 0 5px rgba(31,32,35,1));  
  transform: rotate(-5deg); 
}

.sub_heading{
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff100;
  padding-bottom: 9px;
}

.sub_text{
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;  
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
  margin-bottom: 6px;
}

.sub_info{
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #fff100;  
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/
}

.sub_pat{
  margin-top: 40px;
  padding: 20px;
  background-image: url("../drive/drive_img/cany_pat.png");
}

.raf_area{
  position: relative; /*--親--*/  
  margin: 40px 0 70px;
  display: flex;
  justify-content: space-between;  
}
.raf_area>li:nth-child(1){
  position: relative; /*--親--*/
}
.raf_copy01{
  position: absolute; /*--子--*/
  top: 50px;
  right: 50px;
}
.raf_area>li:nth-child(2){
  width: 383px; 
  padding: 90px 20px 20px;
  background-image: url("../drive/drive_img/raf_pat.png");
}
.raf_area>li:nth-child(3){
  position: absolute; /*--子--*/
  top: -180px;
  right: -20px;
}

.raf_copy02_area{
  position: relative; /*--親--*/ 
}
.raf_copy02{
  position: absolute; /*--子--*/
  top: -100px;
  right: -30px; 
}



/*------------------観光筏下り------------------*/
.kitayama_area{
  position: relative; /*--親--*/
  background: url("../drive/drive_img/kitayama_pat.png") bottom / contain no-repeat;
  padding-bottom: 70px; 
}

.kitayama_text_area{
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;   
}
.kitayama_text_area>li:nth-child(1){
  position: relative; /*--親--*/   
  width: 660px;   
}
.kitayama_text_area>li:nth-child(2){
  width: 335px;   
}

.kitayama_sub{
  position: absolute; /*--子--*/
  top: -120px;
  right: -30px; 
  padding: 10px;
  background: #fff;
  text-shadow:0 0 15px #1f2023;
  filter: drop-shadow(0 0 5px rgba(31,32,35,1));  
}

.yamamoto{
  padding: 16px; 
  background: #fff799; 
  position: relative; /*--親--*/   
}
.yamamoto_copy{
  position: absolute; /*--子--*/
  top: -40px;
  left: -20px;
  z-index: 20;
}
.yamamoto_model{
  position: absolute; /*--子--*/
  width: 100%;
  top: -318px;
  left: 20px;   
}



/*------------------じゃばらいず北山------------------*/
.jaba_area{
  padding: 70px 0;
  background: #eeeadc;
}

.jaba_text_area{
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
.jaba_text_area>li:nth-child(1){
  width: 580px;
}
.jaba_text_area>li:nth-child(2){
  width: 418px;
}

.jaba_sub_img{
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

.jaba_topic{
  padding: 16px; 
  background: #fff; 
  position: relative; /*--親--*/   
}
.jaba_topic>li:nth-child(1){
  padding-bottom: 5px;  
  font-size: 2rem;
  font-weight: 500;    
}
.jaba_topic>li:nth-child(2){
  padding-bottom: 8px;
  font-size: 4rem;
  font-weight: 500;
  color: #ef7d2e;  
}
.jaba_topic>li:nth-child(3){
  padding-bottom: 6px;  
  font-size: 2.3rem;
  line-height: 1.4;
  font-weight: 500;
  color: #009944;
}
.jaba_topic>li:nth-child(4){
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/    
}
.jaba_topic_img{
  position: absolute; /*--子--*/
  top: -70px;
  right: 15px;   
}

.jaba_kizuna{
  margin-top: 40px;
  position: relative; /*--親--*/  
}
.jaba_kizuna_copy{
  position: absolute; /*--子--*/
  top: -55px;
  left: -20px;   
}



/*------------------おくとろ温泉------------------*/
.spa_main{
  position: relative; /*--親--*/
}
.spa_copy{
  position: absolute; /*--子--*/
  top: 70px;
  left: 100px;
}

.spa_copy_area{
  position: relative; /*--親--*/  
}
.spa_ill>li:nth-child(1){
  position: absolute; /*--子--*/
  top: -36px;
  left: -35px;
}
.spa_ill>li:nth-child(2){
  position: absolute; /*--子--*/
  top: -20px;
  right: 200px;
}.spa_ill>li:nth-child(3){
  position: absolute; /*--子--*/
  bottom: 20px;
  right: -30px;
}

.spa_text_area{
  display: flex;
  justify-content: space-between;
}
.spa_text_area>li:nth-child(1){
  padding-top: 300px;
  position: relative; /*--親--*/
}
.spa_text_area>li:nth-child(2){
  position: relative; /*--親--*/  
  width: 580px;
}

.spa_sub01{
  position: absolute; /*--子--*/
  top: -30px;
  left: -20px; 
  padding: 10px;
  background: #fff;
  text-shadow:0 0 15px #1f2023;
  filter: drop-shadow(0 0 5px rgba(31,32,35,1));  
  transform: rotate(-5deg); 
  z-index: 20;
}
.spa_copy02{
  position: absolute; /*--子--*/
  top: 240px;
  left: 150px;
  z-index: 30;
}
.spa_model{
  position: absolute; /*--子--*/
  top: -280px;
  left: 0;
}

.spa_sub02{
  position: absolute; /*--子--*/
  top: -110px;
  right: -40px; 
}
/*------------------やまのやど------------------*/
.cot_text_area{
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;  
}
.cot_text_area>li:nth-child(1){
  width: 660px;
}
.cot_text_area>li:nth-child(2){
  width: 361px;
}

.cot_sub{
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}

.cot_text{
  margin-bottom: 10px;
}



/*------------------様々なスポット------------------*/
.spot_content{
  margin-top: 70px;
  padding: 70px 0;
  background-size: auto auto;
  background-color: rgba(250, 219, 218, 1);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(245, 210, 209, 1) 8px, rgba(245, 210, 209, 1) 16px );
}

.spot_title{
  padding-bottom: 32px;
  text-align: center;
}

.spot_area{
  display: flex;
  justify-content: space-between;
}
.spot_area>li:nth-child(1){
  position: relative; /*--親--*/ 
}
.spot_area>li:nth-child(2){
  width: 490px;
}

.spot_copy{
  position: absolute; /*--子--*/
  bottom: 280px;
  left: 160px; 
}

.shrine_neme{
  padding-top: 20px;
}

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

.okutoro_bbq{
  position: absolute; /*--子--*/
  top: -15px;
  left: -105px; 
}

.okutoro_text{
  padding-top: 22px;
  margin:0 0 0 auto; /*--みぎへ--*/  
  width: 334px;
}
/*------------------カフェ山花------------------*/
.cafe_area{
  margin-top: 70px;
  padding: 0 22px 22px;
  background: #fde57a;
  position: relative; /*--親--*/  
}

.cafe_img{
  position: relative; /*--ずらし--*/
  top: -20px;
  left: -70px;
}

.cafe_sign{
  position: absolute; /*--子--*/
  top: -20px;
  right: 50px;
}

.cafe_inside{
  position: absolute; /*--子--*/
  top: 280px;
  right: 22px;
}

.cafe_text_area{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cafe_text_area>li:nth-child(1){
  width: 580px;
}
.cafe_text_area>li:nth-child(2){
  width: 372px;  
}

.ikeda{
  padding: 16px; 
  background: #fff; 
  position: relative; /*--親--*/   
}
.ikeda_copy{
  position: absolute; /*--子--*/
  top: -40px;
  left: -20px;
  z-index: 20;
}



/*------------------バックナンバー部分------------------*/
.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:after{
  content: "";
  width: 32%;
}
.back:before{
  content: "";
  width: 32%;
  order: 1;
}

.back>li{
  width: 32%;
}

.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;
  }

  
  
   /*------------------ふわっと表示------------------*/
  .fadein{
    opacity : 0;
    transform: translateY(80px);
    transition: all 1s;
  }
  
  
  
  /*------------------共通テキスト------------------*/
  .neme{
    padding-bottom: 10px;
  }

  .text{
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

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

  .info{
   padding-top: 10px;
  }
  
  .info>li{
    padding-bottom: 6px;
  }

  .info_ann{
    font-size: 1.1rem;   
  }
  /*------------------マップ部分------------------*/
  .add_area{
    display: block; /*--解除--*/
  }
  
  .add_area>li:first-child{
    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%;   
  }   
  
  
  
  /*------------------きずなびと------------------*/
  .kizuna>li:nth-child(1){
    padding-bottom: 10px;
  }
  .kizuna>li:nth-child(2){
    padding-bottom: 6px;
    font-size: 1.2rem;
  }
  .kizuna>li:nth-child(3){
    padding-bottom: 5px;
  }
  .kizuna>li:nth-child(4){
    font-size: 1.4rem;
    line-height: 1.5;  
  }



  /*------------------メイン画像------------------*/
  .title_area{
    margin: 145px 0 25px;
  }

  h1{
    width: 84vw;
    top: 45%;
    transform: translate(-50%, -55%);  
  }

  .mark{
    width: 12vw;
    top: 10px;
    right: 10px;
  }

  .main_text_area{
    display: block;
  }
  
  .main_text_area>li:nth-child(1){
    padding-bottom: 13px;
  } 
  .main_text_area>li:last-child{
    width: auto;
  }

  .title_copy{
    padding-bottom: 16px;
  }

  .title_text{
    font-size: 1.6rem;
  }

  .low_text{
    font-size: 1.2rem;
    padding-top: 6px;
    text-align: justify;
    text-justify: inter-ideograph; /*--edge--*/  
    padding-left: 1.2rem; /*--2行目以降を1文字下--*/
    text-indent: -1.2rem; /*--2行目以降を1文字下--*/
  }
  /*------------------飛び地------------------*/
  .enclave{
    padding-top: 17px;
    display: block;
  }

  .enclave_text_area{
    padding-top: 10px;
    width: auto; 
  }

  .enclave_text{
    font-size: 1.4rem;
    line-height: 1.6; 
  }
  /*------------------ドライブカー------------------*/
  .drive_area{
    margin-top: 20px;
    padding: 20px 0;
  }

  .car_area{
    display: block;
  }
  .car_area>li:last-child{
    width: auto;
  }

  .drive_title_low{
    padding-bottom: 12px;
    text-align: center;
  }

  .drive_copy{
    font-size: 1.7rem;
    padding-bottom: 8px;
    text-align: center;
  }

  .drive_text{
    font-size: 1.4rem;
    line-height: 1.4;
    padding-bottom: 0; 
  }
  /*------------------の詳細はコチラから------------------*/
  .balloon_area{
    top: -86px;
    right: -10px;
  }
  .balloon_btm{ /*--吹き出し本体--*/
    padding: 10px 10px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .balloon_btm:before{ /*--吹き出し--*/ 
    left: -34px;
    width: 8px;
    height: 8px;
  }
  .balloon_btm:after{ /*--吹き出し--*/
    left: -20px;
    width: 14px;
    height: 14px;
    bottom: 3px;
  }  

  
  
  /*------------------アイスマン------------------*/
  .ice_copy01{
    width: 38vw;
    top: 10px;
    left: 20px;
  }

  .sub_img{
    position: relative; /*--親--*/ 
    padding-bottom: 15px;
  }

  .ice_copy02{
    width: 26vw;
    top: 42px;
    right: 10px;
  }   

  .ice_text_area{
    display: block;
  }
  .ice_text_area>li:nth-child(1){
    padding-top: 17px;
  }
  .ice_text_area>li:nth-child(2){
    width: auto;
  }
  .ice_logo{
    width: 18vw;
    top: -280px;
  }
  
  .sub_img03{
    width: 38vw;
    top: -290px;
    right: -10px;
    padding: 8px;  
  }

  .sub_heading{
    font-size: 1.4rem;
    padding-bottom: 5px;
  }

  .sub_text{
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .sub_info{
    font-size: 1.1rem; 
  }

  .sub_pat{
    margin-top: 20px;
    padding: 10px;
  }

  .raf_area{
    margin: 30px 0 40px;
    display: block;
  }

  .raf_copy01{
    width: 26vw;
    top: -20px;
    right: 120px;
  }
  .raf_area>li:nth-child(2){
    width: auto; 
    padding: 10px 10px 10px;
  }
  .raf_area>li:nth-child(3){
    width: 40vw;
    top: 100px;
    right: -10px;
  }

  .raf_copy02{
    width: 30vw;
    top: -80px;
    right: -5px; 
  }



  /*------------------観光筏下り------------------*/
  .kitayama_area{
    padding-bottom: 30px; 
  }

  .kitayama_text_area{
    padding-top: 17px;
    display: block;
  }
  .kitayama_text_area>li:nth-child(1){
    width: auto;   
  }
  .kitayama_text_area>li:nth-child(2){
    width: auto;   
  }

  .kitayama_sub{
    width: 34vw;
    top: -76px;
    right: 10px; 
    padding: 8px; 
  }

  .kitayama_neme{
    width: 72vw;
  }  
  
  .yamamoto{
    margin-top: 30px;
    padding: 10px; 
  }
  .yamamoto_copy{
    width: 50vw;
    top: -30px;
    left: -10px;
  }




  /*------------------じゃばらいず北山------------------*/
  .jaba_area{
    padding: 30px 0;
  }

  .jaba_text_area{
    padding-top: 0;
    display: block;
  }
  .jaba_text_area>li:nth-child(1){
    width: auto;
  }
  .jaba_text_area>li:nth-child(2){
    width: auto;
  }

  .jaba_sub_img{
    padding-bottom: 17px;
  }

  .jaba_neme{
    width: 72vw;
  }   
  
  .jaba_topic{
    margin-top: 20px;
    padding: 10px; 
  }
  .jaba_topic>li:nth-child(1){
    font-size: 1.6rem;
  }
  .jaba_topic>li:nth-child(2){
    font-size: 3rem;
  }
  .jaba_topic>li:nth-child(3){
    padding-bottom: 4px;  
    font-size: 2rem;
  }
  .jaba_topic>li:nth-child(4){
    font-size: 1.4rem;
  }
  .jaba_topic_img{
    width: 46vw;
    top: -50px;
    right: 20px;   
  }

  .jaba_kizuna_copy{
    width: 48vw;
    top: -45px;
    left: -10px;   
  }



  /*------------------おくとろ温泉------------------*/
  .spa_main{
    z-index: -20;
  }  
  
  .spa_copy{
    width: 70vw;
    top: 20px;
    left: 20px;
  }

  .spa_sub_img{
    margin-right: 40px;
  }
  
  .spa_neme{
    width: 86vw;
  }   
  
  .spa_text_area{
    display: block;
  }
  
  .spa_text_area>li:nth-child(1){
    padding-top: 20px;
  }
  .spa_text_area>li:nth-child(2){
    padding-top: 17px;  
    width: auto;
  }

  .spa_copy02{
    width: 120px;
    top: -30px;
    left: 160px;
  }
  .spa_model{
    width: 40vw;
    top: -110px;
    z-index: -10;
  }

  .spa_sub02{
    width: 26vw;
    top: -90px;
    right: -10px; 
  }
  /*------------------やまのやど------------------*/
  .cot_text_area{
    padding-top: 20px;
    display: block; 
  }
  .cot_text_area>li:nth-child(1){
    width: auto;
  }
  .cot_text_area>li:nth-child(2){
    width: auto;
  }

  .cot_sub{
    padding-top: 0;
    padding-bottom: 6px;
  }

  .cot_text{
    margin-bottom: 2px;
  }



  /*------------------様々なスポット------------------*/
  .spot_content{
    margin-top: 20px;
    padding: 30px 0;
  }

  .spot_title{
    padding-bottom: 20px;
    margin: 0 30px;
  }

  .spot_area{
    display: block;
  }
  .spot_area>li:nth-child(1){
    padding-bottom: 30px; 
  }
  .spot_area>li:nth-child(2){
    width: auto;
  }

  .spot_copy{
    width: 110px;
    bottom: 140px;
    left: 20px; 
  }

  .shrine_neme{
    padding-top: 17px;
    width: 55vw;
  }

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

  .okutoro_bbq{
    position: static; /*--子--*/
  }

  .okutoro_text{
    padding-top: 6px;
    padding-bottom: 10px;
    margin:0 0 0 0; /*--みぎへ--*/  
    width: auto;
  }
  /*------------------カフェ山花------------------*/
  .cafe_area{
    margin-top: 20px;
    padding: 10px 10px 10px;
  }

  .cafe_img{
    position: static;
  }

  .cafe_sign{
    width: 90px;
    top: 120px;
    right: -10px;
  }
  
 .cafe_neme{
    padding-top: 17px;
    width: 60vw;
  }

  .cafe_text_area{
    display: block;
  }
  .cafe_text_area>li:nth-child(1){
    width: auto;
  }
  .cafe_text_area>li:nth-child(2){
    width: auto;  
  }

  .ikeda{
    padding: 12px;
    margin-top: 10px;
  }
  .ikeda_copy{
    width: 46vw;
    top: -40px;
    left: 160px;
  }  
  
  

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

  .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;
  }

  
  
 }









