@charset "utf-8";
html {
    /* font-size: 1rem; */
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    color: #47403b;
}

img {
    max-width: 100%;
    height: auto;
    /* border-radius: 3%; */
    vertical-align: bottom;
    z-index: 2;
}

a {
  color: #47403b;
  text-decoration: none;
  font-weight: bold;
}

li {
  list-style: none;
}

body {
  background-color: #f3efde;
  overflow-x: hidden;
}

main {
  position: relative;
}

:root {
 --bgcolor:#f3efde;
 --main-color:#fdfff6;
 --sub-color:#dd7b4d;
 --accent-color:#df6126 ;
 --h3color:#444444;
}

/* ======header======================================================================= */

/* ハンバーガーメニュー関係 */
/* .pc-menu{
  display: flex;
}
.pc-menu li{
  margin-right: 40px;
}
.pc-menu li:last-child{
  margin-right: 0;
}
.sp-menu {
  padding-top: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background: rgba(255,255,255,0.95);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.sp-menu li{
  text-align: center;
  margin-bottom: 24px;
}

.sp-menu .is-active {
  pointer-events: auto;
  opacity: 1;
} */

header {
  position: fixed;
  width: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
}

.header04 {
  /* border: 1px solid #000; */
  padding: 16px 80px;
  display: grid;
  grid-template-columns: 1fr auto 0fr;
  align-items: center;
}


.header04-list {
  display: flex;
  gap: 32px;
  font-size: 16px;
  font-weight: bold;
}

nav a:hover {
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  /* transition: .3s; */
}

h1 a  {
  display: flex;
  align-items: center;    /* 縦方向（上下）中央 */
}

/* ハンバーガーメニュー初期状態 */
.ham-menu {
  display: none;
}

  .sp-menu {
    display: none; /* 初期状態は非表示 */
    font-size: 2rem;
  }
/* ハンバーガーメニュー関係おわり*/

header {
    position: fixed;
    width: 100%;
    display: flex;
    /* border: 1px solid #000; */

    /* ぼかしの装飾↓ */
   backdrop-filter: blur(4px);
   -webkit-backdrop-filter: blur(10px);
   z-index: 10;
}

.header04-logo {
  font-weight: bold;
  font-size: 20px;
}

.header04-list {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 16px;
  font-weight: bold;
}

.header04-contact {
  font-weight: bold;
  display: inline-block;
  /* color: #fff; */
  padding: 6px 16px;
  border-radius: 6px;
  margin-left: auto;
}

/* .kv{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
} */

.kv {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.logo {
  width: 550px;
  height: auto;
  z-index: 2;
  position: relative;
}


/* キャッチコピーのアニメーション */

.slideConts{
    opacity: 0;
}
.slide{
  animation: slideAnime 2s ease forwards;
}
@keyframes slideAnime {
  from {
  opacity: 0;
  }

  to {
  opacity: 1;
  }
}
.txt1 {animation-delay: 0.2s;}
.txt2 {animation-delay: 1s;}


/* .kv .sub-copy{
  color: #fff;
  font-size: 20px;
  text-align: center;
} */

/* .logo {
  position: absolute;
  bottom: 3%;  下からの距離調整
  left: 10%;    左からの距離調整
} */

/* .logo img {
  max-width: 85%; 
} */




/* video */
.video {
  width: 100%;
  height: 100vh;
  /* background: url(../img/kv-alternative.jpg) no-repeat center/cover; */
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.video::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: hsla(200, 100%, 97%, 0.8); /* ← hsla に修正 */
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
  pointer-events: none; /* ← クリックイベント防止（必要に応じて） */
}

.video video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* scale(0.5) だと小さすぎるかも */
  object-fit: cover;
}

.kv {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1; /* ← 背景より前に表示 */
}

.logo {
  width: 460px;
  height: auto;
}


/* ======main==================================================================== */

h1 {
  font-weight: bold;
}

h2 {
  font-size: 3rem;
  font-weight: 500;
  /* font-style: normal; */
  color: #353535;
}

h3{
  font-size:2.55rem;
  font-weight: bold;
  /* font-style: normal; */
}

