/*
 * course.css
 * 桜豚 お献立ページ専用スタイル*/
/* ===============================================
   スマホ用メニューの表示確保 - 修正版
   =============================================== */

/* スマホサイズでは固定ナビとハンバーガーメニューを常に表示 */
@media screen and (max-width: 767px) {

    /* スマホ用固定ナビは常に表示 - より強力な指定 */
    .ft-fixed {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important; /* z-indexをさらに高く */
        pointer-events: auto !important; /* クリック可能にする */
        transform: none !important; /* transformの影響を無効化 */
    }

    /* ハンバーガーメニューも常に表示 - より強力な指定 */
    .hamburger {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        pointer-events: auto !important; /* クリック可能にする */
        z-index: 99999 !important; /* z-indexをさらに高く */
    }

    /* ページタイトル部分でもスマホメニューは確実に表示 */
    body.at-page-title .ft-fixed {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    body.at-page-title .hamburger {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        pointer-events: auto !important;
    }

    /* スマホ用固定ナビの各ボタンも確実にクリック可能にする */
    .ft-fixed li,
    .ft-fixed li a {
        pointer-events: auto !important;
        opacity: 1 !important;
    }
}

/* ===============================================
   ページタイトルセクション
   =============================================== */
#page-title {
    /* 背景画像とグラデーションを重ねて上品に */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url(../img/course/key.webp);
    background-size: cover;
    /* 背景画像を全体に表示 */
    background-position: center;
    /* 背景画像を中央に配置 */
    color: #fff;
    /* 文字色を白に */
    padding: 25vw 0 15vw;
    /* 上下に大きめの余白（スマホ用） */
    text-align: center;
    /* 中央揃え */
    position: relative;
    /* 相対位置指定（装飾要素のため） */
    min-height: 60vh;
    /* 最小高さを画面の60%に設定 */
    display: flex;
    /* フレックスボックスで中央配置 */
    align-items: center;
    /* 縦方向中央揃え */
    margin-top: -80px;
    /* ヘッダーの高さ分を上にずらす（スマホ用） */
    padding-top: calc(25vw + 80px);
    /* その分上のパディングを増やす */
}

/* ヘッダーがページタイトル上では非表示になるように（PC用のみ） */
@media screen and (min-width: 768px) {
    body.at-page-title #belt.fixed {
        opacity: 0 !important;
        /* 透明にする */
        visibility: hidden !important;
        /* 完全に非表示 */
        transition: opacity 0.3s ease, visibility 0.3s ease;
        /* アニメーション */
    }
}

/* スマホではPC用ヘッダーの非表示設定を無効化 */
@media screen and (max-width: 767px) {
    body.at-page-title #belt.fixed {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ページタイトル部分を通過したらヘッダーを表示 */
body:not(.at-page-title) #belt.fixed {
    opacity: 1;
    /* 不透明にする */
    visibility: visible;
    /* 表示する */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* アニメーション */
}

/* メインタイトル「お献立」 */
.title-main {
    font-family: "Klee One", serif;
    /* 書体をKlee Oneに */
    font-size: 8vw;
    /* ビューポート幅に対する文字サイズ */
    font-weight: 700;
    /* 太字 */
    letter-spacing: 0.1em;
    /* 文字間隔を広く */
    margin-bottom: 1rem;
    /* 下に余白 */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    /* 文字に影をつけて読みやすく */
}

/* サブタイトル「鹿児島黒豚の真髄を味わう」 */
.title-sub {
    font-size: 4vw;
    /* メインより小さめの文字サイズ */
    font-weight: 400;
    /* 標準の太さ */
    letter-spacing: 0.05em;
    /* 文字間隔 */
    margin: 2rem;
    /* 下に余白 */
    opacity: 0.9;
    /* 少し透明にして上品に */
}

/* パンくずナビゲーション */
.breadcrumb {
    font-size: 3vw;
    /* 小さめの文字サイズ */
    opacity: 0.8;
    /* 薄く表示 */
}

