/* ===========================
   CSS カスタムプロパティ（変数）
   色、フォント、スペーシングの統一管理
   =========================== */

:root {
    /* カラーパレット */
    --color-primary: #027ea4;           /* ブランドカラー（青） */
    --color-text-primary: #333;         /* メインテキスト（ダークグレー） */
    --color-text-secondary: #555;       /* サブテキスト（ミディアムグレー） */
    --color-text-light: #666;           /* ライトテキスト */
    --color-white: #fff;                /* 白 */
    --color-bg-light: #f8f8f8;          /* ライト背景 */
    --color-bg-beige: #ecece3;          /* ベージュ背景 */
    --color-bg-beige-dark: #d9d3c8;     /* ダークベージュ背景 */
    --color-bg-beige-light: #e8e6dd;    /* ライトベージュ背景 */
    --color-green-dark: #4a5d5a;        /* ダークグリーングレー */
    --color-slate: #5c7780;             /* スレートグレー */
    --color-accent-yellow: #edb63b;     /* アクセントイエロー */
    --color-border: #e0e0e0;            /* ボーダーカラー */

    /* フォントファミリー */
    --font-japanese: "zen-old-mincho", serif;
    --font-english: "minion-pro-caption", serif;

    /* スペーシングスケール */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* コンテナ幅 */
    --container-max-width: 1200px;
    --page-max-width: 1920px;

    /* 行間 */
    --line-height-tight: 1.6;
    --line-height-normal: 1.8;
    --line-height-relaxed: 2;
    --line-height-loose: 2.2;

    /* 字間 */
    --letter-spacing-tight: 0.05em;
    --letter-spacing-normal: 0.1em;
    --letter-spacing-wide: 0.2em;
    --letter-spacing-wider: 0.5em;
    --letter-spacing-widest: 1em;

    /* トランジション */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* シャドウ */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.1);

    /* ボーダーラディウス */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-full: 100%;
}

/* ===========================
   ユーティリティクラス
   再利用可能な汎用スタイル
   =========================== */

/* コンテナ */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* 画像カバースタイル */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* フレックスボックス中央揃え */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2カラムグリッド */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

/* セクションパディング */
.section-padding-lg {
    padding: var(--space-2xl) var(--space-lg);
}

.section-padding-md {
    padding: var(--space-xl) var(--space-lg);
}

.section-padding-sm {
    padding: var(--space-lg);
}

/* ===========================
   ベーススタイル
   全体に適用される基本スタイル
   =========================== */

/* HTML要素 - スムーズスクロールを有効化 */
html {
    scroll-behavior: smooth;
}

/* Body要素 - フォント、色、行間の設定 */
body {
    font-family: var(--font-japanese);
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: var(--line-height-normal);
    overflow-x: hidden;
    max-width: var(--page-max-width);
    margin: 0 auto;
}

section {
    width: 100%;
    max-width: var(--page-max-width);
}

/* リンク要素 */
a {
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition-normal);
}

a:hover {
    opacity: 0.7;
}

/* 表示切り替え用クラス */
.sp_only,
.tab_only {
    display: none;
}

/* ===========================
   ヘッダー & ナビゲーション
   固定ヘッダーとメニュー
   =========================== */

/* ヘッダー本体 - 画面上部に固定 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

/* ヘッダーコンテナ - 中央寄せとレイアウト */
.header-container {
    max-width: 1400px; /* 最大幅 */
    margin: 0 auto; /* 中央寄せ */
    display: flex; /* フレックスボックス */
    justify-content: space-between; /* 左右に配置 */
    align-items: center; /* 垂直方向中央揃え */
}

/* ロゴ - フォントサイズと字間 */
.logo {
    font-size: 1.5rem; /* フォントサイズ */
    font-weight: 700; /* 太字 */
    letter-spacing: 0.1em; /* 字間 */
}

/* ロゴのリンク - 色指定 */
.logo a {
    display: block;
    width: 80%;
    margin-left: auto;
}

/* ナビゲーションリスト - 横並び配置 */
.nav-list {
    display: flex; /* フレックスボックス */
    gap: 2rem; /* アイテム間の間隔 */
    list-style: none; /* リストマーカーを消す */
    align-items: center; /* 垂直方向中央揃え */
}

/* ナビゲーションリンク - フォント設定 */
.nav-list a {
    font-size: 0.9rem;
    letter-spacing: var(--letter-spacing-tight);
    font-family: var(--font-english);
    text-transform: uppercase;
}

/* 予約ボタン - ボーダー付きボタン */
.btn-reservation {
    padding: 0.5rem 1.5rem; /* 内側の余白 */
    border: 1px solid #333; /* ボーダー */
    background: #333; /* 背景を黒に */
    color: #fff; /* 文字色を白に */
    border-radius: 4px; /* 角丸 */
    transition: all 0.3s ease; /* スムーズな変化 */
}

/* 予約ボタンホバー時 - 背景色反転 */
.btn-reservation:hover {
    background: #fff; /* 背景を黒に */
    color: #333; /* 文字色を白に */
    opacity: 1; /* 透明度を元に戻す */
}

/* コンタクトボタン - ボーダー付きボタン */
.btn-contact {
    padding: 0.5rem 1.5rem; /* 内側の余白 */
    border: 1px solid #333; /* ボーダー */
    border-radius: 4px; /* 角丸 */
    transition: all 0.3s ease; /* スムーズな変化 */
}

/* コンタクトボタンホバー時 - 背景色反転 */
.btn-contact:hover {
    background: #333; /* 背景を黒に */
    color: #f8f8f8; /* 文字色を白に */
    opacity: 1; /* 透明度を元に戻す */
}

/* ハンバーガーメニューボタン - モバイル用（デフォルトは非表示） */
.hamburger {
    display: none; /* 通常は非表示 */
    flex-direction: column; /* 縦並び */
    gap: 5px; /* 線の間隔 */
    background: none; /* 背景なし */
    border: none; /* ボーダーなし */
    cursor: pointer; /* ポインターカーソル */
    padding: 5px; /* 内側の余白 */
}

/* ハンバーガーメニューの線 */
.hamburger span {
    display: block; /* ブロック要素 */
    width: 25px; /* 幅 */
    height: 2px; /* 高さ */
    background: #333; /* 色 */
    transition: all 0.3s ease; /* スムーズな変化 */
}

/* ===========================
   ヒーローセクション（動画背景）
   画面全体を使った動画背景エリア
   =========================== */

/* ヒーローセクション本体 - 画面全体に表示 */
.hero {
    position: relative; /* 子要素の基準点 */
    width: 100%; /* 横幅いっぱい */
    height: 100vh; /* 画面の高さいっぱい */
    overflow: hidden; /* はみ出しを隠す */
}

/* 動画コンテナ - 絶対配置で全体に配置 */
.hero-video-container {
    position: fixed; /* 画面に固定してパララックス効果を実現 */
    top: 0;
    left: 0;
    width: 100%; /* 横幅いっぱい */
    height: 100%; /* 高さいっぱい */
    z-index: -1; /* 他のコンテンツの背面に配置 */
}

/* 動画要素 - 画面全体を覆うように表示 */
.hero-video {
    width: 100%; /* 横幅いっぱい */
    height: 100vh; /* 画面の高さいっぱい */
    object-fit: cover; /* トリミングして全体を覆う */
    display: block;
}

/* オーバーレイ - 動画の上に暗い層を重ねる */
.hero-overlay {
    position: absolute; /* 絶対配置 */
    top: 0;
    left: 0;
    width: 100%; /* 横幅いっぱい */
    height: 100%; /* 高さいっぱい */
    background: rgba(0, 0, 0, 0.2); /* 半透明の黒 */
}

/* ヒーローコンテンツ - スクロールアイコン配置エリア */
.hero-content {
    position: relative; /* 相対配置 */
    z-index: 10; /* オーバーレイより前面 */
    height: 100%; /* 高さいっぱい */
    display: flex; /* フレックスボックス */
    flex-direction: column; /* 縦並び */
    justify-content: flex-end; /* 下寄せ */
    align-items: flex-end; /* 右寄せ */
    padding-bottom: 3rem; /* 下の余白 */
    padding-right: 6rem;
}

