@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 */
  overflow: auto;
}

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

a{
  color: #4d5156;
}

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

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

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

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

.pc_br{
  display: none;
}

.navToggle{
  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)}
}
.shake02{
  animation: hurueru02 .8s  infinite;
}
@keyframes hurueru02 {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(2px, 2px) rotateZ(1deg)}
  50% {transform: translate(2px, 0px) rotateZ(0deg)}
  75% {transform: translate(0px, 2px) rotateZ(1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}
/*------------------縦のふわふわ指定------------------*/
.fuwafuwa01{
  animation: fuwafuwa01 2s infinite ease-in-out;
}
@keyframes fuwafuwa01 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
.fuwafuwa03{
  animation: fuwafuwa01 1.8s infinite ease-in-out;
}
@keyframes fuwafuwa03 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fuwafuwa04{
  animation: fuwafuwa01 2.2s infinite ease-in-out;
}
@keyframes fuwafuwa04 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/*------------------横のふわふわ指定------------------*/
.fuwafuwa02{
  animation: fuwafuwa02 2.5s infinite ease-in-out;
}
@keyframes fuwafuwa02 {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}



/*------------------ヘッダー------------------*/
.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: rgb(255, 255, 255, 0.9);
}



/*------------------パンくずリスト部分------------------*/
.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;
}



/*------------------共通テキスト------------------*/
.spring_img{
  position: relative; /*--親--*/
}

.name{
  padding-bottom: 10px;
}

.name_copy{
  margin-bottom: 10px;  
  font-size: 2rem;
  line-height: 1.4;  
  font-weight: 600;
}

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

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

.size{  /*--アイコン--*/
  font-size: 1.5rem;
  margin-left: 5px;
}
/*------------------マップ部分------------------*/
.add_area{
  display: flex;
}
.add_area>li:first-child{
  padding-right: 18px;
}

.vertical_map{
  padding-bottom: 18px;   
}



/*------------------メイン画像------------------*/
.main_area{
  padding-bottom: 60px;
  background: linear-gradient(135deg, rgba(248,197,172,1) 0%, rgba(255,255,255,1) 50%, rgba(248,197,172,1) 100%);
}

.main_img{
  padding: 200px 0 20px;
  position: relative; /*--親--*/
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hot_map{
   width: 654px; 
}
.cls-1{
  fill: #ada94c;
}
.cls-2, .cls-4{
  fill: #fff;
}
.cls-3, .cls-6{
  fill: none;
  stroke-width: 7.2px;
}
.cls-3{
  stroke: #ada84c;
}

.cls-4{
  stroke: #0072bf;
  stroke-width: 3.6px;
}
.cls-5, .cls-7{
  fill: #007a9a;
}
.cls-6{
  stroke: #fff;
}

.goodwill{
  width: 795px;
  position: absolute; /*--子--*/
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.spring_title{
  position: absolute; /*--子--*/
  top: 160px;
  right: -30px;
  z-index: 5;  
}

.hot_ill03{
  position: absolute; /*--子--*/
  top: 50px;
  left: -120px;
}

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

.hot_ill{
  position: absolute; /*--子--*/
  top: 300px;
  right: 390px;
  z-index: 10;  
}

.hot_ill02{
  position: absolute; /*--子--*/
  bottom: 30px;
  left: -50px;
}
/*------------------スライド画像------------------*/
.slide{
  margin-top: 138px;  
  display: flex;
  overflow: hidden;
}
.slide-wrapper{
  display: flex;
  animation: slide-flow 90s infinite linear 0s both;  
}
.slide-wrapper>li{
  width: calc(100vw / 4); /* スライド枚数 */
}

.slide-wrapper img{
  display: block;
  width: 100%;
  transition-duration: 0.3s; 
}

@keyframes slide-flow {
  0% {transform: translatex(0);}
  100% {transform: translatex(-100%);}
}

.paused:hover .slide-wrapper{
   animation-play-state: paused;
 }
.paused:hover .slide-wrapper img:hover{   
  transform: scale(1.1);	
	transition-duration: 0.3s;
 }

.title_text>li:nth-child(1){
  font-size: 2rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}
.title_text>li:nth-child(2){
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  padding-top: 10px;
  padding-left: 1.4rem; /*--2行目以降を1文字下--*/
  text-indent: -1.4rem; /*--2行目以降を1文字下--*/
}



/*------------------なまえ拡大------------------*/
#spring_a,#spring_b,#spring_c,
#spring_d,#spring_e,#spring_f,
#spring_g,#spring_h{
	transition-duration: 0.3s;
}
#spring_a:hover,#spring_b:hover,#spring_c:hover,
#spring_d:hover,#spring_e:hover,#spring_f:hover,
#spring_g:hover,#spring_h:hover{
  transform: translate(6px,6px);
  transition-duration: 0.3s;
  opacity: 0.7;
}
/*------------------ページ内リンク------------------*/
#yuno{ /*--湯の峰温泉--*/
  margin-top: -50px;
  padding-top: 50px;
}

