@charset "UTF-8";

html{
	font-size: 62.5%; 
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
	margin:0; 
	padding:0;
	overflow: auto;
	}

body{
	font-family: "avenir-next-lt-pro" , "Zen Kaku Gothic Antique", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	color: #303030;
	letter-spacing: 0.03em;
	line-height: 1.7;
	padding-top: 0!important;
	font-feature-settings: "palt";
	font-size: clamp(1.35rem, 1.7vw, 1.7rem);
  background-color:#fff
}

p{
	font-weight: 500;
}


:root{
	--green: #A8B89E;
	--ligreen: #E8F5E5;
	--liblue:#e5f1f5;
	--white:#fff;
	--mincho:"Zen Old Mincho", serif;;
	--inter:"Inter", sans-serif;
	--lex:"Lexend Giga", sans-serif;
	--yellow: #F5F5E5;
	--pink:#F9F2F2;	

	--grayblue:#ebf1fb;
	--whiteblue:#f0faff;

	--blue: #273775;
	--card-bg: #FFFFFF; /* 中央の白いボックス */
	--page-padding: 64px; /* 外側の余白 */
	--card-radius: 20px;  /* ボックスの角丸 */
	--triangle-size: 48px; /* 下の三角の高さ（px） */
	--max-width: 1200px;
}


a:hover{
	opacity: 0.7;
}

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

.sp{
	display: none;
}

.sp_02{
	display: none;
}

.pc{
	display: block;
}

.pc_02{
	display: block;
}

.ipad{
	display: none;
}

.mat_2{
	margin-top: 2%;
}

.mat_5{
	margin-top: 5%;
}

.pab_10{
	padding-bottom: 10%;
}

.te_ce{
	text-align: center;
}

.pa2{
	padding: 0 2%;
}

sup {
  font-size: 0.7em;
  vertical-align: super;
}






/* ---------------
	main
----------------*/


.wrap{
	margin: 0 5%;
}

.side-image {
	position: fixed;
	top: 0;
	bottom: 0;
	width: calc(50% - 250px);
	background-size: cover;
	background-position: center;
	z-index: 1;
	transition: background-image 0.3s;
  height: 100vh;
}
  
.side-left { 
	left: 0; 
  background-image: image-set(
    url("../img/back/back_l_01.webp") type("image/webp"),
    url("../img/back/back_l_01.jpg") type("image/jpeg")
  );
}

.side-right { 
	right: 0; 
  background-image: image-set(
    url("../img/back/back_r_01.webp") type("image/webp"),
    url("../img/back/back_r_01.jpg") type("image/jpeg")
  );
}


.side-left::before,
.side-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 1.2s ease;
}



body.is-walking .side-left { 
	left: 0;  
  background-image: image-set(
    url("../img/back/back_l_02.webp") type("image/webp"),
    url("../img/back/back_l_02.jpg") type("image/jpeg")
  );

}

body.is-walking .side-right { 
	right: 0; 
	background-image: image-set(
    url("../img/back/back_r_02.webp") type("image/webp"),
    url("../img/back/back_r_02.jpg") type("image/jpeg")
  );
}

body.is-nature .side-left { 
	left: 0; 
	background-image: image-set(
    url("../img/back/back_l_03.webp") type("image/webp"),
    url("../img/back/back_l_03.jpg") type("image/jpeg")
  );
}

body.is-nature .side-right { 
	right: 0; 
	background-image: image-set(
    url("../img/back/back_r_03.webp") type("image/webp"),
    url("../img/back/back_r_03.jpg") type("image/jpeg")
  );
}

body.is-experience .side-left { 
	left: 0; 
	background-image: image-set(
    url("../img/back/back_l_04.webp") type("image/webp"),
    url("../img/back/back_l_04.jpg") type("image/jpeg")
  );
}

body.is-experience .side-right { 
	right: 0; 
	background-image: image-set(
    url("../img/back/back_r_04.webp") type("image/webp"),
    url("../img/back/back_r_04.jpg") type("image/jpeg")
  );
}

