/* ============================================= */
/* 基本設定・変数定義 */
/* ============================================= */
:root {
  --font-base: "Zen Kaku Gothic New", sans-serif;
  --font-heading: "Kaisei Tokumin", serif;
  
  --color-bg: #F8F8F4;
  --color-text: #333333;
  
  --color-accent-main: #316745;
  --color-reviews-bg: #6b7b6e;

  --color-btn-feature: #47885e; /* たなかやの魅力ボタン */

  /* 【新規】モノトーンボタンの背景色 */
  --color-btn-mono-bg: #EAEAE0;
  --color-btn-mono-bg-hover: #DCDCD0;

  --color-white: #ffffff;
  --color-border: #dddddd;
}

/* --- 基本スタイルリセット --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    /* ヘッダーの高さ分、コンテンツの開始位置を下にずらす */
    /* ※ヘッダーの高さが変わった場合はこの値を調整 */
    padding-top: 70px; 
}

/* 既存の .header の top: 0 はそのままでOKです */
/* 既存の .header__nav の top: 0 もそのままでOKです */

@media (max-width: 768px) {
    body {
        padding-top: 60px; /* スマホではヘッダーが少し低いので調整 */
    }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 8px; /* 【追加】すべての画像の角を少し丸める */
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  padding: 0;
}

/* --- 共通コンポーネント --- */
.section-title {
  font-size:2.8rem;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
}

.button {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-family: var(--font-base);
  font-size: 0.9rem;
  background-color: var(--color-accent-main);
  color: var(--color-white);
  border: 1px solid var(--color-accent-main);
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 50px; 
}
.button:hover {
  background-color: var(--color-white);
  color: var(--color-accent-main);
  opacity: 1;
}
.button--small {
    padding: 0.6rem 2rem;
}
.button--white {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-text);
  border-radius: 50px;
}
.button--white:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}

/* --- 【デザイン変更】モノトーンボタン --- */
.button--monotone {
    background-color: var(--color-btn-mono-bg);
    color: var(--color-text);
    border: 1px solid var(--color-btn-mono-bg); /* 枠線も同色にして一体感を出す */
    border-radius: 50px;
}
.button--monotone:hover {
    background-color: var(--color-btn-mono-bg-hover);
    border-color: var(--color-btn-mono-bg-hover);
    color: var(--color-text); /* 文字色は変えない */
    opacity: 1;
}


/* ============================================= */
/* ヘッダー */
/* ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background-color: rgba(248, 248, 244, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.header__logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav-item a {
  font-size: 0.9rem;
}
.header__nav-item--reserve a {
    display: inline-block; /* ← この1行を追加 */
    background-color: var(--color-accent-main);
    color: var(--color-white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}
.header__nav-item--reserve a:hover {
    background-color: var(--color-white);
    color: var(--color-accent-main);
    border: 1px solid var(--color-accent-main);
    opacity: 1;
}
.header__hamburger {
  display: none;
}


/* ============================================= */
/* ファーストビュー */


/* ============================================= */
.hero {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  color: var(--color-white);
  overflow: hidden;
}
.hero__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://via.placeholder.com/1920x1080?text=美しい庭園の写真・動画');
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.5;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* 影を少し濃く、広範囲に */
  writing-mode: vertical-rl;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-base);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}
.hero__scroll::after {
    content: '';
    position: absolute;
    top: 5em;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background-color: var(--color-white);
    animation: scroll-down 2s infinite;
}
@keyframes scroll-down {
    0% { height: 0; top: 5em; opacity: 0; }
    50% { height: 50px; top: 5em; opacity: 1; }
    100% { height: 0; top: 10em; opacity: 0; }
}


/* ============================================= */
/* 序文 */
/* ============================================= */
.intro-text {
  padding: 6rem 1rem;
}
.intro-text__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
}


/* ============================================= */
/* お知らせ */
/* ============================================= */
.news {
  padding: 6rem 1rem;
  background-color: var(--color-white);
}
.news__inner {
  max-width: 800px;
  margin: 0 auto;
}
.news__list {
  margin-bottom: 2rem;
}
.news__item a {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.news__date {
  font-size: 0.9rem;
  flex-shrink: 0;
}
.news__label {
  font-size: 0.8rem;
  background-color: var(--color-accent-main);
  color: var(--color-white);
  padding: 0.2em 0.8em;
  margin: 0 1.5rem;
  border-radius: 4px;
}
.news__title {
  font-weight: 500;
}
.news__more-button {
  text-align: center;
}


/* ============================================= */
/* 私たちの想い */
/* ============================================= */

/* 「チームたなかや」セクションの上の余白を調整 */
.our-story-page .recommend-plans {
    padding-top: 3rem; /* 6remから3remに縮小 */
}
.our-story {
    padding: 8rem 2rem;
    overflow: hidden;
}
.our-story__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}
.our-story__image-wrapper {
    width: 55%;
    flex-shrink: 0;
}
.our-story__text-content {
    width: 45%;
	min-width: 0;
}
.our-story__copy {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.our-story__description {
    margin-bottom: 2.5rem;
}
/* ============================================= */
/* 私たちの想いページ スタイル */
/* ============================================= */

/* 役職・担当などを記載する説明テキスト */
.features__item-text-content .role-description {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent-main);
    margin-bottom: 1rem;
}

/* スマホ表示では改行 */
.sp-only {
    display: none;
}


/* --- レスポンシブ (768px) --- */
@media (max-width: 768px) {
  .sp-only {
      display: block;
  }
.recommend-plans__item p {
        text-align: left; /* 左揃えを確実に指定 */
    }
	/* ============================================= */
/* トップページ：私たちの想い（スマホ表示調整） */
/* ============================================= */
.our-story__copy {
    text-align: center;
}
}
/* ============================================= */
/* たなかやの魅力 */
/* ============================================= */
.features {
  padding: 6rem 2rem;
}
.features__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.features__item {
  margin-bottom: 6rem;
}
.features__item:last-child {
    margin-bottom: 0;
}
.features__item-link {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.features__item-link:hover {
    opacity: 1;
}
.features__item-image-wrapper {
  width: 60%;
  flex-shrink: 0;
  overflow: hidden;
}
.features__item-image-wrapper img {
    transition: transform 0.5s;
}
.features__item-link:hover .features__item-image-wrapper img {
    transform: scale(1.05);
}
.features__item-text-content {
  width: 40%;
}
.features__item-text-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.features__item-text-content p {
  margin-bottom: 2rem;
}
.button--feature {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    color: var(--color-white);
    border: 1px solid var(--color-btn-feature);
    background-color: var(--color-btn-feature);
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
}
.button--feature:hover {
    background-color: var(--color-white);
    color: var(--color-btn-feature);
    opacity: 1;
}


/* ============================================= */
/* 若女将だより */
/* ============================================= */
.blog {
    padding: 6rem 2rem;
    background-color: var(--color-white);
}
.blog__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.blog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.blog__item {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.blog__item a {
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
}
.blog__item a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    opacity: 1;
}
.blog__item-body {
    padding: 1rem 1.5rem;
}
.blog__item-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.blog__item-body time {
    font-size: 0.8rem;
    color: #888;
}
.blog__more-button {
    text-align: center;
}


/* ============================================= */
/* Instagram */
/* ============================================= */
.instagram {
    padding: 6rem 2rem;
}
.instagram__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.instagram__description {
    margin-bottom: 2rem;
}
.instagram__more-button {
    text-align: center;
}


/* ============================================= */
/* おすすめのご宿泊 */
/* ============================================= */
.recommend-plans {
    padding: 6rem 2rem;
    background-color: var(--color-white);
}
.recommend-plans__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.recommend-plans__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.recommend-plans__item {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.recommend-plans__item-image-wrapper {
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.recommend-plans__item-image-wrapper img {
    transition: transform 0.4s;
}
.recommend-plans__item:hover .recommend-plans__item-image-wrapper img {
    transform: scale(1.05);
}
.recommend-plans__item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}
.recommend-plans__item p {
    margin-bottom: 1.5rem;
    text-align: left;
    flex-grow: 1;
}
.recommend-plans__item .button--small {
    margin-top: auto;
}


/* ============================================= */
/* すべてのお客様へ */
/* ============================================= */
.inclusivity {
    padding: 6rem 2rem;
    background-color: var(--color-white);
}
.inclusivity__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.inclusivity__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.inclusivity__item {
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.inclusivity__item-icon {
    margin-bottom: 1.5rem;
}
.inclusivity__item-icon img {
    /* アイコンを丸くする指定は削除 */
}
.inclusivity__item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.inclusivity__item p {
    font-size: 0.9rem;
    text-align: left;
}


/* --- 若女将ブログ：アイキャッチ画像のサイズを統一 --- */

.blog__item-image-wrapper {
  height: 220px; /* 画像を表示する高さを固定します (お好みで調整してください) */
  overflow: hidden;
}

.blog__item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* コンテナを埋め尽くすように、画像を中央でトリミング */
  transition: transform 0.4s; /* 既存のホバーエフェクトを維持 */
}
/* ============================================= */
/* フッター */
/* ============================================= */
.footer {
  padding: 6rem 2rem 2rem;
  background-color: #e9e9e2;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__info {
  width: 30%;
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1.5rem;
}
.footer__address {
  font-style: normal;
  margin-bottom: 1rem;
}
.footer__tel {
  margin-bottom: 2rem;
}
.footer__social-links {
  display: flex;
  gap: 1rem;
}
.footer__nav-wrapper {
  width: 70%;
  display: flex;
  gap: 4rem;
}
.footer__nav-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer__nav-list a {
  font-size: 0.9rem;
  display: block;
  padding: 0.3rem 0;
}
.footer__bottom {
  text-align: center;
}
.footer__copyright {
  font-size: 0.8rem;
}


/* ============================================= */
/* レスポンシブ対応 */
/* ============================================= */

/* --- タブレット・スマホ (1082px以下) --- */
@media (max-width: 1082px) {
    /* ヘッダーをハンバーガーメニューに切り替え */
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-bg);
        transform: translateX(100%);
        transition: transform 0.4s;
        padding: 6rem 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header__nav.is-active {
        transform: translateX(0);
    }
    .header__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .header__nav-item a {
        font-size: 1.2rem;
    }
    .header__hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 101;
        cursor: pointer;
        background: none;
        border: none;
    }
    .header__hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--color-text);
        position: absolute;
        transition: all 0.4s;
    }
    .header__hamburger span:nth-child(1) { top: 0; }
    .header__hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .header__hamburger span:nth-child(3) { bottom: 0; }

    .header__hamburger.is-active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
    .header__hamburger.is-active span:nth-child(2) { opacity: 0; }
    .header__hamburger.is-active span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

    /* --- 1列表示に切り替えるセクション --- */
    .blog__list,
    .recommend-plans__list,
    .inclusivity__list {
        grid-template-columns: 1fr;
    }
}