#sen{ /*--川湯温泉--*/
  margin-top: -50px;
  padding-top: 50px;   
}

#shimi{ /*--しみず温泉--*/
  margin-top: -50px;
  padding-top: 50px;   
}

#ikoi{ /*--すさみ温泉--*/
  margin-top: -50px;
  padding-top: 50px;   
}

#katsu{ /*--かつらぎ温泉--*/
  margin-top: -50px;
  padding-top: 50px;   
}

#manpa{ /*--和歌の浦温泉--*/
  margin-top: -50px;
  padding-top: 50px;  
}

#umi{ /*--紀伊日高温泉--*/
  margin-top: -50px;
  padding-top: 50px; 
}

#ryu{ /*--龍神温泉--*/
  margin-top: -300px;
  padding-top: 300px;   
}



/*------------------ドライブカー------------------*/
.drive_area{
  background-color: #fff;
  padding: 40px 0;
}

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

.drive_text{
  width: 500px;
}

.drive_text>li:nth-child(1){
  padding-bottom: 10px;  
  font-size: 2rem;
  font-weight: 600;
}
.drive_text>li:nth-child(2){
  padding-bottom: 18px;  
  font-size: 3.2rem;
  font-weight: 700;
}
.drive_text>li:nth-child(3){
  padding-bottom: 10px;  
  font-size: 2.3rem;
  font-weight: 700;
}
.drive_text>li:nth-child(4){
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/ 
}
/*------------------詳細はコチラから------------------*/
.drive_info{
  position: relative; /*--親--*/
}