body.is-access .side-left { 
	left: 0; 
	background-image: image-set(
    url("../img/back/back_l_01.webp") type("image/webp"),
    url("../img/back/back_l_01.jpg") type("image/jpeg")
  );  
}

body.is-access .side-right { 
	right: 0; 
	background-image: image-set(
    url("../img/back/back_r_01.webp") type("image/webp"),
    url("../img/back/back_r_01.jpg") type("image/jpeg")
  );
}


.center-scroll {
    position: relative;
    margin: 0 auto;
    max-width: 500px;
    height: 100vh;
    overflow-y: scroll;
    z-index: 2;
    background-color:#fff;
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}

.center-scroll::-webkit-scrollbar{
  	display: none;
}



/* ---------------
	top
----------------*/

#top-sentinel{
  height: 1px;
}

.top-bg-spacer {
  height: 90vh;
  background: #fff;   
  position: relative;
  z-index: 0;
}
 
.top {
  position: relative;
  z-index: 1;
  background-color: var(--green);
}

.top_up {
  position: fixed;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 500px;
  height: 100vh;
  aspect-ratio: 390 / 624;
  overflow: hidden;
  pointer-events: none; 
  transition: opacity .4s ease;
  background-color: #A7B79D;

}

.top_up .bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  background-position: center;
  background-repeat: no-repeat;
}


.bg1 {
  background-image: url(../img/back/top_01.png);
  /* 
  background-image: image-set(
    url("../img/back/top_01.webp") type("image/webp"),
    url("../img/back/top_01.jpg") type("image/jpeg")
  );
   */
  animation-name: fade1;
}

.bg2 {
  background-image: url(../img/back/top_02.png);
  /* 
  background-image: image-set(
    url("../img/back/top_02.webp") type("image/webp"),
    url("../img/back/top_02.jpg") type("image/jpeg")
  );
   */
  animation-name: fade2;
}

.bg3 {
  background-image: url(../img/back/top_03.png);
  animation-name: fade3;
}

.bg4 {
  background-image: url(../img/back/top_04.png);
  animation-name: fade4;
}


@media screen and (max-width: 500px) {
  .bg1 {
    background-image: url(../img/back/top_01_sp.png);


}

.bg2 {
   background-image: url(../img/back/top_02_sp.png);

}

.bg3 {
   background-image: url(../img/back/top_03_sp.png);

}

.bg4 {
   background-image: url(../img/back/top_04_sp.png);

}

.top_up{
  top: 50%;
}

.top-bg-spacer{
  height: 94vh;
}


}


