        :root {
            --bg-color: #120e0b;
            --bg-color-alt: #1e1814;
            --card-bg: #261f1a;
            --text-color: #f5f0eb;
            --text-muted: #bdae9f;
            --accent-gold: #d4af37;
            --accent-gold-hover: #f3e5ab;
            --border-color: #382d24;
            --shadow-color: rgba(0, 0, 0, 0.7);
            --transition-speed: 0.4s;
        }

        /* 店舗・ギャラリー・ドリンクタブ等の統一ラグジュアリーピルデザイン */
        .store-tabs-container, .gallery-tabs {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .store-tab-btn, .gallery-tab-btn {
            background: rgba(18, 14, 11, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: #c5b8a5;
            font-size: 0.88rem;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            outline: none;
            letter-spacing: 0.05em;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .store-tab-btn:hover, .gallery-tab-btn:hover {
            background: rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.6);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
        }

        .store-tab-btn.active-tab, .store-tab-btn.active, 
        .gallery-tab-btn.active-tab, .gallery-tab-btn.active {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(150, 115, 40, 0.45)) !important;
            border: 1.5px solid #d4af37 !important;
            color: #ffffff !important;
            font-weight: bold;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.35), 0 4px 15px rgba(0, 0, 0, 0.5) !important;
            transform: translateY(-2px);
        }

        /* 共通スタイル */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.8;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-speed) ease;
        }

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

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
        }

        /* スクロールフェードインアニメーション */
        .fade-in-section {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease-out, transform 1s ease-out;
            visibility: hidden;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }

        /* ボタン共通 */
        .gold-btn {
            display: inline-block;
            padding: 12px 35px;
            border: 1px solid var(--accent-gold);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
            color: var(--accent-gold);
            font-size: 0.95rem;
            font-weight: bold;
            border-radius: 4px;
            cursor: pointer;
            transition: all var(--transition-speed) ease;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.1em;
            text-align: center;
        }

        .gold-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.6s ease;
        }

        .gold-btn:hover::before {
            left: 100%;
        }

        .gold-btn:hover {
            background: var(--accent-gold);
            color: var(--bg-color);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        }

        /* 求人専用の目立つボタン */
        .recruit-btn {
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 35px;
            border: 2px solid var(--accent-gold);
            background: linear-gradient(135deg, rgba(6, 199, 85, 0.2) 0%, rgba(212, 175, 55, 0.15) 100%);
            color: #ffffff;
            font-size: 1.05rem;
            font-weight: bold;
            border-radius: 30px; /* 丸みのあるプレミアムな形状 */
            cursor: pointer;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.1em;
            text-align: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 10px rgba(212, 175, 55, 0.2);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            animation: pulse-border 2.5s infinite;
        }

        /* 自動で光が流れるシャインアニメーション */
        .recruit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 80%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
            transform: skewX(-25deg);
            animation: auto-shine 4s infinite ease-in-out;
        }

        @keyframes auto-shine {
            0% { left: -150%; }
            15% { left: 150%; }
            100% { left: 150%; }
        }

        /* 脈動（パルス）アニメーション */
        @keyframes pulse-border {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 0px rgba(212, 175, 55, 0.4);
            }
            50% {
                transform: scale(1.025);
                box-shadow: 0 6px 20px rgba(0,0,0,0.6), 0 0 18px rgba(212, 175, 55, 0.7);
                border-color: #ffffff;
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 0px rgba(212, 175, 55, 0.4);
            }
        }

        .recruit-btn:hover {
            background: linear-gradient(135deg, #06c755 0%, var(--accent-gold) 100%);
            color: #120e0b !important;
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 10px 25px rgba(6, 199, 85, 0.4), 0 0 20px rgba(212, 175, 55, 0.6);
            border-color: #ffffff;
        }

        .recruit-btn .btn-icon {
            width: 22px;
            height: 22px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }
        
        .recruit-btn:hover .btn-icon {
            transform: scale(1.2) rotate(-8deg);
        }

        /* ヘッダー求人案内ボタンの強調 */
        .nav-recruit-btn {
            border: 1px solid var(--accent-gold) !important;
            border-radius: 20px;
            padding: 5px 15px !important;
            margin-left: 8px;
            background: linear-gradient(135deg, rgba(6, 199, 85, 0.15), rgba(212, 175, 55, 0.1));
            color: #ffffff !important;
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
            animation: nav-recruit-pulse 2s infinite;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .nav-recruit-btn:hover {
            background: linear-gradient(135deg, #06c755, var(--accent-gold)) !important;
            color: #120e0b !important;
            border-color: #ffffff !important;
            transform: scale(1.06);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        }

        @keyframes nav-recruit-pulse {
            0% {
                box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
            }
            50% {
                box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
                border-color: #ffffff;
            }
            100% {
                box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
            }
        }

        /* フッター求人案内ボタンの強調 */
        .footer-recruit-btn {
            border: 1px solid var(--accent-gold) !important;
            border-radius: 15px;
            padding: 4px 12px !important;
            background: rgba(6, 199, 85, 0.08);
            color: var(--accent-gold) !important;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 0 5px rgba(212, 175, 55, 0.1);
        }

        .footer-recruit-btn:hover {
            background: var(--accent-gold) !important;
            color: #120e0b !important;
            transform: scale(1.05) translateX(2px);
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
        }

        /* ヘッダートップバー */
        .header-top-bar {
            background-color: #0b0806;
            border-bottom: 1px solid rgba(212, 175, 55, 0.05);
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.05em;
            padding: 6px 0;
            transition: all var(--transition-speed) ease;
        }

        .header-top-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-top-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-top-icon {
            color: var(--accent-gold);
        }

        /* スクロール時にトップバーを非表示にし、ヘッダー全体をスッキリさせる */
        .header.scrolled .header-top-bar {
            margin-top: -30px; /* トップバーの高さ分マイナスして隠す */
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .header-top-container {
                flex-direction: column;
                gap: 4px;
                text-align: center;
                padding: 4px 0;
            }
            .header-top-item {
                font-size: 0.62rem;
                justify-content: center;
                width: 100%;
                white-space: normal;
                word-break: break-all;
            }
        }

        /* ヘッダー（ナビゲーション） */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(18, 14, 11, 0.85);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: all var(--transition-speed) ease;
        }

        .header.scrolled {
            background-color: var(--bg-color);
            padding: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(212, 175, 55, 0.25);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            transition: height var(--transition-speed) ease;
        }

        .header.scrolled .header-container {
            height: 50px;
        }

        .header.scrolled .logo {
            font-size: 1.35rem;
            transition: all var(--transition-speed) ease;
        }

        .header.scrolled .logo-subtitle {
            font-size: 0.5rem;
            margin-top: -6px;
            transition: all var(--transition-speed) ease;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--accent-gold);
            letter-spacing: 0.15em;
        }

        .logo-subtitle {
            font-size: 0.6rem;
            display: block;
            color: var(--text-muted);
            letter-spacing: 0.3em;
            margin-top: -4px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 10px; /* 18pxから10pxに縮小 */
        }

        .nav-link {
            font-size: 0.82rem; /* 0.9remから0.82remに縮小 */
            font-weight: bold;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            position: relative;
            padding: 5px 0;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--accent-gold);
        }

        /* クーポンボタンを目立たせる装飾 */
        .nav-link.nav-coupon-btn {
            border: 1px solid var(--accent-gold);
            border-radius: 20px;
            padding: 6px 16px !important;
            color: var(--accent-gold) !important;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.02));
            transition: all var(--transition-speed);
        }
        .nav-link.nav-coupon-btn:hover {
            background: var(--accent-gold);
            color: var(--bg-color) !important;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
        }
        .nav-link.nav-coupon-btn::after {
            display: none !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        /* スマホ用ヘッダー内常時表示アクション */
        .header-actions {
            display: none;
            align-items: center;
            gap: 10px;
        }

        .header-actions .action-btn {
            font-size: 0.72rem;
            font-weight: bold;
            letter-spacing: 0.05em;
            text-decoration: none;
            padding: 6px 12px;
            border-radius: 15px;
            white-space: nowrap;
            transition: all var(--transition-speed);
        }

        .header-actions .action-coupon {
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.05);
        }

        .header-actions .action-coupon:hover {
            background: var(--accent-gold);
            color: var(--bg-color);
        }

        .header-actions .action-recruit {
            border: 1px solid #06c755;
            color: #ffffff;
            background: linear-gradient(135deg, rgba(6, 199, 85, 0.25), rgba(212, 175, 55, 0.1));
            animation: nav-recruit-pulse 2s infinite;
        }

        .header-actions .action-recruit:hover {
            background: linear-gradient(135deg, #06c755, var(--accent-gold));
            color: #120e0b;
        }

        /* スマホ用メニューボタン */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
            z-index: 1001;
        }

        .menu-bar {
            width: 25px;
            height: 2px;
            background-color: var(--accent-gold);
            transition: all 0.3s ease;
        }

        @media (max-width: 1320px) {
            .header-actions {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                height: 100vh;
                background-color: var(--bg-color-alt);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 22px;
                padding: 100px 0 50px 0;
                overflow-y: auto;
                transition: right 0.5s ease;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
                border-left: 1px solid var(--border-color);
            }

            .nav-menu.preview-show {
                right: -70%; /* 初回ロード時に右端から少しだけ見せるプレビュー位置 */
            }

            /* メニュー誘導吹き出しバルーン */
            .menu-balloon {
                position: absolute;
                top: 55px;
                right: -10px;
                background: linear-gradient(135deg, var(--accent-gold), #aa7c11);
                color: #120e0b;
                padding: 6px 12px;
                border-radius: 15px;
                font-size: 0.65rem;
                font-weight: bold;
                white-space: nowrap;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(212, 175, 55, 0.2);
                z-index: 1001;
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
                pointer-events: none;
                font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
            }

            .menu-balloon::before {
                content: '';
                position: absolute;
                top: -6px;
                right: 25px;
                border-left: 6px solid transparent;
                border-right: 6px solid transparent;
                border-bottom: 6px solid var(--accent-gold);
            }

            .menu-balloon.show {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .nav-menu.open {
                right: 0;
            }

            .nav-link {
                font-size: 1.1rem;
            }

            /* スマホメニューオープン時のボタンアニメーション */
            .menu-toggle.open .menu-bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .menu-toggle.open .menu-bar:nth-child(2) {
                opacity: 0;
            }
            .menu-toggle.open .menu-bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
        }

        /* メインビジュアル（ヒーロー） */
        .hero {
            height: 100vh;
            background-image: linear-gradient(rgba(18, 14, 11, 0.4), rgba(18, 14, 11, 0.9)), url('../lounge_hero_bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            text-align: center;
        }

        @media (max-width: 768px) {
            .hero {
                background-attachment: scroll; /* モバイルでは固定背景を解除してパフォーマンス向上 */
            }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }

        .hero-title-container {
            margin-bottom: 25px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1.2s forwards 0.3s;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--accent-gold);
            letter-spacing: 0.4em;
            margin-bottom: 10px;
            font-weight: 300;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            letter-spacing: 0.25em;
            color: var(--text-color);
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
            margin-right: -0.25em; /* 最後の文字の余白調整 */
        }

        .hero-tagline {
            font-size: 1.2rem;
            letter-spacing: 0.3em;
            color: var(--text-muted);
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1.2s forwards 0.8s;
            margin-right: -0.3em;
        }

        .hero-action {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1.2s forwards 1.3s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* セクション共通 */
        .section {
            padding: 120px 0;
            position: relative;
            z-index: 1;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../lounge_enjoy_bg.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.04; /* 非常に薄い透かしとして背景に溶け込ませる */
            z-index: -1;
            pointer-events: none;
        }

        .section-alt {
            background-color: var(--bg-color-alt);
        }
        
        .section-alt::before {
            opacity: 0.02; /* 交互のエリアはさらに上品に薄く */
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title {
            font-size: 2.2rem;
            color: var(--text-color);
            letter-spacing: 0.15em;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background-color: var(--accent-gold);
        }

        .section-title::before {
            content: '♦';
            position: absolute;
            bottom: -7px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--accent-gold);
            font-size: 0.6rem;
        }

        .section-subtitle {
            font-size: 0.85rem;
            color: var(--accent-gold);
            letter-spacing: 0.25em;
            margin-top: 10px;
        }

        /* コンセプトセクション */
        .concept-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 992px) {
            .concept-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .concept-text {
            font-size: 1.05rem;
            line-height: 2.2;
            color: var(--text-muted);
        }

        .concept-text p {
            margin-bottom: 25px;
        }

        .concept-lead {
            font-size: 1.4rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .concept-visual {
            position: relative;
            border: 1px solid var(--border-color);
            padding: 12px;
            background-color: var(--bg-color-alt);
        }

        .concept-visual::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            pointer-events: none;
        }

        .concept-img {
            width: 100%;
            height: auto;
            display: block;
            filter: grayscale(15%) contrast(105%);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* システム料金セクション */
        .price-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
        }

        @media (max-width: 992px) {
            .price-wrapper {
                grid-template-columns: 1fr;
            }
        }

        .price-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 40px;
            box-shadow: 0 15px 35px var(--shadow-color);
            position: relative;
            background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 1px solid rgba(212, 175, 55, 0.08);
            border-radius: 4px;
            pointer-events: none;
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 25px;
        }

        .price-table tr {
            border-bottom: 1px solid rgba(56, 45, 36, 0.5);
        }

        .price-table tr:last-child {
            border-bottom: none;
        }

        .price-table td {
            padding: 20px 0;
            vertical-align: middle;
        }

        .price-label {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--text-color);
            width: 50%;
        }

        .price-label span {
            display: block;
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: normal;
            margin-top: 4px;
        }

        .price-value {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-align: right;
        }

        .price-note {
            font-size: 0.85rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
        }

        .price-note li {
            list-style: none;
            position: relative;
            padding-left: 15px;
            margin-bottom: 8px;
        }

        .price-note li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: var(--accent-gold);
        }

        .drink-showcase {
            background-color: rgba(30, 24, 20, 0.4);
            border: 1px dashed var(--border-color);
            border-radius: 6px;
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .drink-showcase-title {
            font-size: 1.2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
            text-align: center;
        }

        .drink-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .drink-name {
            color: var(--text-color);
        }

        .drink-price {
            color: var(--text-muted);
        }

        /* 詳細メニューブック */
        .menu-book-container {
            max-width: 900px;
            margin: 40px auto 0 auto;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background-color: var(--card-bg);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            grid-column: 1 / -1; /* グリッド表示の幅いっぱいに広げる */
        }
        .menu-book-trigger {
            padding: 18px 25px;
            font-size: 1.05rem;
            color: var(--accent-gold);
            font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
            font-weight: bold;
            letter-spacing: 0.1em;
            cursor: pointer;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all var(--transition-speed);
            outline: none;
            list-style: none; /* 三角マーク除去用 */
        }
        .menu-book-trigger::-webkit-details-marker {
            display: none; /* Safari用三角マーク除去 */
        }
        .menu-book-trigger::after {
            content: '▼';
            font-size: 0.8rem;
            transition: transform var(--transition-speed);
        }
        details[open] .menu-book-trigger::after {
            transform: rotate(180deg);
        }
        .menu-book-content {
            padding: 30px 25px;
            border-top: 1px solid var(--border-color);
            background: rgba(18, 14, 11, 0.65);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .menu-category {
            margin-bottom: 10px;
        }
        .menu-category-title {
            font-size: 1.05rem;
            color: var(--accent-gold);
            border-left: 3px solid var(--accent-gold);
            padding-left: 10px;
            margin-bottom: 18px;
            font-family: 'Shippori Mincho', serif;
            letter-spacing: 0.05em;
        }
        .menu-item-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .menu-item-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 8px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
            font-size: 0.88rem;
        }
        .menu-item-name {
            color: #ffffff;
            font-weight: 500;
        }
        .menu-item-subname {
            font-size: 0.72rem;
            color: var(--text-muted);
            display: block;
            margin-top: 2px;
        }
        .menu-item-price {
            color: var(--accent-gold);
            font-weight: bold;
            white-space: nowrap;
        }
        .menu-item-taxin {
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-left: 4px;
        }

        /* キャストセクション */
        .cast-intro-text {
            text-align: center;
            max-width: 600px;
            margin: -40px auto 30px auto; /* マージンを調整 */
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .mascot-avatar-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px; /* gapを少し広げる */
            max-width: 1000px; /* 全員並べるため少し広げる */
            margin: 0 auto 50px auto;
            padding: 20px;
            background: rgba(30, 24, 20, 0.45);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 8px;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
        }
        .mascot-avatar-item {
            width: 95px; /* さらに大きくする */
            height: 95px; /* さらに大きくする */
            border-radius: 50%;
            background: #120e0b;
            border: 1px solid rgba(212, 175, 55, 0.35);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 8px rgba(0,0,0,0.4);
        }
        .mascot-avatar-item:hover {
            transform: scale(1.2) rotate(8deg);
            border-color: var(--accent-gold);
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
            background: #1e1814;
        }
        .mascot-avatar-item img {
            width: 82%;
            height: 82%;
            object-fit: contain;
        }

        .cast-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 25px;
        }

        .cast-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
        }

        .cast-card::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            border: 1px solid rgba(212, 175, 55, 0.05);
            border-radius: 4px;
            pointer-events: none;
            z-index: 2;
            transition: border-color var(--transition-speed);
        }

        .cast-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
        }

        .cast-card:hover::before {
            border-color: rgba(212, 175, 55, 0.25);
        }

        .cast-card.hidden-cast {
            opacity: 0.45;
            filter: brightness(0.6) contrast(0.85);
        }

        .cast-image-wrapper {
            display: block;
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            background-color: #1a1410;
        }

        .cast-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            filter: brightness(0.9) contrast(1.05);
        }

        .cast-card:hover .cast-image {
            transform: scale(1.06);
            filter: brightness(1);
        }

        .cast-card-link {
            display: block;
            height: 100%;
        }

        .cast-badge {
            position: relative;
            display: inline-block;
            margin: 15px auto 5px auto;
            background-color: var(--accent-gold);
            color: var(--bg-color);
            font-size: 0.7rem;
            font-weight: bold;
            padding: 2px 8px;
            border-radius: 2px;
            letter-spacing: 0.1em;
            z-index: 3;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
        }

        .cast-info {
            padding: 18px;
            text-align: center;
            position: relative;
            background-color: var(--card-bg);
            border-top: 1px solid var(--border-color);
        }

        .cast-name {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--text-color);
            margin-bottom: 4px;
            letter-spacing: 0.05em;
        }

        .cast-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .cast-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4px;
        }

        .cast-tag {
            font-size: 0.65rem;
            color: var(--accent-gold);
            background-color: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.2);
            padding: 1px 6px;
            border-radius: 2px;
        }

        /* ガチャセクション */
        .gacha-teaser {
            background-color: var(--bg-color-alt);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background-image: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 80%);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
        }

        .gacha-teaser::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 6px;
            pointer-events: none;
        }

        .gacha-title-decor {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
            letter-spacing: 0.1em;
        }

        .gacha-desc {
            max-width: 650px;
            margin: 0 auto 35px auto;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.9;
        }

        .gacha-awards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .gacha-award-badge {
            background-color: rgba(18, 14, 11, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .gacha-award-rank {
            font-size: 0.8rem;
            font-weight: bold;
            padding: 2px 6px;
            border-radius: 2px;
        }

        .gacha-award-rank.ur { background-color: #ff3b30; color: #fff; }
        .gacha-award-rank.ssr { background-color: #ff9500; color: #fff; }
        .gacha-award-rank.sr { background-color: #af52de; color: #fff; }

        .gacha-award-name {
            font-size: 0.85rem;
            color: var(--text-color);
        }

        /* アクセス・店舗情報 */
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        @media (max-width: 992px) {
            .info-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
        }

        .info-table tr {
            border-bottom: 1px solid rgba(56, 45, 36, 0.4);
        }

        .info-table tr:last-child {
            border-bottom: none;
        }

        .info-table th, .info-table td {
            padding: 18px 0;
            text-align: left;
        }

        .info-table th {
            font-weight: bold;
            color: var(--accent-gold);
            width: 30%;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
        }

        .info-table td {
            color: var(--text-color);
            font-size: 0.95rem;
        }

        .info-map-container {
            border: 1px solid var(--border-color);
            padding: 12px;
            background-color: var(--bg-color-alt);
            position: relative;
        }

        .info-map-placeholder {
            width: 100%;
            height: 350px;
            background-color: #191410;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--text-muted);
            border: 1px solid rgba(212, 175, 55, 0.05);
            text-align: center;
            padding: 20px;
        }

        .info-map-icon {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }

        /* フッター */
        .footer {
            background-color: #0c0907;
            border-top: 1px solid var(--border-color);
            padding: 60px 0 30px 0;
            text-align: center;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-gold);
            letter-spacing: 0.2em;
            margin-bottom: 10px;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 25px;
            list-style: none;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .footer-nav-link {
            font-size: 0.8rem;
            color: var(--text-muted);
            letter-spacing: 0.1em;
        }

        .footer-nav-link:hover {
            color: var(--accent-gold);
        }

        /* フッターのクーポンリンク装飾 */
        .footer-nav-link.footer-coupon-btn {
            color: var(--accent-gold);
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 12px;
            padding: 3px 10px;
        }
        .footer-nav-link.footer-coupon-btn:hover {
            color: var(--bg-color);
            background-color: var(--accent-gold);
            border-color: var(--accent-gold);
        }

        .footer-copyright {
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 0.05em;
            margin-bottom: 20px;
        }

        /* スタッフ専用メニュー */
        .staff-portal-btn {
            display: none;
            font-size: 0.75rem;
            color: rgba(189, 174, 159, 0.35);
            background: none;
            border: 1px solid rgba(56, 45, 36, 0.4);
            padding: 5px 15px;
            border-radius: 3px;
            cursor: pointer;
            transition: all var(--transition-speed);
            font-family: inherit;
        }

        .staff-portal-btn:hover {
            color: var(--accent-gold);
            border-color: rgba(212, 175, 55, 0.3);
            background-color: rgba(212, 175, 55, 0.03);
        }

        /* スタッフ専用モーダル */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .modal.open {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: var(--bg-color-alt);
            border: 1px solid var(--accent-gold);
            width: 90%;
            max-width: 500px;
            border-radius: 6px;
            padding: 35px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
            position: relative;
            transform: translateY(-20px);
            transition: transform 0.3s ease;
            text-align: center;
            background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
        }

        .modal.open .modal-content {
            transform: translateY(0);
        }

        .modal-title {
            font-size: 1.3rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            letter-spacing: 0.1em;
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.2rem;
            cursor: pointer;
        }

        .modal-close-btn:hover {
            color: var(--accent-gold);
        }

        .staff-menu-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            list-style: none;
            text-align: left;
        }

        .staff-menu-item a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 15px;
            background-color: rgba(18, 14, 11, 0.4);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 0.85rem;
            color: var(--text-color);
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .staff-menu-item a:hover {
            border-color: var(--accent-gold);
            background-color: rgba(212, 175, 55, 0.05);
            color: var(--accent-gold);
            transform: translateX(3px);
        }

        /* ==========================================================================
           FAQ & RECRUIT SECTIONS
           ========================================================================== */
        /* FAQスタイル */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            overflow: hidden;
            transition: all var(--transition-speed);
        }

        .faq-item summary {
            padding: 20px 25px;
            font-weight: bold;
            color: var(--accent-gold);
            cursor: pointer;
            outline: none;
            position: relative;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

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

        .faq-item summary::after {
            content: '＋';
            font-size: 1.1rem;
            color: var(--accent-gold);
            transition: transform 0.3s;
        }

        .faq-item[open] summary::after {
            content: '－';
            color: var(--accent-gold);
        }

        .faq-answer {
            padding: 0 25px 20px 25px;
            color: var(--text-muted);
            font-size: 0.95rem;
            border-top: 1px dashed rgba(56, 45, 36, 0.4);
            padding-top: 15px;
            line-height: 1.6;
        }

        /* 求人スタイル */
        .recruit-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        @media (max-width: 768px) {
            .recruit-grid {
                grid-template-columns: 1fr;
            }
        }

        .recruit-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 35px;
            box-shadow: 0 15px 35px var(--shadow-color);
            position: relative;
            background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.02) 0%, transparent 70%);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .recruit-floating-char {
            position: absolute;
            top: -45px;
            right: 15px;
            width: 85px;
            height: 85px;
            pointer-events: none;
            z-index: 10;
            opacity: 0;
            border-radius: 50%;
            border: 2px solid var(--accent-gold);
            overflow: hidden;
            background: #19120e;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 10px rgba(212, 175, 55, 0.3);
            transform: translateY(15px) scale(0.85) rotate(-10deg);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .recruit-floating-char.visible {
            opacity: 1;
            transform: translateY(0) scale(1) rotate(-10deg); /* わずかに左に傾けてこなれ感を演出 */
        }
        .recruit-floating-char img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 円形枠いっぱいに綺麗に収まるようにcoverに変更 */
            display: block;
        }

        .recruit-title {
            font-size: 1.3rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
            text-align: center;
            letter-spacing: 0.05em;
        }
        /* ==========================================================================
           新設セクション（News / Gallery / Coupon）のスタイル
           ========================================================================== */

        /* News セクション */
        .news-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .news-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            transition: all var(--transition-speed);
            text-decoration: none;
            color: inherit;
        }

        .news-item:hover {
            border-color: var(--accent-gold);
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.05);
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-right: 25px;
            flex-shrink: 0;
        }

        .news-date {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-family: 'Montserrat', sans-serif;
        }

        .news-category {
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 2px;
            font-weight: bold;
            letter-spacing: 0.05em;
        }

        .news-category.event {
            background-color: var(--accent-gold);
            color: var(--bg-color);
        }

        .news-category.info {
            border: 1px solid var(--border-color);
            color: var(--text-muted);
        }

        .news-category.news {
            border: 1px solid var(--accent-gold);
            color: var(--accent-gold);
        }

        .news-title {
            font-size: 0.95rem;
            line-height: 1.5;
            flex-grow: 1;
        }

        @media (max-width: 768px) {
            .news-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .news-meta {
                margin-right: 0;
            }
        }

        /* Gallery セクション */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4 / 3;
            background-color: rgba(30, 24, 20, 0.3);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--text-muted);
            transition: all var(--transition-speed);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
            z-index: 1;
        }

        .gallery-item:hover {
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
        }

        .gallery-placeholder-icon {
            font-size: 1.8rem;
            color: rgba(212, 175, 55, 0.3);
            margin-bottom: 12px;
            z-index: 2;
        }

        .gallery-placeholder-text {
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            z-index: 2;
            font-family: 'Shippori Mincho', sans-serif;
        }

        .gallery-coming-soon {
            font-size: 0.65rem;
            color: var(--accent-gold);
            margin-top: 6px;
            letter-spacing: 0.05em;
            z-index: 2;
        }

        /* Gallery店舗タブ */
        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .gallery-tab-btn {
            background: rgba(30, 24, 20, 0.4);
            border: 1px solid rgba(212, 175, 55, 0.25);
            color: var(--text-muted);
            padding: 10px 24px;
            font-size: 0.9rem;
            font-weight: bold;
            border-radius: 30px;
            cursor: pointer;
            transition: all var(--transition-speed);
            letter-spacing: 0.05em;
            font-family: 'Shippori Mincho', serif;
        }
        .gallery-tab-btn.active, .gallery-tab-btn:hover {
            background: var(--accent-gold);
            color: #120e0b;
            border-color: #ffffff;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
            transform: translateY(-2px);
        }
        .gallery-pane {
            display: none;
        }
        .gallery-pane.active {
            display: block;
            animation: fadeIn 0.6s ease forwards;
        }

        /* 本日出勤マスコットアーチ */
        .todaycast-arch-container {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            height: 95px;
            margin: 15px auto 10px auto;
            max-width: 800px;
            position: relative;
            padding: 0 10px;
            overflow: visible;
        }
        .todaycast-arch-item {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #120e0b;
            border: 1px solid rgba(212, 175, 55, 0.35);
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.5);
            margin: 0 3px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        .todaycast-arch-item img {
            width: 82%;
            height: 82%;
            object-fit: contain;
            display: block;
            margin: 9% auto;
        }
        .todaycast-arch-item:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
            z-index: 10;
        }

        /* Coupon セクション */
        .coupon-container {
            max-width: 750px;
            margin: 40px auto 0 auto;
        }

        .coupon-card {
            background-color: var(--card-bg);
            border: 2px dashed var(--accent-gold);
            border-radius: 8px;
            padding: 30px;
            position: relative;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
            overflow: hidden;
        }

        /* チケット風の切り欠き（左右） */
        .coupon-card::before, .coupon-card::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background-color: #0b0806; /* 親背景色と同化させる */
            border-radius: 50%;
            z-index: 5;
            transform: translateY(-50%);
            border: 2px dashed var(--accent-gold); /* 点線をつなげる */
        }

        .coupon-card::before {
            left: -11px;
        }

        .coupon-card::after {
            right: -11px;
        }

        .coupon-badge {
            background-color: var(--accent-gold);
            color: var(--bg-color);
            display: inline-block;
            padding: 5px 15px;
            font-size: 0.75rem;
            font-weight: bold;
            letter-spacing: 0.1em;
            border-radius: 2px;
            margin-bottom: 15px;
        }

        .coupon-title {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 15px;
            font-family: 'Shippori Mincho', sans-serif;
            letter-spacing: 0.05em;
        }

        .coupon-highlight {
            color: var(--accent-gold);
            font-weight: bold;
            font-size: 1.8rem;
            display: block;
            margin: 10px 0;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        .coupon-desc {
            font-size: 0.9rem;
            color: var(--text-color);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* 本日出勤キャスト（スライダー）セクション */
        .attendance-slider-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            aspect-ratio: 1 / 1;
            background-color: var(--card-bg);
        }

        .attendance-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .attendance-slide {
            min-width: 100%;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        .attendance-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(18, 14, 11, 0.7);
            border: 1px solid var(--border-color);
            color: var(--accent-gold);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            transition: all var(--transition-speed);
        }

        .slider-arrow:hover {
            background-color: var(--accent-gold);
            color: var(--bg-color);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
        }

        .slider-arrow-prev {
            left: 15px;
        }

        .slider-arrow-next {
            right: 15px;
        }

        .slider-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: background-color var(--transition-speed);
        }

        .slider-dot.active {
            background-color: var(--accent-gold);
        }

        /* リアルタイム空席状況インジケータ */
        @keyframes pulse-green {
            0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
            100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
        }
        @keyframes pulse-yellow {
            0% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(241, 196, 15, 0); }
            100% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0); }
        }
        @keyframes pulse-red {
            0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
            100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
        }
        .status-indicator.green {
            background-color: #2ecc71 !important;
            animation: pulse-green 2s infinite;
        }
        .status-indicator.yellow {
            background-color: #f1c40f !important;
            animation: pulse-yellow 2s infinite;
        }
        .status-indicator.red {
            background-color: #e74c3c !important;
            animation: pulse-red 2s infinite;
        }
        .vacancy-card {
            border: 1px solid var(--border-color);
            transition: all var(--transition-speed);
        }
        .vacancy-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }

        /* リアルタイム空席詳細アコーディオン */
        .vacancy-detail-panel {
            scrollbar-width: thin;
            scrollbar-color: var(--accent-gold) rgba(0,0,0,0.1);
        }
        .vacancy-detail-panel::-webkit-scrollbar {
            width: 4px;
        }
        .vacancy-detail-panel::-webkit-scrollbar-thumb {
            background-color: var(--accent-gold);
            border-radius: 2px;
        }
        .detail-table-card {
            background-color: rgba(20, 15, 12, 0.5);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 12px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }
        .detail-table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        .detail-table-name {
            font-weight: bold;
            color: #fff;
        }
        .detail-table-badge {
            font-size: 0.65rem;
            padding: 1px 6px;
            border-radius: 2px;
            font-weight: bold;
        }
        .badge-main { background-color: rgba(212, 175, 55, 0.15); color: var(--accent-gold); border: 1px solid rgba(212, 175, 55, 0.3); }
        .badge-vip { background-color: rgba(186, 104, 200, 0.15); color: #ba68c8; border: 1px solid rgba(186, 104, 200, 0.3); }
        .badge-counter { background-color: rgba(79, 195, 247, 0.15); color: #4fc3f7; border: 1px solid rgba(79, 195, 247, 0.3); }
        
        .detail-progress-bg {
            height: 6px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 3px;
            overflow: hidden;
            margin: 8px 0;
        }
        .detail-progress-fill {
            height: 100%;
            border-radius: 3px;
            transition: width 0.5s ease-in-out;
        }
        .detail-status-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            margin-top: 6px;
        }
        .detail-status-badge {
            font-weight: bold;
        }
        .status-available { color: #2ecc71; }
        .status-almost { color: #f1c40f; }
        .status-full { color: #e74c3c; }

        /* 営業時間外のCLOSEオーバーレイ */
        .vacancy-main-yula {
            position: relative;
        }
        .vacancy-close-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 14, 11, 0.95);
            backdrop-filter: blur(4px);
            z-index: 10;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }
        .vacancy-close-title {
            font-size: 2.2rem;
            color: var(--accent-gold);
            font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
            letter-spacing: 0.25em;
            margin-bottom: 12px;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
            font-weight: bold;
        }
        .vacancy-close-text {
            font-size: 1rem;
            color: var(--text-color);
            margin-bottom: 6px;
            letter-spacing: 0.05em;
        }
        .vacancy-close-time {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .vacancy-card {
            position: relative;
        }
        .card-close-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 14, 11, 0.9);
            backdrop-filter: blur(2px);
            z-index: 10;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-radius: 6px;
        }
        .card-close-title {
            font-size: 1.8rem;
            color: #e74c3c;
            font-weight: bold;
            letter-spacing: 0.15em;
            margin-bottom: 6px;
        }
        .card-close-text {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

/* ==========================================================================
   新コンテンツ：ご利用シーン・ステップ・ブランドこだわりCSS
   ========================================================================== */

/* 1. シーン別過ごし方ガイド (.scene-grid) */
.scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.scene-card {
    background: linear-gradient(145deg, rgba(28, 22, 17, 0.9), rgba(16, 12, 9, 0.95));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 26px 22px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.scene-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}
.scene-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.scene-card-title {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
    margin-bottom: 8px;
}
.scene-card-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.scene-card-desc {
    font-size: 0.85rem;
    color: #e6dace;
    line-height: 1.65;
    margin-bottom: 16px;
}
.scene-recommend-box {
    background: rgba(18, 14, 11, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
}
.scene-drink-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.15);
}
.scene-drink-row:last-child {
    border-bottom: none;
}
.scene-drink-genre {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 4px;
}
.scene-drink-item {
    font-size: 0.76rem;
    color: #e6dace;
    line-height: 1.4;
    padding-left: 14px;
}
.scene-tag-std {
    color: #8ed1fc;
    font-size: 0.7rem;
    margin-right: 4px;
}
.scene-tag-pre {
    color: #f7b1ab;
    font-size: 0.7rem;
    margin-right: 4px;
}

/* 2. 初めてのご来店ステップガイド (.step-flow-grid) */
.step-flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
}
.step-card {
    background: rgba(22, 17, 13, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 20px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}
.step-card:hover {
    border-color: var(--accent-gold);
    background: rgba(30, 24, 18, 0.9);
}
.step-number {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 12px;
}
.step-title {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: bold;
    font-family: 'Shippori Mincho', serif;
    margin-bottom: 8px;
}
.step-desc {
    font-size: 0.83rem;
    color: #c5b8a5;
    line-height: 1.6;
}

/* 3. ブランドこだわり (.commitment-grid) */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 35px;
}
.commitment-card {
    background: linear-gradient(135deg, rgba(30, 24, 19, 0.95), rgba(15, 11, 8, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
.commitment-number {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 4rem;
    font-weight: bold;
    color: rgba(212, 175, 55, 0.08);
    font-family: 'Shippori Mincho', serif;
    pointer-events: none;
}
.commitment-title {
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
    margin-bottom: 12px;
    position: relative;
}
.commitment-desc {
    font-size: 0.86rem;
    color: #e6dace;
    line-height: 1.7;
}

/* ==========================================================================
   新コンテンツ：FAQ・深夜アクセス・スマートマナーCSS
   ========================================================================== */

/* 1. よくあるご質問 (.faq-container) */
.faq-container {
    max-width: 850px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: rgba(26, 20, 16, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: border-color 0.3s ease;
}
.faq-item[open] {
    border-color: var(--accent-gold);
}
.faq-question {
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Shippori Mincho', serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
    background: rgba(30, 24, 19, 0.6);
    transition: background 0.3s ease;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
}
.faq-q-badge {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 10px;
}
.faq-answer {
    padding: 18px 22px 22px 22px;
    font-size: 0.88rem;
    color: #e6dace;
    line-height: 1.75;
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
    background: rgba(18, 14, 11, 0.85);
}
.faq-a-badge {
    color: #f7b1ab;
    font-weight: bold;
    font-size: 1rem;
    margin-right: 8px;
}

/* 2. 深夜アクセス・タクシー代行 (.latenight-grid) */
.latenight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.latenight-card {
    background: linear-gradient(145deg, rgba(28, 22, 17, 0.9), rgba(16, 12, 9, 0.95));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.latenight-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}
.latenight-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.latenight-title {
    font-size: 1.15rem;
    color: var(--accent-gold);
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
    margin-bottom: 8px;
}
.latenight-desc {
    font-size: 0.85rem;
    color: #c5b8a5;
    line-height: 1.65;
}

/* 3. スマートマナーガイド (.manner-grid) */
.manner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.manner-card {
    background: rgba(22, 17, 13, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 25px 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}
.manner-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}
.manner-badge {
    font-size: 0.72rem;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 3px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}
.manner-title {
    font-size: 1.1rem;
    color: #ffffff;
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
    margin-bottom: 8px;
}
.manner-desc {
    font-size: 0.84rem;
    color: #e6dace;
    line-height: 1.65;
}


/* ==========================================================================
   下層ページ共通ヒーロー（背景写真 ＋ 固定ヘッダー回避）
   --header-h は index.js が実測して :root に設定する
   ========================================================================== */
.page-hero {
    position: relative;
    padding: calc(var(--header-h, 200px) + 58px) 20px 58px;
    background-color: #0d0a08;
    background-image:
        linear-gradient(90deg, rgba(11, 8, 6, 0.93) 0%, rgba(11, 8, 6, 0.78) 46%, rgba(11, 8, 6, 0.40) 100%),
        linear-gradient(180deg, rgba(11, 8, 6, 0.58) 0%, rgba(14, 11, 8, 0.28) 40%, rgba(18, 14, 11, 0.90) 100%),
        var(--ph-img, url('/lounge_hero_bg.jpg'));
    background-size: cover, cover, cover;
    background-position: center, center, center 38%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 14px; left: 14px; right: 14px; bottom: 14px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    pointer-events: none;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}
.page-hero-body { flex: 1 1 auto; min-width: 0; }
.page-hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.34em;
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-weight: bold;
}
.page-hero-title {
    font-size: 2.35rem;
    line-height: 1.45;
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    margin: 0;
}
.page-hero-tagline {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #ece2d6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    max-width: 660px;
}

/* キャスト／ボーイスタッフ イメージメダリオン */
.page-hero-figure {
    flex: 0 0 auto;
    width: 158px;
    height: 158px;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    background: #19120e;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7), 0 0 24px rgba(212, 175, 55, 0.22);
    transform: rotate(-4deg);
}
.page-hero-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: rotate(4deg) scale(1.06);
}

/* 見出し脇に添えるイメージイラスト（円形） */
.mascot-medallion {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.75);
    background: #19120e;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
    flex: 0 0 auto;
    margin: 0;
}
.mascot-medallion img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mascot-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 auto 6px;
    padding: 0;
    list-style: none;
}
.mascot-strip .mascot-medallion { width: 78px; height: 78px; }
.mascot-strip-caption {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-top: 14px;
}