.balloon_area{
  position: absolute; /*--子--*/
  top: 30px;
  right: 100px;
}
.balloon_btm>a{ /*--吹き出し本体--*/
  position: relative; /*--親--*/  
  width: 180px;
  display: block;
  padding: 10px 15px;
  background: #e60069;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}
.balloon_btm>a:before{ /*--吹き出し--*/ 
  content: "";
  position: absolute; /*--子--*/
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #e60069;
  border-radius: 50%;
}
.balloon_btm>a:after{ /*--吹き出し--*/
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #e60069;
  border-radius: 50%;
}
/*------------------試乗車・展示車情報はこちら------------------*/
.test_car>a{
  margin-top: 16px;
  display: inline-block;
  padding: 9px 0;
  width: 500px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  color: #fff;   
  background-color: #e6003d;
  border: solid 1px #e6003d;
  border-radius: 18px;
  transition: 0.4s;   
}
.test_car>a:hover{ 
  color: #e6003d;
  background-color: #fff;
  border: solid 1px #e6003d;
}



/*------------------湯の峰温泉------------------*/
.yuno_area{
  margin-bottom: 60px; 
  background: linear-gradient(180deg, rgba(244,167,122,1) 0%, rgba(255,255,255,1)100%);   
}

.yuno_main_img{
  position: relative; /*--親--*/  
}
.yuno_main_img>img{
  width: 100vw;
  height: 100%;  
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.yuno_title{
  position: absolute;
  top: 0;
  left: 0;
}
.yuno_title>img{
  width: 100vw;
  height: 100%;  
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.yuno_main_copy{
  position: absolute;
  top: 40px;
  left: 40px;
}

.yuno_ill{
  position: absolute; /*--子--*/
  bottom: -260px;
  right: 0;
}

.yuno_car{
  position: absolute; /*--子--*/
  bottom: -380px;
  right: 110px;
  z-index: 5;
}

.yuno_content{
  margin-bottom: 40px;
  padding: 32px 32px 20px;
  position: relative; /*--親--*/  
  width: 736px;
  background: #db5434;
  border-radius: 0 0 30px 30px;
  box-sizing: border-box;
}

.yuno_img{
  position: absolute; /*--子--*/
  top: -84px;
  left: 30px;
}

.yuno_name{
  padding-left: 360px;
}

.yuno_copy,.yuno_text,.yuno_info{
  color: #fff;
}

.yuno_info_link>a{
  color: #ffff00; 
}
.yuno_info_link>a:hover{
  color: #c71585;
  box-shadow: inset 300px 0 0 0 #fff;  
}
/*------------------つぼ湯------------------*/
.tubo_main_img>li:nth-child(2){
  padding-top: 20px;
  text-align: end;
}

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

.tubo_ill04{
  position: absolute; /*--子--*/
  bottom: -20px;
  left: -140px;
}

.tubo_img01_area{
  position: absolute; /*--子--*/
  top: -210px;
  right: -60px;
}
.tubo_img01{
  position: relative; /*--親--*/
  
}
.tubo_copy01{
  width: 250px;
  position: absolute; /*--子--*/
  top: -34px;
  left: 20px;
}
.tubo_ill01{
  position: absolute; /*--子--*/
  bottom: 0;
  right: 260px;
  width: 36%;
}

.tubo_patt{
  position: absolute; /*--子--*/
  bottom: 320px;
  right: -80px;
}

.tubo_img02_area{
  position: absolute; /*--子--*/
  bottom: 240px;
  right: 0;
}
.tubo_img02{
  position: relative; /*--親--*/  
}
.tubo_img02_copy{
  position: absolute; /*--子--*/
  top: -70px;
  left: 20px;
}

.tubo_img03_area{
  position: absolute; /*--子--*/
  bottom: -20px;
  right: -40px;
}
.tubo_img03{
  position: relative; /*--親--*/  
}
.tubo_img03_copy{
  position: absolute; /*--子--*/
  top: -50px;
  left: -10px;
}



/*------------------川湯温泉------------------*/
.sen_area{
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 30%, rgba(227,232,193,1)100%);
  position: relative; /*--親--*/
}

.sen_patt{
  position: absolute; /*--子--*/
  bottom: 70px;
  left: 0;
}

.sen_copy{
  position: absolute; /*--子--*/
  top: -20px;
  left: -20px;
}

.sen_img01_area{
  position: absolute; /*--子--*/
  bottom: -60px;
  right: -60px;
}

.sen_img01{
  position: relative; /*--親--*/  
}
.sen_copy01{
  position: absolute; /*--子--*/
  top: -20px;
  left: 10px;
}

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

.sen_img02{
  position: absolute; /*--子--*/
  top: -10px;
  right: 10px;
}



/*------------------しみず温泉------------------*/
.shimi_area{
  padding: 80px 0;
  background: linear-gradient(200deg, rgba(247,187,158,1) 0%, rgba(255,255,255,0)40%);   
}

.charm_title{
  padding-bottom: 42px;
}

.shimi_main_img{
  padding-bottom: 38px;
  position: relative; /*--親--*/  
}

.shimi_copy{
  position: absolute; /*--子--*/
  top: -20px;
  right: -20px;
  z-index: 5;
}

.shimi_model_l{
  position: absolute; /*--子--*/
  top: -160px;
  left: -40px;  
}

.shimi_model01{
  position: relative; /*--親--*/  
}
.shimi_model_copy01{
  position: absolute; /*--子--*/
  bottom: -30px;
  right: 0;
}

.shimi_model_r{
  position: absolute; /*--子--*/
  top: -260px;
  right: -60px;  
}

.shimi_model{
  position: relative; /*--親--*/  
}
.shimi_model_copy{
  position: absolute; /*--子--*/
  top: -70px;
  left: 50px;
}

.shimi_img02{
  position: absolute; /*--子--*/
  bottom: -120px;
  left: 390px;
}

.shimi_img03{
  position: absolute; /*--子--*/
  bottom: -100px;
  right: -60px;
}

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

.shimi_sub_img{
  display: flex;
}
.shimi_sub_img>li:nth-child(1){
 padding-right: 14px;
}
/*------------------和紙作り------------------*/
.experi_area{
  margin-top: 50px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #c24631;
  border-radius: 30px;
}
.experi_area>li:nth-child(1){
  position: relative; /*--親--*/    
  width: 320px;
}

.experi_title{
  width: 218px;
  position: absolute; /*--子--*/
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.experi_text{
  color: #fff; 
}
.experi_text>li:nth-child(1){
  padding-bottom: 6px;
  font-size: 1.8rem;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/  
}
.experi_text>li:nth-child(2){
  font-size: 2.4rem; 
  font-weight: 500;
}

.experi_img{
  display: flex;
}
.experi_img>li:nth-child(1){
  padding-right: 13px;
}



/*------------------すさみ温泉------------------*/
.ikoi_area{
  padding: 70px 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(238,185,175,1)100%);  
}

.ikoi_copy{
  position: absolute; /*--子--*/
  top: -20px;
  left: 40px;
}

.ikoi_main_copy{
  position: absolute; /*--子--*/
  top: 60px;
  left: 40px;
}

.ikoi_img{
  width: 50vw;
}
.ikoi_img>img{
  width: 100%;
}

.ikoi_content{
  display: flex;
  justify-content: space-between;
}

.ikoi_content>li:nth-child(1){
  flex: 1;  
  margin-left: calc(50% - 50vw);
  margin-right: 3%;
}
.ikoi_content>li:nth-child(2){
  position: relative; /*--親--*/
}

.ikoi_img02{
  position: absolute; /*--子--*/
  bottom: 350px;
  right: -50px;
}

.ikoi_model{
  position: absolute; /*--子--*/
  bottom: 160px;
  right: -55px;
}

.ikoi_img01{
  position: absolute; /*--子--*/
  bottom: -50px;
  right: -100px;
}



/*------------------かつらぎ温泉------------------*/
.katsu_area{
  padding: 70px 0;
  background: linear-gradient(90deg, rgba(209,196,224,1) 0%, rgba(255,255,255,0)100%); 
}

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

.katsu_img{
  padding-bottom: 24px;
}

.katsu_copy{
  position: absolute; /*--子--*/
  top: -20px;
  left: -20px;
}

.katsu_text{
  width: 800px;
}

.katsu_img03{
  position: absolute; /*--子--*/
  top: 40px;
  right: 0;
}

.katsu_copy02{
  position: absolute; /*--子--*/
  top: 320px;
  right: -30px;
}

.katsu_model{
  position: absolute; /*--子--*/
  bottom: -70px;
  right: -20px;
}



/*------------------和歌の浦温泉------------------*/
.manpa_area{
  padding: 70px 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,232,158,1)100%);
}