.inner,.inner02{
    max-width: 1580px;
    margin:  0 auto;
    padding: 0 24px;
}

/* .inner02 {
  background-color: var(--main-color);
} */

/* ---------------予約ボタン------------------------------------ */

/* ボタンの外側の丸い部分のスタイル */
.reserve-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11.5rem;
  height: 11.5rem;
  background-color: var(--sub-color);
  border-radius: 50%;
  box-shadow: 4px 6px #fcbb67;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 5;
  transition: 0.5s;
  text-decoration: none; /* 下線除去 */
  color: inherit; /* リンク色を継承 */
}

.reserve-button-container:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.reserve-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}

.reserve-text {
  /* margin-bottom: 5px; */
  padding-bottom: 0.5rem;
}

.calendar-icon {
  width: 4rem;
  height: 4rem;
}

.reserve-call-to-action {
  padding-top: 0.5rem;
  font-weight: 400;
}


/* -------------------------阿寒本町って？ -------------------------*/

#about {
  margin-bottom: 5rem;
  background-color: var(--main-color);
  background-image: url('../imgs/sirakaba.svg');
    background-size: cover; /* 画像を全体にフィット */
    background-position: center; /* 中央に配置 */
    background-repeat: no-repeat; /* 繰り返しを防止 */
}

/* .about-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:40px 0;
} */


#about h2 {
  font-size: 3rem;
  letter-spacing: 0.15rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}

#about h2 p {
  text-align: center;
}


/* -------------------------阿寒本町を満喫-------------------------*/

.content-title {
  margin-bottom: 1rem;
  text-align: center;
}

.content-title  h2,#reachout h2 {
  margin-bottom: 2rem;
  letter-spacing:0.15rem;
  position: relative;
    padding: 1rem 0;
    text-align: center;
    color: #353535;
}

.content-title h2::before  {
    position: absolute;
    border-bottom: 5px solid var(--accent-color);
    top: 100%;
    left: 50%;
    border-radius: 16px;
    transform: translateX(-50%);
    width: 70px;
    content: '';
}

.text-box01 p {
  margin-top: 1rem;
  /* line-height: 1.8; */
} 

.sub-title{
  font-size: 1.4rem;
}

.sub-line {
  color: var(--sub-color);
}

.sub-text-box01 {
  padding: 1rem;
}

/* .content-section-img {
  width: 100%;
  height: auto;
  object-fit:cover;
}  */

.content-section {
  display: flex; /* Flexboxを使い、テキストと画像を横並びに */
  align-items: center; /* 上下中央揃え */
  justify-content: center; /* 左右中央揃え */
  gap: 8%; /* テキストと画像の間の余白 */
  /* max-width: 1100px; 最大幅 */
  padding: 8rem 2rem;

 position: relative; /* これが絶対配置の基準になる */
}

/* 背景画像関係 */

/* リスのイラストの位置とサイズ */
.squirrel-wrapper {
  position: absolute;
  bottom: -9px; /* 下から少しだけ余白 */
  left: 295px;   /* 左から少しだけ余白 */
  width: 12vw;  /* 画面幅に応じてサイズ調整 */
  max-width: 250px; /* 最大サイズ制限 */
  z-index: -1;  /* 他要素より手前に */
}

.squirrel-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* NBのイラストの位置とサイズ */
.nestbox-wrapper{
  position: absolute;
  bottom: -10px; /* 下から少しだけ余白 */
  right: 36px;   /* 左から少しだけ余白 */
  width: 20vw;  /* 画面幅に応じてサイズ調整 */
  max-width: 300px; /* 最大サイズ制限 */
  z-index: -1;  /* 他要素より手前に */
}

.nestbox-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* 食のイラスト */
.food-wrapper{
  position: absolute;
  top: -35px; /* 下から少しだけ余白 */
  right: 10px;   /* 左から少しだけ余白 */
  width: 15vw;  /* 画面幅に応じてサイズ調整 */
  max-width: 300px; /* 最大サイズ制限 */
  z-index:0;  /* 他要素より手前に */
}