/* --- スマートフォン (768px) --- */
@media (max-width: 768px) {
　　.section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .hero__title { font-size: 2.5rem; }
  .intro-text { padding: 4rem 1rem; overflow:visible; }
  .news { padding: 4rem 1rem; }
  .news__item a { flex-direction: column; align-items: flex-start; gap: 0rem; padding: 0.7rem 0; }
  .news__label { margin: 0; }
 

  .features { padding: 4rem 1rem; }
  .features__item { margin-bottom: 4rem; }
  .features__item-link {
    flex-direction: column;
    gap: 1.5rem;
  }
  .features__item-image-wrapper,
  .features__item-text-content {
    width: 100%;
  }
  .inclusivity { padding: 4rem 1rem; }
  .inclusivity__list { gap: 1.5rem; }
  .inclusivity__item { padding: 1.5rem; }
  .inclusivity__item-icon {
    text-align: center;
  }

  .instagram { padding: 4rem 1rem; }
  .reviews { padding: 5rem 1rem; }
  
  /* フッター(SP) */
  .footer { padding: 4rem 1rem 2rem; }
  .footer__inner { flex-direction: column; }
  .footer__info, .footer__nav-wrapper { width: 100%; }
  .footer__nav-wrapper { flex-direction: column; gap: 2rem; }

  /* ============================================= */
  /* スマホ用ボタンのスタイル */
  /* ============================================= */
  .button,
  .button--feature,
  .button--white,
  .button--monotone {
      display: block;
      width: 100%;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
      padding-top: 0.9rem;
      padding-bottom: 0.9rem;
      font-size: 1rem;
  }
  .button--small {
    padding: 0.9rem 2rem; /* paddingを他のボタンと合わせる */
  }

  .features__item-text-content,
  .recommend-plans__item,
  .inclusivity__item,
  .reviews__inner {
      text-align: left;
  }

  .features__item-text-content h3,
  .recommend-plans__item h3,
  .inclusivity__item h3,
  .commitment__item h3,
  .breakfast-grid__item h4,
  .section-title,
  .reviews__score-wrapper,
  .reviews__item-info {
      text-align: center;
	  font-size: 1.3rem;
  }


  .features__item-text-content p,
  .recommend-plans__item p,
  .inclusivity__item p,
  .reviews__item-text {
      text-align: left;
  }

  .features__item-text-content p,
  .recommend-plans__item p {
       margin-bottom: 2.5rem;
  }

}
/* ============================================= */
/* 調整・修正 (全ページ共通)
/* ============================================= */

/* --- 固定ヘッダーによるコンテンツの隠れ防止 --- */
body {
    padding-top: 70px;
}
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
}

/* --- 見出しスタイルの調整 --- */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.features__item-text-content h3,
.tab-content__text h3,
.recommend-plans__item h3 {
  font-size: 1.5rem;
}


/* ============================================= */
/* 料理ページ (Cuisine Page)
/* ============================================= */

/* --- ページ共通コンポーネント --- */
.page-hero {
  position: relative;
  height: 45vh;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
}
.page-hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.3); z-index: 1; }
.page-hero__inner { position: relative; z-index: 2; text-align: center; }
.page-hero__title { font-size: 3.5rem; font-family: var(--font-heading); text-shadow: 1px 1px 5px rgba(0,0,0,0.5); }
.page-hero__subtitle { font-size: 1.1rem; letter-spacing: 0.1em; }
/* ページヒーローのサブタイトル（下層ページ共通） */
.page-hero__subtitle {
  display: block; /* メインタイトルの下で改行させる */
  font-size: 1.5rem; /* 文字を小さく */
  font-weight: 400;  /* 少し細くしてメリハリを */
  margin-top: 0.8rem;  /* 上のタイトルとの余白 */
  letter-spacing: 0.1em; /* 文字間を少し空ける */
  text-shadow: none; /* メインタイトルと異なり、影をなくしてスッキリ見せる */
}
.breadcrumb { background-color: var(--color-white); padding: 0.8rem 1rem; font-size: 0.8rem; border-bottom: 1px solid var(--color-border); }
.breadcrumb__inner { max-width: 1100px; margin: 0 auto; }
.section-description { max-width: 800px; margin: 0 auto 3rem; text-align: center; line-height: 1.8; }
.cuisine-section-copy { font-family: var(--font-heading); font-size: 2rem; line-height: 1.6; margin-bottom: 2rem; }

/* --- 会席スライダー (Swiper) --- */
.cuisine-course {
  padding: 6rem 0;
  background-color: var(--color-white);
  overflow: hidden; /* スライダーがはみ出さないように */
}
.cuisine-course__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.course-slider {
  overflow: visible; 
  margin: 0 -1rem;
  padding: 0 1rem;
}
.swiper-slide {
  opacity: 0.4;
  transform: scale(0.9);
  transition: opacity 0.4s, transform 0.4s;
  /* ★画像の表示幅を大きくするため、スライド幅を調整 */
  width:97%; 
}
.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.tab-content {
  display: flex;
  gap: 2rem; /* テキストとの余白を少し調整 */
  align-items: center;
  background-color: var(--color-bg);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07); /* 少し影をつけて立体感を出す */
}
.tab-content__image {
  /* 画像の比率を拡大 */
  width: 65%; 
  flex-shrink: 0;
}
.tab-content__text {
  /* テキストの比率を調整 */
  width: 35%;
}
/* ---【追記ここから】会席スライダーのページネーション修正 --- */

/* ★セレクタの詳細度を上げて、SwiperライブラリのCSSに打ち勝つ */
.cuisine-course .swiper-pagination {
  /* Swiperのデフォルト配置（絶対配置）をリセット */
  position: static;
  bottom: auto;
  left: auto;
  width: auto;
  
  /* インデックス（タブ）のレイアウト */
  margin-top: 1rem; /* スライダーとの間隔を調整 */
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-bottom: 1px solid var(--color-border);
  gap: 2rem;
}