.manpa_img{
  padding-bottom: 24px;
}

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

.manpa_content{
  position: relative; /*--親--*/
  margin: 0 0 0 auto;
  width: 800px;
}

.manpa_copy03{
  position: absolute; /*--子--*/
  top: -15px;
  left:-180px;
}

.manpa_img03{
  position: absolute; /*--子--*/
  top: 120px;
  left: -230px;
}

.manpa_copy02{
  position: absolute; /*--子--*/
  bottom: 370px;
  left: -280px;
}

.manpa_model{
  position: absolute; /*--子--*/
  bottom: -40px;
  left: -280px;
}



/*------------------紀伊日高温泉------------------*/
.umi_area{
  margin-bottom: 80px;
  padding: 70px 0;
  background: linear-gradient(90deg, rgba(178,218,184,1) 0%, rgba(255,255,255,0)100%); 
}

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

.umi_img{
  width: 50vw;
}
.umi_img>img{
  width: 100%;
}

.umi_content{
  display: flex;
  flex-direction: row-reverse;
}
.umi_content>li:nth-child(1){
  flex: 1;  
  margin-right: calc(50% - 50vw);
  margin-left: 3%;
}

.umi_content>li:nth-child(2){
  position: relative; /*--親--*/  
}

.umi_img01{
  position: absolute; /*--子--*/
  top: 320px;
  right: -70px;
}



/*------------------龍神温泉------------------*/
.ryu_area{
  padding: 80px 0;
  background: linear-gradient(-151deg, rgba(255,255,255,0) 30%, rgba(247,187,158,1)100%);  
}

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