.food-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* スズランのイラストの位置とサイズ */
.suzuran-wrapper {
  position: absolute;
  bottom: -130px; /* 下から少しだけ余白 */
  left: -226px;   /* 左から少しだけ余白 */
  width: 15vw;  /* 画面幅に応じてサイズ調整 */
  max-width: 250px; /* 最大サイズ制限 */
  z-index: 2;  /* 他要素より手前に */
}

.suzuran-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}




.text-box00 {
  /* max-width: 75%; */
  position: relative; /* 背景テキストの位置の基準にする */
  padding: 8rem ;
  margin-left: auto;
}

.text-box00 p {
  font-size: 1.25rem;
  letter-spacing: 0.1em; /* 少し広め */
  line-height: 3;        /* 行間を約2倍に */
  text-align: center;
}
/* .line02 {
  margin-left: 5rem;
}
.line03 {
  margin-left: 10rem;
}
.line04 {
  margin-left: 13rem;
} */

/* 段々になる文章 */
/* .text-box00 p {
  --i: 0;
  margin-left: calc(var(--i) * 2rem);
  transition: margin-left 0.3s ease;
} */

.text-box01 {
  flex-basis: 45%; /* コンテナ内での幅の割合 */
  position: relative; /* 背景テキストの位置の基準にする */
}

.text-box01 h2 {
  font-size: 2rem;
}


.text-box01 h3 {
  font-size: 2.5rem; /* 見出しの文字サイズ */
  color: var(--h3color);
  font-weight:900;
  position: relative; /* z-indexを有効にするため */
  z-index: 2; /* 背景テキストより手前に表示 */
  margin-bottom: 3rem; /* 見出しと本文の間の余白 */
}

/* h3の疑似要素(::before)を使って「NATURE」を表現 */
.text-box01 h3::before {
  position: absolute;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 5rem; /* 「NATURE」の文字サイズ */
  font-weight: bold;
  white-space: nowrap; /* テキストが折り返さないようにする */
  z-index: -1; /* 「自然」のテキストより背面に表示 */
  
  /* 位置の微調整 */
  top: -20px;
  left: 60px;
}

.text-box01 h3::before {
  content: 'NATURE';
  position: absolute;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #e6efdc; /* 「NATURE」の文字色 */
  font-size: 5rem; /* 「NATURE」の文字サイズ */
  font-weight: bold;
  /* white-space: nowrap; テキストが折り返さないようにする */
  z-index: -1; /* 「自然」のテキストより背面に表示 */
}

/* 画像を囲むラッパー */
.image-wrapper {
  /* border: 1px solid #000; */
  /* flex-basis:70%; コンテナ内での幅の割合 */
  position: relative; /* 背景フレームの位置の基準にする */
}

/* 画像本体 */
.content-section-img {
  display: block;
  /* width: 100%; 親要素の幅に合わせる */
  height: auto; /* 縦横比を維持 */
  /* border-radius: 12px; 角を丸くする */
  position: relative; /* z-indexを有効にするため */
  z-index: 2; /* 背景フレームより手前に表示 */
}

/* 画像ラッパーの疑似要素(::after)を使って背景フレームを表現 */
.image-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  /* background-color: #BADA55; フレームの色 */
  /* border-radius: 12px; フレームの角を丸くする */
  z-index: 1; /* 画像より背面に表示 */
}

.content-section-img::before {
    content: '';
    position: absolute;
    bottom: -10px; /* 下にはみ出す量 */
    right: -10px; /* 右にはみ出す量 */
    width: calc(100% + 1.25rem); /* 画像より少し大きく */
    height: calc(100% + 1.25rem); /* 画像より少し大きく */
    border: 5px solid #BADA55; /* 緑のボーダーの色と太さ */
    /* border-radius: 0 15px 15px 0; 画像と同じ右側の角丸 */
    z-index: -1; /* 画像の下に配置 */
}



/* ===================================阿寒本町を満喫 テーマごとのスタイル===================================*/

/* 自然 */
.nature .text-box01 h3::before {
  content: 'ACTIVITY'; /* 背景の文字 */
  color: var(--main-color);   /* 背景文字の色 */
    /* 位置の微調整 */
  top: 0px;
  left: 4px;
}