.breadcrumb a {
    color: #ffda78;
    /* リンク色を黄色に */
    text-decoration: none;
    /* 下線を消す */
}

.breadcrumb a:hover {
    text-decoration: underline;
    /* ホバー時に下線 */
}

/* ===============================================
   コース紹介セクション
   =============================================== */
#course-intro {
    background: #FFF8DC;
    /* 背景色を白に */
    padding: 6vw 0;
    /* 上下に余白 */
}

/* セクションタイトル */
.section-title {
    font-family: "Klee One", serif;
    /* 書体指定 */
    font-size: 6vw;
    /* 文字サイズ */
    font-weight: 700;
    /* 太字 */
    text-align: center;
    /* 中央揃え */
    margin-bottom: 3vw;
    /* 下に余白 */
    color: #333;
    /* 濃いグレー色 */
    letter-spacing: 0.05em;
    /* 文字間隔 */
    position: relative;
    /* 装飾線のため */
}

/* セクションタイトルの下に装飾線 */
.section-title::after {
    content: "";
    /* 空の要素を作成 */
    display: block;
    /* ブロック要素として表示 */
    width: 60px;
    /* 線の幅 */
    height: 3px;
    /* 線の太さ */
    background: #d87093;
    /* ピンク色 */
    margin: 1rem auto 0;
    /* 中央に配置、上に余白 */
    border-radius: 2px;
    /* 角を丸く */
}

/* 紹介文 */
.intro-text {
    font-size: 4vw;
    /* 文字サイズ */
    line-height: 1.8;
    /* 行の高さ（読みやすさのため） */
    text-align: center;
    /* 中央揃え */
    color: #666;
    /* グレー色 */
    max-width: 800px;
    /* 最大幅を制限 */
    margin: 0 auto;
    /* 中央に配置 */
    letter-spacing: 0.02em;
    /* 文字間隔 */
}

/* ===============================================
   メニューコースセクション
   =============================================== */
#menu-courses {
    /* background: #f8f8f8; */
    /* 薄いグレーの背景 */
    background: url("../img/shared/bg1.jpg");
    padding: 6vw 0;
    /* 上下に余白 */
}

/* 各コースアイテム */
.course-item {
    background-color: rgba(254, 243, 192, 0.5);
    /* 50%の透明度 */

    /* 白い背景 */
    border-radius: 16px;
    /* 角を丸く（2025年のモダンデザイン） */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    /* 影を付けて立体感 */
    margin-bottom: 4vw;
    /* 下に余白 */
    overflow: hidden;
    /* はみ出し部分を隠す */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* アニメーション */
}

/* ホバー時のアニメーション */
.course-item:hover {
    transform: translateY(-8px);
    /* 少し上に浮かす */
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    /* 影を濃く */
}

/* コース内容のレイアウト */
.course-content {
    display: flex;
    /* フレックスボックスで横並び */
    flex-direction: column;
    /* スマホでは縦並び */
    gap: 0;
    /* 要素間の隙間なし */
}

/* コース画像部分 */
.course-image {
    position: relative;
    /* 価格タグの配置のため */
    overflow: hidden;
    /* はみ出し部分を隠す */
    height: 60vw;
    /* 高さをビューポート幅に対して設定 */
    max-height: 400px;
    /* 最大高さを制限 */
}

.course-image img {
    width: 100%;
    /* 幅を100%に */
    height: 100%;
    /* 高さを100%に */
    object-fit: cover;
    /* 比率を保ったまま切り抜き */
    transition: transform 0.3s ease;
    /* 拡大アニメーション用 */
}

/* ホバー時の画像拡大 */
.course-item:hover .course-image img {
    transform: scale(1.05);
    /* 少し拡大 */
}