.ryu_content{
  padding-bottom: 30px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.ryu_content>li:nth-child(1){
  flex-shrink: 0; /*--つぶれ回避--*/
}
.ryu_content>li:nth-child(2){
  position: relative; /*--親--*/
}

.ryu_img05{
  position: absolute; /*--子--*/
  bottom: -300px;
  right: 30px;
}

.ryu_img01_copy{
  position: absolute; /*--子--*/
  bottom: 370px;
  left: 200px;
}

.ryu_img01{
  position: absolute; /*--子--*/
  bottom: 170px;
  right: -34px;
  z-index: 5;
}

.ryu_ill02{
  position: absolute; /*--子--*/
  bottom: 360px;
  left: -70px;
}

.ryu_text{
  width: 430px;
}

.ryu_sub_img{
  padding-top: 390px;
  display: flex;
}
.ryu_sub_img>li:nth-child(1){
  padding-right: 16px;
}
/*------------------のんびり散策------------------*/
.around_title{
  padding: 54px 0 24px;
  text-align: center;
}

.around_area{
  display: flex;
  justify-content: space-between;
}
.around_area>li{
  width: 500px;
}

.around_content>li:nth-child(2){
  padding: 14px 0 6px;
  font-size: 2rem;
  font-weight: 500;
  color: #dd6b47;
}
.around_content>li:nth-child(3){
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-ideograph; /*--edge--*/   
}



/*------------------バックナンバー部分------------------*/
.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 2px #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: 650px) and (max-width: 960px){
  body{
    min-width: 1200px;
  } 
}