/* アクティビティ */
.act  h3::before {
  font-family: "Zen Maru Gothic", sans-serif;
  content: 'FOODS'; /* 背景の文字 */
  color: var(--bgcolor);   /* 背景文字の色 */
    /* 位置の微調整 */
  top: 6px;
  left: 4px;
}

/* 食*/
.foods .text-box01 h3::before {
  font-family: "Zen Maru Gothic", sans-serif;
  content: 'SAUNA'; /* 背景の文字 */
  color: var(--main-color);   /* 背景文字の色 */
    /* 位置の微調整 */
  top: 5px;
  left: 0px;
}

/* SPA*/
.spa  h3::before {
  font-family: "Zen Maru Gothic", sans-serif;
  content: 'STAY'; /* 背景の文字 */
  color:var(--bgcolor);   /* 背景文字の色 */
    /* 位置の微調整 */
  top: 2px;
  left: 3px;
}

/* 知る */
/* .know .text-box01 h3::before {
  font-family: "Zen Maru Gothic", sans-serif;
  content: 'STAY'; 
  color: var(--main-color); 
  top: -7px;
  left:0px;
} */


.nature .image-wrapper::after {
  background-color: var(--accent-color); /* 画像フレームの色 */
    /* 位置をずらす */
  top: 10px;
  left: 10px;
}


.act .image-wrapper::after {
  background-color:var(--accent-color); /* 画像フレームの色 */
  top: 10px;
  right: 10px;
}


.foods .image-wrapper::after {
  background-color: var(--accent-color); /* 画像フレームの色 */
    /* 位置をずらす */
  top: 10px;
  left:10px;
}

.act {
  background: 
    linear-gradient(
      270deg,
      var(--main-color) 0%,
      var(--main-color) calc(100% * 3 / 4),
      transparent calc(100% * 3 / 4),
      transparent 100%
    );
}


.spa {
    background: linear-gradient(
  270deg,
  var(--main-color) 0%,     /* 0%から色付き */
  var(--main-color) calc(100% * 3 / 4), /* まで色付き */
  transparent calc(100% * 3 / 4),       /* から透明 */
  transparent 100%          /* 100%まで透明 */
);

}

/* 背景重なっている時に.foodを追加 */

.nature,
.act,
.spa {
  position: relative; /* レイヤーの基準になる */
  z-index: 0; /* 背景として一番下 */
}

.nature .image-wrapper,
.act .image-wrapper,
.spa .image-wrapper {
  position: relative; /* ::afterの基準 */
  z-index: 2; /* 画像の下にするために低めでもOK */
}

.nature .image-wrapper::after,
.spa .image-wrapper::after,
.act .image-wrapper::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color); /* 画像フレームの色 */
  z-index: -1; /* 画像の下に配置 */
}

/* ここまで */

.foods {
  position: relative;
  z-index: 0;
}

.foods .image-wrapper {
  position: relative;
  z-index: 2;
}

.foods .image-wrapper::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  z-index: -1;
}

.know .image-wrapper::after {
  background-color: var(--accent-color); /* 画像フレームの色 */
    /* 位置をずらす */
  top: 10px;
  left: 10px;
  z-index: -1;
}

#enjoy {
margin-bottom: 80px;
background-image:url(../imgs/tantyou-white.svg);
background-size: 65vw,24vw;
background-position: 30% 0,5% 100%; /* ← ここで位置を調整 */
overflow: hidden;
}

.image-cont {
  display: flex;
  flex-wrap: wrap;
  /* gap: 36px; */
  justify-content: space-between;
}

#PLAN {
  padding-bottom: 6.25rem;
}

.plan-container {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.splide__slide img {
  width: 100%;          /* 親要素の幅いっぱいに広げる */
  height: 100%;        /* 高さを固定（例: 300px） */
  object-fit: cover;    /* 画像の縦横比を保ちながらトリミング */
  display: block;       /* 余白を消す */
}




.content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* 必要なら調整 */
  align-items: flex-start; /* 高さ揃え（任意） */
}

.text-box01 {
  flex: 1 1 40%;
  box-sizing: border-box;
}

.splide {
  flex: 1 1 70%;
  box-sizing: border-box;
}