@keyframes fade1 {
  0% {
    opacity: 0;
  }
  3% {
    opacity: 1; 
  }
  15% {
    opacity: 1;
  }
  22% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


@keyframes fade2 {
  0%, 20% { opacity: 0; }
  25%, 35% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes fade3 {
  0%, 45% { opacity: 0; }
  50%, 60% { opacity: 1; }
  75% { opacity: 0; }
}

@keyframes fade4 {
  0%, 70% { opacity: 0; }
  75%, 90% { opacity: 1; }
  100% { opacity: 0; }
}


.next-section{
  position: relative;
  background: #fff; 
}

.next-section::before {
  content: "";
  position: absolute;
  top: -100px;          
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  z-index: 0;
}

.next-section > * {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 500px) and (max-height: 888px) {
  .top-bg-spacer{
        height: 95vh;
  }
}


@media screen and (min-width: 500px) and (max-height: 600px) {
  .top-bg-spacer{
        height: 98vh;
  }

  .bg1 {
    background-image: url(../img/back/top_01_yoko.png);
   
  }

  .bg2 {
   background-image: url(../img/back/top_02_yoko.png);
  }

  .bg3 {
 background-image: url(../img/back/top_03_yoko.png);
  }

  .bg4 {
 background-image: url(../img/back/top_04_yoko.png);
  }
}






/* ---------------
	動き
----------------*/

.fadein {
  opacity: 0;
  transform: translateY(40px) scale(0.965);
  transition:
    opacity 7.0s cubic-bezier(0.02, 1, 0.12, 1),
    transform 5.2s cubic-bezier(0.08, 1, 0.18, 1);
}

.fadein.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.jiwajiwa {
  opacity: 0;
  transition-duration: 3.2s;
  filter: blur(2px);
  transition:
    opacity 3.6s cubic-bezier(0.12,1,0.22,1),
    filter 3.6s cubic-bezier(0.12,1,0.22,1);
}

.jiwajiwa.show {
  opacity: 1;
   filter: blur(0);
}


/* ---------------
	lead
----------------*/

.wave-wrap {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
	overflow: visible;
}

svg {
  width: 100%;
  display: block;
  overflow: hidden;
}

/* 上部波 */
.lead-wave {
  position: absolute;
  top: -126px;  /* 必要に応じて微調整 */
  width: 100%;
  pointer-events: none;
  z-index: 10;
}

/* 下部波 */
.bottom-wave {
	position: relative;
	transform: scaleY(-1); /* 上下逆にする */
  	height: 70px;
  	z-index: 1; /* topより前面 */
	width: 100%;
  background-color: #fff;
}

.lead_wave_bg{
	fill:var(--ligreen)
}

.walk_wave_bg{
	fill:var(--liblue)
}

.nature_wave_bg{
	fill:var(--yellow)
}

.experience_wave_bg{
	fill:var(--pink)
}

.lead{
	background-color: var(--ligreen);
	overflow: visible;
}

.sect{
 	position: relative;
  z-index: 2;
}

.lead_bg{
	position: absolute;
  top: -81px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/lead/lead_bacl_map.png);
  z-index: 15;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
}

.sect__div{
	position: relative;
	z-index: 20;
	display: flex;
}

.index {
  padding-bottom: 25%;
}

h2{
	writing-mode: vertical-rl;
	position: sticky;
	top: 0;
	font-family: var(--lex);
	font-weight: 300;
	font-style: normal;
	font-size: clamp(1.5rem, 2vw, 2rem);
	padding-top: 18px;
}

.green{
	color: #a7b79d;
}

.gray{
	color: #D0D0D0;
}

.gray{
	color: #D0D0D0;
}

.title_blue{
	color: #97c7d7;
}

.title_ye{
	color: #CECE87;
}

.title_pink{
	color: #DDBABA;
}

.sect__l{
	width: 30px;
	display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  letter-spacing: 0.05em;
	z-index: 100;
}



.sect__r{
	margin-right: 30px;
  width: calc(100% - 60px);
}

.sect__lead{
	text-align: center;
}

h3{
	font-size: clamp(2.4rem, 3vw, 3rem);
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.12em;
}

h3:first-child{
	padding-top: 3%;
}

.sect__lead p{
	font-size: clamp(1.4rem, 1.7vw, 1.7rem);
	line-height: 2.8;
	font-weight: 500;
}

.sect__lead p:first-of-type{
	padding-top: 6%;
}

.sect__lead_im{
	position: relative;
	padding-top: 10%;
}

.sect__lead_im div{
	width: 53%;
}

.sect__lead_im div:first-of-type{
	margin-left: -5%;
}

.sect__lead_im div:nth-of-type(2){
	position: absolute;
  right: -5%;
  top: 18%;
}

.sect__lead_im_b{
	width: 80%;
  margin-left: 0%;
  margin-top: -4%;
  position: relative;
}

.map{
	background-color: var(--white);
	padding-top: 20%;
  padding-bottom: 22%;
}

.sect__map_im{
	position: relative;
  z-index: 25;
}

.sect__map_im_u {
  position: relative;
  z-index: 1;
  margin-top: 8%;
}


.sect__map_im_b {
  position: relative;  
  margin-top: -30%;  
  z-index: 2;
}

.sect__map_im img {
  width: 94%;
  height: auto;
  display: block;
  margin: 0 auto;
}




.map_icon{
	position: relative;
  padding-left: 16px; 
	font-size: 1.5rem;
	line-height:  1.2;
}

.map_icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 15px;
  background-image: url("../img/icon_map.svg"); /* アイコン */
  background-size: contain;
  background-repeat: no-repeat;
}