/*------------------SP版------------------*/
@media screen and (max-width: 649px){
  body{
    min-width: auto;
  }  
  
  .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;
  }
  
  
  
  /*------------------共通テキスト------------------*/
  .spring_img{
    padding-bottom: 10px;
  }
  
  .name{
    padding-bottom: 8px;
  }

  .name_copy{
    margin-bottom: 7px;  
    font-size: 1.5rem;
    line-height: 1.4;  
  }  
  
  .text{
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

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

  .info_link>a{
    font-size: 1.3rem;    
  }
  
  .size{  /*--アイコン--*/
    font-size: 1.3rem;
    margin-left: 8px;
  }    
  
  .info{
   padding-top: 10px;
  }
  
  .info>li{
    padding-bottom: 6px;
  }

  .info_ann{
    font-size: 1.1rem;   
  }
  
  .info_mg{
    margin-left: 6px;   
  } 
  
  
  
  /*------------------マップ部分------------------*/ 
  .vertical_map{
    padding-bottom: 0;   
  }  
  .add_area>li:first-child{
    padding-right: 0;
  }  

  .add_area{
    display: block;
  }
  /*------------------sp用グーグルマップ------------------*/  
  .access_map{
    position: relative;
    width: 100%;
    padding-bottom: 62.9%; /* = height ÷ width × 100 */
  }  
  .access_map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
  }   

  

  /*------------------メイン画像------------------*/
  .main_area{
    padding-bottom: 30px;
  }

  .main_img{
    padding: 120px 0 10px;
    display: block;
  }

  .hot_map{
     width: auto; 
  }

  .goodwill{
    width: 90vw;
    top: -8px;
  }

  .spring_title_sp{
    margin-top: -40px;
    display: flex;
    align-items: flex-end;
  }  
  .spring_title_sp>li:nth-child(2){
    width: 64vw;
  }  
  
  .hot_ill03{
    top: 64px;
    left: 0;
    width: 74vw;
  }

  .hot_ill01{
    top: 110px;
    right: -40px;
    width: 30vw;
  }

  .hot_ill02{
    bottom: 260px;
    left: -40px;
    width: 36vw;
  }


  
  /*------------------スライド画像------------------*/
  .slide{
    margin-top: 135px;
  }

  .slide-wrapper>li{
    width: calc(100vw / 2); /* スライド枚数 */
  }
  
  .title_text>li:nth-child(1){
    font-size: 1.6rem;
    line-height: 1.6; 
  }
  .title_text>li:nth-child(2){
    padding-top: 10px;  
    font-size: 1.2rem;
    padding-left: 1.2rem; /*--2行目以降を1文字下--*/
    text-indent: -1.2rem; /*--2行目以降を1文字下--*/
  }
    
  

  /*------------------ドライブカー------------------*/
  .drive_area{
    padding: 20px 0;
  }

  .drive_text_info{
    display: block;
  }

  .drive_text{
    width: auto;
  }

  .drive_text>li:nth-child(-n+2){
    padding-top: 10px;
    display: inline-block;
  }  
  
  .drive_text>li:nth-child(1){
    padding-bottom: 10px;    
    font-size: 2rem;
  }
  .drive_text>li:nth-child(2){
    padding-bottom: 8px;   
    font-size: 3rem;
  }
  .drive_text>li:nth-child(3){
    padding-bottom: 6px;
    font-size: 1.8rem;
  }
  
  .drive_text>li:nth-child(4){
    font-size: 1.4rem;
    line-height: 1.5;
  }  
  /*------------------詳細はコチラから------------------*/
  .balloon_area{
    top: -30px;
    right: 15px;
  }
  .balloon_btm>a{ /*--吹き出し本体--*/
    width: 140px;
    padding: 8px 10px;
  }
  .balloon_btm>a:before{ /*--吹き出し--*/ 
    display: none;
  }
  .balloon_btm>a:after{ /*--吹き出し--*/
    display: none;
  }
  /*------------------試乗車------------------*/
  .test_car>a{
    margin-top: 10px;
    display: block;  
    padding: 9px 0;
    width: auto;
  }

  

  /*------------------湯の峰温泉------------------*/
  .yuno_area{
    margin-bottom: 34px;   
  }

  .yuno_title{
    top: 12px;
    left: 50%;
    transform: translateX(-50%); 
    width: 90vw;
  }

  .yuno_main_copy{
    top: 20vh;
    left: 30px;
    width: 36vw;
  }

  .yuno_content{
    margin-bottom: 24px;
    padding: 10px 12px 10px;
    width: auto;
    border-radius: 0 0 16px 16px;
  }

  .yuno_name{
    padding-left: 0;
  }

  .yuno_onsen{
    width: 50vw;
  }    
  /*------------------つぼ湯------------------*/
  .tubo_main_img>li:nth-child(2){
    padding-top: 10px;
  }

  .tubo_name{
    width: 26vw;
  }   
  
  .tubo_content{
    display: block;
  }
  .tubo_content>li:nth-child(1){
    width: auto;
  }
  .tubo_content>li:nth-child(2){
    width: auto;
  }

  .tubo_img01_area{
    top: -110px;
    right: -10px;
    width: 48vw;
  }
  .tubo_copy01{
    width: 38vw;
    top: -20px;
    left: 20px;
  }

  
  
  /*------------------川湯温泉------------------*/
  .sen_area{
    padding: 40px 0;
  }

  .sen_patt{
    bottom: 10px;
  }

  .sen_copy{
    top: -10px;
    left: -5px;
    width: 36vw;
  }

  .sen_name{
    width: 38vw;
  }   
  
  .sen_img01_area{
    bottom: -90px;
    right: -10px;
  }

  .sen_img01{
    width: 45vw;
  }
  
  .sen_copy01{
    top: -10px;
    left: 10px;
    width: 36vw;
  }

  .sen_content{
    display: block;

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



  /*------------------しみず温泉------------------*/
  .shimi_area{
    padding: 25px 0 30px;   
  }

  .charm_title{
    padding-bottom: 34px;
  }

  .shimi_main_img{
    padding-bottom: 10px;
  }

  .shimi_copy{
    top: -10px;
    right: -10px;
    width: 40vw;
  }

  .shimi_name{
    width: 40vw;
  }   
  
  .shimi_model_l{
    top: -80px;
    left: -15px; 
    width: 28vw;
  }

  .shimi_model_copy01{
    bottom: -30px;
  }

  .shimi_img02{
    bottom: -80px;
    left: 190px;
    width: 45vw;
  }

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

  .shimi_sub_img{
    padding-bottom: 30px;
    justify-content: space-between;
  }
  .shimi_sub_img>li:nth-child(1){
   padding-right: 0;
  }
  .shimi_sub_img>li{
   width: 48%;
  }  
  /*------------------和紙作り------------------*/
  .experi_area{
    margin-top: 35px;
    padding: 36px 12px 12px;
    display: block;
    border-radius: 18px;
  }
  
  .experi_area>li:nth-child(1){
    width: auto;
  }

  .experi_title{
    width: 55vw;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }

  .experi_text>li:nth-child(1){
    padding-bottom: 6px;
    font-size: 1.3rem;
    line-height: 1.5;  
  }
  .experi_text>li:nth-child(2){
    padding-bottom: 10px;
    font-size: 2rem; 
  }

  .experi_img{
    justify-content: space-between;
  }
  .experi_img>li:nth-child(1){
    padding-right: 0;
  }
  .experi_img>li{
    width: 48%;
  }

  

  /*------------------すさみ温泉------------------*/
  .ikoi_area{
    padding: 35px 0 25px;  
  }

  .ikoi_copy{
    top: -10px;
    left: -5px;
    width: 40vw;
  }

  .ikoi_main_copy{
    top: 40px;
    left: 10px;
    width: 40vw;
  }

  .ikoi_name{
    width: 85vw;
  }  
  
  .ikoi_img{
    width: auto;
  }
  .ikoi_img>img{
    width: auto;
  }

  .ikoi_content{
    display: block;
  }

  .ikoi_content>li:nth-child(1){
    margin-left: 0;
    margin-right: 0;
  }
  .ikoi_content>li:nth-child(2){
    position: static; /*--解除--*/
  }

  
  
  /*------------------かつらぎ温泉------------------*/
  .katsu_area{
    padding: 35px 0 25px; 
  }

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

  .katsu_img{
    padding-bottom: 10px;
  }

  .katsu_copy{
    top: -10px;
    left: -5px;
    width: 45vw;
  }

  .katsu_name{
    width: 60vw;
  }   
  
  .katsu_text{
    width: auto;
  }

  

  /*------------------和歌の浦温泉------------------*/
  .manpa_area{
    padding: 35px 0 25px;
  }

  .manpa_img{
    padding-bottom: 10px;
  }

  .manpa_copy{
    top: -10px;
    right: -10px;
    width: 45vw;
  }

  .manpa_name{
    width: 64vw;
  }   
  
  .manpa_content{
    margin: 0 0 0 0;
    width: auto;
  }

  .manpa_copy03{
    top: -15px;
    left: -10px;
    width: 38vw;
  }



  /*------------------紀伊日高温泉------------------*/
  .umi_area{
    margin-bottom: 40px;
    padding: 35px 0 25px;
  }

  .umi_copy{
    top: -10px;
    right: -10px;
    width: 45vw;
  }

  .umi_name{
    width: 80vw;
  }  
  
  .umi_img{
    width: auto;
  }
  .umi_img>img{
    width: auto;
  }

  .umi_content{
    display: block;
  }
  
.umi_content>li:nth-child(1){
  margin-right: 0;
  margin-left: 0;
}

  .umi_content>li:nth-child(2){
    position: static; /*--解除--*/  
  }



  /*------------------龍神温泉------------------*/
  .ryu_area{
    padding: 40px 0; 
  }

  .ryu_copy{
    top: -10px;
    right: -10px;
    width: 35vw;
  }

  .ryu_name{
    width: 50vw;
  }
  
  .ryu_content{
    padding-bottom: 20px;
    display: block;
  }

  .ryu_content>li:nth-child(2){
    position: static; /*--解除--*/
  }

  .ryu_img01_copy{
    position: static; /*--解除--*/
  }
  .ryu_img01_copy_sp{
    position: absolute; /*--子--*/
    bottom: 140px;
    left: 20px;
    width: 34vw;
  }
  
  .ryu_img01{
    position: static; /*--解除--*/
    bottom: 0;
    right: 0;
    z-index: 0;  
  }

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

  .ryu_text{
    width: auto;
  }

  .ryu_sub_img{
    padding-top: 0;
    display: block;
  }
  /*------------------のんびり散策------------------*/
  .around_title{
    padding: 25px 0 15px;
    margin: 0 30px;
  }

  .around_area{
    display: block;
  }
  .around_area>li{
    width: auto;
  }
  .around_area>li:nth-child(1){
    padding-bottom: 20px;
  }
  
  .around_content>li:nth-child(2){
    padding: 10px 0 5px;
    font-size: 1.4rem;
  }
  .around_content>li:nth-child(3){
    font-size: 1.3rem;
    line-height: 1.4;   
  }  
    
  

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

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

  
  
 }