/* おでかけ */
#reachout {
  background-color: var(--main-color);
  padding: 5rem 0;
  margin: 5rem 0;
}

#reachout p {
  text-align: center;
}




/* 
.spa .image-wrapper {
  position: relative; ::afterの基準
  z-index: 2; 画像の下にするために低めでもOK
} */


/*------------------------------ footer ----------------------------------------------*/

footer {
  /* border: 1px solid #000; */
  background-image: url(../imgs/santyou.jpg) ;
  color: #fff;
  background-repeat: no-repeat;
  background-size:cover;
  background-position: center center;
  background-attachment: fixed; /* ← 背景画像をスクロールで固定 */
}


footer .inner {
  /* display: flex; */
  /* justify-content: space-around; */
  /* gap: 50px; */
}

.ft-cont {
  display: flex;
  /* justify-content: center; */
  gap: 5%;
}

.ft-right {
  /* border: 1px solid #000; */
  /* border: 1px solid #000; */
}

.ft-right h4 {
  /* border: 1px solid #000; */
  padding-bottom: 0.25rem;
}

  .address {
    /* border: 1px solid #000; */
    padding: 1rem;
  }

  .ft-right-access {
    /* border: 1px solid #000; */
    padding: 2rem 0 2rem 0;
  }

  .car-icon {
    padding-left: 2rem;
    background-image: url(../imgs/car-icon.svg);
    background-size: 26px;
       background-position: left;
  }
  .bus-icon {
    padding-left: 2rem;
    background-image: url(../imgs/bus_icon.svg);
        background-size: 26px;
       background-position: left;
  }
  .hikouki-icon {
    padding-left: 2rem;
    background-image: url(../imgs/hikouki-ikon.svg);
    background-size: 20px;
    background-position: left;
  }

  .sns a {
    padding: 0.5rem;
  }

   .sns h4 {
    padding: 0.5rem 0;
   }

  .ft-left {
    /* border: 1px solid #000; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid #000; */
  }

  .ft-left img {
    /* border: 1px solid #000; */
    width: 500px;
    max-width: 100%;
  }

  .map-btn  {
  padding: 20px 40px;
  text-align: center;
  border-radius: 8px;
  background-color: var(--sub-color);
  box-shadow: 0 6px #fcbb67;
  transition: .5s;
  }

  .map-btn a {
    color: #fff;
    font-weight: bold;
  }

  .map-btn:hover {
  transform: translateY(4px);
  box-shadow: none;
}


/* .bg {
  border: 1px solid #000;
  background-color: #FB8755;
} */

/* .youtube01 {
  padding: 0%;
  width: 55.7%;
  margin: 0 auto 4.7% auto;
} */

/* アニメーション */

.fade {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s, transform 1.5s;
}.fade.active {
	opacity: 1;
	transform: translateY(0px);
}

.slider {
  padding: 3rem 0;
}

.slider .slick-slide {
  margin-right: 0.5rem;
}

.slider .slick-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* Q&A */

#QtoA h2 {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}

.qa-cont {
  display: flex;
  flex-direction: column;
  align-items: center; /* 子要素を中央寄せ */
}