h4{
	font-family: var(--mincho);
	font-weight: 600;
	font-size: clamp(2.4rem, 3vw, 3rem);
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.sect__r .map_icon{
	margin-top: 3%;
}



.sect__plan{
	font-size: clamp(1.37rem, 1.7vw, 1.7rem);
	line-height: 1.8;
	margin-top: 5%;
	margin-bottom: 7%;
}


.movie{
	width: 60%;
	margin: 0 auto;
	padding-top: 10%;
}

.slideConts{
    opacity: 0;
}

.slide.animeTitle{
  animation-name: slideAnime;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.slide.animeBody{
    animation-name: slideAnime;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes slideAnime {
  from {
  opacity: 0;
  }

  to {
  opacity: 1;
  }
}
.txt1 {animation-delay: 0.2s;}
.txt2 {animation-delay: 0.8s;}
.txt3 {animation-delay: 1.0s;}
.txt4 {animation-delay: 1.1s;}
.txt5 {animation-delay: 1.4s;}
.txt6 {animation-delay: 1.6s;}
.txt7 {animation-delay: 1.8s;}
.txt8 {animation-delay: 2s;}
.txt10 {animation-delay: 1.0s;}
.txt11 {animation-delay: 1.2s;}




.phone-wrap {
  width: 320px;
  height: auto;
  margin: 0 auto;
  border-radius: 34px;
  background: #fff;
  border: 6px solid #303030;
  box-sizing: border-box;
}


.phone-screen {
  width: 100%;
  height: 100%;
  padding: 4px;
  border-radius: 30px;
  background: #f9f9f9;
  box-sizing: border-box;
}


.insta-post {
  display: block;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  overflow: hidden;
  text-decoration: none;
}


.insta-post img {
  width: 100%;
  height: auto;
  display: block;
}


.btn{
  margin-top: 12%;
  display: flex;
  justify-content: space-between;
  padding: 6% 5% 5.5% 4%;
}

.walking .btn{
  background-color: #fff;
  border: 1.5px solid #a6d2e1;
}

.nature .btn{
   background-color: #fff;
  border: 1.5px solid #e4dd9e;
}

.experience .btn{
    background-color: #fff;
  border: 1.5px solid #da9393;
}



.btn_img{
  width: 28px;
  height: 28px;
}

.btn p{
  font-weight: 600;
    font-size: clamp(1.6rem, 2vw, 2rem);
  
}

.walking .btn p{
  color: #74b9d0;
}


.experience .btn p{
  color: #d58787;
}

.nature .btn p{
    font-weight: 600;
    font-size: clamp(1.35rem, 1.7vw, 1.7rem);
    color: #d2ba3f;
    line-height: 1.5;
}

.nature .btn_img{
  width: 24px;
  height: 24px;
}

.qa_whi{
	background-color: var(--white);
	padding: 6% 4% 5.5%;
	margin-top: 3%;
}

.btn_all{
  display: flex;
 justify-content: space-between;

}

.btn_all .btn{
   align-items: center;
}

.btn_l{
  width: 49%;
}




  


.accordion summary {
	cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
	padding: 0% 1%;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
  padding: 0% 1% 5.5%;
  background-image: linear-gradient(to right, #333 2px, transparent 2px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.summary-text{
	font-weight: 700;
	font-size: clamp(1.6rem, 2vw, 2rem);
}


/* ▼黒い円の矢印（画像なし） */
.circle-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #333;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.6s ease; /* 回転アニメーション */
}

/* ▼縦棒 */
.circle-arrow::before {
content: "";
    position: absolute;
    width: 2px;
    height: 11px;
    background: #fff;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;	
}

/* ▼V字部分 */
.circle-arrow::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    top: 11px;
    left: 50%;
    margin-left: -4px;
    transform: rotate(45deg);
    border-radius: 1px;
}


.accordion .spot {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 2.2s ease,
    opacity 2.2s ease;
}

.accordion.opening .spot {
  max-height: 1500px;
  opacity: 1;

}

.accordion.closing .spot {
  max-height: 0;
  opacity: 0;
    transition:
    max-height 2.2s ease,
    opacity 2.2s ease;
}



/* ▼open状態で180°反転（上向きに） */
.accordion[open] summary .circle-arrow {
  transform: rotate(-180deg);
  transition: transform 0.6s ease;
}



.spot_div{
	display: flex;
	align-items: center;
  	gap: 5%;
	padding: 4%;
	border-bottom: 1px solid #303030;
}

.spot_div__img{
	width: 17%;
}

.spot_div:first-of-type{
	margin-top: 2%;
}

.spot_div:last-of-type{
	border-bottom: none;
	margin-bottom: 2%;
}


.spot_div__info{
	width: 50%;
}

.spot_div__info .label{
	font-size: clamp(1rem, 1.4vw, 1.4rem);
	line-height: 1;
	color: var(--white);
	padding: 1.2% 6%;
}

.spot_div__info .place_name{
	font-size: clamp(1.4rem, 1.8vw, 1.8rem);
	line-height: 1.8;
}

.spot_div__icons{
	display: flex;
	width: 23%;
	padding-right: 8%;
    justify-content: space-between;
}

.spot_div__icons img{
	height: 100%;
	width: auto;
}

.blue{
	background-color: #A5D1DF;
}

.yellow{
	background-color: #D6D688;
}

.pink{
	background-color: #EACACA;
}



.walking{
	background-color: var(--liblue);

}

.walking_top{
  background-color: var(--liblue);
}

.nature{
	background-color: var(--yellow);
}

.nature_top{
 background-color: var(--yellow);
}

.experience{
	background-color: var(--pink);

}

.experience_top{
	background-color: var(--pink);
}

.theme_area{
	position: relative;
  background-color: #fff;
  padding-bottom: 30%;
}

.theme_area > .sect__div > .sect__r{
	padding: 0 2%;
}

.walking > .theme_area > .sect__div{
  background-color: var(--liblue);
}

.walking > .theme_area > .sect_slider{
  background-color: var(--liblue);
}

.walking > .theme_area > .txt_anime{
  background-color: var(--liblue);
}


/*  */
.nature > .theme_area > .sect__div{
  background-color: var(--yellow);
}

.nature > .theme_area > .sect_slider{
  background-color: var(--yellow);
}

.nature > .theme_area > .txt_anime{
  background-color: var(--yellow);
}

/*  */
.experience > .theme_area > .sect__div{
	background-color: var(--pink);
}

.experience > .theme_area > .sect_slider{
	background-color: var(--pink);
}

.experience > .theme_area > .txt_anime{
 	background-color: var(--pink);
}



/* セクション全体 */
.guide {
  padding: 40px 0px;
  position: relative;
}

/* ===== タイトル部分 ===== */
.guide__title-wrap {
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}

.guide__title-wrap::before,
.guide__title-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  z-index: 5;
  border-bottom: 2px dashed #999;
}

.guide__title-wrap::before {
  left: 0;
}

.guide__title-wrap::after {
  right: 0;
}

.guide__title {
  display: inline-block;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 20;
  padding: 0% 5%;
}

.walking .guide__title {
  background-color: var(--liblue);
}

.nature .guide__title {
  background-color: var(--yellow);
}

.experience .guide__title {
  background-color: var(--pink);
}

.guide__mark {
  display: block;
  margin-top: 4px;
  color: #d47463;
  font-size: 18px;
}

/* ===== プロフィール部分 ===== */
.guide__profile {
  display: flex;
  margin-top: 5%;
  padding: 0 4%;
  gap: 6%;
}

.guide__profile_im{
	width: 18%;
}



.guide__text{
	width: 78%;
}

.guide__name {
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  margin: 0 0 6px;
  line-height: 1.1;
  font-weight: 700;
}

.guide__id {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
}

.guide__desc {
	font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  margin: 0 0 3%;
}

/* SNSアイコン */
.guide__sns{
	display: flex;
	gap: 7%;
	width: 100%;
}

.guide__sns_im{
	width: 8%;
}



/* ===== 下の点線 ===== */
.guide {
  border-bottom: 2px dashed #999;
  padding-bottom: 30px;
}




.spot_div__info .label{
	font-size: clamp(1rem, 1.4vw, 1.4rem);
	line-height: 1;
	color: var(--white);
	padding: 1.2% 6%;
	margin-right: 2%;
}

.spot_div__info .place_name{
	font-size: clamp(1.4rem, 1.8vw, 1.8rem);
	line-height: 1.2;
	margin-top: 2%;
}



.content_area{
	overflow: hidden;

	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
	

.walking .content_area{
	background-image: url(../img/walking/back.png);
}

.nature .content_area{
	background-image: url(../img/nature/back.png);
}

.experience .content_area{
	background-image: url(../img/experience/back.png);
}





/* ===== レイアウト余白 ===== */
/* ===== レイアウト余白 ===== */
.slider-wrapper {
  padding-top: 20%;
}

.slick-slider {
  padding-top: 15%;
  padding-bottom: 18%;
}

/* slick の表示領域外も見せる */
.slick-list {
  overflow: visible;
}

/* ===== Slickが制御するスライド ===== */

/* ===== スライド中身（拡大縮小はここだけ） ===== */
.slick-item {
  width: 100%;
  margin: 0 auto;
  background-color: var(--white);
  position: relative;
  padding: 12% 0 14%;

  transform: scale(0.85);
  backface-visibility: hidden;   /* ← Safari対策 */
  will-change: transform;
}

/* ===== 中央だけ拡大（ここでだけ transition） ===== */
.slick-center .slick-item {
  transform: scale(1);
  transition: transform .35s ease;
}

/* ===== クローンは完全固定（数値を揃える） ===== */
.slick-cloned .slick-item {
  transform: scale(0.85) !important;
  transition: none !important;
}

/* 画像 */
.slick-slide img {
  width: 100%;
  display: block;
}





.count{
	text-align: center;
	font-weight: 700;
	font-size: clamp(1.2rem, 1.5vw, 1.5rem);
	margin-top: 5px;
	margin-bottom: 4px;
}

.sli_title_img{
	padding-left: 2.5%;
	padding-right: 2.5%;
}

.main-img{
	padding-left: 15%;
	padding-right: 15%;
}

.content{
	padding-left: 5%;
	padding-right: 5%;
	margin-top: 6%;
}

.content .label{
	font-size: clamp(1.3rem, 1.5vw, 1.5rem);
	line-height: 1;
	color: var(--white);
	padding: 1% 3%;
	margin-right: 2%;
}




.content .map_icon{
	position: relative;
  	padding-left: 18px; /* アイコン分の余白 */
	font-size: clamp(1.3rem, 1.7vw, 1.7rem);
	line-height:  1;
	margin-top: 2%;
}

.content .map_icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 16px;
  padding-bottom: 1px;
  background-image: url("../img/icon_map.svg"); /* アイコン */
  background-size: contain;
  background-repeat: no-repeat;
}

.content .place_name{
	font-size: clamp(1.6rem, 2vw, 2rem);
	line-height: 1.8;
	margin-top: 0.5%;
	font-weight: 700;
}

.content .desc{
	margin-top: 2%;
}


.sli_div__icons{
	display: flex;
	height: 28px;

  width: 100%;
	margin-top: 8%;
}

.sli_div__icons a{
  margin-right: 8%;
}

@media (max-width: 500px){
  .sli_div__icons a{
  margin-right: 18%;
}
}


.sli_div__icons img{
	height: 100%;
	width: auto;
}


.txt_anime {
  width: 100%;

  overflow: hidden;
}

.txt_anime p {
	font-family: var(--lex);
	font-weight: 700;

	font-size: clamp(4.6rem, 5.8vw, 5.8rem);
	letter-spacing: 0;
  animation: animetxt 20s linear infinite;
  transform: translateX(100%);
}

.walking .txt_anime p{
	color: #95c9da;
}

.nature .txt_anime p{
	color: #E3E3AF;
}

.experience .txt_anime p{
	color: #EFD7D7;
}


@keyframes animetxt {
100% {
  transform: translateX(-100%);
 }
}

.foot{
	background-color: #D2CFC6;
	position: relative;

}

.foot_top{
  	background-color: #D2CFC6;
}

.foot_top_u{
  position: relative;
}

.foot_title{
  position: absolute;
  bottom: 1%;
}

.foot_top img {
  width: 100%;
  display: block;
}

.foot_title{

  width: 100%;

}

.foot_title p:first-of-type{
	font-size: clamp(3.2rem, 4.1vw, 4.1rem);
}

.foot_title p:last-of-type{
	font-size: clamp(4.6rem, 5.8vw, 5.8rem);
}

.foot_detail {
    position: relative;
    padding: 20% 30px 15%;
}

.foot_title_b{
  position: absolute;
  top: 1%;
  left: 0;
}

.foot_detail__back {
  position: relative;
  z-index: 1;

}

/* ★ 白ぼかし本体 */
.foot_detail__back::before {
  content: "";
  position: absolute;
  inset: -20px 0px; 
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,1) 0%,     /* 完全白 */
    rgba(255,255,255,1) 40%,   /* ← ベタ領域を拡張 */
    rgba(255,255,255,0.95) 55%,
    rgba(255,255,255,0.85) 70%,
    rgba(255,255,255,0.6) 85%,
    rgba(255,255,255,0.35) 100%
  );
  filter: blur(60px);
  z-index: -1;
}

