/*
Theme Name: Temomi Sazanami
Theme URI: https://sazanami.3care.jp/
Description: 手もみ処さざ波 公式テーマ - 琉球式リラクゼーションサロン
Author: Brachio Design
Version: 3.1.0
Text Domain: temomi-sazanami
Requires at least: 5.9
Requires PHP: 7.4
*/

        /* ========== CSS Variables ========== */
        :root {
            --color-primary: #003990;
            --color-primary-light: #1a5bb8;
            --color-primary-lighter: #3d7dd4;
            --color-bg-light: #f7f8fa;
            --color-bg-mid: #eaecf0;
            --color-bg-warm: #dfe2e8;
            --color-accent: #c4756e;
            --color-white: #fefefe;
            --color-text: #1a1a2e;
            --color-text-light: #4a4a5a;
            --font-display: 'Shippori Mincho', serif;
            --font-body: 'Noto Serif JP', serif;
            --transition-base: 0.3s ease;
            --shadow-soft: 0 4px 30px rgba(0, 57, 144, 0.06);
            --shadow-medium: 0 8px 40px rgba(0, 57, 144, 0.12);
        }

        /* ========== Reset & Base ========== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
        body { font-family: var(--font-body); font-weight: 300; color: var(--color-text); background-color: var(--color-bg-light); line-height: 1.8; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
        img { max-width: 100%; height: auto; display: block; }
        a { color: inherit; text-decoration: none; transition: var(--transition-base); }
        button { font-family: inherit; cursor: pointer; }
        
        /* ========== Accessibility ========== */
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
        :focus-visible { outline: 3px solid var(--color-primary-light); outline-offset: 2px; }
        @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }

        /* ========== Wave Background ========== */
        .wave-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.08; pointer-events: none; }
        .wave-bg::before, .wave-bg::after { content: ''; position: absolute; width: 200%; height: 200%; background: radial-gradient(ellipse at center, var(--color-primary-lighter) 0%, transparent 70%); animation: wave 25s ease-in-out infinite; }
        .wave-bg::before { top: -50%; left: -50%; }
        .wave-bg::after { bottom: -50%; right: -50%; animation-delay: -12s; opacity: 0.6; }
        @keyframes wave { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 25% { transform: translate(2%, 2%) rotate(1deg); } 50% { transform: translate(0, 3%) rotate(0deg); } 75% { transform: translate(-2%, 2%) rotate(-1deg); } }

        /* ========== Header ========== */
        header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 2rem; background: linear-gradient(to bottom, rgba(247, 248, 250, 0.98), rgba(247, 248, 250, 0.92)); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: all 0.4s ease; }
        header.scrolled { padding: 0.7rem 2rem; box-shadow: 0 2px 30px rgba(0, 57, 144, 0.1); }
        nav { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
        .logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--color-primary); letter-spacing: 0.1em; }
        .logo span { display: block; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.2em; color: var(--color-primary-light); margin-top: 2px; }
        .nav-links { display: flex; gap: 2.5rem; list-style: none; }
        .nav-links a { font-size: 0.85rem; color: var(--color-text); letter-spacing: 0.08em; position: relative; }
        .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--color-primary-light); transition: width 0.3s ease; }
        .nav-links a:hover { color: var(--color-primary-light); }
        .nav-links a:hover::after { width: 100%; }
        .nav-cta { background: var(--color-primary); color: var(--color-white) !important; padding: 0.6rem 1.5rem; border-radius: 3px; }
        .nav-cta::after { display: none !important; }
        .nav-cta:hover { background: var(--color-primary-light); transform: translateY(-1px); }
        .mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 5px; }
        .mobile-menu-btn span { width: 24px; height: 2px; background: var(--color-primary); transition: all 0.3s ease; }

        /* ========== Hero ========== */
        .hero { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; position: relative; padding: 120px 2rem 80px; overflow: hidden; }
        /* 背景画像用 */
        .hero-bg-image { position: absolute; inset: 0; background: url('images/hero-bg.jpg') center center / cover no-repeat; z-index: 0; }
        /* YouTube動画背景用 */
        .hero-bg-video { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
        .hero-bg-video iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh; transform: translate(-50%, -50%); pointer-events: none; }
        /* オーバーレイ（テキスト読みやすさ向上） */
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 57, 144, 0.7) 0%, rgba(0, 57, 144, 0.4) 50%, rgba(0, 57, 144, 0.6) 100%); z-index: 1; }
        /* 波アニメーション */
        .hero-waves { position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; overflow: hidden; z-index: 3; }
        .hero-waves svg { position: absolute; bottom: 0; left: 0; width: 200%; height: 100%; }
        .hero-wave { animation: waveMove 8s ease-in-out infinite; }
        .hero-wave:nth-child(1) { animation-delay: 0s; opacity: 0.9; }
        .hero-wave:nth-child(2) { animation-delay: -2s; opacity: 0.7; }
        .hero-wave:nth-child(3) { animation-delay: -4s; opacity: 0.5; }
        @keyframes waveMove { 0%, 100% { transform: translateX(0) translateY(0); } 50% { transform: translateX(-25%) translateY(5px); } }
        /* コンテンツ */
        .hero-content { max-width: 900px; text-align: center; position: relative; z-index: 2; color: var(--color-white); }
        .hero-subtitle { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.3em; color: rgba(255, 255, 255, 0.9); margin-bottom: 1.5rem; animation: fadeInUp 1s ease-out 0.2s both; }
        .hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 500; color: var(--color-white); line-height: 1.5; margin-bottom: 2rem; letter-spacing: 0.08em; animation: fadeInUp 1s ease-out 0.4s both; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }
        .hero-description { font-size: 1rem; line-height: 2.2; color: rgba(255, 255, 255, 0.9); max-width: 600px; margin: 0 auto 3rem; animation: fadeInUp 1s ease-out 0.6s both; }
        .hero-cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeInUp 1s ease-out 0.8s both; }
        .hero-cta .btn-primary { background: var(--color-white); color: var(--color-primary); }
        .hero-cta .btn-primary:hover { background: rgba(255, 255, 255, 0.9); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
        .hero-cta .btn-secondary { background: transparent; color: var(--color-white); border: 1px solid var(--color-white); }
        .hero-cta .btn-secondary:hover { background: var(--color-white); color: var(--color-primary); }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        
        /* ========== Buttons ========== */
        .btn { display: inline-block; padding: 1rem 2.5rem; font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.12em; border-radius: 3px; transition: all 0.4s ease; border: none; text-align: center; }
        .btn-primary { background: var(--color-primary); color: var(--color-white); }
        .btn-primary:hover { background: var(--color-primary-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 57, 144, 0.25); }
        .btn-secondary { background: transparent; color: var(--color-primary); border: 1px solid var(--color-primary); }
        .btn-secondary:hover { background: var(--color-primary); color: var(--color-white); }
        .btn-light { background: rgba(255, 255, 255, 0.15); color: var(--color-white); border: 1px solid rgba(255, 255, 255, 0.3); padding: 0.7rem 1.2rem; font-size: 0.8rem; width: 100%; }
        .btn-light:hover { background: var(--color-white); color: var(--color-primary); }
        .btn-hotpepper { background: #ff6b6b; color: var(--color-white); }
        .btn-hotpepper:hover { background: #ff5252; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3); }

        /* ========== Wave Divider ========== */
        .wave-divider { height: 80px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23003990' fill-opacity='0.05' d='M0,50 C360,100 720,0 1080,50 C1260,75 1380,50 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat center; background-size: cover; }

        /* ========== Section Common ========== */
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-label { font-size: 0.75rem; letter-spacing: 0.3em; color: var(--color-primary-light); margin-bottom: 1rem; display: block; }
        .section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 500; color: var(--color-primary); letter-spacing: 0.08em; }

        /* ========== Five Senses (五感) ========== */
        .five-senses { padding: 80px 2rem; background: var(--color-primary); color: var(--color-white); text-align: center; overflow: hidden; }
        .five-senses-title { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.2em; margin-bottom: 3rem; font-weight: 400; }
        .five-senses-title span { display: block; font-size: 0.8rem; letter-spacing: 0.3em; opacity: 0.7; margin-top: 0.5rem; }
        .senses-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
        .sense-item { position: relative; padding: 2.5rem 1rem; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        /* 二重丸アニメーション */
        .sense-circle { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
        .sense-circle::before, .sense-circle::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25); }
        /* 内側の丸（ぼかし付き） */
        .sense-circle::before { width: 130px; height: 130px; animation: circleInner 12s ease-in-out infinite; filter: blur(1.5px); }
        /* 外側の丸（ぼかし強め） */
        .sense-circle::after { width: 160px; height: 160px; animation: circleOuter 15s ease-in-out infinite; filter: blur(3px); border-width: 2px; }
        /* 各項目で異なるサイズ・タイミング */
        .sense-item:nth-child(1) .sense-circle::before { width: 125px; height: 125px; animation-delay: 0s; }
        .sense-item:nth-child(1) .sense-circle::after { width: 155px; height: 155px; animation-delay: -2s; }
        .sense-item:nth-child(2) .sense-circle::before { width: 135px; height: 135px; animation-delay: -1s; }
        .sense-item:nth-child(2) .sense-circle::after { width: 165px; height: 165px; animation-delay: -4s; }
        .sense-item:nth-child(3) .sense-circle::before { width: 128px; height: 128px; animation-delay: -2s; }
        .sense-item:nth-child(3) .sense-circle::after { width: 158px; height: 158px; animation-delay: -1s; }
        .sense-item:nth-child(4) .sense-circle::before { width: 132px; height: 132px; animation-delay: -3s; }
        .sense-item:nth-child(4) .sense-circle::after { width: 162px; height: 162px; animation-delay: -5s; }
        .sense-item:nth-child(5) .sense-circle::before { width: 130px; height: 130px; animation-delay: -4s; }
        .sense-item:nth-child(5) .sense-circle::after { width: 160px; height: 160px; animation-delay: -3s; }
        @keyframes circleInner { 
            0%, 100% { transform: scale(1) translateY(0); opacity: 0.3; } 
            25% { transform: scale(1.08) translateY(-3px); opacity: 0.5; }
            50% { transform: scale(0.95) translateY(2px); opacity: 0.35; } 
            75% { transform: scale(1.05) translateY(-2px); opacity: 0.45; }
        }
        @keyframes circleOuter { 
            0%, 100% { transform: scale(1) translateX(0); opacity: 0.2; } 
            30% { transform: scale(1.1) translateX(3px); opacity: 0.4; }
            60% { transform: scale(0.92) translateX(-2px); opacity: 0.25; } 
            80% { transform: scale(1.06) translateX(1px); opacity: 0.35; }
        }
        .sense-inner { position: relative; z-index: 2; }
        .sense-label { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
        .sense-text { font-size: 0.85rem; line-height: 1.7; opacity: 0.9; }

        /* ========== Fixed Reserve Button (PC) ========== */
        .fixed-reserve { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
        .fixed-reserve.visible { opacity: 1; visibility: visible; }
        .fixed-reserve-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%); color: var(--color-white); padding: 1.2rem 0.6rem; border-radius: 8px 0 0 8px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; box-shadow: -4px 0 20px rgba(238, 90, 90, 0.3); transition: all 0.3s ease; text-align: center; text-decoration: none; }
        .fixed-reserve-btn:hover { padding-left: 0.3rem; background: linear-gradient(135deg, #ff5252 0%, #e04545 100%); }
        .fixed-reserve-btn svg { width: 20px; height: 20px; stroke: var(--color-white); fill: none; stroke-width: 2; flex-shrink: 0; }
        .fixed-reserve-btn span { writing-mode: vertical-rl; text-orientation: mixed; }
        @media (max-width: 768px) { .fixed-reserve { display: none; } }

        /* ========== Mobile Fixed CTA ========== */
        .mobile-fixed-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-white); padding: 0.8rem 1rem; box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1); z-index: 999; transform: translateY(100%); transition: transform 0.3s ease; }
        .mobile-fixed-cta.visible { transform: translateY(0); }
        .mobile-fixed-cta-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; max-width: 500px; margin: 0 auto; }
        .mobile-fixed-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0.6rem 0.5rem; border-radius: 8px; font-size: 0.65rem; font-weight: 500; text-align: center; gap: 0.2rem; }
        .mobile-fixed-btn svg { width: 20px; height: 20px; }
        .mobile-fixed-btn-tel { background: var(--color-primary); color: var(--color-white); }
        .mobile-fixed-btn-tel svg { stroke: var(--color-white); fill: none; }
        .mobile-fixed-btn-line { background: #06C755; color: var(--color-white); }
        .mobile-fixed-btn-line svg { fill: var(--color-white); }
        .mobile-fixed-btn-reserve { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%); color: var(--color-white); }
        .mobile-fixed-btn-reserve svg { stroke: var(--color-white); fill: none; }
        @media (max-width: 768px) { 
            .mobile-fixed-cta { display: block; }
            body { padding-bottom: 80px; }
            .pagetop { bottom: 90px; }
        }

        /* ========== Campaign (キャンペーン) ========== */
        .campaign { padding: 60px 2rem; background: var(--color-white); }
        .campaign-container { max-width: 1100px; margin: 0 auto; }
        .campaign-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
        .campaign-tab { padding: 0.8rem 1.5rem; border: 2px solid var(--color-primary); background: var(--color-white); color: var(--color-primary); border-radius: 30px; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; }
        .campaign-tab:hover { background: var(--color-bg-light); }
        .campaign-tab.active { background: var(--color-primary); color: var(--color-white); }
        .campaign-panel { display: none; }
        .campaign-panel.active { display: block; }
        .campaign-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        .campaign-card { background: var(--color-white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); transition: all 0.4s ease; border: 1px solid var(--color-bg-mid); }
        .campaign-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); }
        .campaign-badge { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); color: var(--color-white); padding: 1.2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; }
        .campaign-badge::after { content: ''; position: absolute; top: 0; right: 0; width: 40px; height: 40px; background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 55, 0.3) 50%); }
        .campaign-badge-label { font-size: 0.7rem; letter-spacing: 0.1em; opacity: 0.9; margin-bottom: 0.3rem; padding: 0.2rem 0.6rem; background: rgba(255,255,255,0.15); border-radius: 3px; }
        .campaign-badge-value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; line-height: 1; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
        .campaign-badge-unit { font-size: 0.85rem; margin-top: 0.2rem; }
        .campaign-badge--gold { background: linear-gradient(135deg, #b8860b 0%, #daa520 50%, #f4d03f 100%); }
        .campaign-badge--gold::after { background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.2) 50%); }
        .campaign-body { padding: 1.2rem; }
        .campaign-title { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--color-primary); margin-bottom: 0.5rem; line-height: 1.4; }
        .campaign-desc { font-size: 0.8rem; color: var(--color-text-light); line-height: 1.6; }
        .campaign-original { text-decoration: line-through; color: #999; font-size: 0.75rem; }
        .campaign-period { font-size: 0.75rem; color: var(--color-text-light); opacity: 0.8; }

        /* ========== News (新着情報) ========== */
        .news { padding: 60px 2rem; background: var(--color-white); }
        .news-container { max-width: 900px; margin: 0 auto; }
        .news-list { list-style: none; }
        .news-item { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.2rem 0; border-bottom: 1px solid var(--color-bg-mid); }
        .news-item:last-child { border-bottom: none; }
        .news-date { font-size: 0.85rem; color: var(--color-primary); font-weight: 500; white-space: nowrap; min-width: 100px; }
        .news-category { font-size: 0.7rem; background: var(--color-primary); color: var(--color-white); padding: 0.2rem 0.6rem; border-radius: 3px; white-space: nowrap; }
        .news-title { font-size: 0.95rem; color: var(--color-text); line-height: 1.6; }
        .news-title a:hover { color: var(--color-primary); }
        .news-more { text-align: center; margin-top: 2rem; }
        .news-more .btn { min-width: 200px; }

        /* ========== Flow (施術の流れ) ========== */
        .flow { padding: 100px 2rem; background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%); }
        .flow-container { max-width: 900px; margin: 0 auto; }
        .flow-list { display: flex; flex-direction: column; gap: 0; }
        .flow-item { display: flex; gap: 2rem; position: relative; padding-bottom: 2.5rem; }
        .flow-item:last-child { padding-bottom: 0; }
        .flow-item:last-child .flow-line { display: none; }
        .flow-number { width: 50px; height: 50px; background: var(--color-primary); color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; flex-shrink: 0; position: relative; z-index: 2; }
        .flow-line { position: absolute; left: 25px; top: 50px; width: 2px; height: calc(100% - 50px); background: var(--color-bg-warm); z-index: 1; }
        .flow-content { flex: 1; padding-top: 0.5rem; }
        .flow-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--color-primary); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
        .flow-text { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.8; }

        /* ========== Concept ========== */
        .concept { padding: 100px 2rem; background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%); }
        .concept-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
        .concept-card { text-align: center; padding: 0; background: var(--color-white); border-radius: 6px; box-shadow: var(--shadow-soft); transition: all 0.4s ease; overflow: hidden; }
        .concept-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); }
        .concept-img { width: 100%; height: 200px; background: var(--color-bg-mid); display: flex; align-items: center; justify-content: center; overflow: hidden; }
        .concept-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .concept-card:hover .concept-img img { transform: scale(1.05); }
        .concept-img-placeholder { color: var(--color-text-light); font-size: 0.85rem; }
        .concept-content { padding: 1.5rem 2rem 2rem; }
        .concept-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--color-primary); margin-bottom: 1rem; letter-spacing: 0.08em; }
        .concept-card p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.9; }

        /* ========== Menu ========== */
        .menu { padding: 100px 2rem; background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-mid) 50%, var(--color-bg-light) 100%); }
        .menu-container { max-width: 1000px; margin: 0 auto; }
        .menu-category { margin-bottom: 4rem; }
        .menu-category:last-child { margin-bottom: 0; }
        .menu-category-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--color-primary); text-align: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-bg-warm); letter-spacing: 0.12em; }
        .menu-category-desc { text-align: center; font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 1rem; line-height: 1.8; }
        .menu-times { text-align: center; font-size: 0.95rem; color: var(--color-primary); font-weight: 500; letter-spacing: 0.05em; margin-bottom: 2rem; }
        .menu-badge { display: inline-block; background: var(--color-accent); color: var(--color-white); font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 3px; margin-left: 0.8rem; vertical-align: middle; font-weight: 400; letter-spacing: 0.05em; }
        
        /* Menu Card Grid */
        .menu-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
        .menu-card { background: var(--color-white); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow-soft); transition: all 0.4s ease; position: relative; border: 1px solid var(--color-bg-mid); }
        /* hover削除済み: クリック不可要素のhoverは誤解を招くため */
        .menu-card-badge { position: absolute; top: 1rem; right: 1rem; background: var(--color-accent); color: var(--color-white); font-size: 0.7rem; padding: 0.3rem 0.8rem; border-radius: 20px; font-weight: 500; }
        .menu-card-icon { width: 64px; height: 64px; margin: 0 auto 1.2rem; color: var(--color-primary); }
        .menu-card-icon svg { width: 100%; height: 100%; }
        .menu-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--color-primary); margin-bottom: 0.8rem; letter-spacing: 0.05em; }
        .menu-card-desc { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.7; margin-bottom: 1.2rem; }
        .menu-card-times { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
        .menu-card-times span { background: var(--color-bg-light); color: var(--color-primary); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 500; transition: all 0.3s ease; }
        /* hover削除済み */
        
        @media (max-width: 768px) {
            .menu-card-grid { grid-template-columns: 1fr; }
        }
        .menu-items { display: grid; gap: 1.5rem; }
        .menu-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 1.5rem 2rem; background: var(--color-white); border-radius: 6px; box-shadow: 0 2px 15px rgba(0, 57, 144, 0.04); transition: all 0.3s ease; }
        .menu-item:hover { box-shadow: 0 4px 25px rgba(0, 57, 144, 0.08); transform: translateY(-2px); }
        .menu-item-info h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--color-primary); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
        .menu-item-info p { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.7; }
        .menu-item-price { text-align: right; white-space: nowrap; margin-left: 2rem; }
        .menu-item-price .price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--color-accent); }
        .menu-item-price .price-note { font-size: 0.75rem; color: var(--color-text-light); display: block; margin-top: 0.3rem; }
        .menu-note { text-align: center; font-size: 0.85rem; color: var(--color-text-light); margin-top: 2rem; padding: 1.5rem; background: rgba(0, 57, 144, 0.03); border-radius: 6px; line-height: 1.8; }

        /* ========== FAQ (LLMO対応) ========== */
        .faq { padding: 100px 2rem; background: var(--color-white); }
        .faq-container { max-width: 900px; margin: 0 auto; }
        .faq-item { margin-bottom: 1rem; border: 1px solid var(--color-bg-mid); border-radius: 8px; overflow: hidden; transition: all 0.3s ease; }
        .faq-item:hover { border-color: var(--color-primary-lighter); }
        .faq-question { width: 100%; padding: 1.3rem 1.8rem; background: var(--color-bg-light); border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 0.95rem; font-weight: 400; color: var(--color-primary); transition: all 0.3s ease; line-height: 1.6; }
        .faq-question:hover { background: var(--color-bg-mid); }
        .faq-question > span:first-child { flex: 1; padding-right: 1rem; }
        .faq-icon { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
        .faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--color-primary-light); transition: transform 0.3s ease; }
        .faq-icon::before { width: 12px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
        .faq-icon::after { width: 2px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
        .faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-item.active .faq-answer { max-height: 500px; }
        .faq-answer-inner { padding: 1.3rem 1.8rem; font-size: 0.92rem; color: var(--color-text-light); line-height: 1.9; background: var(--color-white); }

        /* ========== Shops ========== */
        .shops { padding: 100px 2rem; background: var(--color-primary); color: var(--color-white); position: relative; }
        .shops::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.03'/%3E%3C/svg%3E") repeat; background-size: 200px; pointer-events: none; }
        .shops .section-label { color: var(--color-primary-lighter); }
        .shops .section-title { color: var(--color-white); }
        .shops-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; z-index: 1; }
        .shop-card { background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.4s ease; overflow: hidden; }
        .shop-card:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-5px); }
        .shop-image { height: 180px; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; overflow: hidden; }
        .shop-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .shop-card:hover .shop-image img { transform: scale(1.05); }
        .shop-image-placeholder { font-size: 0.85rem; opacity: 0.5; }
        .shop-content { padding: 1.5rem 2rem 2rem; }
        .shop-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 1.2rem; letter-spacing: 0.08em; }
        .shop-info { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.5rem; }
        .shop-info-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; opacity: 0.9; }
        .shop-info-item a:hover { text-decoration: underline; }
        .shop-buttons { display: flex; gap: 0.8rem; }
        .shop-buttons .btn { flex: 1; text-align: center; }
        .shop-map { margin-top: 1rem; border-radius: 8px; overflow: hidden; height: 150px; }
        .shop-map iframe { width: 100%; height: 100%; border: 0; }

        /* ========== LINE CTA (友だち追加) ========== */
        .line-cta { padding: 80px 2rem; background: var(--color-bg-light); position: relative; overflow: hidden; }
        .line-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0, 57, 144, 0.05) 0%, transparent 70%); pointer-events: none; }
        .line-cta-container { max-width: 800px; margin: 0 auto; background: var(--color-white); border-radius: 16px; padding: 3rem; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; position: relative; z-index: 1; box-shadow: var(--shadow-soft); border: 1px solid var(--color-bg-mid); }
        .line-cta-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(6, 199, 85, 0.1); color: #059c46; padding: 0.4rem 1rem; border-radius: 30px; font-size: 0.8rem; font-weight: 500; margin-bottom: 1rem; }
        .line-cta-badge svg { width: 18px; height: 18px; fill: #06C755; }
        .line-cta-title { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 500; color: var(--color-primary); margin-bottom: 1rem; line-height: 1.6; letter-spacing: 0.05em; }
        .line-cta-title span { color: #059c46; }
        .line-cta-desc { font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 1.5rem; line-height: 1.8; }
        .line-cta-benefits { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
        .line-cta-benefit { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--color-text); }
        .line-cta-benefit svg { width: 16px; height: 16px; flex-shrink: 0; stroke: #06C755; }
        .line-cta-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: #06C755; color: var(--color-white); padding: 0.9rem 2rem; border-radius: 8px; font-size: 0.95rem; font-weight: 500; transition: all 0.3s ease; }
        .line-cta-btn:hover { background: #05a548; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3); }
        .line-cta-btn svg { width: 22px; height: 22px; fill: var(--color-white); }
        .line-cta-qr { text-align: center; }
        .line-cta-qr-image { width: 130px; height: 130px; background: var(--color-bg-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.8rem; border-radius: 8px; border: 1px solid var(--color-bg-mid); }
        .line-cta-qr-image img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
        .line-cta-qr-placeholder { font-size: 0.7rem; color: var(--color-text-light); }
        .line-cta-qr-text { font-size: 0.7rem; color: var(--color-text-light); }

        /* ========== CTA ========== */
        .cta { padding: 100px 2rem; background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-mid) 100%); text-align: center; }
        .cta-content { max-width: 700px; margin: 0 auto; }
        .cta h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 500; color: var(--color-primary); margin-bottom: 1.5rem; letter-spacing: 0.08em; line-height: 1.6; }
        .cta p { font-size: 1rem; color: var(--color-text-light); margin-bottom: 2.5rem; line-height: 2; }
        .cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

        /* ========== Top Therapist (トップセラピスト) ========== */
        .therapist { padding: 100px 2rem; background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-light) 100%); }
        .therapist-container { max-width: 1100px; margin: 0 auto; }
        .therapist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        .therapist-card { background: var(--color-white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); transition: all 0.4s ease; }
        /* hover削除済み */
        .therapist-header { background: var(--color-primary); color: var(--color-white); padding: 1rem 1.5rem; text-align: center; }
        .therapist-header h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; letter-spacing: 0.05em; }
        .therapist-header span { font-size: 0.75rem; opacity: 0.8; display: block; margin-top: 0.3rem; }
        .therapist-body { padding: 1.5rem; text-align: center; }
        .therapist-image { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1rem; background: var(--color-bg-mid); overflow: hidden; border: 3px solid var(--color-primary-lighter); }
        .therapist-image img { width: 100%; height: 100%; object-fit: cover; }
        .therapist-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--color-text-light); }
        .therapist-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--color-primary); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
        .therapist-stats { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-bg-mid); }
        .therapist-stat { text-align: center; }
        .therapist-stat-value { font-size: 1.3rem; font-weight: 600; color: var(--color-primary); display: block; }
        .therapist-stat-label { font-size: 0.7rem; color: var(--color-text-light); }
        .therapist-comment { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.8; }

        /* ========== Recruit (採用情報) ========== */
        .recruit { padding: 100px 2rem; background: var(--color-bg-light); position: relative; overflow: hidden; }
        .recruit::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0, 57, 144, 0.05) 0%, transparent 70%); pointer-events: none; }
        .recruit-container { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
        .recruit-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 500; color: var(--color-primary); margin-bottom: 1.5rem; letter-spacing: 0.08em; line-height: 1.5; }
        .recruit-content p { font-size: 0.95rem; color: var(--color-text-light); line-height: 2; margin-bottom: 2rem; }
        .recruit-features { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2rem; }
        .recruit-feature { background: var(--color-white); padding: 0.5rem 1rem; border-radius: 30px; font-size: 0.8rem; color: var(--color-primary); border: 1px solid var(--color-bg-mid); }
        .recruit-image { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); }
        .recruit-image img { width: 100%; height: 100%; object-fit: cover; }
        .recruit-image-placeholder { width: 100%; height: 300px; background: var(--color-bg-mid); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--color-text-light); }

        /* ========== Footer ========== */
        footer { background: var(--color-primary); color: var(--color-white); padding: 60px 2rem 30px; position: relative; }
        .footer-bg-image { position: absolute; inset: 0; background: url('images/footer-bg.jpg') center center / cover no-repeat; opacity: 0.15; z-index: 0; }
        .footer-overlay { position: absolute; inset: 0; background: var(--color-primary); opacity: 0.9; z-index: 1; }
        .footer-content { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; position: relative; z-index: 2; }
        .footer-brand .logo { color: var(--color-white); margin-bottom: 1rem; display: inline-block; }
        .footer-brand .logo span { color: var(--color-primary-lighter); }
        .footer-brand p { font-size: 0.85rem; opacity: 0.8; line-height: 1.9; }
        .footer-section h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; margin-bottom: 1.5rem; letter-spacing: 0.08em; }
        .footer-section ul { list-style: none; }
        .footer-section li { margin-bottom: 0.7rem; }
        .footer-section a { font-size: 0.85rem; opacity: 0.8; }
        .footer-section a:hover { opacity: 1; }
        .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.8rem; opacity: 0.6; position: relative; z-index: 2; }

        /* ========== Page Top Button ========== */
        .pagetop { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s ease; z-index: 99; box-shadow: 0 4px 20px rgba(0, 57, 144, 0.3); }
        .pagetop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .pagetop:hover { background: var(--color-primary-light); transform: translateY(-3px); }
        .pagetop svg { width: 20px; height: 20px; stroke: var(--color-white); stroke-width: 2.5; fill: none; }

        /* ========== Animations ========== */
        .fade-in { opacity: 0; transform: translateY(25px); transition: all 0.7s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* ========== Voice (お客様の声スライダー) ========== */
        .voice { padding: 100px 2rem; background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%); }
        .voice-container { max-width: 1000px; margin: 0 auto; position: relative; }
        .voice-slider { overflow: hidden; position: relative; }
        .voice-track { display: flex; transition: transform 0.5s ease; }
        .voice-slide { min-width: 100%; padding: 0 1rem; box-sizing: border-box; }
        .voice-card { background: var(--color-white); border-radius: 12px; padding: 0; box-shadow: var(--shadow-soft); display: flex; overflow: hidden; }
        .voice-card-simple { background: var(--color-white); border-radius: 12px; padding: 2rem; box-shadow: var(--shadow-soft); text-align: center; max-width: 600px; margin: 0 auto; }
        .voice-card-simple .voice-rating { margin-bottom: 1rem; }
        .voice-card-simple .voice-text { font-size: 0.95rem; line-height: 1.9; color: var(--color-text); margin-bottom: 1.5rem; text-align: left; }
        .voice-card-simple .voice-author { font-size: 0.85rem; color: var(--color-text-light); font-weight: 500; }
        .section-subtitle { font-size: 0.8rem; color: var(--color-text-light); margin-top: 0.5rem; letter-spacing: 0.05em; }
        .voice-content { flex: 1; padding: 2.5rem; }
        .voice-image { width: 280px; flex-shrink: 0; background: var(--color-bg-mid); display: flex; align-items: center; justify-content: center; }
        .voice-image img { width: 100%; height: 100%; object-fit: cover; }
        .voice-image-placeholder { color: var(--color-text-light); font-size: 0.85rem; }
        .voice-rating { display: flex; gap: 2px; margin-bottom: 1rem; }
        .voice-rating span { color: #ffc107; font-size: 1.2rem; }
        .voice-text { font-size: 0.95rem; line-height: 2; color: var(--color-text); margin-bottom: 1.5rem; }
        .voice-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--color-bg-mid); }
        .voice-author { font-size: 0.85rem; color: var(--color-primary); font-weight: 500; }
        .voice-tag { font-size: 0.75rem; color: var(--color-text-light); background: var(--color-bg-light); padding: 0.3rem 0.8rem; border-radius: 20px; }
        .voice-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; background: var(--color-white); border: 1px solid var(--color-bg-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; z-index: 10; }
        .voice-nav:hover { background: var(--color-primary); border-color: var(--color-primary); }
        .voice-nav:hover svg { stroke: var(--color-white); }
        .voice-nav svg { width: 20px; height: 20px; stroke: var(--color-primary); stroke-width: 2; fill: none; }
        .voice-prev { left: -20px; }
        .voice-next { right: -20px; }
        .voice-dots { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
        .voice-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-bg-warm); cursor: pointer; transition: all 0.3s ease; }
        .voice-dot.active { background: var(--color-primary); transform: scale(1.2); }

        /* ========== Page Hero (個別ページ共通) ========== */
        .page-hero { position: relative; min-height: 45vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary) 100%); overflow: hidden; padding: 120px 2rem 60px; }
        .page-hero-overlay { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E") repeat; background-size: 200px; pointer-events: none; }
        .page-hero-content { position: relative; z-index: 2; text-align: center; color: var(--color-white); max-width: 700px; }
        .page-hero-label { font-size: 0.75rem; letter-spacing: 0.3em; color: rgba(255, 255, 255, 0.7); display: block; margin-bottom: 1rem; }
        .page-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 500; letter-spacing: 0.1em; margin-bottom: 1.5rem; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2); }
        .page-hero-description { font-size: 0.95rem; line-height: 2; color: rgba(255, 255, 255, 0.85); }

        /* ========== Page Header (簡易ヘッダー) ========== */
        .page-header { padding: 40px 2rem; background: var(--color-bg-light); }
        .page-header__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 500; color: var(--color-primary); letter-spacing: 0.08em; }
        .container { max-width: 1100px; margin: 0 auto; }
        .container--narrow { max-width: 800px; margin: 0 auto; }

        /* ========== Concept Detail (コンセプト詳細) ========== */
        .concept-detail { padding: 80px 2rem; background: var(--color-white); }
        .concept-detail-container { max-width: 800px; margin: 0 auto; }
        .concept-detail-body { font-size: 1rem; color: var(--color-text); line-height: 2.2; }
        .concept-detail-body p { margin-bottom: 1.5rem; }
        .concept-detail-body p:last-child { margin-bottom: 0; }
        .concept-detail-body strong { color: var(--color-primary); font-weight: 500; }
        .concept-reasons { padding: 80px 2rem; background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%); }
        .concept-reasons-container { max-width: 1100px; margin: 0 auto; }

        /* ========== Senses Detail (五感詳細) ========== */
        .senses-detail { padding: 80px 2rem; background: var(--color-bg-light); }
        .senses-detail-container { max-width: 1100px; margin: 0 auto; }
        .senses-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
        .senses-detail-card { background: var(--color-white); border-radius: 8px; padding: 2rem; box-shadow: var(--shadow-soft); }
        .senses-detail-icon { font-family: var(--font-display); font-size: 2rem; color: var(--color-primary); margin-bottom: 1rem; }
        .senses-detail-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--color-primary); margin-bottom: 0.8rem; letter-spacing: 0.05em; line-height: 1.5; }
        .senses-detail-card p { font-size: 0.88rem; color: var(--color-text-light); line-height: 1.9; }
        .senses-detail-grid .senses-detail-card:nth-child(4),
        .senses-detail-grid .senses-detail-card:nth-child(5) { grid-column: span 1; }

        /* ========== Menu Page (メニュー・料金) ========== */
        .menu-intro { padding: 50px 2rem 0; background: var(--color-white); }
        .menu-intro-container { max-width: 800px; margin: 0 auto; text-align: center; font-size: 0.95rem; color: var(--color-text-light); line-height: 2; }
        .menu-page { padding: 80px 2rem; background: var(--color-white); }
        .menu-page--alt { background: var(--color-bg-light); }
        .menu-page-container { max-width: 800px; margin: 0 auto; }
        .menu-page-desc { text-align: center; font-size: 0.95rem; color: var(--color-text-light); line-height: 1.9; margin-bottom: 3rem; }
        .menu-price-table { max-width: 600px; margin: 0 auto; }
        .menu-price-row { display: flex; align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--color-bg-mid); }
        .menu-price-row:last-child { border-bottom: none; }
        .menu-price-time { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--color-primary); min-width: 120px; letter-spacing: 0.05em; }
        .menu-price-dots { flex: 1; border-bottom: 2px dotted var(--color-bg-warm); margin: 0 1rem; position: relative; top: -4px; }
        .menu-price-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--color-accent); letter-spacing: 0.03em; white-space: nowrap; }

        /* ========== Menu Time Tags (施術時間タグ) ========== */
        .menu-time-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-bottom: 2.5rem; }
        .menu-time-tag { display: inline-block; padding: 0.5rem 1.2rem; background: var(--color-bg-light); border: 1px solid var(--color-bg-warm); border-radius: 30px; font-family: var(--font-display); font-size: 0.9rem; color: var(--color-primary); letter-spacing: 0.05em; }
        .menu-page--alt .menu-time-tag { background: var(--color-white); }
        .menu-recommend { max-width: 600px; margin: 0 auto; }
        .menu-recommend h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; color: var(--color-primary); margin-bottom: 1rem; letter-spacing: 0.05em; }
        .menu-recommend ul { list-style: none; padding: 0; }
        .menu-recommend li { position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; font-size: 0.9rem; color: var(--color-text-light); line-height: 1.8; }
        .menu-recommend li::before { content: '✓'; position: absolute; left: 0; color: var(--color-primary); font-weight: 600; }
        .menu-badge { display: inline-block; font-size: 0.7rem; background: var(--color-accent); color: var(--color-white); padding: 0.15rem 0.6rem; border-radius: 3px; margin-left: 0.8rem; vertical-align: middle; letter-spacing: 0.03em; }
        .menu-note { text-align: center; font-size: 0.82rem; color: var(--color-text-light); line-height: 1.8; margin-top: 2rem; }
        .menu-note a { color: var(--color-primary); font-weight: 500; }
        .menu-note a:hover { text-decoration: underline; }

        /* ========== Menu Option (オプション) ========== */
        .menu-option-list { display: flex; flex-direction: column; gap: 1.5rem; }
        .menu-option-item { background: var(--color-white); border-radius: 8px; padding: 1.5rem 2rem; box-shadow: var(--shadow-soft); }
        .menu-page--alt .menu-option-item { background: var(--color-bg-light); }
        .menu-option-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--color-primary); margin-bottom: 0.6rem; letter-spacing: 0.05em; }
        .menu-option-item p { font-size: 0.88rem; color: var(--color-text-light); line-height: 1.9; }

        /* ========== Menu Combo (おすすめ組み合わせ) ========== */
        .menu-combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        .menu-combo-card { background: var(--color-bg-light); border-radius: 8px; padding: 2rem; }
        .menu-combo-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--color-primary); margin-bottom: 0.8rem; letter-spacing: 0.05em; }
        .menu-combo-menus { font-family: var(--font-display); font-size: 0.88rem; color: var(--color-accent); font-weight: 500; margin-bottom: 0.8rem; letter-spacing: 0.03em; }
        .menu-combo-card p:last-child { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.8; }

        /* ========== Menu Guide (ご利用案内) ========== */
        .menu-guide { padding: 80px 2rem; background: var(--color-white); }
        .menu-guide-container { max-width: 1000px; margin: 0 auto; }
        .menu-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
        .menu-guide-item { background: var(--color-bg-light); border-radius: 8px; padding: 2rem; }
        .menu-guide-item h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--color-primary); margin-bottom: 0.8rem; letter-spacing: 0.05em; }
        .menu-guide-item p { font-size: 0.88rem; color: var(--color-text-light); line-height: 1.9; }

        /* ========== CTA Section (会社ページ等) ========== */
        .cta-section { padding: 80px 2rem; background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-mid) 100%); text-align: center; }
        .cta-section__title { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 500; color: var(--color-primary); margin-bottom: 1rem; letter-spacing: 0.08em; line-height: 1.6; }
        .cta-section p { font-size: 0.95rem; color: var(--color-text-light); margin-bottom: 2rem; line-height: 1.8; }

        /* ========== Company (会社ページ) ========== */
        .section--white { padding: 60px 2rem; background: var(--color-white); }
        .section--gradient { padding: 60px 2rem; background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-white) 100%); }
        .company-info { font-size: 0.95rem; line-height: 2; color: var(--color-text); }
        .shop-card__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--color-primary); margin-bottom: 0.5rem; }
        .shop-card__address, .shop-card__tel { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 0.3rem; }
        .shop-card__tel a:hover { color: var(--color-primary); }
        .shop-card__link { font-size: 0.85rem; color: var(--color-primary); font-weight: 500; display: inline-block; margin-top: 0.8rem; }
        .shop-card__link:hover { transform: translateX(3px); }
        .section--gradient .shops-grid .shop-card { background: var(--color-white); padding: 1.5rem; border-radius: 8px; box-shadow: var(--shadow-soft); }

        .concept-detail--alt { background: var(--color-bg-light); }

        /* ========== Breadcrumb ========== */
        .breadcrumb { padding: 1rem 2rem; font-size: 0.8rem; color: var(--color-text-light); }
        .breadcrumb-list { display: flex; flex-wrap: wrap; align-items: center; gap: 0.3rem; list-style: none; padding: 0; margin: 0; }
        .breadcrumb-list li::before { content: ''; }
        .breadcrumb-list li + li::before { content: '›'; margin-right: 0.3rem; color: var(--color-text-light); }
        .breadcrumb-list li { display: inline-flex; align-items: center; }
        .breadcrumb a { color: var(--color-primary); }
        .breadcrumb a:hover { text-decoration: underline; }

        /* ========== Shop List (店舗一覧) ========== */
        .shop-list { display: flex; flex-direction: column; gap: 2.5rem; }
        .shop-list-item { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--color-white); border-radius: 12px; box-shadow: var(--shadow-soft); overflow: hidden; border: 1px solid var(--color-bg-mid); }
        .shop-list-item__content { padding: 2rem 2.5rem; display: flex; flex-direction: column; }
        .shop-list-item__name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin-bottom: 1.5rem; letter-spacing: 0.05em; }
        .shop-list-item__name a { color: var(--color-primary); }
        .shop-list-item__name a:hover { opacity: 0.7; }
        .shop-list-item__info { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; flex-grow: 1; }
        .shop-list-item__info p { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--color-text-light); line-height: 1.7; }
        .shop-list-item__info svg { flex-shrink: 0; margin-top: 2px; stroke: var(--color-primary); }
        .shop-list-item__review { display: flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; color: var(--color-text); font-weight: 500; }
        .shop-list-item__stars { color: #ffc107; font-size: 0.85rem; letter-spacing: 1px; }
        .shop-list-item__review-count { font-size: 0.78rem; color: var(--color-text-light); font-weight: 400; }
        .shop-list-item__actions { display: flex; gap: 0.8rem; }
        .shop-list-item__actions .btn { font-size: 0.85rem; padding: 0.7rem 1.5rem; }
        .shop-list-item__map { min-height: 280px; background: var(--color-bg-light); }
        .shop-list-item__map iframe { width: 100%; height: 100%; border: 0; display: block; }
        .shop-list-item__map-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--color-text-light); gap: 1rem; padding: 2rem; text-align: center; }
        .shop-list-item__map-placeholder svg { stroke: var(--color-bg-warm); }
        .shop-list-item__map-placeholder p { font-size: 0.82rem; line-height: 1.6; }

        /* ========== Shop Voice (お客様の声 - 店舗詳細) ========== */
        .shop-voice .section-header { margin-bottom: 2rem; }
        .shop-voice-summary { margin-top: 1.5rem; text-align: center; }
        .shop-voice-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 0.5rem; }
        .shop-voice-stars .star { font-size: 1.5rem; color: #ffc107; }
        .shop-voice-stars .star--empty { color: var(--color-bg-warm); }
        .shop-voice-stars .star--half { background: linear-gradient(90deg, #ffc107 50%, var(--color-bg-warm) 50%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .shop-voice-score { font-size: 1rem; color: var(--color-text); margin-bottom: 0.3rem; }
        .shop-voice-score strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-primary); margin-right: 0.3rem; }
        .shop-voice-score span { font-size: 0.85rem; color: var(--color-text-light); }
        .shop-voice-source { font-size: 0.75rem; color: var(--color-text-light); }

        .shop-voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
        .shop-voice-card { background: var(--color-bg-light); border-radius: 10px; padding: 2rem; position: relative; }
        .shop-voice-card::before { content: '"'; position: absolute; top: 12px; left: 16px; font-family: var(--font-display); font-size: 3rem; color: var(--color-primary); opacity: 0.15; line-height: 1; }
        .shop-voice-card-stars { display: flex; gap: 2px; margin-bottom: 0.8rem; }
        .shop-voice-card-stars span { color: #ffc107; font-size: 0.9rem; }
        .shop-voice-card-text { font-size: 0.9rem; color: var(--color-text); line-height: 1.9; margin-bottom: 1.2rem; }
        .shop-voice-card-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 0.8rem; border-top: 1px solid var(--color-bg-warm); gap: 0.5rem; flex-wrap: wrap; }
        .shop-voice-card-author { font-size: 0.8rem; color: var(--color-primary); font-weight: 500; }
        .shop-voice-card-menu { font-size: 0.75rem; color: var(--color-text-light); background: var(--color-white); padding: 0.2rem 0.7rem; border-radius: 20px; }

        .shop-voice-more { text-align: center; margin-top: 2.5rem; }

        /* ========== Shop Detail (店舗詳細) ========== */
        .shop-detail { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; }
        .shop-info-card { background: var(--color-bg-light); border-radius: 8px; padding: 2rem; margin-bottom: 1.5rem; }
        .shop-info-card--note { background: #fff9e6; border-left: 3px solid #ffc107; }
        .shop-info-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--color-primary); margin-bottom: 1.2rem; letter-spacing: 0.05em; }
        .shop-info-card__text { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.9; }
        .shop-info-table { width: 100%; border-collapse: collapse; }
        .shop-info-table th { font-size: 0.85rem; font-weight: 500; color: var(--color-primary); padding: 0.8rem 1rem 0.8rem 0; white-space: nowrap; vertical-align: top; width: 100px; border-bottom: 1px solid var(--color-bg-warm); }
        .shop-info-table td { font-size: 0.88rem; color: var(--color-text); padding: 0.8rem 0; border-bottom: 1px solid var(--color-bg-warm); line-height: 1.7; }
        .shop-reserve-box { background: var(--color-bg-light); border-radius: 8px; padding: 1.5rem; position: sticky; top: 100px; }
        .shop-reserve-box__title { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--color-primary); text-align: center; margin-bottom: 1rem; }
        .btn-block { display: block; width: 100%; text-align: center; margin-bottom: 0.8rem; }
        .btn-block:last-child { margin-bottom: 0; }
        .shop-map { margin-top: 3rem; }
        .shop-map__embed { border-radius: 8px; overflow: hidden; aspect-ratio: 16 / 9; }
        .shop-map__embed iframe { width: 100% !important; height: 100% !important; border: 0 !important; display: block; }

        /* ========== Recruit Page (採用情報) ========== */
        .recruit-table-wrap { max-width: 800px; margin: 0 auto; }
        .recruit-table { width: 100%; border-collapse: collapse; }
        .recruit-table th { font-size: 0.88rem; font-weight: 500; color: var(--color-primary); padding: 1.2rem 1.5rem; white-space: nowrap; vertical-align: top; width: 130px; border-bottom: 1px solid var(--color-bg-warm); background: var(--color-bg-light); }
        .recruit-table td { font-size: 0.9rem; color: var(--color-text); padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--color-bg-warm); line-height: 1.8; }

        .recruit-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
        .recruit-shop-card { background: var(--color-white); border-radius: 12px; box-shadow: var(--shadow-soft); overflow: hidden; display: flex; flex-direction: column; }
        .recruit-shop-card__header { background: var(--color-primary); padding: 1.2rem 1.5rem; }
        .recruit-shop-card__name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--color-white); letter-spacing: 0.05em; }
        .recruit-shop-card__body { padding: 1.5rem; flex-grow: 1; }
        .recruit-shop-card__info { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.82rem; color: var(--color-text-light); line-height: 1.6; margin-bottom: 0.6rem; }
        .recruit-shop-card__info:last-child { margin-bottom: 0; }
        .recruit-shop-card__info svg { flex-shrink: 0; margin-top: 2px; stroke: var(--color-primary); }
        .recruit-shop-card__action { padding: 0 1.5rem 1.5rem; text-align: center; }
        .recruit-line-btn { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 100%; padding: 0.9rem; background: #06C755; color: #fff; border-radius: 8px; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.05em; transition: var(--transition-base); }
        .recruit-line-btn:hover { background: #05b34d; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3); }
        .recruit-shop-card__note { font-size: 0.75rem; color: var(--color-text-light); margin-top: 0.6rem; }

        .recruit-tel-note { text-align: center; padding: 2rem; background: var(--color-white); border-radius: 10px; }
        .recruit-tel-note > p { font-size: 0.88rem; color: var(--color-text-light); margin-bottom: 1.2rem; }
        .recruit-tel-list { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
        .recruit-tel-item { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; padding: 0.5rem 1.5rem; }
        .recruit-tel-name { font-size: 0.78rem; color: var(--color-text-light); }
        .recruit-tel-number { font-family: var(--font-display); font-size: 1.1rem; color: var(--color-primary); font-weight: 500; letter-spacing: 0.05em; }
        .recruit-tel-item:hover .recruit-tel-number { color: var(--color-primary-light); }

        /* ========== Responsive ========== */
        @media (max-width: 1024px) { .shops-grid { grid-template-columns: 1fr; max-width: 450px; } .voice-prev { left: 5px; } .voice-next { right: 5px; } .senses-grid { grid-template-columns: repeat(3, 1fr); } .therapist-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; } .campaign-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } .campaign-tabs { gap: 0.3rem; } .campaign-tab { padding: 0.6rem 1rem; font-size: 0.8rem; } }
        @media (max-width: 900px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: flex; }
            .concept-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .concept-img { height: 180px; }
            .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
            .recruit-container { grid-template-columns: 1fr; gap: 2rem; }
            .recruit-image { order: -1; }
            .campaign-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
            .line-cta-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding: 2rem; }
            .line-cta-benefits { justify-content: center; }
            .senses-detail-grid { grid-template-columns: 1fr 1fr; }
            .shop-list-item { grid-template-columns: 1fr; }
            .shop-list-item__map { min-height: 250px; }
            .shop-voice-grid { grid-template-columns: 1fr 1fr; }
            .shop-detail { grid-template-columns: 1fr; }
            .shop-reserve-box { position: static; }
            .recruit-shop-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 3rem; }
            .menu-combo-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
            .menu-guide-grid { grid-template-columns: 1fr; }
            .line-cta-qr { max-width: 180px; margin: 0 auto; }
        }
        @media (max-width: 600px) { 
            header { padding: 0.8rem 1.5rem; }
            .hero { padding: 100px 1.5rem 60px; } 
            .hero h1 { font-size: 1.8rem; } 
            .hero-cta { flex-direction: column; width: 100%; } 
            .btn { width: 100%; } 
            .menu-item { flex-direction: column; gap: 1rem; padding: 1.2rem 1.5rem; } 
            .menu-item-price { text-align: left; margin-left: 0; } 
            .cta-buttons { flex-direction: column; width: 100%; }
            .cta-buttons .btn { width: 100%; }
            .shop-buttons { flex-direction: column; } 
            .pagetop { bottom: 20px; right: 20px; width: 45px; height: 45px; } 
            .faq-question { padding: 1rem 1.2rem; font-size: 0.9rem; } 
            .faq-answer-inner { padding: 1rem 1.2rem; }
            .section-header { margin-bottom: 3rem; }
            .concept, .menu, .faq, .shops, .cta, .voice, .flow, .therapist, .recruit { padding: 70px 1.5rem; }
            .page-hero { min-height: 35vh; padding: 100px 1.5rem 50px; }
            .page-hero-title { font-size: 1.8rem; }
            .concept-detail, .concept-reasons, .senses-detail, .menu-page, .menu-guide, .cta-section, .section--white, .section--gradient { padding: 50px 1.5rem; }
            .senses-detail-grid { grid-template-columns: 1fr; }
            .shop-voice-grid { grid-template-columns: 1fr; }
            .recruit-table th { display: block; width: 100%; padding: 0.8rem 1rem 0.3rem; border-bottom: none; }
            .recruit-table td { display: block; padding: 0.3rem 1rem 0.8rem; }
            .recruit-tel-list { flex-direction: column; gap: 0.8rem; }
            .menu-price-time { min-width: 90px; font-size: 0.95rem; }
            .menu-price-value { font-size: 1.05rem; }
            .voice-card { flex-direction: column-reverse; }
            .voice-content { padding: 1.5rem; }
            .voice-image { width: 100%; height: 180px; }
            .voice-text { font-size: 0.9rem; }
            .voice-nav { width: 38px; height: 38px; }
            .voice-prev { left: 0; }
            .voice-next { right: 0; }
            .five-senses { padding: 60px 1.5rem; }
            .senses-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
            .sense-item { padding: 2rem 0.5rem; }
            .sense-item:last-child { grid-column: span 2; }
            .sense-label { font-size: 1.2rem; }
            .sense-text { font-size: 0.75rem; }
            .sense-circle::before { width: 110px !important; height: 110px !important; }
            .sense-circle::after { width: 125px !important; height: 125px !important; }
            .news { padding: 50px 1.5rem; }
            .news-item { flex-direction: column; gap: 0.5rem; }
            .news-date { min-width: auto; }
            .flow-item { gap: 1rem; }
            .flow-number { width: 40px; height: 40px; font-size: 1rem; }
            .flow-line { left: 20px; top: 40px; height: calc(100% - 40px); }
            .flow-title { font-size: 1rem; }
            .flow-text { font-size: 0.85rem; }
            .therapist-stats { gap: 1rem; }
            .recruit-features { justify-content: center; }
            .campaign { padding: 40px 1.5rem; }
            .campaign-grid { grid-template-columns: 1fr; }
            .campaign-tabs { flex-direction: column; align-items: stretch; }
            .campaign-tab { text-align: center; border-radius: 8px; }
            .campaign-card { flex-direction: column; }
            .campaign-badge { padding: 1rem; flex-direction: row; gap: 0.5rem; min-width: auto; }
            .campaign-badge-label { margin-bottom: 0; }
            .line-cta { padding: 50px 1.5rem; }
            .line-cta-container { padding: 1.5rem; }
            .line-cta-title { font-size: 1.2rem; }
            .line-cta-benefits { flex-direction: column; align-items: center; gap: 0.4rem; }
            .line-cta-btn { width: 100%; justify-content: center; }
            .line-cta-qr-image { width: 110px; height: 110px; }
        }