/* スクロールダウンアイコンコンテナ - バウンスアニメーション */
.scroll-down {
    display: flex; /* フレックスボックス */
    flex-direction: column; /* 縦並び */
    align-items: center; /* 中央揃え */
    gap: 1rem; /* アイテム間の間隔 */
    color: #fff; /* 白色 */
    animation: bounce 2s infinite; /* バウンスアニメーション */
}

/* スクロールダウンのテキスト */
.scroll-text {
    font-size: 0.8rem; /* フォントサイズ */
    font-family: "minion-pro-caption", serif; /* 英語フォント */
    text-transform: uppercase; /* 大文字に変換 */
    letter-spacing: 0.2em; /* 字間を広めに */
    color: #fff; /* 白色 */
}

/* スクロールアイコン - 縦線 */
.scroll-icon {
    display: block; /* ブロック要素 */
    width: 1px; /* 幅 */
    height: 50px; /* 高さ */
    background: #fff; /* 白色 */
    position: relative; /* 子要素の基準点 */
}

/* スクロールアイコンの矢印 - 疑似要素で作成 */
.scroll-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    transform: translateX(-50%) rotate(45deg);
}

/* バウンスアニメーション定義 */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* 元の位置 */
    }
    40% {
        transform: translateY(-10px); /* 上に10px移動 */
    }
    60% {
        transform: translateY(-5px); /* 上に5px移動 */
    }
}

/* ===========================
   メインビジュアルセクション
   TOMORIの紹介と予約バナー
   =========================== */

/* メインビジュアル本体 - グラデーション背景 */
.main-visual {
    background: var(--color-slate); 
    color: #fff; /* 白文字 */
    padding: 5rem 2rem; /* 上下左右の余白 */
    text-align: center; /* 中央揃え */
}

/* メインビジュアルコンテンツ - 最大幅と中央寄せ */
.main-visual-content {
    max-width: 900px; /* 最大幅 */
    margin: 0 auto; /* 中央寄せ */
}

/* 区切り線 - ナンバリング表示 */
.divider-line {
    display: flex; /* フレックスボックス */
    align-items: center; /* 垂直方向中央揃え */
    justify-content: center; /* 水平方向中央揃え */
    margin-bottom: 1rem; /* 下の余白 */
}

/* 区切り線のテキスト */
.divider-line span {
    font-size: 1rem; /* フォントサイズ */
    padding: 0 0 0 1rem; /* 余白 */
    color: #fff; /* 白色 */
    opacity: 0.8; /* 透明度 */
    letter-spacing: 3.5em;
}

/* メインタイトル - TOMORI */
.main-title {
    font-size: 3.5rem; /* 大きめのフォントサイズ */
    font-weight: 700; /* 太字 */
    letter-spacing: 0.2em; /* 字間 */
    margin-bottom: 1.5rem; /* 下の余白 */
}

/* サブタイトル */
.subtitle {
    font-size: 1.1rem; /* フォントサイズ */
    margin-bottom: 2rem; /* 下の余白 */
    letter-spacing: 0.1em; /* 字間 */
    opacity: 0.9; /* 透明度 */
}

/* 説明文 */
.description {
    font-size: 1rem; /* フォントサイズ */
    line-height: 3; /* 行間 */
    opacity: 0.85; /* 透明度 */
}

/* キャッチコピー - 特別なSTAY */
.stay-title {
    font-size: 1.8rem; /* フォントサイズ */
    font-weight: 700; /* 太字 */
    margin: 2rem 0 0 0; /* 下の余白 */
    letter-spacing: 0.15em; /* 字間 */
}

/* 予約期間バナー - 青色の帯 */
.reservation-banner {
    /* 背景画像の上に薄いグレーのオーバーレイを重ねる */
    /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/banner01.jpeg'); */
    background-size: cover; /* 画像が要素全体を覆うように調整 */
    background-position: center; /* 画像を中央に配置 */
    background-attachment: fixed; /* パララックス効果を追加 */
    background-repeat: no-repeat; /* 画像の繰り返しを無効化 */
    padding: 1.5rem 1rem; /* 内側の余白 */
    height: 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1920px;
}

.banner-border{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
}

/* バナーテキスト */
.banner-text {
    display: inline-block; /* 背景をテキスト幅に合わせる */
    background: rgba(70, 130, 180, 0.9); /* 半透明の青 */
    padding: 0.5rem 1.5rem; /* テキストの周りの余白 */
    font-size: 1.5rem; /* フォントサイズ */
    font-weight: 400; /* 太字 */
    letter-spacing: 0.1em; /* 字間 */
    color: #fff; /* 白色 */
    line-height: 1.2;
}

/* 大型フィーチャー画像セクション - 全幅画像 */
.feature-image-section {
    width: 100%; /* 横幅いっぱい */
    margin: 0; /* 余白なし */
    padding: 0; /* 余白なし */
}

/* フィーチャー画像 */
.feature-image-section .feature-image {
    width: 100%; /* 横幅いっぱい */
    height: auto; /* 高さは自動 */
    display: block; /* ブロック要素 */
}

/* ===========================
   特徴紹介セクション
   人材確保、ラグジュアリー、食、アクティビティ、自然共生
   =========================== */

/* 特徴セクション本体 - 背景色とパディング */
.feature-section {
    background: #ecece3; /* 薄いベージュ背景 */
    padding: 2rem 0;
    width: 100%;
}

.feature-top{
    padding-top: 6rem;
}

.feature-bottom{
    padding-bottom: 6rem;
}

/* 偶数番目のセクション - 白背景で交互配色 */
/* .feature-section:nth-of-type(even) {
    background: #fff; 
} */

/* 特徴コンテナ - 2カラムグリッドレイアウト */
.feature-container {
    display: grid; /* グリッドレイアウト */
    grid-template-columns: 1fr 1fr; /* 2カラム（1:1） */
    gap: 4rem; /* カラム間の間隔 */
    align-items: center; /* 垂直方向中央揃え */
}

/* 左画像レイアウト - 画像が左、コンテンツが右 */
.feature-left .feature-container {
    grid-template-columns: 1.6fr 1fr; /* 画像(左)を少し大きく */
    grid-template-areas: "image content"; /* グリッドエリア定義 */
}

.feature-right{
    padding-left: 2rem;
}

/* 右画像レイアウト - コンテンツが左、画像が右 */
.feature-right .feature-container {
    grid-template-columns: 1fr 1.6fr; /* 画像(右)を少し大きく */
    grid-template-areas: "content image"; /* グリッドエリア定義 */
    gap: 0; /* カラム間の間隔をなくす */
}

/* 左レイアウトの画像エリア */
.feature-left .feature-image {
    grid-area: image; /* imageエリアに配置 */
}

/* 左レイアウトのコンテンツエリア */
.feature-left .feature-content {
    grid-area: content; /* contentエリアに配置 */
}

/* 右レイアウトの画像エリア */
.feature-right .feature-image {
    grid-area: image; /* imageエリアに配置 */
}

/* 右レイアウトのコンテンツエリア */
.feature-right .feature-content {
    grid-area: content; /* contentエリアに配置 */
    margin-left: auto;
}

/* 特徴画像コンテナ - 高さの統一 */
.feature-image {
    height: 600px; /* 画像エリアの高さを600pxに固定 */
}