/* ★セレクタの詳細度を上げる */
.cuisine-course .swiper-pagination-bullet {
  /* Swiperのデフォルトの丸いスタイルをリセット */
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  
  /* インデックス（タブ）の見た目 */
  padding: 0.8rem 1rem;
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transform: translateY(1px);
}

/* ★セレクタの詳細度を上げる */
.cuisine-course .swiper-pagination-bullet-active {
  /* 選択中のタブのスタイル */
  background: transparent;
  color: var(--color-accent-main);
  font-weight: 700;
  border-bottom-color: var(--color-accent-main);
}
/* --- プランの注釈スタイル --- */
.plan-note {
    display: block; /* 親要素いっぱいに広がるように */
    margin-top: 1rem; /* 上の文章との余白 */
    padding: 0.8rem 1rem; /* 内側の余白 */
    font-size: 0.8rem; /* 文字を少し小さくする */
    color: #555; /* 文字色を少し薄くする */
    background-color: var(--color-bg); /* 背景色を少し変える */
    border-radius: 6px; /* 角を丸くする */
    text-align: left; /* 左揃え */
}
/* ---【追記ここまで】--- */

/* --- 朝食セクション --- */
/* --- 朝食セクションのメイン画像 --- */
.cuisine-breakfast__main-image {
  margin-bottom: 3rem; /* 下のグリッドとの余白 */
}
/* --- お料理ページ：お子様ランチ献立のスタイル --- */
.kids-menu {
    margin-top: 1.5rem; /* 上の説明文との余白 */
    padding-top: 1rem;
    border-top: 1px solid var(--color-border); /* 説明文との間に区切り線を入れる */
}

.kids-menu__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left; /* 左揃えにする */
}

.kids-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列のグリッドレイアウト */
    gap: 0.5rem 1rem; /* アイテム間の余白（縦 横） */
    font-size: 0.9rem;
    text-align: left; /* 左揃えにする */
}

.kids-menu__list li::before {
    content: '・'; /* 各項目の先頭に中黒を追加 */
    margin-right: 0.5em;
    color: var(--color-accent-main);
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
	
/* プラン注釈の上の余白を調整 */
	.plan-note {
		margin-top:-1.8rem; /* 1remから少し詰めます */
    }
  .cuisine-breakfast__main-image {
    margin-bottom: 2.5rem;
  }
}
.cuisine-breakfast { padding: 6rem 2rem; background-color: var(--color-white); }
.cuisine-breakfast__inner { max-width: 1100px; margin: 0 auto; }
.breakfast-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.breakfast-grid__item { text-align: left; }
.breakfast-grid__item img { width: 100%; margin-bottom: 1rem; }
.breakfast-grid__item h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.breakfast-grid__item p { font-size: 0.9rem; margin: 0; }

/* --- 2カラムレイアウト用 (個室・お子様) --- */
.inclusivity__list--2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.inclusivity__list--2col .inclusivity__item { max-width: none; }
/* お子様ランチのアイテムだけ、高さ揃えを解除 */
/* --- 献立リストがあるボックスの高さ揃えを解除 --- */
.inclusivity__item--no-stretch {
    align-self: start;
}

/* --- 食材へのこだわり --- */
.commitment { padding: 6rem 2rem; background-color: var(--color-white); }
.commitment__inner { max-width: 1000px; margin: 0 auto; }
.commitment__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.commitment__item-image { margin-bottom: 1.5rem; }
.commitment__item h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.commitment__item p { font-size: 0.9rem; margin: 0; }


/* --- 追加料理 --- */
.a-la-carte { padding: 6rem 2rem; }
.a-la-carte__inner { max-width: 1200px; margin: 0 auto; }
.a-la-carte__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.a-la-carte__item { text-align: center; border: 1px solid var(--color-border); border-radius: 8px; padding: 1.5rem; background: var(--color-white); }
.a-la-carte__item.is-hidden { display: none; }
.a-la-carte__item img { width: 100%; margin-bottom: 1rem; }
.a-la-carte__item h4 { font-size: 1.2rem; }
.a-la-carte__item p { font-size: 1rem; color: var(--color-text); margin: 0; }
.a-la-carte__more-button { text-align: center; }

/* --- お飲み物 --- */
.drinks { padding:6rem 2rem; background-color: var(--color-white); }
.drinks__inner { max-width: 800px; margin: 0 auto; }
.drinks__buttons { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }


/* ============================================= */
/* レスポンシブ (Cuisine Page)
/* ============================================= */
@media (max-width: 992px) {
  .a-la-carte__list { grid-template-columns: repeat(2, 1fr); }
  .commitment__list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* --- 見出し・導入文 --- */
  .section-title { font-size: 1.8rem; line-height: 1.6; margin-bottom: 1.5rem; }
  .features__item-text-content h3, .tab-content__text h3, .recommend-plans__item h3, .commitment__item h3 { font-size: 1.3rem; }
  .section-description { text-align: left; margin-bottom: 2.5rem; padding: 0 1rem; }

  /* --- その他ページ要素 --- */
  .page-hero { height: 35vh; }
 /* ▼▼▼ この部分を丸ごと差し替え ▼▼▼ */
.page-hero {
    padding-top: 3rem; /* 上に余白を追加 */
    padding-bottom: 3rem;
    height: auto; /* 高さを自動調整に変更 */
    min-height: 40vh;
}

.page-hero__title {
    font-size: 1.9rem; /* メインタイトルを調整 */
    line-height: 1.6;
    margin-bottom: 1.2rem; /* サブタイトルとの余白を確保 */
}

.page-hero__subtitle {
    font-size: 1rem; /* サブタイトルを小さくする */
}
/* ▲▲▲ ここまで ▲▲▲ */
  .cuisine-section-copy { font-size: 1.8rem; text-align: center; }
  
  /* スライダー */
  .tab-content { flex-direction: column; gap: 1.5rem; }
  .tab-content__image, .tab-content__text { width: 100%; }
  
  .breakfast-grid, .inclusivity__list--2col, .a-la-carte__list { grid-template-columns: 1fr; }
  
  .drinks__buttons { flex-direction: column; gap: 1rem; }
}
/* ============================================= */
/* 客室ページ (Rooms Page) - 改善
/* ============================================= */

/* --- 庭園ページへのリンク --- */
.garden-link {
    background-color: var(--color-white);
    padding: 1.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}
.garden-link p {
    margin: 0;
}
.garden-link a {
    text-decoration: underline;
    font-weight: 700;
    margin-left: 1em;
}
.garden-link a:hover {
    color: var(--color-accent-main);
    text-decoration: none;
}

/* --- 客室ギャラリー (Swiper) --- */
.room-gallery {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
	position: relative; /* ← この1行を追記してください */
}

.room-gallery .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.room-gallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* スライド内では角丸にしない */
}

/* Swiperの矢印とページネーションの色をサイトのテーマに合わせる */
/* --- 変更箇所 --- */
.room-gallery .swiper-button-next,
.room-gallery .swiper-button-prev {
    color: var(--color-accent-main);
    background-color: rgba(255, 255, 255, 0.7);
    /* サイズを44pxから54pxへ拡大 */
    width: 54px; 
    height: 54px;
    border-radius: 50%;
    transition: background-color 0.3s; /* ホバー効果を追加 */
	opacity: 1; /* ← この行を追加 */
}

/* --- 追加 --- */
/* ボタンホバー時に背景色を少し濃くして、反応していることを分かりやすくする */
.room-gallery .swiper-button-next:hover,
.room-gallery .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.9);
}


/* --- 変更箇所 --- */
.room-gallery .swiper-button-next:after,
.room-gallery .swiper-button-prev:after {
    /* アイコンサイズもボタンに合わせて少し大きく */
    font-size: 1.5rem;
    font-weight: 700;
}

.room-gallery .swiper-pagination-bullet {
    background: var(--color-accent-main);
}
.room-gallery .swiper-pagination-bullet-active {
    background: var(--color-accent-main);
}

/* features__item内のボタンの調整 */
.features__item .button--feature {
    margin-top: 1rem;
}