/* 価格タグ */
.price-tag {
    position: absolute;
    /* 絶対位置指定 */
    top: 20px;
    /* 上から20px */
    right: 20px;
    /* 右から20px */
    /* background: linear-gradient(135deg, #7F4F2A, #4a4a4a); */
    background: linear-gradient(135deg, #7F4F2A, #a35e47);
    /* background: linear-gradient(135deg, #d87093, #c05a7b); */
    /* グラデーション背景 */
    color: #fff;
    /* 白い文字 */
    padding: 12px 16px;
    /* 内側の余白 */
    border-radius: 25px;
    /* 角を丸く */
    font-weight: 700;
    /* 太字 */
    box-shadow: 0 4px 16px rgba(216, 112, 147, 0.3);
    /* 影 */
    display: flex;
    /* フレックスボックス */
    align-items: baseline;
    /* ベースラインで揃える */
    gap: 4px;
    /* 要素間の隙間 */
}

.price {
    font-size: 5vw;
    /* 価格の文字サイズ */
    font-weight: 700;
    /* 太字 */
}

.tax {
    font-size: 3vw;
    /* 税込の文字サイズ */
    opacity: 0.8;
    /* 少し薄く */
}

/* コース情報部分 */
.course-info {
    padding: 6vw;
    /* 内側の余白 */
}

/* コース名 */
.course-name {
    font-family: "Klee One", serif;
    /* 書体指定 */
    font-size: 6vw;
    /* 文字サイズ */
    font-weight: 700;
    /* 太字 */
    color: #333;
    /* 濃いグレー */
    margin-bottom: 3vw;
    /* 下に余白 */
    letter-spacing: 0.05em;
    /* 文字間隔 */
}

/* コース説明文 */
.course-description {
    font-size: 4vw;
    /* 文字サイズ */
    line-height: 1.7;
    /* 行の高さ */
    color: #666;
    /* グレー色 */
    margin-bottom: 4vw;
    /* 下に余白 */
    letter-spacing: 0.02em;
    /* 文字間隔 */
}

/* コース詳細見出し */
.course-details h4 {
    font-size: 4.5vw;
    /* 文字サイズ */
    font-weight: 700;
    /* 太字 */
    color: #333;
    /* 濃いグレー */
    margin-bottom: 2vw;
    /* 下に余白 */
    border-left: 4px solid #d87093;
    /* 左に色付きの線 */
    padding-left: 3vw;
    /* 左に余白 */
}

/* メニューリスト */
.menu-list {
    list-style: none;
    /* リストマークを消す */
    padding: 0;
    /* 余白をリセット */
    margin: 0;
    /* 余白をリセット */
}

.menu-list li {
    font-size: 4vw;
    /* 文字サイズ */
    color: #555;
    /* グレー色 */
    margin-bottom: 2vw;
    /* 下に余白 */
    padding-left: 5vw;
    /* 左に余白 */
    position: relative;
    /* アイコンの配置のため */
    line-height: 1.6;
    /* 行の高さ */
}

/* リストアイテムの前にアイコン */
.menu-list li::before {
    content: "🌸";
    /* 桜のアイコン */
    position: absolute;
    /* 絶対位置指定 */
    left: 0;
    /* 左端に配置 */
    color: #d87093;
    /* ピンク色 */
    font-size: 3.5vw;
    /* アイコンサイズ */
}

/* ===============================================
   単品メニューセクション
   =============================================== */
.single-menu-section {
    margin-top: 8vw;
    /* 上に余白 */
    padding-top: 6vw;
    /* 上に余白 */
    border-top: 2px solid #eee;
    /* 上に区切り線 */
}

/* 単品メニューのグリッドレイアウト */
.single-menu-grid {
    display: grid;
    /* グリッドレイアウト */
    grid-template-columns: 1fr;
    /* スマホでは1列 */
    gap: 4vw;
    /* 要素間の隙間 */
    margin-top: 4vw;
    /* 上に余白 */
}

/* 単品アイテム */
.single-item {
    background: #fff;
    /* 白い背景 */
    border-radius: 12px;
    /* 角を丸く */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    /* 軽い影 */
    overflow: hidden;
    /* はみ出し部分を隠す */
    transition: transform 0.3s ease;
    /* アニメーション */
}

.single-item:hover {
    transform: translateY(-4px);
    /* ホバー時に少し浮かす */
}

/* 単品アイテムの画像 */
.item-image {
    height: 50vw;
    /* 高さ設定 */
    max-height: 200px;
    /* 最大高さ制限 */
    overflow: hidden;
    /* はみ出し部分を隠す */
}

.item-image img {
    width: 100%;
    /* 幅100% */
    height: 100%;
    /* 高さ100% */
    object-fit: cover;
    /* 比率を保って切り抜き */
}

/* 【今回の修正】単品アイテムの情報スタイルを修正 */
.item-info {
    padding: 4vw;
    /* 内側の余白 */
    /* text-align: center; */
    /* 全体の中央揃えを解除 */
}

.item-info h4 {
    font-size: 4.5vw;
    /* 文字サイズ */
    font-weight: 700;
    /* 太字 */
    color: #333;
    /* 濃いグレー */
    margin-bottom: 2vw;
    /* 下に余白 */
    text-align: center;
    /* 見出しは中央揃えを維持 */
}

/* 【今回の修正】単品アイテムの紹介文 (価格表示以外のPタグ) のためのスタイルを追加 */
.item-info P:not(.item-price) {
    font-size: 3.7vw;
    /* 文字を少し小さく */
    text-align: left;
    /* 左寄せにする */
    padding-left: 1em;
    /* 左に少し余白 */
    padding-right: 1em;
    /* 右にも少し余白 */
    line-height: 1.6;
    /* 行間を調整 */
    margin-bottom: 0.5em;
    /* 説明文同士の余白を調整 */
    color: #666;
    /* 説明文の文字色 */
}

.item-info .item-price {
    /* 【今回の修正】セレクタを .item-price から .item-info .item-price に変更(HTML構造に依存するが、より明確化) & text-align:center を追加 */
    font-size: 5vw;
    /* 価格の文字サイズ */
    font-weight: 700;
    /* 太字 */
    color: #d87093;
    /* ピンク色 */
    text-align: center;
    /* 価格も中央揃えを維持 */
}

/* 【今回の修正】.item-price span のスタイル定義がなかったので、以前の提案に基づき追加 */
.item-info .item-price span {
    font-size: 3vw;
    /* 税込の文字サイズ */
    color: #999;
    /* 薄いグレー */
    margin-left: 1vw;
    /* 左に少し余白 */
}


/* ===============================================
   ドリンクメニューセクション
   =============================================== */
.drink-menu-section {
    margin-top: 8vw;
    /* 上に余白 */
    padding-top: 6vw;
    /* 上に余白 */
    border-top: 2px solid #eee;
    /* 上に区切り線 */
}

/* ドリンクカテゴリー */
.drink-categories {
    display: flex;
    /* フレックスボックス */
    flex-direction: column;
    /* スマホでは縦並び */
    gap: 6vw;
    /* 要素間の隙間 */
    margin-top: 4vw;
    /* 上に余白 */
}

.drink-category {
    background: #fff;
    /* 白い背景 */
    border-radius: 12px;
    /* 角を丸く */
    padding: 5vw;
    /* 内側の余白 */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    /* 軽い影 */
}

.drink-category h3 {
    font-size: 5vw;
    /* 文字サイズ */
    font-weight: 700;
    /* 太字 */
    color: #333;
    /* 濃いグレー */
    margin-bottom: 4vw;
    /* 下に余白 */
    text-align: center;
    /* 中央揃え */
    border-bottom: 2px solid #d87093;
    /* 下に色付き線 */
    padding-bottom: 2vw;
    /* 下に余白 */
}

/* ドリンクリスト */
.drink-list {
    list-style: none;
    /* リストマークを消す */
    padding: 0;
    /* 余白をリセット */
    margin: 0;
    /* 余白をリセット */
}

.drink-list li {
    display: flex;
    /* フレックスボックス */
    justify-content: space-between;
    /* 両端揃え */
    align-items: center;
    /* 中央揃え */
    padding: 3vw 0;
    /* 上下に余白 */
    border-bottom: 1px solid #f0f0f0;
    /* 下に薄い線 */
    font-size: 4vw;
    /* 文字サイズ */
}

.drink-list li:last-child {
    border-bottom: none;
    /* 最後の要素は線なし */
}

.drink-name {
    color: #333;
    /* 濃いグレー */
    font-weight: 600;
    /* 少し太字 */
}

.drink-price {
    color: #d87093;
    /* ピンク色 */
    font-weight: 700;
    /* 太字 */
}

/* ===============================================
   予約案内セクション
   =============================================== */
#reservation-info {
    /* background: linear-gradient(135deg, #d87093, #c05a7b); */
    /* background: linear-gradient(135deg, #7F4F2A, #4a4a4a);
    background: linear-gradient(135deg, #7F4F2A, #a35e47); */
    /* background: linear-gradient(135deg, #CB4042, #2F2F2F); */
    background: linear-gradient(135deg, #7F4F2A, #2F2F2F);

    /* グラデーション背景 */
    color: #fff;
    /* 白い文字 */
    padding: 8vw 0;
    /* 上下に余白 */
    text-align: center;
    /* 中央揃え */
}

.reservation-content h2 {
    font-family: "Klee One", serif;
    /* 書体指定 */
    font-size: 6vw;
    /* 文字サイズ */
    font-weight: 700;
    /* 太字 */
    margin-bottom: 4vw;
    /* 下に余白 */
    letter-spacing: 0.05em;
    /* 文字間隔 */
}

.reservation-content p {
    font-size: 4vw;
    /* 文字サイズ */
    line-height: 1.7;
    /* 行の高さ */
    margin-bottom: 6vw;
    /* 下に余白 */
    opacity: 0.9;
    /* 少し透明にして上品に */
}

/* 連絡先ボタン */
.contact-buttons {
    display: flex;
    /* フレックスボックス */
    flex-direction: column;
    /* スマホでは縦並び */
    gap: 4vw;
    /* 要素間の隙間 */
    max-width: 400px;
    /* 最大幅制限 */
    margin: 0 auto;
    /* 中央に配置 */
}

.btn-contact {
    background: rgba(255, 255, 255, 0.2);
    /* 半透明の白背景 */
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* 半透明の白枠 */
    border-radius: 50px;
    /* 角を丸く */
    backdrop-filter: blur(10px);
    /* 背景ぼかし効果（モダンデザイン） */
    transition: all 0.3s ease;
    /* アニメーション */
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.3);
    /* ホバー時に少し濃く */
    transform: translateY(-2px);
    /* 少し浮かす */
}