/* 左画像レイアウトの画像 - 右辺が斜め */
.feature-left .feature-image {
    /* polygon(左上, 右上, 右下, 左下) */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

/* 右画像レイアウトの画像 - 左辺が斜め */
.feature-right .feature-image {
    /* polygon(左上, 右上, 右下, 左下) */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

/* 特徴画像 - 角丸と影 */
.feature-image img {
    width: 100%; /* 横幅いっぱい */
    height: 100%; /* コンテナの高さに合わせる */
    object-fit: cover; /* 縦横比を保ったままトリミング */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* 影 */
}

/* 特徴セクション2の画像切り替えラッパー */
.feature-image-wrapper {
    position: relative;
    width: 100%;
}

/* 特徴セクション2の画像切り替えアイコン */
.feature-image-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 1rem 0;
    margin: 0 auto; /* 中央揃え */
}

.feature-icon-group {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border-radius: 4px;
    background-color: #f0f0f0;
}

.feature-icon-image {
    object-fit: contain;
}

/* 特徴セクション2の画像切り替えボタン */
.feature-image-button {
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-light);
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    white-space: nowrap; /* ボタン内のテキストが改行しないようにする */
}
.feature-image-button:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* アクティブな画像切り替えボタンのスタイル */
.feature-image-button.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
/* 特徴ナンバー - 壱、弐、参などの番号 */
.feature-number {
    margin-bottom: 1.5rem; /* 下の余白 */
}

/* ナンバーのスタイル - 丸いボーダー付き */
.feature-number span {
    display: inline-block; /* インラインブロック */
    font-size: 0.8rem; /* フォントサイズ */
    color: #fff; /* 緑がかったグレー */
    padding: 0.2rem 0.4rem; /* 内側の余白 */
    border-radius: 100%; /* 丸みを持たせる */
    background: #027ea4; /* 背景色 */
}
.blue_span{
    color: #027ea4;
}
.font2rem{
    font-size: 1.5rem;
}

/* 特徴タイトル - 見出し */
.feature-title {
    font-size: 1.8rem; /* フォントサイズ */
    font-weight: 400; /* 太字 */
    margin-bottom: 2rem; /* 下の余白 */
    line-height: 1.6; /* 行間 */
    color: #333; /* ダークグレー */
}

/* 特徴説明文の段落 */
.feature-text p {
    font-size: 1rem; /* フォントサイズ */
    line-height: 2.2; /* 行間 */
    margin-bottom: 1.5rem; /* 下の余白 */
    color: #555; /* ミディアムグレー */
}

/* 最後の段落 - 下の余白をなくす */
.feature-text p:last-child {
    margin-bottom: 0; /* 余白なし */
}

/* ===========================
   食事バナーセクション
   地元食材を活かした特別な料理
   =========================== */

/* 食事バナーセクション本体 */
.food-banner-section {
    background: var(--color-slate); /* ダークグリーングレー背景 */
    padding: 0;
    overflow: hidden;
}

/* 食事バナーコンテナ - 2カラムレイアウト */
.food-banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左右50%ずつ */
    align-items: stretch; /* 高さを揃える */
    max-width: 100%;
    margin: 0 auto;
}

/* 左側: テキストコンテンツエリア */
.food-banner-content {
    padding: 5rem 10rem 5rem 2rem; /* 上 右 下 左 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    width: fit-content;
    margin-left: auto;
}

/* バナータイトル */
.food-banner-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
}

/* バナーテキストエリア */
.food-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.food-banner-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.05em;
}

/* 右側: 料理画像エリア */
.food-banner-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.food-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* トリミングして全体を覆う */
    display: block;
    max-height: 460px;
}

/* ===========================
   阿波美豚コース詳細セクション
   魅力とこだわり・POINT
   =========================== */

/* セクション本体 */
/* 阿波美豚・阿波尾鶏コース詳細セクション共通スタイル */
.course-detail-section,
.course-detail-section-2 {
    margin: 0 auto;
    background: var(--color-white);
}

.corse-1200w{
    max-width: 1200px;
    margin: 0 auto;
}

/* コースの魅力とこだわりセクション共通スタイル */
.course-charm-wrapper,
.course-charm-wrapper-2 {
    padding: 3rem 0 0;
}

.course-charm-container,
.course-charm-container-2 {
    width: 100%;
}

.course-charm-title,
.course-charm-title-2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    padding: 1rem;
    border: 1px solid var(--color-text-primary);
    letter-spacing: var(--letter-spacing-normal);
}

/* コンテンツエリア - 2カラムレイアウト */
.course-charm-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左:右 = 1:1.2 */
    align-items: center;
}

/* 料理画像共通スタイル */
.course-charm-image,
.course-charm-image-2 {
    position: relative;
    width: 100%;
    height: 350px;
}

.course-charm-image img,
.course-charm-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 説明文共通スタイル */
.course-charm-text,
.course-charm-text-2 {
    line-height: var(--line-height-relaxed);
    color: var(--color-text-primary);
    padding: 3rem 3rem 1rem;
}

.course-charm-text p,
.course-charm-text-2 p {
    font-size: 1rem;
    margin-bottom: 0;
    letter-spacing: var(--letter-spacing-tight);
}

/* POINTセクション共通スタイル */
.course-point-wrapper,
.course-point-wrapper-2 {
    background: var(--color-bg-beige-dark);
    padding: 3rem;
    width: 50%;
    margin-left: auto;
}

.course-point-container,
.course-point-container-2 {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.course-point-title,
.course-point-title-2 {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: var(--letter-spacing-wider);
    padding-left: 0.5em;
}



/* POINT画像共通スタイル */
.course-point-image,
.course-point-image-2 {
    position: relative;
    width: 100%;
    height: 350px;
}

.course-point-image img,
.course-point-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.course-point-label,
.course-point-label-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 4rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-text-primary);
}

.course-point-text,
.course-point-text-2 {
    line-height: var(--line-height-relaxed);
    color: var(--color-text-primary);
}

.course-point-text p,
.course-point-text-2 p {
    font-size: 1rem;
    margin-bottom: 0;
    letter-spacing: var(--letter-spacing-tight);
}

/* ===========================
   阿波尾鶏コース詳細セクション固有スタイル
   =========================== */

/* 阿波尾鶏コースのコンテンツエリア - 左右反転レイアウト */
.course-charm-content-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* 阿波尾鶏コースのPOINTセクション - 右寄せ */
.course-point-wrapper-2 {
    margin-right: auto;
    margin-left: 0;
}

.course-point-container-2 {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* ===========================
   食事情報セクション
   体験型の食事
   =========================== */

/* 食事情報セクション本体 */
.food-info-section {
    background: var(--color-slate); /* ダークグリーングレー */
    padding: 3rem 2rem;
}

/* コンテナ */
.food-info-container {
    max-width: 1200px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左:右 = 1.5:1 */
    gap: 3rem;
    align-items: center;
}

/* 左側: 説明文 */
.food-info-text {
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

/* タイトル */
.food-info-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}
.yellow-span{
    color: #edb63b;
}

/* 説明文 */
.food-info-description {
    line-height: 2.2;
}

.food-info-description p {
    font-size: 1.1rem;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

/* 右側: 料理画像 */
.food-info-image {
    position: relative;
    width: 100%;
    height: 400px;
}

.food-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 画像上のラベル */
.food-info-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 4rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #333;
}

/* ===========================
   オプションセクション
   追加メニュー
   =========================== */

/* オプションセクション本体 */
.option-section {
    margin: 0 auto;
    padding: 3rem 0;
    background: #fff;
}

/* ヘッダー */
.option-header {
    margin-bottom: 3rem;
}

/* タイトル */
.option-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    border: 1px solid #333;
    letter-spacing: 0.1em;
}

/* オプションコンテナ - 2x2グリッド */
.option-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* 各オプションアイテム */
.option-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* オプション画像 */
.option-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* オプション説明文 */
.option-text {
    padding: 1rem 0;
}

/* オプションアイテムタイトル */
.option-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    color: #333;
}

/* オプション説明文 */
.option-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    letter-spacing: 0.05em;
}

/* ===========================
   朝食セクション
   モーニングバスケット
   =========================== */

/* 朝食セクション本体 */
.breakfast-section {
    margin: 0 auto;
    background: #fff;
}

/* ヘッダー */
.breakfast-header {
    background: var(--color-slate); /* ダークグリーングレー */
    padding: 2rem;
    text-align: center;
}

/* 日本語タイトル */
.breakfast-title-ja {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1em;
    color: #fff;
    margin-bottom: 1rem;
    padding-left: 1em; /* letter-spacing分の調整 */
}