/* features__item-linkからホバー効果を削除 */
.features__item-link:hover .features__item-image-wrapper img {
    transform: none;
}
.features__item-link {
    align-items: flex-start; /* テキスト量に応じて高さを可変にするため */
}
/* ▼▼▼ この定義を丸ごと差し替え ▼▼▼ */
.feature-section__description {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #555555;         /* ← 文字の色を少し薄くしました */
    max-width: 350px;       /* ← 文章の最大幅をボタンに近づけました */
}
/* ▲▲▲ ここまで ▲▲▲ */

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .features__item-link {
        align-items: center; /* スマホでは中央揃えに戻す */
    }
}


/* ============================================= */
/* 温泉ページ (Onsen Page) */
/* ============================================= */

.onsen-section__subtitle {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 4rem; /* 上のセクションとの余白 */
}

/* --- 泉質・効能テーブル --- */
.onsen-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  font-size: 1rem;
}

.onsen-table th,
.onsen-table td {
  border: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
  text-align: left;
  vertical-align: top;
}

.onsen-table th {
  background-color: var(--color-bg); /* bodyの背景色と同じ */
  font-weight: 700;
  width: 25%;
}

/* --- お客様の声 --- */
.onsen-review__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.onsen-review__item {
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 8px;
  background-color: var(--color-white);
}

.onsen-review__text {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-align: left;
}
.onsen-review__text::before {
  content: '「';
}
.onsen-review__text::after {
  content: '」';
}

.onsen-review__info {
  font-size: 0.9rem;
  text-align: right;
  color: #666;
}


/* --- 日帰り入浴 --- */
.day-trip {
  background-color: var(--color-white);
}

.onsen-daytrip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.onsen-daytrip-list li {
  padding: 0.5rem 0;
}
.onsen-daytrip-list li strong {
  display: inline-block;
  width: 6em; /* ラベルの幅を揃える */
}

.day-trip__coupon {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
}
.day-trip__coupon-title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
}
.day-trip__coupon p {
  margin: 0;
}

/* ============================================= */
/* レスポンシブ (温泉ページ) */
/* ============================================= */
@media (max-width: 768px) {
  .onsen-table th,
  .onsen-table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .onsen-table tr {
    border-bottom: 1px solid var(--color-border);
    display: block;
    padding: 1rem 0;
  }
  .onsen-table th {
    border-bottom: none;
    background-color: transparent;
    padding-bottom: 0.5rem;
  }
  .onsen-table td {
      border-top: none;
      padding-top: 0;
      padding-left: 1.5rem;
  }
  .onsen-table tbody:last-child tr:last-child {
      border-bottom: none;
  }
  
  .onsen-daytrip-list li strong {
    width: auto;
    margin-right: 0.5em;
  }

}
/* --- 区切り線 --- */
.section-divider {
  height: 1px;
  width: 100px; /* 短めの線でアクセントに */
  background-color: var(--color-border);
  margin: 0 auto; /* 中央揃え */
}

/* --- 温泉ページ：物語（巻物風） --- */
.story-scrollbox {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  height: 250px;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-heading);
  line-height: 2.2;
  color: var(--color-text);
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-main) var(--color-bg);

  /* ▼▼▼【追加・修正】ここから ▼▼▼ */
  width: 100%; /* 親要素に対して100%の幅を持つように指定 */
  box-sizing: border-box; /* paddingを含めて幅を計算するように指定 */
  /* ▲▲▲【追加・修正】ここまで ▲▲▲ */
}
.story-scrollbox::-webkit-scrollbar {
  width: 6px;
}
.story-scrollbox::-webkit-scrollbar-track {
  background: var(--color-bg);
  border-radius: 10px;
}
.story-scrollbox::-webkit-scrollbar-thumb {
  background-color: var(--color-accent-main);
  border-radius: 10px;
}
.story-scrollbox p {
  margin: 0;
  padding-left: 1rem; /* スクロールバーとの余白 */
}