.foot_detail__back > div {
  padding: 0 2%;
}

.foot_detail__back p {
	font-size: clamp(1.5rem, 1.9vw, 1.9rem);
	text-align: center;
	font-weight: 600;
	color: #4F462C;
	line-height: 1.8;
}

dl {
      margin-bottom: 5%;
    padding: 0 2%;
    margin-top: 4%;
}

dt {
	font-size: clamp(1.4rem, 1.9vw, 1.9rem);
  font-weight: 600;
  color: #8A8368;
}

dd {
	font-size: clamp(1.4rem, 1.7vw, 1.7rem);
  margin-left: 0;
  line-height: 1.8;
  color: #303030;
}

/* 区切り線（中央） */
.foot_detail__back > div:first-child::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #9F9983;
  margin: 10% 0 11%;
}

.foot_icon{
	text-align: center;
	margin-top: 14%;
}

.foot_icon p{
	color: #4b4b4b;
  font-size: clamp(1.4rem, 1.7vw, 1.7rem);
}

.foot_icon__div{
	display: flex;
	justify-content: center;
  gap: 20px;
    margin-top: 3%;
	margin-bottom: 10%;
}

.foot_icon__div a{
  width: 28px;
}

.foot_icon__div img{
	width: 100%;
}


/* --- Buttons --- */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  border: none;
  cursor: pointer;
  width: 10%;
}