/* サブタイトル */
.breakfast-subtitle {
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* コンテナ */
.breakfast-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* 説明文セクション */
.breakfast-intro-section {
    background: #fff;
    padding: 0;
    margin-bottom: 3rem;
}

/* 説明文コンテンツ - 2カラムレイアウト */
.breakfast-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左右50%ずつ */
    gap: 3rem;
    align-items: center;
}

/* 左側: テキストエリア */
.breakfast-intro-text {
    line-height: 2.2;
    color: #333;
}

.breakfast-intro-text p {
    font-size: 1.1rem;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

/* 右側: 画像ラッパー */
.breakfast-intro-image-wrapper {
    display: flex;
    flex-direction: column;
}

/* 画像エリア */
.breakfast-intro-image {
    position: relative;
    width: 100%;
    height: 350px;
}

.breakfast-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* アイコングループ */
.breakfast-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 1rem;
}

.breakfast-icon-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breakfast-icon-group span {
    font-size: 0.9rem;
    color: #333;
}

/* 特徴ボックス3つ */
.breakfast-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* 各ボックス */
.breakfast-feature-box {
    border: 1px solid #333;
    padding: 2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* ボックスタイトル */
.breakfast-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

/* 区切り線 */
.breakfast-feature-divider {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        #333 0,
        #333 4px,
        transparent 4px,
        transparent 8px
    );
    margin-bottom: 1.5rem;
}

/* ボックス内テキスト */
.breakfast-feature-text {
    line-height: 1.9;
    color: #333;
    flex-grow: 1;
}

.breakfast-feature-text p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.breakfast-feature-text p:last-child {
    margin-bottom: 0;
}

/* アイコン（コーヒー） */
.breakfast-feature-icon {
margin-left: auto;
}

/* ===========================
   食事プランセクション
   朝食・夕食のメニュー紹介
   =========================== */

/* 食事プランセクション本体 */
.meal-plans-section {
    padding: 5rem 2rem; /* 内側の余白 */
    background: #fff; /* 白背景 */
}

/* 食事プランコンテナ - 最大幅と中央寄せ */
.meal-plans-container {
    max-width: 1200px; /* 最大幅 */
    margin: 0 auto; /* 中央寄せ */
}

/* セクションタイトル - 各セクションの見出し */
.section-title {
    font-size: 2.5rem; /* フォントサイズ */
    font-weight: 400; /* 太字 */
    text-align: center; /* 中央揃え */
    margin-bottom: 1.5rem; /* 下の余白 */
    letter-spacing: 0.1em; /* 字間 */
}

/* セクション紹介文 - タイトル下の説明 */
.section-intro {
    text-align: center; /* 中央揃え */
    font-size: 1rem; /* フォントサイズ */
    margin-bottom: 4rem; /* 下の余白 */
    color: #666; /* ミディアムグレー */
}

/* 食事カテゴリー - 朝食のブロック */
.meal-category {
    margin-bottom: 4rem; /* 下の余白 */
}

/* カテゴリータイトル - 朝食の見出し */
.meal-category-title {
    font-size: 1.5rem; /* フォントサイズ */
    font-weight: 700; /* 太字 */
    margin-bottom: 1rem; /* 下の余白 */
    padding-bottom: 0.5rem; /* 下の内側余白 */
    border-bottom: 2px solid #4a5f5c; /* 下線 */
}

/* カテゴリー説明文 */
.meal-description {
    font-size: 1rem; /* フォントサイズ */
    line-height: 1.8; /* 行間 */
    color: #555; /* ミディアムグレー */
    margin-bottom: 2rem; /* 下の余白 */
}

/* ===========================
   夕食セクション（dinner_001.png準拠）
   =========================== */

/* 夕食セクション本体 */
.dinner-section {
    padding: 5rem 2rem 1rem;
    background: #fff;
}

/* 夕食コンテナ */
.dinner-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* セクションヘッダー */
.dinner-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background: var(--color-slate); /* ダークグリーングレー */
}

/* 日本語タイトル */
.dinner-title-ja {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1em;
    color: #fff;
    margin-bottom: 1rem;
    padding-left: 1em; /* letter-spacing分の調整 */
}

/* サブタイトル */
.dinner-subtitle {
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* 説明文セクション - 白背景ボックス */
.dinner-intro-section {
    background: #fff;
    padding: 0;
    border-radius: 8px;
    margin-bottom: 3rem;
    overflow: hidden; /* 角丸を画像にも適用 */
}

/* 説明文コンテンツ - 2カラムレイアウト */
.dinner-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 左右50%ずつ */
    gap: 0; /* 隙間なし */
    align-items: stretch; /* 高さを揃える */
}

/* 左側: テキストエリア */
.dinner-intro-text {
    padding: 3rem;
    line-height: 2.2;
    color: #333;
    display: flex;
    flex-direction: column;
}

.dinner-intro-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.dinner-intro-text p:last-child {
    margin-bottom: 0;
}

/* 右側: 画像エリア */
.dinner-intro-image {
    width: 100%;
    height: 100%;
    min-height: 400px; /* 最小高さ */
}

.dinner-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* トリミングして全体を覆う */
    display: block;
}

/* コースカードラッパー - 2枚縦並び */
.dinner-course-cards {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}


/* コースカード */
.dinner-course-card {
    background: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 3px solid #4a5d5a;
    padding: 1rem 0;
    overflow: hidden;
    max-width: 800px; /* 最大幅を制限 */
    margin: 0 auto; /* 中央揃え */
    width: 100%; /* 横幅いっぱい */
}

/* コース画像ラッパー */
.dinner-course-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.dinner-course-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* コースラベル（画像上のオーバーレイ） */
.dinner-course-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 5rem;
    border-radius: 4px;
    z-index: 10;
}

.dinner-course-label-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #333;
}

/* コースタイトル */
.dinner-course-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

/* コースアイコングループ */
.dinner-course-icons {
    padding: 1rem 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* アイコンボタンのラッパー */
.dinner-icon-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

/* 画像切り替えボタンのカーソルをポインターに */
.image-changer, .image-toggler {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* アニメーションを滑らかに */
}

/* ホバー時のスタイル: 少し浮き上がる */
.image-changer:hover {
    transform: translateY(-2px); /* 少し上に移動 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 影を少し濃く */
}

/* クリック/タップ時のスタイル: 押し込まれる動き */
.image-changer:active {
    transform: translateY(1px); /* 少し下に移動して押し込まれたように見せる */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); /* 内側に影をつける */
}

/* アイコングループ */
.dinner-icon-group,
.breakfast-icon-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 20%;
}

.dinner-icon-group img,
.breakfast-icon-group img {
    width: 100%;
}

/* アイコンテキスト */
.dinner-icon-text {
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
}

/* POINTセクション - 食材調達とアレルギー対応 */
.point-section {
    background: #f0f4f3; /* 薄い緑がかったグレー */
    padding: 2rem; /* 内側の余白 */
    border-radius: 8px; /* 角丸 */
    margin-top: 3rem; /* 上の余白 */
}

/* POINTタイトル */
.point-title {
    font-size: 1.3rem; /* フォントサイズ */
    font-weight: 700; /* 太字 */
    margin-bottom: 1rem; /* 下の余白 */
    color: #4a5f5c; /* 緑がかったグレー */
}

/* POINT説明文 */
.point-text {
    font-size: 0.95rem; /* フォントサイズ */
    line-height: 1.8; /* 行間 */
    color: #555; /* ミディアムグレー */
}

/* 予約期間バナー2 - セクション下部の青い帯 */
.reservation-banner-2 {
    background: rgba(70, 130, 180, 0.9); /* 半透明の青 */
    padding: 1.5rem 2rem; /* 内側の余白 */
    margin-top: 3rem; /* 上の余白 */
    text-align: center; /* 中央揃え */
}

/* ===========================
   宿泊施設セクション
   施設情報と設備の紹介
   =========================== */