/* --- レスポンシブ (巻物風) --- */
@media (max-width: 768px) {
/* =================================== */
/* スマホ表示：物語セクションの抜本修正 */
/* =================================== */

/* 親コンテナの左右の余白をなくし、画面幅いっぱいの「土台」を作る */
.our-story {
    padding: 4rem 0; /* 左右の余白を0に */
}

/* 通常のテキストや画像は、内側のコンテナで余白を確保 */
.our-story__inner {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem; /* ここで左右の余白を制御 */
}

.our-story__image-wrapper,
.our-story__text-content {
    width: 100%;
}
.our-story__text-content {
    text-align: left;
}

/* 画面幅いっぱいにしたい「温泉の物語」セクションだけを特別扱い */
.our-story--story-focused .our-story__inner {
    padding: 0; /* 内側の余白をなくす */
    gap: 0; /* 画像とテキストの隙間をなくす */
}

/* 画像の下に余白を追加 */
.our-story--story-focused .our-story__image-wrapper {
    margin-bottom: 2rem;
}

/* テキスト部分には、必要な箇所にだけ手動で余白を追加 */
.our-story--story-focused .our-story__text-content {
    padding: 0 1rem; /* タイトルと巻物の左右に余白を確保 */
}

/* 巻物（スクロールボックス）のスタイル */
.story-scrollbox {
    writing-mode: horizontal-tb;
    height: auto;
    max-height: 300px;
    line-height: 1.8;

    /* ▼▼▼【変更箇所】▼▼▼ */
    /* 幅を90%に設定し、左右のマージンを自動にすることで中央寄せします */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    
    /* 全幅表示で消していた枠線を、再度表示します */
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.story-scrollbox p {
    padding: 0 1rem 1rem 1rem; /* 巻物の内側に改めて余白を設ける */
}

}

/* ============================================= */
/* ユーティリティスタイル */
/* ============================================= */

/* インラインテキストリンク */
.link-inline {
  text-decoration: underline;
  text-underline-offset: 0.2em; /* 文字と下線の間に少し余白を持たせる */
  color: var(--color-accent-main); [cite_start]/* サイトのアクセントカラーを適用 [cite: 2] */
}
.link-inline:hover {
  text-decoration: none; /* ホバー時には下線を消す */
  opacity: 0.7; [cite_start]/* 既存のホバー効果を継承 [cite: 9] */
}

/* ============================================= */
/* ギャラリーページ調整 */
/* ============================================= */

/* 選択中のフィルターボタンのデザイン */
.button--monotone.is-active {
    background-color: var(--color-accent-main);
    border-color: var(--color-accent-main);
    color: var(--color-white);
}

/* ギャラリーアイテムのスタイル */
.gallery-item {
    overflow: hidden; /* 画像のはみ出し防止 */
    border-radius: 8px;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.gallery-item:hover {
    opacity: 0.8;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* フィルタリングで非表示にする際のスタイル */
.gallery-item.is-hidden {
    display: none;
}
/* ギャラリーのフィルターボタンのレイアウト調整 */
.gallery-filters {
    display: flex; /* ボタンを横並びにする */
    flex-wrap: wrap; /* 画面が狭くなったら自動で折り返す */
    justify-content: center; /* ボタンを中央揃えにする */
    gap: 0.8rem 1rem; /* ボタンの縦と横の隙間を空ける */
}

/* ▼▼▼ ここからコピー ▼▼▼ */
/* ============================================= */
/* アクセス (トップページ) */
/* ============================================= */
.access {
    padding: 6rem 2rem;
    background-color: var(--color-white);
}

.access__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.access .section-description {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.access__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.access__map {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.access__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.access__info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.access__info-group {
    margin-bottom: 2.5rem;
}

.access__info-group:last-child {
    margin-bottom: 0;
}

.access__info ul {
    list-style: none;
    padding-left: 0;
}

.access__info li {
    margin-bottom: 0.5rem;
    padding-left: 1em;
    text-indent: -1em;
}
.access__info li::before {
    content: '・';
    margin-right: 0.5em;
}

/* ★変更点1：送迎とバスのボックススタイルを統合・効率化 */
.access__pickup-info,
.access__bus-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

/* ★変更点2：ボックス内の見出しスタイルを統合・余白を調整 */
.access__pickup-info h4,
.access__bus-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent-main);
    margin: 0 0 0.8rem 0; /* 見出し下の余白を詰めて統一 */
}

/* 路線バスボタンのスタイル */
.access__bus-buttons {
    display: flex;
    gap: 1rem;
}
.bus-button-item {
  flex: 1;
  text-align: center;
}
.bus-button-description {
  font-size: 0.8rem;
  color: #555;
  margin-top: 0.8rem;
  line-height: 1.6;
  text-align: left;
}

/* --- レスポンシブ対応 (アクセス) --- */
@media (max-width: 992px) {
    .access__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .access__map {
        padding-bottom: 60%;
    }
}

@media (max-width: 768px) {
    .access {
        padding: 4rem 1rem;
    }
    .access .section-description {
        text-align: left;
        margin-bottom: 2.5rem;
    }
    .access__info h3 {
        font-size: 1.3rem;
    }
    
    .access__bus-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    .bus-button-item {
        width: 100%;
    }
    .bus-button-description {
        text-align: left; /* ← center から left へ変更 */
    }
}
/* ▲▲▲ ここまでコピー ▲▲▲ */
/* ============================================= */
/* 田中冬二ページ：タブ切り替え */
/* ============================================= */
.tab-container {
    max-width: 960px; /* 800pxから960pxに拡大 */
    margin: 0 auto;
}

/* タブナビゲーションのスタイル */
.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 2rem;
}
.tab-btn {
    padding: 0.8rem 1.2rem; /* 左右の余白を1.5remから1.2remに微調整 */
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    transform: translateY(2px);
    white-space: nowrap; /* ボタン内でテキストが改行しないように設定 */
}
.tab-btn:hover {
    opacity: 1;
    color: var(--color-accent-main);
}
.tab-btn.is-active {
    color: var(--color-accent-main);
    border-bottom-color: var(--color-accent-main);
}

/* タブコンテンツのスタイル */
.tab-panel {
    display: none; /* デフォルトは非表示 */
    animation: fadeIn 0.5s;
}
.tab-panel.is-active {
    display: block; /* is-activeクラスがついたら表示 */
}
.tab-panel h3 {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* レスポンシブ表示切り替え用ユーティリティ */
/* ============================================= */

/* PC表示のときだけ表示（スマホで非表示） */
.pc-only {
  display: inline; /* PCでは通常通り表示 */
}

@media (max-width: 768px) {
  /* スマホ表示のときだけ非表示 */
  .pc-only {
    display: none;
  }
}
/* style.css2.css に追記 */
.inclusivity__list--4col {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .inclusivity__list--4col {
        grid-template-columns: repeat(2, 1fr); /* タブレットでは2列 */
    }
}

@media (max-width: 768px) {
    .inclusivity__list--4col {
        grid-template-columns: 1fr; /* スマホでは1列 */
    }
}


/* ============================================= */
/* FAQページ (FAQ Page) */
/* ============================================= */

.faq-page-section {
    padding: 6rem 2rem;
}

/* FAQタブナビゲーションのスタイル */
.faq-page-section .tab-nav {
    display: flex;
    justify-content: center; /* タブボタンを中央揃えに */
    flex-wrap: wrap; /* ボタンが多すぎる場合に折り返す */
    gap: 0.5rem; /* ボタン間の隙間を調整 */
    margin-bottom: 3rem; /* タブとコンテンツの間の余白 */
    border-bottom: none; /* 下線を削除し、アクティブなボタンにのみ下線を表示 */
}

.faq-page-section .tab-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-btn-mono-bg); /* モノトーンボタンの背景色を使用 */
    border: 1px solid var(--color-btn-mono-bg); /* 枠線も同色に */
    border-radius: 50px; /* 角を丸くする */
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap; /* テキストの折り返しを防ぐ */
}

.faq-page-section .tab-btn:hover {
    background-color: var(--color-btn-mono-bg-hover);
    border-color: var(--color-btn-mono-bg-hover);
    color: var(--color-text);
    opacity: 1; /* 共通ボタンのopacity:0.7を上書き */
}

.faq-page-section .tab-btn.is-active {
    background-color: var(--color-accent-main); /* アクティブ時の背景色 */
    border-color: var(--color-accent-main); /* アクティブ時の枠線色 */
    color: var(--color-white); /* アクティブ時の文字色 */
    /* アクティブ時の下線スタイルは不要（背景色で表現） */
    transform: none; /* translateY(2px) をリセット */
}

/* FAQリストのスタイル */
.faq-list {
    max-width: 800px; /* FAQコンテンツの最大幅を制限 */
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem; /* 各FAQアイテム間の余白 */
    border: 1px solid var(--color-border); /* アイテムの枠線 */
    border-radius: 8px; /* 角を丸くする */
    overflow: hidden; /* 子要素の角丸がはみ出さないように */
    background-color: var(--color-white); /* 背景色 */
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    background-color: var(--color-white); /* 質問部分の背景色 */
    transition: background-color 0.3s;
}

/* 質問の行にカーソルを乗せたときに背景色を変える */
/* 既存のスタイルは重複するため削除・統合 */
.faq-item__question:hover {
    background-color: #f5f5f0; /* 少し薄い色でホバー効果 */
}


.faq-item__question-text {
    flex-grow: 1;
    line-height: 1.6;
}

.faq-item__icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s;
    margin-left: 1rem; /* アイコンとテキストの間の余白 */
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg); /* 開いたときにアイコンを回転 */
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out; /* 開閉アニメーション */
    background-color: var(--color-bg); /* 回答部分の背景色 */
    border-top: 1px solid var(--color-border); /* 質問との境界線 */
}

.faq-item.is-open .faq-item__answer {
    max-height: 50rem; /* 回答が十分収まる高さを指定 (コンテンツに合わせて調整) */
    /* paddingはinnerに適用することで、max-heightによるアニメーションに影響を与えない */
}

.faq-item__answer-inner {
    padding: 1.5rem; /* 回答コンテンツの内側の余白 */
}

.faq-item__answer-inner p {
    margin-bottom: 1rem; /* 段落間の余白 */
}

.faq-item__answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-item__answer-inner strong {
    color: var(--color-accent-main); /* 強調テキストのカラー */
}

.faq-item__answer-inner .note {
    font-size: 0.85rem;
    color: #666;
    display: block; /* 複数行の場合にブロック要素にする */
    margin-top: 0.8rem; /* 上のコンテンツとの余白 */
    border-top: 1px dashed #ccc; /* 注意書きの上部に点線を入れる */
    padding-top: 0.8rem;
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
    .faq-page-section {
        padding: 4rem 1rem;
    }

    .faq-page-section .tab-nav {
        gap: 0.4rem;
        margin-bottom: 2rem;
        justify-content: flex-start; /* スマホでは左寄せに */
        overflow-x: auto; /* 横スクロールを可能に */
        padding-bottom: 0.5rem; /* スクロールバーが見えるように少し余白 */
        -webkit-overflow-scrolling: touch; /* スムーズなスクロール */
    }
    .faq-page-section .tab-nav::-webkit-scrollbar {
        height: 4px;
    }
    .faq-page-section .tab-nav::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    .faq-page-section .tab-nav::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }

    .faq-page-section .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .faq-item__question {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }

    .faq-item__answer-inner {
        padding: 1.2rem;
    }
}
/* For English hero title layout */
.lang-en .hero__title {
  writing-mode: horizontal-tb;
  text-align: center;
}

/* =======================================
   英語ページ用の調整 (English Page Adjustments)
   ======================================= */

/* --- 縦書きテキストの横書き化 --- */

/* トップページのメインコピー */
.lang-en .hero__title {
  writing-mode: horizontal-tb;
  text-align: center;
}

/* 温泉ページの「伝説の物語」の見出しと巻物 */
.lang-en .our-story--story-focused .cuisine-section-copy {
  writing-mode: horizontal-tb; /* 横書きにする */
  text-align: left;           /* 左揃えにする */
  padding-bottom: 2rem;       /* 下に余白を追加 */
}

.lang-en .story-scrollbox {
  writing-mode: horizontal-tb; /* 横書きにする */
  height: auto;               /* 高さを自動調整 */
  max-height: 300px;          /* スクロール可能な最大高さを設定 */
  line-height: 1.8;           /* 行間を調整 */
}

/* --- 温泉ページ：湯のちからセクションのメイン画像 --- */
.onsen-power__image {
  margin-bottom: 4rem; /* 下の「泉質・効能」見出しとの余白 */
  text-align: center; /* 画像を中央揃え */
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .onsen-power__image {
    margin-bottom: 3rem;
  }
}