.qa-6 {
    max-width: 500px;
    width: 100%; /* 全部同じ幅に */
    margin-bottom: 5px;
    border-bottom: 1px solid #333;
    text-align: left; /* 中身は左寄せ */
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #47403b;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: var(--accent-color);
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 2px solid #47403b;
    border-right: 2px solid #47403b;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

/* .content-title-stay {
    margin-bottom: 1rem;
    text-align: center;
} */

/* アコーディオンメニュー */
.accordion-container {
  align-items: flex-start;
  gap: 10px;
  margin-top: 36px;
  
}

.accordion-title {
  font-weight: bold;
}

.smalltxt {
  font-size: 0.75rem;
}

.accordion-item {
  width: 100%;
  background-color: var(--main-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 430px;
  flex-grow: 1;
}

.accordion-item h3 {
  background-color: var(--bgcolor);
  font-size: 2rem;
  text-align: center;
  padding-bottom: 0.5rem;
}

.accordion-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 8px;
}

li .time {
  width: 32px;
  font-weight: bold;
  color: #df6126;
}

li .content {
  flex: 1;
  color: #444444;
}

.accordion-header {
  background-color: var(--sub-color);
  color: white;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header::after {
  content: "＋";
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--main-color);
  padding: 0 8px;
}

.accordion-content-content {
  padding: 15px 0;
}

.accordion-content-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-content-content li {
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
}

.accordion-content-content li:last-child {
  border-bottom: none;
}

/* ▼ ここから追加：DAY区切りと見出しデザイン */
.day-title {
 background-color: var(--sub-color);
  color: #fff;
  padding: 6px 10px;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1.5rem 0 0 0; /* 上に余白だけ、左右は0で左寄せ */
  border-radius: 4px;
  text-align: center; 
  width: fit-content; /* コンテンツ幅に合わせる */
}

.day-title:first-of-type {
  margin-top: 0;
}
    
    @media (max-width: 768px) {
      .accordion-container-01 {
        flex-direction: column;
      }
      .accordion-container {
        flex-direction: column;
        margin:auto 0;
      }

      .arrow {
        transform: rotate(90deg);
      }
    }


@media (max-width: 990px) {


  /* ハンバーガーメニュー関係 */
html {
  font-size: 0.8rem;
}

h2,
.text-box00 h2 {
  font-size:2rem;
}

#about h2 {
  font-size: 2rem;
}

  .pc-menu {
    display: none;
  }

  .ham-menu {
    display: inline-block;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 15;
    width: 45px;
    height: 32px;
  }

  .ham-line {
    position: absolute;
    transition: 0.3s;
    width: 100%;
    height: 2px;
    background-color: #000;
  }

  .line-top {
    top: 0;
  }

  .line-middle {
    top: calc(50% - 1px);
  }

  .line-bottom {
    bottom: 0;
  }

  .ham-menu.ham-menu-active > .line-top {
    top: calc(50% - 1px);
    transform: rotate(45deg);
  }

  .ham-menu.ham-menu-active > .line-middle {
    width: 0;
    height: 0;
  }

  .ham-menu.ham-menu-active > .line-bottom {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
  }

  .sp-menu {
    display: none; /* 初期状態は非表示 */
    padding-top: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
  }

  .sp-menu.is-active {
    display: flex; /* 表示時は flex */
  }

  .sp-menu li {
    text-align: center;
    margin-bottom: 24px;
  }

  /* ハンバーガーメニュー関係おわり */

  /* 予約ボタン */
   .reserve-button-container {
    width: 8rem;
    height: 8rem;
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem; /* 追加 */
  }

  .calendar-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .reserve-text {
    padding-bottom: 0.5rem;
  }

  .reserve-call-to-action {
    font-size: 0.75rem;
  }


/* メインビジュアル */

  .kv {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
  }

   .video video {
    transform: translate(-50%, -40%); /* 小さい画面では被写体が小さくなりすぎないように */
  }

  /* .catch-copy,
  .catch-copy02 {
    border: 1px solid #000;
    position: static; /* 絶対位置解除 */
    /* writing-mode: horizontal-tb; 横書き */ 
    /* text-orientation: initial;
    text-align: center;
    transform: none;
    margin-bottom: 15px;
  } */

  /* .main-copy,
  .main-copy02 {
    border: 1px solid #000;
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    text-orientation: upright; 
  } */

  /* .logo {
    border: 1px solid #000;
    position: relative;
    text-align: center;
    margin-top: 100px;
  }

  .logo img {
    border: 1px solid #000;
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 180px;
  } */

  .reserve-button-container {
    text-align: center;
    margin: 20px auto;
  }

  .reserve-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 0.9rem;
  }

  .reserve-call-to-action {
    color: #fff;
  }

  #about {
    background: var(--main-color);
    padding-bottom: 3rem;
    margin-bottom: 6rem;
  }

   .about-cont {
    flex-direction: column-reverse; /* 横並び → 縦並び */
    align-items: center;
    gap: 20px;
    /* padding: 0 20px; */
  }


  #about img {
    max-width: 100%; /* 画面幅にフィット */
    width: 100%;
    height: auto;
  }

  .text-box01 {
    text-align: center;
    /* padding: 2rem 7rem; */
  }

  h3 {
    font-size: 1.8rem;
  }

  .text-box01 p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
  }

  .content-section {
    flex-direction: column;
    padding: 3rem;
    gap: 30px;
  }