.prev-arrow { left: 10px; }
.next-arrow { right: 10px; }


@media (max-width: 1500px) {
	.max{
		margin-left: 8%;
		margin-right: 8%;

	}

}


@media (max-width: 750px){
	.pc{
		display: none;
	}

	.sp{
		display: block;
	}

  .foot_icon__div{
    height: 24px;
  }

  .foot_icon__div a{
    width: 24px;
  }

} 




#pageTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

#pageTop a {
  display: block;
  z-index: 999;
  padding: 9px 0 0 1px;
  border-radius: 40px;
  width: 45px;
  height: 45px;
  background-color: #0f345b;
  color: #fff;
  font-size: 12px;
  line-height: 0.9em;
  text-align: center;
   font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
}



/* ハンバーガーアイコン */
.hamburger-menu {
	text-align: center;
  }

.hamburger-icon {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 22px;
	height: 16px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1000;
  }
  
  /* ハンバーガーの線 */
  .hamburger-icon span {
	display: block;
	width: 24px;
	height: 2px;
	background: #859C7C;
	transition: opacity 0.3s ease-in-out;
	position: absolute;
  }
  

  .hamburger-circle {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--ligreen);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin: 0 auto;
	position: relative;
  }

  /* MENU テキスト */
  .menu-text {
	font-size: 10px;
	color: #859C7C;
	margin-top: 2px;
	transition: 0.3s;
  }