/* --- 温泉ギャラリー：ナビゲーションボタンの位置調整 --- */
.onsen-gallery .swiper-button-prev,
.onsen-gallery .swiper-button-next {
    color: var(--color-black);
    top: 50%;
    transform: translateY(-50%); /* 垂直中央揃え */
    width: 44px;  /* サイズを客室ページと合わせる */
    height: 44px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.onsen-gallery .swiper-button-prev:hover,
.onsen-gallery .swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.onsen-gallery .swiper-button-prev::after,
.onsen-gallery .swiper-button-next::after {
    font-size: 1rem; /* アイコンサイズ */
}

@media (max-width: 768px) {
    .features__item-text-content .role-description {
        text-align: center;
    }
}
/* =================================== */
/* プランの注意書きボックスのスタイル */
/* =================================== */
.plan-important-note {
    max-width: 600px; /* ボックスの最大幅 */
    margin: 2.5rem auto 0 auto; /* 上に余白、左右は自動で中央寄せ */
    padding: 1rem 1.5rem; /* 内側の余白 */
    background-color: var(--color-white); /* 背景色 */
    border: 1px dashed var(--color-border); /* 点線の枠線 */
    border-radius: 8px; /* 角を丸くする */
    text-align: center; /* テキストを中央揃え */
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555; /* 文字色を少し濃くする */
}

.recommend-plans__item:hover {
    opacity: 1;
}

/* =================================== */
/* ギャラリーのグリッドレイアウト */
/* =================================== */

/* PC表示のスタイル */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0 2rem 6rem;
}

/* スマホ表示のスタイル */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 1rem 4rem;
    }
}
/* ============================================= */
/* ページヒーロー（背景色バージョン） */
/* ============================================= */
.page-hero--color-bg {
    background-color: var(--color-accent-main);
    background-image: none !important; /* HTMLに直接書かれた背景画像を無効化します */
}

/* 背景色が濃いため、中の文字色を白にします */
.page-hero--color-bg .page-hero__title,
.page-hero--color-bg .page-hero__subtitle {
    color: var(--color-white);
    text-shadow: none; /* 濃い背景なので文字の影は不要にします */
}

/* 背景画像用の黒いオーバーレイを無効化します */
.page-hero--color-bg::after {
    background-color: transparent;
}

/* ============================================= */
/* 田中冬二ギャラリー：セクション画像 */
/* ============================================= */
.section-image {
 max-width: 800px; /* 画像の最大幅 */
 margin: 2rem auto; /* 上下の余白と中央寄せ */
 text-align: center; /* 画像を中央に配置（inline要素の場合） */
}

.section-image img {
 max-width: 100%; /* 親要素に合わせて画像の幅を調整 */
 height: auto; /* 高さ自動調整で縦横比を維持 */
 display: block; /* 画像をブロック要素として扱う（中央寄せのため） */
 margin: 0 auto; /* 画像自体を中央寄せ */
 border-radius: 8px; /* 必要であれば角を丸くする */
 box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* 必要であれば হালকা影をつける */
}
/* =================================== */
/* フッターのメールアドレス表示調整 */
/* =================================== */
.footer__email {
    margin-top: -1rem; /* 電話番号との間隔を少し詰めます */
    margin-bottom: 2rem;
}
/* =================================== */
/* 田中冬二ページ：年譜テーブルのスマホ表示修正 */
/* =================================== */
@media (max-width: 768px) {
    /* 年譜テーブルが入っているタブコンテナに横スクロールを許可 */
    #tab3 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* スムーズなスクロール */
    }

    /* 年譜テーブルのレイアウト崩れをリセット */
    #tab3 .onsen-table {
        display: table;
        width: 100%;
        min-width: 500px; /* テーブルが縮みすぎないように最小幅を設定 */
        border-collapse: collapse; /* 枠線を結合して綺麗に見せる */
    }

    /* テーブルの各パーツを本来のテーブル表示に戻す */
    #tab3 .onsen-table thead { display: table-header-group; }
    #tab3 .onsen-table tbody { display: table-row-group; }
    #tab3 .onsen-table tr    { display: table-row; }

    /* 各セルの表示を正しく設定 */
    #tab3 .onsen-table th,
    #tab3 .onsen-table td {
        display: table-cell;
        width: auto;
        text-align: left;
        position: static;
        border: 1px solid var(--color-border);
        padding: 0.8rem 1rem;
        vertical-align: middle; /* 文字を上下中央に揃える */
    }
    
    /* 各列の幅をヘッダーで指定し、下の行もそれに追従させる */
    #tab3 .onsen-table th:nth-child(1) { width: 20%; } /* 西暦 */
    #tab3 .onsen-table th:nth-child(2) { width: 15%; } /* 年齢 */
    #tab3 .onsen-table th:nth-child(3) { width: 65%; } /* 出来事 */

    #tab3 .onsen-table td::before {
        content: none; /* 不要なラベル表示を無効化 */
    }
}
/* =================================== */
/* 「私たちの想い」ページ：ヒーロー文字位置（スマホ） */
/* =================================== */
@media (max-width: 768px) {
    /* 親要素であるヒーローセクション自体の、アイテム配置方法を変更します */
    .page-hero--our-story {
        place-items: end start; /* 垂直方向：下寄せ、水平方向：左寄せ */
    }

    /* 内側のコンテナに余白を設定します */
    .page-hero--our-story .page-hero__inner {
        padding: 2rem 1rem;
    }

    /* 文字を左揃えにし、サイズを調整します */
    .page-hero--our-story .page-hero__title {
        text-align: left;
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .page-hero--our-story .page-hero__subtitle {
        text-align: left;
        font-size: 1rem;
    }
}
/* =================================== */
/* ヘッダーロゴ画像のスタイル */
/* =================================== */
/* ヘッダーの上下の余白を調整してロゴのスペースを確保 */
.header {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: padding 0.3s; /* スムーズな変化のため */
}

.header__logo img {
    height: 54px; /* PCでの最大サイズ */
    width: auto;
}

/* スマートフォン表示の際のロゴの高さ */
@media (max-width: 768px) {
    .header__logo img {
        height: 44px; /* スマホでの最大サイズ */
    }
}
/* =================================== */
/* 客室ページ：設備テーブルのスマホ表示修正 */
/* =================================== */
@media (max-width: 768px) {
    /* テーブルの各要素をブロック表示に変更 */
    .amenities-table,
    .amenities-table tbody,
    .amenities-table tr,
    .amenities-table td {
        display: block;
        width: 100%;
    }

    /* PC用のヘッダーはスマホでは不要なため非表示に */
    .amenities-table thead {
        display: none;
    }

    /* 各行をカードのように見せるためのスタイル */
    .amenities-table tr {
        margin-bottom: 1.5rem;
        border: 1px solid var(--color-border); /* カード全体を線で囲む */
        border-radius: 8px;
        overflow: hidden; /* 角丸をきれいに出すため */
    }
    .amenities-table tr:last-child {
        margin-bottom: 0;
    }

    /* 「項目」のセルをカードのヘッダーのように見せる */
    .amenities-table td[data-label="項目"] {
        font-weight: 700;
        background-color: var(--color-bg);
        border-bottom: 1px solid var(--color-border); /* 内容との区切り線 */
        text-align: center;
        padding: 1rem;
    }
    
    /* 「内容」のセルのスタイル */
    .amenities-table td[data-label="内容"] {
        padding: 1rem 1.2rem;
        text-align: left;
        line-height: 1.7;
        border: none; /* 元のテーブルの枠線は不要 */
    }
}

/* =================================== */
/* トップページ：ヒーロータイトルの位置調整 */
/* =================================== */

/* 日本語ページ(.lang-enクラスが無いbody)の時だけ、タイトルを左にずらす */
body:not(.lang-en) .hero__title-wrapper {
    /* Y軸方向（上方向）の移動を追加。-8vhは画面の高さの8%分上へ移動します */
    transform: translate(-10rem, -8vh);
}

/* 英語ページ(.lang-enクラスが有るbody)の時は、ずらさない(中央のまま) */
body.lang-en .hero__title-wrapper {
    /* 英語ページもバナーに被る場合は同様に上に上げます */
    transform: translate(0, -8vh);
}

@media (max-width: 768px) {
    /* スマートフォン表示の時 */
    body:not(.lang-en) .hero__title-wrapper {
        /* スマホでは上に上げる必要がないため、元の指定（X軸の移動のみ）に戻します */
        transform: translateX(-5rem);
    }
}
/* =================================== */
/* 料理ページ：会席スライダーのスマホ表示修正（最大化版） */
/* =================================== */
@media (max-width: 768px) {
    .cuisine-course {
        padding: 4rem 0; /* 上下の余白のみにする */
    }
    .cuisine-course__inner {
        padding: 0; /* 左右の余白をなくす */
    }

    /* スライド自体の左右の余白をなくす */
    .course-slider .swiper-slide {
        padding: 0;
        width: 100%;
        transform: none;
        opacity: 1;
    }
    
    /* 画像とテキストを囲むボックスの余白やデザインをリセット */
    .tab-content {
        flex-direction: column;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background-color: transparent;
    }

    /* 画像の角丸をなくし、画面の端にフィットさせる */
    .tab-content__image img {
        border-radius: 0;
    }

    /* テキスト部分にだけ、改めて余白を追加 */
    .tab-content__text {
        width: 100%;
        padding: 1.5rem 1rem; /* テキストの上下左右に余白を設定 */
        background-color: var(--color-bg); /* テキスト部分の背景色 */
    }
}
/* =================================== */
/* スライダーの動作を滑らかにするための調整 */
/* =================================== */

/* これから動く要素（スライド）をブラウザに伝えておく */
.swiper-slide {
    will-change: transform, opacity;
}

/* 料理ページの会席スライダーの transition を微調整 */
.course-slider .swiper-slide {
    transition: opacity 0.4s, transform 0.4s;
}

/* ブログカードの影のアニメーションを、より軽い transform と opacity に変更 */
.blog__item a {
    transition: box-shadow 0.3s, transform 0.3s, opacity 0.3s;
}
.blog__item a:hover {
    opacity: 0.85; /* 透明度を少し変えることで、影の効果を代替 */
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
/* =================================== */
/* ヘッダー：ベストレート保証バッジ */
/* =================================== */

/* 予約ボタンとバッジを囲むラッパー */
.header__reserve-wrapper {
    position: relative; /* バッジを絶対位置で配置するための基準となります */
}

/* li要素の余白はすべてリセットし、他の項目との整列を優先 */
.header__nav-item--reserve {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* バッジのスタイル */
.best-rate-badge {
    position: absolute;
    top: calc(100% - 10px); /* ← マイナスにしてボタンに少し被らせる */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* ← ボタンの上に確実に表示させる */
    
    background-color:#a1a46d; 
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
    line-height: 1.2;
}

/* スマートフォン（ハンバーガーメニュー内）の表示調整 */
@media (max-width: 1082px) {
    /* スマホではラッパーに下余白を設定してスペースを確保 */
   .header__reserve-wrapper {
       padding-bottom: 2rem; /* スマホ時の下余白を少しだけ広げる */
    }
    .best-rate-badge {
        top: calc(100% - 35px); /* ← ★ここを -8px から -20px くらいに増やす */
        bottom: auto; 
        font-size: 0.8rem;
    }
}
/* =================================== */
/* 縦書き句読点専用のフォントを定義 */
/* =================================== */
@font-face {
    font-family: 'VerticalPunctuation';
    src: local('Hiragino Mincho ProN'), local('Yu Mincho'), local('YuMincho');
    unicode-range: U+3001, U+3002; /* 「、」と「。」のみを対象にする指定 */
}

/* =================================== */
/* iOSでの縦書き句読点の位置を修正（詳細度を強化） */
/* =================================== */
body .hero__title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    /* 句読点専用フォントを優先し、それ以外の文字にKaisei Tokuminを適用 */
    font-family: 'VerticalPunctuation', 'Kaisei Tokumin', serif;
}

/* ============================================= */
/* 宿泊プラン早わかりガイドページ (プレビュー付き) */
/* ============================================= */

/* --- 導入部分のご案内ボックス --- */
.plan-guide-intro {
    padding: 6rem 2rem;
    background-color: var(--color-bg);
}
.plan-guide-intro__inner {
    max-width: 800px;
    margin: 0 auto;
}
.notes-box--intro {
    background-color: var(--color-white);
    padding: 2.5rem;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}
.notes-box__title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-accent-main);
}