.content-section:nth-child(even) {
  flex-direction: column;
}

.squirrel-wrapper {
  bottom: -10px; /* 下から少しだけ余白 */
  left: 10px;   /* 左から少しだけ余白 */
  width: 15vw;  /* 画面幅に応じてサイズ調整 */
  max-width: 250px; /* 最大サイズ制限 */
  z-index: -1;
}

   /* 横並びを縦並びに変更 */


 .text-box01,
  .image-wrapper {
   flex-basis: 100%;
}

.image-wrapper {
  margin-top: 2rem;
}

 .image-wrapper::after  {
  top: 10px;
  left: 10px;
  right: auto;
 }
 .content-section-img::before {
  display: none;
 }

 /* .act .content-section, .spa .content-section {
  flex-direction: column-reverse;
 } */

 .nature .content-section,
 .foods .content-section,
 .know .content-section {
  flex-direction: column-reverse;
 }

 /* .text-box00 {
    position: relative;
    padding: 4rem;
    margin-left: auto;
} */

  .text-box00 {
    padding: 2rem 1rem;
    max-width: 100%;
    text-align: center;
  }

  .text-box00 p {
    font-size: 0.95rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }

 /* ===================================阿寒本町を満喫 テーマごとのスタイル===================================*/

#enjoy {
background-image:url(../imgs/tantyou-white.svg);
background-size: 80vw,30vw;
background-position: 30% 0,5% 100%; /* ← ここで位置を調整 */
overflow: hidden;
}

/* 自然 食 知るの文字背景*/
.nature .text-box01 h3::before
 {
  top: 105%;
  left: 52%;
  transform: translate(-34%, -50%); /* 完全中央寄せ */
  color: var(--main-color); 
}

.act .text-box01 h3::before
 {
  top: 105%;
  left: 23%;
  transform: translate(10%, -50%); /* 完全中央寄せ */
  color: var(--bgcolor); 
}

.foods .text-box01 h3::before
 {
  top: 105%;
  left: 52%;
  transform: translate(-34%, -50%); /* 完全中央寄せ */
  color: var(--main-color); 
}

.spa .text-box01 h3::before
 {
  top: 105%;
  left: 52%;
  transform: translate(10%, -50%); /* 完全中央寄せ */
  color: var(--bgcolor); 
  /* pointer-events: none; 背景文字がクリックに干渉しないように */
  /* white-space: nowrap; */
}

.know .text-box01 h3::before
 {

    /* 位置の微調整 */
  top:  6px;
  left: 342px;
}

.act .image-wrapper::after,
.spa .image-wrapper::after {
  top: 10px;
  left: 10px;
}

 .image-cont {
  display: block;
  text-align: center;
  gap: 10px;
}

.image-cont img {
  margin: 5px 0;
}

/* レスポンシブのイラスト */
.nestbox-wrapper{
  position: absolute;
  width: 41vw;  /* 画面幅に応じてサイズ調整 */
  max-width: 300px; /* 最大サイズ制限 */
}

.squirrel-wrapper {
  position: absolute;
  width: 20vw;  /* 画面幅に応じてサイズ調整 */
  max-width: 250px; /* 最大サイズ制限 */
  z-index: -2;  /* 他要素より手前に */
}

.suzuran-wrapper {
  position: absolute;
  bottom: -130px; /* 下から少しだけ余白 */
  left: -226px;   /* 左から少しだけ余白 */
  width: 20vw;  /* 画面幅に応じてサイズ調整 */
  max-width: 250px; /* 最大サイズ制限 */
  z-index: -2;  /* 他要素より手前に */
}


/* footer */
.ft-cont {
  display: block;
}

footer {
  padding: 1rem;
    background-image: url(../imgs/santyou-sp.jpg) ;
}

/* planのアコーディオン */
.plan-container {
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.accordion-container {
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}

.accordion-item {
  width: 100%;
  max-width: 400px;
}

.accordion-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

}