.btn-contact a {
    display: flex;
    /* フレックスボックス */
    align-items: center;
    /* 中央揃え */
    justify-content: center;
    /* 中央揃え */
    padding: 4vw 6vw;
    /* 内側の余白 */
    color: #fff;
    /* 白い文字 */
    text-decoration: none;
    /* 下線を消す */
    font-weight: 700;
    /* 太字 */
    font-size: 4.5vw;
    /* 文字サイズ */
    gap: 3vw;
    /* アイコンと文字の隙間 */
}

.btn-contact .icon {
    font-size: 6vw;
    /* アイコンサイズ */
}

/* 【今回の修正】フッターの「写真提供」テキストのスタイル（既存のものをベースに確認・調整） */
#footer .set2 .item3 P {
    text-align: center;
    /* 中央揃えにする */
    margin-top: 8px;
    /* 上のaddressとの間に少し余白を追加 */
    font-size: 0.9em;
    /* 文字を少しだけ小さく (親要素のフォントサイズに依存) */
    /* color: #666; */
    /* 必要であれば文字色を指定 */
}

/* 【今回の修正】フッターの「著作権表示」テキストのスタイルを追加 */
#footer .set2 .item3 address {
    text-align: center;
    /* 中央揃えにする */
    font-style: normal;
    /* イタリック体を通常に戻す (お好みで) */
    font-size: 0.9em;
    /* Pタグと合わせるか、調整 */
    margin-top: 0;
    /* Pタグにmargin-topがあるので、こちらは0か微調整 */
    /* color: #666; */
    /* 必要であれば文字色を指定 */
}