/* --- アコーディオン本体 --- */
.plan-guide-section {
    padding: 6rem 2rem;
}
.plan-guide-section__inner {
    max-width: 900px;
    margin: 0 auto;
}
.plan-guide-list {
    max-width: 800px;
    margin: 0 auto;
}
.plan-guide-item {
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-white);
}
.plan-guide-item:last-child {
    margin-bottom: 0;
}
.plan-guide-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}
.plan-guide-item__question:hover {
    background-color: #f5f5f0;
}

/* --- ▼アコーディオンのヘッダー部分（プレビュー表示）▼ --- */
.plan-guide-item__question-main {
    flex-grow: 1;
}
.plan-guide-item__question-text {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}
.plan-guide-item__preview {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
/* --- ▲ここまで▲ --- */

.plan-guide-item__icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s;
    color: var(--color-accent-main);
    flex-shrink: 0;
}
.plan-guide-item.is-open .plan-guide-item__icon {
    transform: rotate(45deg);
}
.plan-guide-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background-color: var(--color-bg);
}
.plan-guide-item.is-open .plan-guide-item__answer {
    max-height: 100rem;
}
.plan-guide-item__answer-inner {
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--color-border);
}

/* --- プラン縦並びリスト --- */
.plan-vertical-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.plan-vertical-list li {
    margin-bottom: 1rem;
}
.plan-vertical-list li:last-child {
    margin-bottom: 0;
}
.plan-vertical-item {
    display: block;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    text-decoration: none;
    color: inherit;
}
.plan-vertical-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transform: translateY(-3px);
    border-color: var(--color-accent-main);
    opacity: 1;
}
.plan-vertical-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--color-text);
}
.plan-vertical-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}
/* -- 汎用クラス -- */
.mt-2 { margin-top: 2rem !important; }
/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
    .plan-guide-intro { padding: 4rem 1rem; }
    .notes-box--intro { padding: 1.5rem; }
    .notes-box__title { font-size: 1.3rem; margin-bottom: 1.5rem; }
    .plan-guide-section { padding: 4rem 1rem; }
    .plan-guide-item__question { padding: 1rem 1.2rem; }
    .plan-guide-item__question-text { font-size: 1.1rem; }
    .plan-guide-item__preview { font-size: 0.8rem; }
    .plan-guide-item__answer-inner { padding: 1.5rem 1rem; }
    .plan-vertical-item { padding: 1.2rem; }
    .plan-vertical-item h4 { font-size: 1.1rem; }
}
/* ============================================= */
/* 汎用：PDFボタンコンテナ */
/* ============================================= */
.pdf-button-container {
  margin-top: 4rem; /* 上のスライダーとの間隔 */
  text-align: center; /* ボタンを中央寄せにする */
}

@media (max-width: 768px) {
  .pdf-button-container {
    margin-top: 3rem; /* スマホ表示の時は少し間隔を詰める */
  }
}

/* ============================================= */
/* プラン比較表（横スクロール・先頭列固定） */
/* ============================================= */
.comparison-section {
    padding: 6rem 2rem;
}
.comparison-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* テーブルを囲むコンテナ */
.scroll-table-container {
    overflow-x: auto; /* 横スクロールを有効にする */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

/* テーブル本体 */
.comparison-table {
    width: 100%;
    min-width: 1000px; /* これより小さい画面でスクロールが発生 */
    border-collapse: collapse;
    font-size: 0.9rem;
    white-space: nowrap; /* セル内の改行を防ぐ */
}

/* テーブルのセル（thとtd）共通スタイル */
.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    vertical-align: middle;
    text-align: center;
}

/* ▼▼▼ 変更点：ヘッダー行（一番上）の背景色 ▼▼▼ */
.comparison-table thead th {
    background-color:#e0e8e3;
    font-size: 1rem;
}

/* ▼▼▼ 変更点：奇数行の固定列の背景色を白に ▼▼▼ */
.comparison-table tbody th {
    position: -webkit-sticky; /* Safari対応 */
    position: sticky;
    left: 0;
    z-index: 1; /* スクロール時に他のセルの上に表示 */
    background-color: #fff; /* 奇数行の背景色（白） */
    font-weight: 700;
    width: 180px; /* 固定する列の幅 */
}