/* 宿泊施設セクション本体 */
.accommodation-section {
    padding: 5rem 2rem; /* 内側の余白 */
    background: #f8f8f8; /* 薄いグレー背景 */
}

/* 宿泊施設コンテナ - 最大幅と中央寄せ */
.accommodation-container {
    max-width: 1200px; /* 最大幅 */
    margin: 0 auto; /* 中央寄せ */
}

/* 宿泊施設コンテンツ - 2カラムグリッドレイアウト */
.accommodation-content {
    display: grid; /* グリッドレイアウト */
    grid-template-columns: 1fr 1fr; /* 2カラム（1:1） */
    gap: 3rem; /* カラム間の間隔 */
    align-items: center; /* 垂直方向中央揃え */
    margin-top: 3rem; /* 上の余白 */
}

/* 宿泊施設画像 - 角丸と影 */
.accommodation-image img {
    width: 100%; /* 横幅いっぱい */
    border-radius: 8px; /* 角丸 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* 影 */
}

/* 宿泊施設説明文の段落 */
.accommodation-text p {
    font-size: 1rem; /* フォントサイズ */
    line-height: 1.8; /* 行間 */
    margin-bottom: 1.5rem; /* 下の余白 */
    color: #555; /* ミディアムグレー */
}

/* 宿泊施設の特徴リスト - リストマーカーなし */
.accommodation-features {
    list-style: none; /* リストマーカーなし */
    padding: 0; /* パディングなし */
}

/* 特徴リストの各項目 */
.accommodation-features li {
    font-size: 0.95rem; /* フォントサイズ */
    padding: 0.5rem 0; /* 上下の余白 */
    padding-left: 1.5rem; /* 左の余白（チェックマーク用） */
    position: relative; /* 疑似要素の基準点 */
    color: #555; /* ミディアムグレー */
}

/* リスト項目のチェックマーク - 疑似要素で作成 */
.accommodation-features li::before {
    content: '✓'; /* チェックマーク */
    position: absolute; /* 絶対配置 */
    left: 0; /* 左端 */
    color: #4a5f5c; /* 緑がかったグレー */
    font-weight: 700; /* 太字 */
}

/* ===========================
   所在地・アクセスセクション
   地図と住所情報
   =========================== */

/* 所在地セクション本体 */
.map-info-section {
    padding: 5rem 2rem;
    background: #fff;
}

/* コンテナ */
.map-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 上部: 所在地と地図のコンテンツ */
.map-info-content {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 左:右 = 1:2 */
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* 左側: 所在地情報 */
.map-info-text {
    padding: 2rem 0;
}

/* 所在地タイトル */
.map-info-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    color: #333;
}

/* 郵便番号 */
.map-info-postal {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
    letter-spacing: 0.05em;
}

/* 住所 */
.map-info-address {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #333;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

/* Google Mapリンク */
.map-info-link {
    font-size: 1rem;
    color: #333;
    text-decoration: underline;
    letter-spacing: 0.05em;
    display: inline-block;
}

.map-info-link:hover {
    opacity: 0.7;
}

/* 右側: 地図エリア */
.map-info-map {
    width: 100%;
    height: 400px;
    background: #b0b0b0; /* グレー背景 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 地図プレースホルダー */
.map-placeholder {
    font-size: 3rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.2em;
}

/* 下部: アクセス方法 */
.map-info-access {
    padding-top: 1em;
}

/* アクセスタイトル */
.map-info-access-title {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.05em;
}

/* アクセス説明文 */
.map-info-access-text {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.map-info-access-text:last-child {
    margin-bottom: 0;
}

/* ===========================
   よくある質問セクション（新デザイン）
   FAQ
   =========================== */

/* FAQセクション本体 */
.faq-design-section {
    padding: 5rem 2rem;
    background: #e8e6dd; /* ベージュ背景 */
}

/* コンテナ */
.faq-design-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr; /* 左:右 = 1:2 */
    gap: 4rem;
    align-items: start;
}

/* 左側: タイトルエリア */
.faq-design-header {
    padding: 2rem 0 0;
    position: relative;
}

.faq-icon-holder{
    position: absolute;
    bottom: -18rem;
    left: -2rem;
}

/* タイトル */
.faq-design-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    color: #333;
}

/* 説明文 */
.faq-design-intro {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

/* 右側: 質問リスト */
.faq-design-list {
    display: flex;
    flex-direction: column;
}

/* 各質問アイテム */
.faq-design-item {
    border-bottom: 1px solid #333;
    padding: 1.5rem 0;
}

/* 質問ボタン */
.faq-design-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-family: "zen-old-mincho", serif;
    transition: opacity 0.3s ease;
}

.faq-design-question:hover {
    opacity: 0.7;
}

/* Q マーク */
.faq-design-q {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    flex-shrink: 0;
}

/* 質問テキスト */
.faq-design-question-text {
    flex-grow: 1;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.05em;
}

/* +アイコン */
.faq-design-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
    flex-shrink: 0;
    border: 1px solid #333;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* アクティブ時のアイコン */
.faq-design-item.active .faq-design-icon {
    transform: rotate(45deg);
}

/* 回答エリア */
.faq-design-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* アクティブ時の回答 */
.faq-design-item.active .faq-design-answer {
    max-height: 500px;
    padding-top: 1rem;
}

/* 回答の段落 */
.faq-design-answer p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    padding-left: 2.2rem; /* Qマークの幅分インデント */
    letter-spacing: 0.05em;
}

/* ===========================
   よくある質問セクション
   アコーディオン形式のFAQ
   =========================== */

/* FAQセクション本体 */
.faq-section {
    padding: 5rem 2rem; /* 内側の余白 */
    background: #fff; /* 白背景 */
}

/* FAQコンテナ - 最大幅と中央寄せ */
.faq-container {
    max-width: 900px; /* 最大幅 */
    margin: 0 auto; /* 中央寄せ */
}

/* FAQリスト */
.faq-list {
    margin-top: 3rem; /* 上の余白 */
}

/* FAQ項目 - 各質問と回答のブロック */
.faq-item {
    border-bottom: 1px solid #e0e0e0; /* 下線 */
    margin-bottom: 1rem; /* 下の余白 */
}

/* 質問ボタン - クリックで回答を開閉 */
.faq-question {
    width: 100%; /* 横幅いっぱい */
    background: none; /* 背景なし */
    border: none; /* ボーダーなし */
    padding: 1.5rem 0; /* 上下の余白 */
    display: flex; /* フレックスボックス */
    justify-content: space-between; /* 左右に配置 */
    align-items: center; /* 垂直方向中央揃え */
    cursor: pointer; /* ポインターカーソル */
    font-size: 1rem; /* フォントサイズ */
    font-family: "zen-old-mincho", serif; /* 日本語フォント */
    font-weight: 700; /* 太字 */
    text-align: left; /* 左揃え */
    transition: color 0.3s ease; /* 色の変化をスムーズに */
}

/* 質問ホバー時 - 色を変更 */
.faq-question:hover {
    color: #4a5f5c; /* 緑がかったグレー */
}

/* FAQアイコン - + 記号 */
.faq-icon {
    font-size: 1.5rem; /* フォントサイズ */
    font-weight: 300; /* 細め */
    transition: transform 0.3s ease; /* 回転をスムーズに */
}

/* アクティブ時のアイコン - × に変わる（45度回転） */
.faq-item.active .faq-icon {
    transform: rotate(45deg); /* 45度回転 */
}

/* FAQ回答 - デフォルトは非表示 */
.faq-answer {
    max-height: 0; /* 高さ0 */
    overflow: hidden; /* はみ出しを隠す */
    transition: max-height 0.3s ease; /* 高さの変化をスムーズに */
}

/* アクティブ時の回答 - 表示される */
.faq-item.active .faq-answer {
    max-height: 500px; /* 最大高さ */
    padding-bottom: 1.5rem; /* 下の余白 */
}

/* 回答の段落 */
.faq-answer p {
    font-size: 0.95rem; /* フォントサイズ */
    line-height: 1.8; /* 行間 */
    color: #666; /* ミディアムグレー */
}

