/* color-scheme: light only でOSのダークモードを無視し、常にライトモードで表示する */
html {
    color-scheme: light only;
}

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
:root {
    --primary-color: #8B0000;
    --secondary-color: #D4AF37;
    --accent-color: #B8860B;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #FDFDFD;
    --bg-dark: #1A1A1A;
    --border-color: #E0E0E0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Noto Serif JP', 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    padding-top: 80px; /* ヘッダーの高さ分のマージン */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 言語切り替え（一時的に非表示） */
.language-switcher {
    display: none; /* 一時的に非表示 */
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 5px;
    box-shadow: var(--shadow);
}

.lang-btn {
    background: none;
    border: none;
    padding: 8px 15px;
    margin: 0 2px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

.lang-btn:hover:not(.active) {
    background: rgba(139, 0, 0, 0.1);
    color: var(--primary-color);
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #ffffff !important;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* ロゴ画像読み込みエラー時のフォールバック */
.logo-image[src*="logo.png"]:not([src*="data:"]) {
    background: #000000;
    border-radius: 4px;
    padding: 8px 12px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    line-height: 1.2;
}

.logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-fallback h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.logo-fallback p {
    font-size: 10px;
    color: var(--text-light);
    margin: 0;
    font-weight: 300;
}

/* ロゴテキスト */
.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    margin-left: 15px;
}

.logo-tags {
    font-size: 12px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    opacity: 0.8;
}

.logo-title {
    font-size: 24px;
    color: var(--text-dark);
    margin: 2px 0 0 0;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.logo-phone {
    font-size: 16px;
    color: var(--text-dark);
    margin: 1px 0 0 0;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    opacity: 0.8;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

/* 言語切替ドロップダウン：日本語・中文をまとめてナビをスッキリさせる */
.nav-lang {
    position: relative;
}

.nav-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

/* 「Language」ラベル右側のシェブロン矢印（CSSのborderで描画） */
.nav-lang-arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
}

/* ホバー/フォーカス時に矢印を上向きに回転（メニューが開いたことを示す） */
.nav-lang:hover .nav-lang-arrow,
.nav-lang:focus-within .nav-lang-arrow {
    transform: rotate(-135deg) translateY(1px);
}

/* ドロップダウンメニュー本体：デフォルトは非表示、ホバー時にフェードイン */
.nav-lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    min-width: 140px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
}

.nav-lang:hover .nav-lang-menu,
.nav-lang:focus-within .nav-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-lang-menu li a {
    display: block;
    padding: 8px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    transition: all 0.2s ease;
}

.nav-lang-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ヒーローセクション */
.hero-section {
    height: 600px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}



/* 画像読み込みエラー時のフォールバック */
.slide[style*="background-image"] {
    background-color: #1a1a1a;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* 画像の最適化 */
.slide {
    will-change: opacity;
    backface-visibility: hidden;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.slider-controls {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* 店名の由来セクション */
.origin-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.origin-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.origin-image {
    flex: 1;
    max-width: 500px;
}

.origin-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.origin-img:hover {
    transform: scale(1.02);
}

.origin-text-content {
    flex: 1;
    text-align: left;
}

.origin-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 20px;
    text-align: left;
}

/* セクション共通スタイル */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ストーリーセクション */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-timeline {
    margin-bottom: 80px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    min-width: 120px;
    text-align: center;
    margin: 0 40px;
    box-shadow: var(--shadow);
}

.timeline-content {
    flex: 1;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ブランド哲学 */
.brand-philosophy {
    margin-top: 80px;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.philosophy-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.philosophy-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.philosophy-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ブランドの歴史セクション */
.brand-history {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 15px;
}

/* 最新情報セクション */
.news-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

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

.news-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.external-sites {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.site-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.site-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
}

.site-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.site-link:hover {
    color: var(--primary-color);
}

.site-link i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.site-link span {
    font-size: 1rem;
    font-weight: 500;
}

.news-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.news-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* プライバシーポリシー・特定商取引法表記ページ */
.privacy-content,
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.privacy-content h2,
.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 15px 0;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.privacy-content p,
.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.privacy-content ul,
.legal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-content li,
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.privacy-date {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.legal-table th,
.legal-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.legal-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    width: 25%;
}

.legal-table td {
    color: var(--text-light);
    line-height: 1.6;
}

.legal-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.legal-note p {
    margin-bottom: 10px;
}

.history-title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.history-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: justify;
    text-indent: 1em;
}

.history-text:last-child {
    margin-bottom: 0;
}

.signature-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 30px;
}

.signature-photo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.history-signature {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
    margin: 0;
    font-family: 'Noto Serif JP', serif;
}





/* アクセスセクション */
.access-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.access-map {
    background: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: var(--shadow);
    min-height: 300px;
    text-align: center;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
}

.reservation-info {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.reservation-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reservation-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.external-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.external-link {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.external-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* フッター */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* フッターの電話番号のリンクスタイルを無効化 */
.footer-section p a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.footer-section p a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* 電話番号のスタイル */
.phone-number {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }

    .timeline-year {
        margin: 0 0 20px 0;
    }

    .access-content {
        grid-template-columns: 1fr;
    }

    .chef-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .container {
        padding: 0 15px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .cuisine-grid {
        grid-template-columns: 1fr;
    }

    .chefs-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== English page font settings ===== */

/* 英語ページでは Playfair Display を優先する */
:lang(en) body {
    font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
}

/* ヘッダーのロゴ周りも英語フォントで統一 */
:lang(en) .logo-title,
:lang(en) .logo-tags,
:lang(en) .logo-phone,
:lang(en) .section-title {
    font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
    line-height: 1.2;
}

/* ヘッダーの電話リンク見た目を綺麗に */
.logo-phone a.tel-link {
    color: inherit;
    text-decoration: none;
}
.logo-phone a.tel-link:hover {
    text-decoration: underline;
}

/* ===== Quick Info Bar（ヒーロー直下のクイック情報バー） ===== */
/* 観光客がまず知りたい4つの情報を目立たせる帯 */
.quick-info-bar {
    background: var(--primary-color);
    color: white;
    padding: 25px 0;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.quick-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.quick-info-item i {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.quick-info-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.quick-info-item span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* ===== Lunch Courses（ランチコースセクション） ===== */
/* 3つのランチコースをカード形式で紹介するセクション */
.lunch-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
}

/* コースカードを縦に並べる */
.lunch-courses {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

/* 各コースカード：左に写真、右にメニュー情報を横並びで表示 */
.lunch-course-card {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.lunch-course-card:hover {
    box-shadow: var(--shadow-dark);
}

/* コース写真 */
.lunch-course-image {
    flex: 0 0 380px;
    min-height: 350px;
}

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

/* コース情報部分 */
.lunch-course-body {
    flex: 1;
    padding: 35px 35px 35px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* コース名・価格・概要 */
.lunch-course-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.lunch-course-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.lunch-course-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
}

.lunch-course-summary {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* メニュー一覧 */
.lunch-course-menu h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.menu-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    font-style: italic;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

.menu-list li {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

/* リストの先頭に小さなドットを表示 */
.menu-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
}

/* ドリンク一覧（折りたたみ式） */
.drink-details {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.drink-details summary {
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    background: #faf8f5;
    cursor: pointer;
    transition: background 0.2s ease;
    list-style: none;
}

/* summaryの既定の三角マークを消して、カスタムの矢印を表示 */
.drink-details summary::-webkit-details-marker {
    display: none;
}

.drink-details summary::before {
    content: '+ ';
    font-weight: 700;
}

.drink-details[open] summary::before {
    content: '- ';
}

.drink-details summary:hover {
    background: #f0ece6;
}

.drink-list {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.drink-category strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.drink-category li {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 14px;
    position: relative;
}

.drink-category li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ランチ補足テキスト */
.lunch-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px 25px;
    background: #f8f8f8;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.lunch-note i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* ===== Dinner Courses（ディナーコースセクション） ===== */
/* ランチセクションと同じカードスタイルを使い、背景色だけ変える */
.dinner-section {
    padding: 100px 0;
    background: white;
}

/* ===== 以下は旧Dinner Specialties（カード型）の残存スタイル ===== */
/* 写真付きで料理を紹介し「食べたい」と思わせるセクション */
.dishes-section {
    padding: 100px 0;
    background: white;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.dish-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

/* 料理写真を同じ高さで統一する */
.dish-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.05);
}

.dish-info {
    padding: 28px 25px 30px;
}

.dish-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
}

.dish-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* 「Dinner Course」バッジ：ディナー限定メニューであることをさりげなく示す */
.dish-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #a00000);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* メニュー補足テキスト */
.dishes-note {
    margin-top: 40px;
    text-align: center;
    padding: 20px 25px;
    background: #f8f8f8;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.dishes-note i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* ===== About Section（店舗紹介セクション） ===== */
/* Our Storyを簡潔にまとめた紹介セクション */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-text-content {
    flex: 1;
}

.about-text-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* 3つのハイライト（資格・無添加・創業年）を横並びで表示 */
.about-highlights {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* ===== Interior Section（店内写真セクション） ===== */
.interior-section {
    padding: 100px 0;
    background: white;
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.interior-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.interior-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.interior-card:hover img {
    transform: scale(1.03);
}

.interior-card p {
    padding: 18px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    background: #f8f8f8;
}

/* ===== Practical Info Section（実用情報セクション） ===== */
/* 観光客が来店を判断するのに必要な情報をカード形式で表示 */
.practical-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.practical-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.practical-card:hover {
    transform: translateY(-3px);
}

.practical-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.practical-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.practical-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* ===== Access Section 追加スタイル ===== */

/* 営業時間テーブル */
.hours-table {
    margin-top: 5px;
}

.hours-row {
    display: flex;
    gap: 15px;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.hours-label {
    font-weight: 600;
    min-width: 140px;
    color: var(--text-dark);
}

.hours-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
    opacity: 0.8;
}

/* Google Mapsへの直リンクボタン */
.maps-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.maps-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.maps-button i {
    margin-right: 8px;
}

/* 電話リンク（Access内） */
.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.phone-link:hover {
    text-decoration: underline;
}

/* ============================================
   FAQ セクション（ミニマルデザイン）
   インバウンドのお客様向けの「よくある質問」エリア
   下線区切りのシンプルな構造で AIO にも対応
   ============================================ */

.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

/* FAQ全体を囲むリストコンテナ：中央寄せ・狭めの最大幅で可読性を確保 */
.faq-list {
    max-width: 780px;
    margin: 60px auto 0;
}

/* 個別のFAQ項目（detailsタグ）
   枠線ボックスではなく「下線区切り」で視覚的ノイズを減らす */
.faq-item {
    border-bottom: 1px solid var(--border-color);
}

/* 最初の項目には上線も引いて、区切りを完結させる */
.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

/* 質問部分（summaryタグ）
   背景色なし・枠線なしで、テキストと矢印だけのミニマル構成 */
.faq-question {
    padding: 28px 48px 28px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    list-style: none;
    line-height: 1.5;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

/* summaryの既定の三角マークを消す（Chrome/Safari/Firefoxすべて対応） */
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::marker {
    display: none;
}

/* 右端にシェブロン（矢印）を配置
   2辺の境界線だけで描くので軽量・くっきり表示される */
.faq-question::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid var(--text-light);
    border-bottom: 1.5px solid var(--text-light);
    /* 初期状態：下向きの矢印（translateY -70%は視覚中心の微調整） */
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease, border-color 0.25s ease;
}

/* 開いた状態：矢印を上向きに回転（-135度） */
.faq-item[open] .faq-question::after {
    transform: translateY(-30%) rotate(-135deg);
    border-color: var(--secondary-color);
}

/* ホバー時：質問文字色をアクセントカラーに（背景は変えない） */
.faq-question:hover {
    color: var(--secondary-color);
}

.faq-question:hover::after {
    border-color: var(--secondary-color);
}

/* 開いた状態：質問文字色もアクセントカラーに（視認性UP） */
.faq-item[open] .faq-question {
    color: var(--secondary-color);
}

/* 回答部分：左インデントで質問との階層を明確にする */
.faq-answer {
    padding: 0 48px 32px 0;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-light);
    /* ふわっと表示されるアニメーション */
    animation: faqFadeIn 0.35s ease;
}

/* 開いたときのフェードイン＆スライドダウン */
@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin: 0 0 14px;
}

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

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.faq-answer a:hover {
    border-bottom-color: var(--primary-color);
}