/* 特にリッチな品目をハイライトするスタイル */
.comparison-table tbody tr td.is-special {
    background-color: #fef8e3;
    font-weight: 700;
}
/* スマホ表示の調整 */
@media (max-width: 768px) {
    .comparison-section {
        padding: 4rem 1rem;
    }
    .comparison-table {
        font-size: 0.8rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }
}
/* 比較表：お品書きの区切り線（A案：上品な二重線） */
.comparison-table .menu-start th,
.comparison-table .menu-start td {
    border-top: 3px double #e0e0e0;
}

/* 比較表：一番左の項目列（th）の背景色 */
.comparison-table tbody th {
    background-color: #f1f6f2; /* テーマカラーと親和性の高い薄い緑 */
    color: #333; /* 文字色を少し濃くして視認性UP */
}

/* ============================================= */
/* 比較表アコーディオン */
/* ============================================= */
.comparison-accordion {
  max-width: 1000px;
  margin: 2rem auto 0;
  text-align: center;
}

/* クリックするボタン(summary)のスタイル */
.comparison-accordion > summary {
  display: inline-block; /* ボタンの幅調整 */
  cursor: pointer;
}

/* ブラウザ標準の▼アイコンを非表示に */
.comparison-accordion > summary::-webkit-details-marker,
.comparison-accordion > summary::marker {
  display: none;
}

/* 開閉するコンテンツ部分のスタイル */
.comparison-accordion__content {
  margin-top: 2.5rem;
  text-align: left; /* 表の中身は左揃えに */
}

/* アコーディオン内の比較表セクションの余白を調整 */
.comparison-accordion .comparison-section {
  padding: 0;
}
/* 比較表：ヘッダー行全体を上部に固定 */
.comparison-table thead th {
    position: -webkit-sticky; /* Safari対応 */
    position: sticky;
    top: 0;
    z-index: 2; /* 他のセルより手前に表示 */
}

/* 比較表：左上の「項目」セルを左にも固定 */
.comparison-table thead th:first-child {
    background-color: #f1f6f2; /* ← 左の項目列の色（こちらが正です） */
    left: 0;
    z-index: 3;
}

/* トップページ：プランガイドへのリンクを目立たせる（B案） */
.recommend-plans .blog__more-button {
    background-color: #f1f6f2; /* 比較表で使った薄い緑色 */
    border-left: 5px solid var(--color-accent-main); /* 左端にテーマカラーのアクセント線 */
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-top: 3.5rem;
}
.recommend-plans .blog__more-button .link-inline {
    font-size: 1.1rem; /* 文字を少し大きくします */
    font-weight: 700; /* 文字を太字にします */
}

/* 料金表ページ：スマホ表示時の説明文の上の余白を調整 */
@media (max-width: 768px) {
    .price-page-note {
        margin-top: 1.5rem; /* Pタグの上に余白を追加します */
    }
}
/* 料理ページ：スマホ表示時のプランガイドリンクの上の余白を調整 */
@media (max-width: 768px) {
    .cuisine-guide-link {
        margin-top: 0rem !important;
    }
}

/* B案：枠線（アウトライン）のデザイン */
.plan-vertical-item--tool {
    background-color: var(--color-white);
    border: 2px dashed #cccccc; /* グレーの点線 */
}

.plan-vertical-item--tool:hover {
    border-style: solid; /* ホバー時に実線に変わる */
    border-color: var(--color-accent-main);
    background-color: #f1f6f2; /* ホバー時に薄い緑色に */
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

.plan-vertical-item--tool h4 {
    color: var(--color-accent-main); /* 文字色をテーマカラーに */
}

/* 料金ページ：プランガイドへの案内ボックス */
.guide-callout {
    max-width: 960px;
    margin: 4rem auto;
    background-color: #f1f6f2;
    border-left: 5px solid var(--color-accent-main);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
}
.guide-callout a {
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .guide-callout {
        margin: 2rem 1rem;
        text-align: left;
    }
    .guide-callout a {
        font-size: 1rem;
    }
}
/* ============================================= */
/* お知らせ・一時的なご案内ボックス */
/* ============================================= */
.temporary-notice {
    padding: 2rem 1rem;
    background-color: var(--color-bg);
}

.temporary-notice__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.temporary-notice__title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-accent-main);
    margin-bottom: 1rem;
}

.temporary-notice__description {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.temporary-notice__contact {
    display: inline-block;
    text-align: left;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .temporary-notice {
        padding: 1.5rem 1rem;
    }
    .temporary-notice__title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
}
/* お知らせ・注釈用のボックス */
.sincere-note {
    margin-top: 3rem;
    padding: 1.5rem;
    border-left: 4px solid var(--color-border);
    background-color: var(--color-bg);
}
.sincere-note p {
    margin: 0;
    line-height: 1.7;
}
/* ============================================= */
/* アコーディオン */
/* ============================================= */
.accordion-trigger {
    background-color: var(--color-bg);
    color: var(--color-text);
    cursor: pointer;
    padding: 1rem 1.5rem;
    width: 100%;
    border: 1px solid var(--color-border);
    text-align:center;
    outline: none;
    font-size: 1rem;
    font-family: var(--font-base);
    font-weight: 700;
    transition: background-color 0.4s ease;
    border-radius: 8px;
    position: relative;
}

.accordion-trigger:hover {
    background-color: #eaeae0;
}

.accordion-trigger::after {
    /* ▼▼▼ 修正点 ▼▼▼ */
    content: '\002B'; /* Unicode for plus sign (+) */
    font-size: 1.5rem;
    color: var(--color-text);
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.accordion-trigger.active::after {
    /* ▼▼▼ 修正点 ▼▼▼ */
    content: '\2212'; /* Unicode for minus sign (-) */
    transform: translateY(-50%) rotate(360deg);
}

.accordion-panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.accordion-content {
    padding: 2rem 1.5rem;
}

/* ============================================= */
/* 連泊案内ページ (stay-2nights.html) 専用スタイル */
/* ============================================= */

/* --- 説明付きリスト --- */
.list-disc.with-description li {
    margin-bottom: 1.2rem;
}
.list-disc.with-description small {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-top: 0.25rem;
}

/* --- アクティビティリスト --- */
.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem; /* 各アクティビティの間に2remの余白を追加 */
}
.activity-item:last-child {
    margin-bottom: 0; /* 最後の項目には余白は不要 */
}
.activity-item__image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}
.activity-item__content {
    flex-grow: 1;
}

/* --- 見出しと本文の間の余白 --- */
.features__item-text-content > h3 + p {
    margin-top: 2rem;
}
.food-subtitle + p {
    margin-top: 2rem;
}

/* ============================================= */
/* 連泊案内ページ：レスポンシブ調整 */
/* ============================================= */

/* --- タブレットサイズ (1024px以下) --- */
@media screen and (max-width: 1024px) {
    /* 画像とテキストブロックの横並びを解除し、縦積みにする */
    .features .features__item-link {
        flex-direction: column;
        gap: 2rem;
    }
    /* 画像とテキストブロックの幅を100%に広げる */
    .features .features__item-image-wrapper,
    .features .features__item-text-content {
        width: 100%;
    }
}

/* --- スマートフォンサイズ (768px以下) --- */
@media screen and (max-width: 768px) {
    /* 小見出しを中央揃えに */
    .features__item-text-content > p > strong {
        text-align: center;
    }
    .features__item-text-content > p > strong {
        display: block;
    }

    /* 説明付きリストを左寄せに戻す */
    .list-disc.with-description {
        text-align: left;
    }
    
    /* アクティビティリストの画像を少し小さく */
    .activity-item__image {
        width: 80px;
        height: 80px;
    }
}

/* ============================================= */
/* 連泊案内ページ：アウトラインボタン */
/* ============================================= */
.btn-outline {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-accent-main);
    color: var(--color-accent-main);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 0.5rem; /* ボタンの上に少し余白を追加 */
    white-space: nowrap; /* テキストが改行されないように指定 */
}
/* ============================================= */
/* 連泊案内ページ：アクティビティリストの余白調整 */
/* ============================================= */
.activity-item__content p {
    margin-bottom: 0.8rem;
}
.promo-long-stay {
	padding-top:0rem;
}