/* MENU文字は完全に非表示 */
.hamburger-menu.active .menu-text {
	display: none;
  }
  
  .hamburger-menu.active .menu {
	display: block;
  }

  /* 1本目（上の線） */
  .hamburger-icon span:nth-child(1) {
	top: 40%;
  }
  
  /* 2本目（中央の線） */
  .hamburger-icon span:nth-child(2) {
	top: 92%;
	transform: translateY(-50%);
  }

  /* フルスクリーンメニュー */
  .menu {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(231, 244, 228, 0.95);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out;
  }

  .menu_nav{
	height: 100vh;
	position: relative;
}
  
  /* メニューが開いたとき */
  .menu.active {
	opacity: 1;
	visibility: visible;
  }
  
  /* メニューのリンク */
  .menu ul {
	list-style: none;
	padding: 0;
	text-align: center;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	max-width: 500px;
	width: 50%;
  }
  
  .menu li {
	padding: 6% 3%;
	border-bottom: 1px solid #859C7C;
  }

  .menu li a{
	display: flex;
	align-items: center;
	justify-content:space-between ;
  }
  
  .menu a {
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	transition: color 0.3s;
  }
  
  .menu a:hover {
	color: #ddd;
  }
  .hamburger-menu.active .hamburger-icon span {
	background: #859C7C;
  }
  /* ハンバーガーアイコンが「×」に変形 */
  .hamburger-menu.active .hamburger-icon span:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
	top: 11%;
  }
  
  .hamburger-menu.active .hamburger-icon span:nth-child(2) {
	transform: translateY(-10px) rotate(-45deg);
	top: 100%;
  }
 
  
  /* ハンバーガーアイコン */


  .ham_arrow {
	position: relative;
	display: inline-block;
	width: 10px;
	height: 10px;
  }
  
  .ham_arrow::before,
  .ham_arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 0.25px);
	right: 0;
	width: 14px;
	height: 2.5px;
	border-radius: 9999px;
	background-color: #859C7C;
	transform-origin: calc(100% - 0.25px) 50%;
  }
  
  .ham_arrow::before {
	transform: rotate(45deg);
  }
  
  .ham_arrow::after {
	transform: rotate(-45deg);
  }

  .menu_ti{
	font-weight: 500;
    font-size: clamp(1.6rem, 2vw, 2rem);
    line-height: 1.35;
	text-align: left;
	color: #859C7C;
  }
  
  .menu_ti .sma{
	font-weight: 600;
	font-size: clamp(1.3rem, 1.5vw, 1.5rem);
    line-height: 1.1;
  }

  .header{
	width: 100%;
	display: flex;
  justify-content: flex-end;
  }

.head{
	padding: 22px 22px 0 0;
	position: fixed;
	z-index: 999;
}

.btn:hover {
  opacity: 0.8;
}

main{
	position: relative;
	overflow: hidden;
}




@media (max-width: 750px) {
	.menu ul{
		width: 86%;
	}

	.menu li{
		    padding: 6% 3%;
	}


  .lead-wave {
  top: -94px;  /* 必要に応じて微調整 */
}

.lead_bg{
      top: -61px;
}

.phone-wrap{
  width: 280px;
}


}




@media (max-width: 750px) {
	#pageTop {
	  position: fixed;
	  bottom: 70px;
	  right: 15px;
	}
}/* @media閉じタグ */