/* パンくずリスト（ヒーロー直下に配置） */
.page-breadcrumb {
    max-width: 1100px;
    margin: 16px auto 0;
    padding: 0 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.page-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--accent-gold); }
.page-breadcrumb .sep { margin: 0 6px; }
.page-breadcrumb .current { color: var(--accent-gold); }

/* ヒーロー直後のセクションは余白を詰める */
.section.section-after-hero { padding-top: 52px; }

/* 固定ヘッダー分のアンカー余白 */
:target { scroll-margin-top: calc(var(--header-h, 200px) + 20px); }
section[id], div[id], h2[id], h3[id] { scroll-margin-top: calc(var(--header-h, 200px) + 20px); }

@media (max-width: 900px) {
    .page-hero-title { font-size: 1.95rem; }
    .page-hero-figure { width: 128px; height: 128px; }
}
@media (max-width: 768px) {
    .page-hero {
        padding: calc(var(--header-h, 200px) + 34px) 18px 40px;
        /* モバイルは中央揃えのため横方向グラデーションを外し、全面を均一に暗く */
        background-image:
            linear-gradient(180deg, rgba(11, 8, 6, 0.90) 0%, rgba(14, 11, 8, 0.78) 45%, rgba(18, 14, 11, 0.95) 100%),
            var(--ph-img, url('/lounge_hero_bg.jpg'));
        background-size: cover, cover;
        background-position: center, center 38%;
    }
    .page-hero-inner { flex-direction: column; gap: 22px; text-align: center; }
    .page-hero-title { font-size: 1.6rem; letter-spacing: 0.06em; }
    .page-hero-tagline { text-align: left; font-size: 0.9rem; }
    .page-hero-figure { width: 108px; height: 108px; }
    .mascot-strip .mascot-medallion { width: 62px; height: 62px; }
    .section.section-after-hero { padding-top: 40px; }
}