/* ===========================
   お問い合わせセクション
   連絡方法の案内
   =========================== */

/* お問い合わせセクション本体 */
.contact-section {
    position: relative;
    padding: 5rem 2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/contact_bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
}

/* お問い合わせコンテナ - 最大幅と中央寄せ */
.contact-container {
    max-width: 1200px; /* 最大幅 */
    margin: 0 auto; /* 中央寄せ */
}

/* お問い合わせ紹介文 */
.contact-intro {
    text-align: center; /* 中央揃え */
    font-size: 1rem; /* フォントサイズ */
    margin-bottom: 4rem; /* 下の余白 */
    color: #fff; /* テキストの色を白に */
}

/* お問い合わせ方法グリッド - 3カラムレイアウト */
.contact-methods {
    display: grid; /* グリッドレイアウト */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 自動的に3カラム */
    gap: 2rem; /* カード間の間隔 */
    margin-top: 3rem; /* 上の余白 */
}

/* お問い合わせ方法カード - 各連絡手段 */
.contact-method {
    background: #fff; /* 白背景 */
    padding: 2rem; /* 内側の余白 */
    text-align: center; /* 中央揃え */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 影 */
}

/* お問い合わせ方法の見出し */
.contact-method h3 {
    font-size: 1.2rem; /* フォントサイズ */
    font-weight: 700; /* 太字 */
    margin-bottom: 1rem; /* 下の余白 */
    color: #333; /* ダークグレー */
}

/* 連絡先詳細 - 電話番号やメールアドレス */
.contact-detail {
    font-size: 1.1rem; /* フォントサイズ */
    font-weight: 700; /* 太字 */
    margin-bottom: 0.5rem; /* 下の余白 */
    color: #4a5f5c; /* 緑がかったグレー */
}

/* メールリンクのスタイル */
.email-link {
    color: #027ea4; /* リンクカラー（ブルー） */
    text-decoration: none; /* 下線なし */
    transition: all 0.3s ease; /* スムーズな変化 */
    cursor: pointer; /* カーソルをポインターに */
    display: inline-block; /* インラインブロック */
    position: relative; /* 位置指定 */
}

/* メールリンクのホバーエフェクト */
.email-link:hover {
    color: #025a7a; /* ホバー時の色（濃いブルー） */
    text-decoration: underline; /* 下線を表示 */
}

/* メールリンクのアクティブ時 */
.email-link:active {
    color: #013f55; /* クリック時の色（さらに濃いブルー） */
}

/* 受付時間 */
.contact-hours {
    font-size: 0.9rem; /* フォントサイズ */
    color: #666; /* ミディアムグレー */
}

/* ===========================
   フッター（新デザイン）
   サイト情報とナビゲーション
   =========================== */

/* フッター本体 */
.footer-design {
    background: var(--color-slate); /* ダークグリーングレー */
    color: #fff;
    padding: 3rem 2rem;
}

/* フッターコンテナ */
.footer-design-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 左側: ロゴと住所 */
.footer-design-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-design-left figure{
    width: 50%;
}