/* ===============================================
   PC用レスポンシブデザイン（768px以上）
   =============================================== */
@media screen and (min-width: 768px) {

    /* ページタイトル */
    #page-title {
        padding: 120px 0 100px;
        /* PC用の固定余白（より大きく） */
        min-height: 70vh;
        /* PC用の最小高さ */
        margin-top: -100px;
        /* PC用ヘッダーの高さ分を上にずらす */
        padding-top: 220px;
        /* その分上のパディングを増やす */
    }

    .title-main {
        font-size: 50px;
        /* 固定の文字サイズ */
    }

    .title-sub {
        font-size: 24px;
        /* 固定の文字サイズ */
    }

    .breadcrumb {
        font-size: 16px;
        /* 固定の文字サイズ */
    }

    /* セクション */
    #course-intro,
    #menu-courses {
        padding: 80px 0;
        /* 固定の余白 */
    }

    .section-title {
        font-size: 36px;
        /* 固定の文字サイズ */
        margin-bottom: 40px;
        /* 固定の余白 */
    }

    .intro-text {
        font-size: 18px;
        /* 固定の文字サイズ */
    }

    /* コースアイテム */
    .course-item {
        margin-bottom: 60px;
        /* 固定の余白 */
    }

    .course-content {
        flex-direction: row;
        /* PC では横並び */
        align-items: stretch;
        /* 高さを揃える */
    }

    .course-image {
        flex: 0 0 45%;
        /* 画像部分の幅を45%に固定 */
        height: auto;
        /* 高さを自動調整 */
        min-height: 300px;
        /* 最小高さ設定 */
    }

    .course-info {
        flex: 1;
        /* 残りの幅を使用 */
        padding: 40px;
        /* 固定の余白 */
        display: flex;
        /* フレックスボックス */
        flex-direction: column;
        /* 縦並び */
        justify-content: center;
        /* 中央揃え */
    }

    .course-name {
        font-size: 28px;
        /* 固定の文字サイズ */
        margin-bottom: 20px;
        /* 固定の余白 */
    }

    .course-description {
        font-size: 16px;
        /* 固定の文字サイズ */
        margin-bottom: 30px;
        /* 固定の余白 */
    }

    .course-details h4 {
        font-size: 20px;
        /* 固定の文字サイズ */
        margin-bottom: 15px;
        /* 固定の余白 */
        padding-left: 20px;
        /* 固定の余白 */
    }

    .menu-list li {
        font-size: 15px;
        /* 固定の文字サイズ */
        margin-bottom: 12px;
        /* 固定の余白 */
        padding-left: 30px;
        /* 固定の余白 */
    }

    .menu-list li::before {
        font-size: 14px;
        /* 固定のアイコンサイズ */
    }

    .price {
        font-size: 24px;
        /* 固定の文字サイズ */
    }

    .tax {
        font-size: 14px;
        /* 固定の文字サイズ */
    }

    /* 単品メニュー */
    .single-menu-section,
    .drink-menu-section {
        margin-top: 80px;
        /* 固定の余白 */
        padding-top: 60px;
        /* 固定の余白 */
    }

    .single-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        /* PC では2列 */
        gap: 40px;
        /* 固定の隙間 */
        margin-top: 40px;
        /* 固定の余白 */
    }

    .item-image {
        height: 200px;
        /* 固定の高さ */
    }

    /* 【今回の修正】PC表示用の単品アイテム情報スタイルを修正 */
    .item-info {
        padding: 30px;
        /* 固定の余白 */
        /* text-align: center; は一般ルールから解除されているので、ここでは影響なし */
    }

    .item-info h4 {
        font-size: 18px;
        /* 固定の文字サイズ */
        margin-bottom: 15px;
        /* 固定の余白 */
        text-align: center;
        /* PCでも見出しは中央揃えを維持 */
    }

    /* 【今回の修正】PC表示用の単品アイテム紹介文のスタイルを追加 */
    .item-info P:not(.item-price) {
        font-size: 15px;
        /* PC用のフォントサイズ */
        text-align: left;
        /* 左寄せ */
        padding-left: 10px;
        /* PC用の左パディング */
        padding-right: 10px;
        /* PC用の右パディング */
        line-height: 1.7;
        margin-bottom: 8px;
        color: #666;
    }

    .item-info .item-price {
        /* 【今回の修正】セレクタを .item-price から .item-info .item-price に変更 & text-align:center を追加 */
        font-size: 20px;
        /* 固定の文字サイズ */
        text-align: center;
        /* PCでも価格は中央揃えを維持 */
    }

    /* 【今回の修正】.item-price span のPC用スタイル定義がなかったので、以前の提案に基づき追加 */
    .item-info .item-price span {
        font-size: 14px;
        /* 固定の文字サイズ */
        margin-left: 8px;
        /* 固定の余白 */
    }

    /* ドリンクメニュー */
    .drink-categories {
        flex-direction: row;
        /* PC では横並び */
        gap: 40px;
        /* 固定の隙間 */
        margin-top: 40px;
        /* 固定の余白 */
    }

    .drink-category {
        flex: 1;
        /* 等幅で配置 */
        padding: 40px;
        /* 固定の余白 */
    }

    .drink-category h3 {
        font-size: 22px;
        /* 固定の文字サイズ */
        margin-bottom: 30px;
        /* 固定の余白 */
        padding-bottom: 15px;
        /* 固定の余白 */
    }

    .drink-list li {
        padding: 15px 0;
        /* 固定の余白 */
        font-size: 16px;
        /* 固定の文字サイズ */
    }

    /* 予約案内 */
    #reservation-info {
        padding: 100px 0;
        /* 固定の余白 */
    }

    .reservation-content h2 {
        font-size: 36px;
        /* 固定の文字サイズ */
        margin-bottom: 30px;
        /* 固定の余白 */
    }

    .reservation-content p {
        font-size: 18px;
        /* 固定の文字サイズ */
        margin-bottom: 50px;
        /* 固定の余白 */
    }

    .contact-buttons {
        flex-direction: row;
        /* PC では横並び */
        gap: 30px;
        /* 固定の隙間 */
        max-width: 600px;
        /* 最大幅を広げる */
    }

    .btn-contact a {
        padding: 20px 40px;
        /* 固定の余白 */
        font-size: 18px;
        /* 固定の文字サイズ */
        gap: 15px;
        /* 固定の隙間 */
    }

    .btn-contact .icon {
        font-size: 24px;
        /* 固定のアイコンサイズ */
    }

    /* 偶数番目のコースは画像を右に */
    .course-item:nth-child(even) .course-content {
        flex-direction: row-reverse;
        /* 画像を右に */
    }

    /* 大画面用のグリッド調整 */
    @media screen and (min-width: 1200px) {
        .single-menu-grid {
            grid-template-columns: repeat(4, 1fr);
            /* 大画面では4列 */
        }
    }

    /* 【今回の修正】フッターテキストの中央揃え (PC用) */
    #footer .set2 .item3 P,
    #footer .set2 .item3 address {
        text-align: center;
        /* PC表示でも中央揃えを確実に適用 */
        /* font-size はモバイル用の 0.9em が継承されます。
           もしPC用に個別のサイズ指定が必要な場合は、以下のように記述してください。
           例: font-size: 14px;
        */
    }

    /* 【今回の修正】PC用でaddressのfont-styleをnormalに（必要であれば） */
    #footer .set2 .item3 address {
        font-style: normal;
    }

}