/* ==========================================================================
   コンテンツハブ カード（お役立ちガイド一覧）
   ========================================================================== */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.hub-card {
    display: block;
    text-decoration: none;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 26px 22px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.hub-card:hover { border-color: var(--accent-gold); transform: translateY(-4px); }
.hub-card .hub-ico { font-size: 1.8rem; margin-bottom: 10px; }
.hub-card h3 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin: 0 0 8px;
    font-family: 'Shippori Mincho', serif;
}
.hub-card p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.8; margin: 0; }
.hub-card .hub-more { display: inline-block; margin-top: 12px; color: var(--accent-gold); font-size: 0.8rem; }

/* ==========================================================================
   用語集（glossary.html）
   ========================================================================== */
.gl-lead { max-width: 820px; margin: 0 auto 30px; text-align: center; color: var(--text-muted); line-height: 2; font-size: 0.95rem; }
.gl-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto 10px;
    padding: 0;
    list-style: none;
}
.gl-index a {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    padding: 6px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.gl-index a:hover { background: rgba(212, 175, 55, 0.14); border-color: var(--accent-gold); }

.gl-list { max-width: 880px; margin: 0 auto; }
.gl-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 3px solid rgba(212, 175, 55, 0.55);
    border-radius: 6px;
    padding: 20px 22px;
    margin-bottom: 14px;
}
.gl-term {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 8px;
}
.gl-term .gl-jp {
    color: var(--accent-gold);
    font-size: 1.05rem;
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
}
.gl-term .gl-yomi { font-size: 0.74rem; color: var(--text-muted); letter-spacing: 0.05em; }
.gl-desc { margin: 0; color: var(--text-muted); font-size: 0.88rem; line-height: 1.95; }
.gl-desc a { color: var(--accent-gold); }
.gl-note {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.76rem;
    color: #e0d3c2;
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 5px;
    padding: 6px 12px;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .gl-item { padding: 16px 16px; }
    .gl-index a { font-size: 0.75rem; padding: 5px 12px; }
}