/* 郵便番号 */
.footer-design-postal {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* 住所 */
.footer-design-address {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* 右側: ナビゲーションとコピーライト */
.footer-design-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

/* 予約ボタン */
.footer-design-reserved {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1em;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #fff;
    transition: opacity 0.3s ease;
}

.footer-design-reserved:hover {
    opacity: 0.7;
}

/* ナビゲーションリンク */
.footer-design-nav {
    display: flex;
    gap: 2rem;
}

.footer-design-nav a {
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1em;
    font-family: "minion-pro-caption", serif;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-design-nav a:hover {
    opacity: 0.7;
}

/* 著作権表示 */
.footer-design-copyright {
    font-size: 0.75rem;
    color: #fff;
    opacity: 0.7;
    letter-spacing: 0.05em;
}

/* ===========================
   フッター（旧デザイン）
   サイト情報と著作権表示
   =========================== */

/* フッター本体 - 暗い背景 */
.footer {
    background: #2a3a38; /* 暗い緑がかったグレー */
    color: #fff; /* 白文字 */
    padding: 3rem 2rem 2rem; /* 内側の余白 */
}

/* フッターコンテナ - 最大幅と中央寄せ */
.footer-container {
    max-width: 1200px; /* 最大幅 */
    margin: 0 auto; /* 中央寄せ */
    text-align: center; /* 中央揃え */
}

/* フッターロゴ */
.footer-logo h2 {
    font-size: 2rem; /* フォントサイズ */
    font-weight: 700; /* 太字 */
    letter-spacing: 0.2em; /* 字間 */
    margin-bottom: 1.5rem; /* 下の余白 */
}

/* フッター住所 */
.footer-address {
    font-size: 0.9rem; /* フォントサイズ */
    margin-bottom: 0.5rem; /* 下の余白 */
    opacity: 0.8; /* 透明度 */
}

/* 著作権表示 */
.footer-copyright {
    font-size: 0.85rem; /* フォントサイズ */
    opacity: 0.7; /* 透明度 */
    margin-top: 1rem; /* 上の余白 */
}

/* ===========================
   スクロールアニメーション
   =========================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   レスポンシブデザイン
   画面サイズに応じたスタイル調整
   =========================== */

/* ===========================
   タブレット以下（768px以下）
   =========================== */
@media (max-width: 768px) {
    /* 全体のbody設定 */
    body {
        font-size: 14px;
        line-height: 1.7;
    }

    br {
    display: none;
    }

    /* ヘッダーコンテナ - パディング調整 */
    .header-container {
        padding: 0.8rem 1rem;
    }

    /* ロゴ - サイズ調整 */
    .logo a {
        width: 70%;
    }

    /* ナビゲーション - サイドメニューとして表示 */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        padding: 5rem 2rem;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    /* ナビゲーションアクティブ時 - 表示される */
    .nav.active {
        right: 0;
    }

    /* ナビゲーションリスト - 縦並び */
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    /* ナビゲーションリンク - サイズ調整 */
    .nav-list a {
        font-size: 1rem;
    }

    /* ハンバーガーメニュー - 表示 */
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* ハンバーガーアクティブ時 - 1本目の線（45度回転） */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 3px);
    }

    /* ハンバーガーアクティブ時 - 2本目の線（非表示） */
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    /* ハンバーガーアクティブ時 - 3本目の線（-45度回転） */
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* 表示切り替え用ユーティリティクラス */
    .tab_only {
        display: block!important;
    }
    .pc_only {
        display: none!important;
    }
    /* ヒーローセクション */
    .hero-video {
        object-position: center;
    }

    .scroll-down {
        transform: scale(0.9);
    }

    .hero-content{
        padding-bottom: 2rem;
        padding-right: 3rem;
    } 

    /* メインビジュアル - パディング調整 */
    .main-visual {
        padding: 3rem 1.5rem;
    }

    .main-visual-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    /* メインタイトル - フォントサイズ縮小 */
    .main-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    /* 説明文 - フォントサイズ調整 */
    .description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .divider-line span{
        padding: 0 0 0 3rem;
    }

    /* キャッチコピー - フォントサイズ縮小 */
    .stay-title {
        font-size: 1.5rem;
    }

    /* 予約バナー - マージン調整 */
    .reservation-banner {
        margin: 2rem 0;
        padding: 1rem 1.5rem;
        height: 12rem;
    }

    .banner-text {
        font-size: 0.95rem;
        padding: 1rem;
    }

    /* 特徴セクション - パディング調整 */
    .feature-section {
        padding: 2.5rem 1rem;
    }

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

    /* 特徴コンテナ - 1カラムレイアウトに変更 */
    .feature-container {
        display: block;
        max-width: 100%;
    }

    /* 左右レイアウト - 縦並びに変更 */
    .feature-left .feature-container,
    .feature-right .feature-container {
        grid-template-areas:
            "image"
            "content";
    }

    /* 特徴画像 - 高さ調整 */
    .feature-image {
        height: 400px;
    }

    /* 斜めのクリップパスを解除 */
    .feature-left .feature-image,
    .feature-right .feature-image {
        clip-path: none;
        border-radius: 8px;
        overflow: hidden;
    }

    /* 特徴コンテンツ */
    .feature-content {
        padding: 1.5rem;
    }

    /* 特徴タイトル - フォントサイズ縮小 */
    .feature-title {
        font-size: 1.4rem;
        line-height: 1.5;
        text-align: center;
    }

    /* 特徴テキスト */
    .feature-text {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    /* 特徴セクション2の画像切り替えアイコン - モバイル対応 */
    .dinner-header{
        flex-direction: column;
    }
    .feature-image-wrapper {
        margin-bottom: 0;
    }

    .feature-image-icons {
        gap: 0.8rem;
        padding: 1rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-icon-group {
        width: 20%;
    }

    /* 食事プラングリッド - 1カラムに */
    .meal-plans-grid {
        grid-template-columns: 1fr;
    }

    /* 食事バナーセクション - レスポンシブ */
    .food-banner-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .food-banner-content {
        padding: 2.5rem 1.5rem;
        text-align: center;
        margin: 0 auto;
    }

    .food-banner-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .food-banner-text p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .food-banner-image {
        min-height: 300px;
    }

    .food-banner-image img {
        object-fit: cover;
        height: 100%;
    }

    /* コース詳細セクション - タブレット */
    .course-charm-wrapper,
    .course-point-wrapper,
    .course-charm-wrapper-2,
    .course-point-wrapper-2 {
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }
    .course-point-wrapper, .course-point-wrapper-2{
        width: 90%;
    }

    .course-charm-content,
    .course-point-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .course-charm-content-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
        grid-template-areas:
            "text"
            "image";
    }
    .course-charm-text,
    .course-charm-text-2,
    .course-point-text,
    .course-point-text-2 {
        padding: 1rem;
    }

    .course-charm-text-2 {
        grid-area: text;
    }

    .course-charm-image,
    .course-point-image,
    .course-charm-image-2 {
        height: 300px;
    }

    .course-charm-image-2 {
        grid-area: image;
    }

    .course-charm-title,
    .course-charm-title-2 {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .course-point-title,
    .course-point-title-2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .course-charm-text p,
    .course-point-text p,
    .course-charm-text-2 p,
    .course-point-text-2 p {
        font-size: 0.9rem;
        line-height: 2;
    }

    /* 食事情報セクション - レスポンシブ */
    .food-info-section {
        padding: 2rem 1.5rem;
    }

    .food-info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .food-info-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
        text-align: center;
    }

    .food-info-description p {
        font-size: 0.9rem;
        line-height: 2;
    }

    .food-info-image {
        height: 300px;
    }

    /* オプションセクション - レスポンシブ */
    .option-section {
        padding: 2.5rem 1.5rem;
    }

    .option-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .option-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .option-image {
        height: 250px;
    }

    .option-item-title {
        font-size: 1.1rem;
    }

    .option-text p {
        font-size: 0.9rem;
    }

    /* 朝食セクション - レスポンシブ */
    .breakfast-intro-section {
        margin-bottom: 0;
    }

    .breakfast-section {
        padding: 2rem 0;
    }

    .breakfast-title-ja {
        font-size: 1.8rem;
        letter-spacing: 0.4em;
        padding-left: 0.4em;
        margin-bottom: 1rem;
    }

    .breakfast-subtitle {
        font-size: 0.9rem;
    }

    .breakfast-container {
        padding: 2rem 1.5rem;
    }

    .breakfast-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .breakfast-intro-text p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .breakfast-intro-image {
        height: 350px;
    }

    .breakfast-icons {
        gap: 1rem;
        padding: 1rem 0;
    }

    .breakfast-icon-group {
        padding: 0;
    }

    .breakfast-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .breakfast-feature-box {
        padding: 1.5rem 1rem;
    }

    .breakfast-feature-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .breakfast-feature-text p {
        font-size: 0.9rem;
    }

    /* 夕食セクション - レスポンシブ */
    .dinner-section {
        padding: 2rem 0;
    }

    .dinner-title-ja {
        font-size: 1.8rem;
        letter-spacing: 0.4em;
        padding-left: 0.4em;
        margin-bottom: 1rem;
    }

    .dinner-subtitle {
        font-size: 0.9rem;
    }

    .dinner-container {
        padding: 0 1.5rem;
    }

    /* 説明文エリアを縦並びに */
    .dinner-intro-section {
        padding: 2rem 0;
        margin-bottom: 0;
    }

    .dinner-intro-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "beef";
    }

    .dinner-intro-text {
        grid-area: text;
        padding-bottom: 1.5rem;
    }

    .dinnner-intro-beef {
        grid-area: beef;
    }

    .dinner-intro-text p {
        font-size: 0.9rem;
        line-height: 1.8;
        margin-bottom: 0.5rem;
    }

    .dinner-course-cards {
        gap: 2.5rem;
        margin-top: 2rem;
    }

    .dinner-course-card {
        padding: 0;
    }

    .dinner-course-image-wrapper {
        height: 400px;
    }

    .dinner-course-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .dinner-icon-buttons {
        align-items: flex-start;
        gap: 1rem;
    }

    .dinner-course-icons {
        gap: 1rem;
    }

    .dinner-icon-group {
        padding: 0;
        width: 23%;
    }

    /* 宿泊施設コンテンツ - 1カラムに */
    .accommodation-content {
        grid-template-columns: 1fr; /* 1カラム */
        gap: 2rem; /* 間隔を小さく */
    }

    /* 所在地・アクセスセクション - レスポンシブ */
    .map-info-section {
        padding: 2.5rem 1rem;
    }

    .map-info-container {
        max-width: 100%;
    }

    .map-info-text{
        padding: 0;
    }

    .map-info-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }

    .map-info-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .map-info-postal,
    .map-info-address {
        font-size: 0.9rem;
    }

    .map-info-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .map-info-content iframe {
        width: 100%;
        height: 300px;
    }

    .map-info-access {
        padding: 1.5rem 1rem;
    }

    .map-info-access-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .map-info-access-text {
        font-size: 0.9rem;
    }

    /* FAQデザインセクション - レスポンシブ */
    .faq-design-section {
        padding: 2.5rem 1rem;
    }

    .faq-design-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-design-header {
        padding: 1rem;
        text-align: center;
    }

    .faq-design-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .faq-design-intro {
        font-size: 0.9rem;
    }

    .faq-design-list {
        padding: 0 0.5rem;
    }

    .faq-design-item {
        padding: 1rem 0;
    }

    .faq-design-question-text {
        font-size: 0.95rem;
    }

    .faq-design-answer {
        font-size: 0.9rem;
    }

    .faq-design-q {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }

    .faq-design-icon {
        font-size: 1.5rem;
    }

    /* お問い合わせセクション - レスポンシブ */
    .contact-section {
        padding: 2.5rem 1rem;
    }

    /* セクションタイトル - フォントサイズ縮小 */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .contact-intro {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-method h3 {
        font-size: 1.1rem;
    }

    .contact-detail {
        font-size: 1rem;
    }

    /* フッターデザイン - タブレット */
    .footer-design {
        padding: 2rem 1rem;
    }

    .footer-design-container {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .footer-design-left {
        width: 100%;
        align-items: center;
    }

    .footer-design-logo {
        max-width: 200px;
    }

    .footer-design-postal,
    .footer-design-address {
        font-size: 0.9rem;
    }

    .footer-design-right {
        width: 100%;
        align-items: center;
    }

    .footer-design-reserved {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-design-nav {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .footer-design-nav a {
        font-size: 0.9rem;
    }

    .footer-design-copyright {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }
}

/* ===========================
   スマートフォン（480px以下）
   =========================== */
@media (max-width: 480px) {
    /* 全体のbody設定 */
    body {
        font-size: 14px;
    }

    /* ヘッダー */
    .header-container {
        padding: 0.6rem 0.8rem;
    }

    .sp_only{
    display: block!important;
    }

    /* ロゴ - フォントサイズ縮小 */
    .logo a {
        width: 65%;
    }

    /* ナビゲーション */
    .nav {
        width: 100%;
        padding: 4rem 1.5rem;
    }

    /* ナビゲーションリンク - フォントサイズ調整 */
    .nav-list {
        gap: 1.5rem;
    }

    .nav-list a {
        font-size: 0.95rem;
    }

    /* ヒーローセクション */
    .scroll-down {
        transform: scale(0.8);
    }

    .scroll-text {
        font-size: 0.9rem;
    }

    /* メインビジュアル */
    .main-visual {
        padding: 3rem 1rem;
    }

    /* メインタイトル - フォントサイズさらに縮小 */
    .main-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
        margin-bottom: 1rem;
    }

    /* サブタイトル - フォントサイズ縮小 */
    .subtitle {
        font-size: 0.9rem;
    }

    /* 説明文 - フォントサイズ縮小 */
    .description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 2;
    }

    .description br {
        display: none;
    }

    /* キャッチコピー - フォントサイズ縮小 */
    .stay-title {
        font-size: 1.2rem;
    }

    /* 予約バナー */
    .reservation-banner {
        padding: 0.8rem 1rem;
        margin: 1.5rem 0;
        height: 10rem;
    }

    .banner-text {
        font-size: 0.9rem;
    }

    /* 特徴セクション */
    .feature-section {
        padding: 2rem 0.8rem;
    }

    .feature-image {
        height: 300px;
    }

    .feature-content {
        padding: 1rem 0.5rem;
    }

    .feature-number span {
        font-size: 0.9rem;
        padding: 0.15rem 0.35rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .feature-text p {
        line-height: 1.9;
    }

    /* 特徴セクション2の画像切り替えアイコン */
    .feature-image-icons {
        flex-wrap: wrap; /* 2x2グリッドにするために折り返しを許可 */
        gap: 0.6rem;
        max-width: 300px; /* コンテナの最大幅を設定 */
    }

    .feature-image-button {
        flex: 1 1 40%; /* 2列になるように幅を設定 */
    }

    /* 食事バナーセクション - スマートフォン対応 */
    .food-banner-content {
        padding: 2rem 1rem;
        width: 100%;
    }

    .food-banner-title {
        font-size: 1.4rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .food-banner-text p {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .food-banner-image {
        min-height: 250px;
    }

    /* 夕食・朝食セクション - スマートフォン */
    .dinner-header{
        display: block;
        margin-bottom: 0;
    }
    .dinner-section,
    .breakfast-section {
        padding: 1.5rem 0;
    }

    .dinner-title-ja,
    .breakfast-title-ja {
        font-size: 1.6rem;
        letter-spacing: 0.3em;
        padding-left: 0.3em;
    }

    .dinner-subtitle,
    .breakfast-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .dinner-container,
    .breakfast-container {
        padding: 1.5rem 0.8rem;
    }

    .dinner-intro-text,
    .breakfast-intro-text {
        padding: 0 0.2rem 1rem;
    }

    .dinner-intro-text p,
    .breakfast-intro-text p {
        font-size: 0.9rem;
        line-height: 1.9;
    }

    .dinner-course-image-wrapper,
    .breakfast-intro-image {
        height: 300px;
    }

    .dinner-course-title {
        font-size: 1.1rem;
        flex: 2;
    }

    .breakfast-icons {
        flex-direction: row;
        gap: 0.8rem;
    }

    .breakfast-icon-group,
    .dinner-icon-group {
        padding: 0;
    }

    .breakfast-feature-title {
        font-size: 1rem;
    }

    .breakfast-feature-text p {
        font-size: 0.9rem;
    }

    /* 阿波美豚コース詳細セクション - スマートフォン対応 */
    .course-charm-wrapper,
    .course-point-wrapper {
        padding: 2rem 1rem;
    }

    .course-charm-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .course-point-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.3em;
        padding-left: 0.3em;
    }

    .course-charm-content,
    .course-point-content {
        gap: 1.5rem;
    }

    .course-charm-image,
    .course-point-image {
        height: 250px;
    }

    .course-charm-label,
    .course-point-label {
        padding: 1rem 2rem;
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .course-charm-text p,
    .course-point-text p {
        font-size: 0.9rem;
        line-height: 1.9;
    }

    /* 阿波尾鶏コース詳細セクション - スマートフォン対応 */
    .course-charm-wrapper-2,
    .course-point-wrapper-2 {
        padding: 2rem 1rem;
    }

    .course-charm-title-2 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .course-point-title-2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.3em;
        padding-left: 0.3em;
    }

    .course-charm-content-2 {
        gap: 1.5rem;
    }

    .course-charm-image-2 {
        height: 250px;
    }

    .course-charm-label-2 {
        padding: 1rem 2rem;
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .course-charm-text-2 p,
    .course-point-text-2 p {
        font-size: 0.9rem;
        line-height: 1.9;
    }

    /* コース詳細セクション - スマートフォン */
    .course-charm-wrapper,
    .course-point-wrapper,
    .course-charm-wrapper-2,
    .course-point-wrapper-2 {
        padding: 3rem 0.8rem;
        width: 100%;
        margin: 0 auto;
    }

    .course-charm-title,
    .course-charm-title-2 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .course-point-title,
    .course-point-title-2 {
        font-size: 1.2rem;
        letter-spacing: 0.25em;
        padding-left: 0.25em;
    }

    .course-charm-text p,
    .course-point-text p,
    .course-charm-text-2 p,
    .course-point-text-2 p {
        font-size: 0.9rem;
        line-height: 2;
    }

    /* 食事情報セクション - スマートフォン対応 */
    .food-info-section {
        padding: 1.5rem;
    }

    .food-info-container {
        gap: 1.5rem;
    }

    .food-info-title {
        margin-bottom: 2.5rem;
        line-height: 1.7;
        text-align: center;
    }

    .food-info-description p {
        font-size: 0.9rem;
        line-height: 2;
    }

    .food-info-image {
        height: 250px;
    }

    /* オプションセクション - スマートフォン */
    .option-section {
        padding: 2rem 0.8rem;
    }

    .option-title {
        font-size: 1.2rem;
    }

    .option-container {
        gap: 1.5rem;
    }

    .option-item-title {
        font-size: 1rem;
    }

    .option-text p {
        font-size: 0.9rem;
    }

    /* 地図・アクセスセクション - スマートフォン */
    .map-info-section {
        padding: 2rem 0.8rem;
    }

    .map-info-title {
        font-size: 1.3rem;
    }

    .map-info-postal,
    .map-info-address {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .map-info-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .map-info-content iframe {
        height: 250px;
    }

    .map-info-access {
        padding: 1rem 0.5rem;
    }

    .map-info-access-title {
        font-size: 1rem;
    }

    .map-info-access-text {
        font-size: 0.9rem;
    }

    /* FAQセクション - スマートフォン */
    .faq-design-section {
        padding: 2rem 0.8rem;
    }

    .faq-design-title {
        font-size: 1.3rem;
    }

    .faq-design-intro {
        font-size: 0.9rem;
    }

    .faq-design-question-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .faq-design-answer {
        font-size: 0.9rem;
        padding: 0;
    }

    .faq-design-q {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
    }

    .faq-design-icon {
        font-size: 1.3rem;
    }

    /* お問い合わせセクション - スマートフォン */
    .contact-section {
        padding: 2rem 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-intro {
        font-size: 0.9rem;
    }

    .contact-method h3 {
        font-size: 1rem;
    }

    .contact-detail {
        font-size: 0.95rem;
    }

    /* フッター - スマートフォン */
    .footer-design {
        padding: 1.5rem 0.8rem;
    }

    .footer-design-logo {
        max-width: 180px;
    }

    .footer-design-postal,
    .footer-design-address {
        font-size: 0.9rem;
    }

    .footer-design-reserved {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }

    .footer-design-nav {
        gap: 1rem;
    }

    .footer-design-nav a {
        font-size: 0.9rem;
    }

    .footer-design-copyright {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}