/* ==========================================================================
   ナビゲーションメニューのハイライト＆バッジ装飾
   ========================================================================== */
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 1px 5px;
    border-radius: 8px;
    line-height: 1.2;
    letter-spacing: 0;
    vertical-align: middle;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    animation: badgePulse 2s infinite ease-in-out;
}
.nav-badge-coupon {
    background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa7c11 100%);
    color: #000000;
}
.nav-badge-first {
    background: rgba(212, 175, 55, 0.2);
    color: #ffd700;
    border: 1px solid var(--accent-gold);
}
.nav-badge-new {
    background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
    color: #ffffff;
}
.nav-badge-recruit {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #ffffff;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   リッチお酒ガイド＆シャンパン格付けカード
   ========================================================================== */
.champagne-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}
.champagne-card {
    background: linear-gradient(145deg, rgba(30, 24, 20, 0.9), rgba(18, 14, 11, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.champagne-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}
.champagne-tag {
    font-size: 0.7rem;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3px 8px;
    border-radius: 12px;
    align-self: flex-start;
    margin-bottom: 10px;
    font-weight: bold;
}
.champagne-name {
    font-size: 1.25rem;
    color: #ffffff;
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
    margin-bottom: 6px;
}
.champagne-flavor {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}
.champagne-desc {
    font-size: 0.84rem;
    color: #d1c5b8;
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1;
}
.champagne-smart-tip {
    background: rgba(212, 175, 55, 0.06);
    border-left: 3px solid var(--accent-gold);
    padding: 8px 12px;
    font-size: 0.78rem;
    color: #e6dace;
    border-radius: 0 6px 6px 0;
}

/* ==========================================================================
   スマート紳士のマナー & 比較グリッド
   ========================================================================== */
.manner-compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 25px;
}
.manner-box {
    background: rgba(20, 16, 13, 0.8);
    border-radius: 12px;
    padding: 22px;
    border: 1px solid var(--border-color);
}
.manner-box.ng-box {
    border-color: rgba(235, 87, 87, 0.4);
}
.manner-box.ok-box {
    border-color: rgba(39, 174, 96, 0.4);
}
.manner-box-header {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ng-box .manner-box-header { color: #eb5757; }
.ok-box .manner-box-header { color: #27ae60; }

.manner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.manner-item {
    font-size: 0.85rem;
    color: #d1c5b8;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}
.ng-box .manner-item::before {
    content: '✖';
    position: absolute;
    left: 0;
    color: #eb5757;
    font-weight: bold;
}
.ok-box .manner-item::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* ==========================================================================
   スマホ下部固定アクションバー（CVR・電話・ルート・クーポン常時アクセス）
   ========================================================================== */
.mobile-floating-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(14, 11, 8, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    box-sizing: border-box;
}

.floating-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.floating-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7px 4px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: bold;
    color: #ffffff;
    transition: all 0.2s ease;
    min-height: 48px;
    box-sizing: border-box;
}

.floating-bar-btn .bar-icon {
    font-size: 1.1rem;
    margin-bottom: 2px;
    line-height: 1;
}

.floating-bar-call {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #000000;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.floating-bar-map {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #e6dace;
}

.floating-bar-coupon {
    background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(255, 78, 80, 0.3);
}

@media (max-width: 768px) {
    .mobile-floating-bar {
        display: block;
    }
    body {
        padding-bottom: 64px;
    }
}


