/* =========================================
   Base & Variables
   ========================================= */
:root {
    --bg-main: #F9F9F8;
    --bg-alt: #EBEBEA;
    --text-main: #111111;
    --text-muted: #9ca3af;
    --border-color: rgba(17, 17, 17, 0.1);
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Zen Kaku Gothic New', sans-serif;
    --font-jost: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Subtle Film Grain Effect */
.film-grain {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.04;
}

/* =========================================
   Typography & Utilities
   ========================================= */
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.font-jost { font-family: var(--font-jost); }
.font-light { font-weight: 300; }
.italic { font-style: italic; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }

.text-xs { font-size: 0.75rem; }     /* 12px */
.text-sm { font-size: 0.875rem; }    /* 14px */
.text-base { font-size: 1rem; }      /* 16px */
.text-lg { font-size: 1.125rem; }    /* 18px */
.text-xl { font-size: 1.25rem; }     /* 20px */
.text-2xl { font-size: 1.5rem; }     /* 24px */
.text-4xl { font-size: 2.25rem; }    /* 36px */
.text-5xl { font-size: 3rem; }       /* 48px */
.leading-loose { line-height: 2; }

/* =========================================
   Animations
   ========================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in { animation: fadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.fade-in-up { animation: fadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.fade-in-left { animation: fadeInLeft 1.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.transition-opacity { transition: opacity 1s ease; }
.transition-colors { transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease; }
.transition-all { transition: all 0.5s ease; }

/* =========================================
   Layout & SPA Views
   ========================================= */
.global-header {
    position: fixed; top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 2rem; z-index: 50;
    pointer-events: none;
}
.global-header > * { pointer-events: auto; }
@media(min-width: 768px) { .global-header { padding: 1.5rem 2rem; } }

/* mix-blend-mode for header typography exactly like Next.js */
.mix-blend {
    mix-blend-mode: difference;
    color: white;
}
.mix-blend .logo, .mix-blend .main-nav a {
    color: white;
}

/* メニュー展開時はオーバーレイより手前に配置し、mix-blendを解除して黒文字化 */
.is-menu-open .global-header {
    z-index: 105;
    mix-blend-mode: normal;
}
.is-menu-open .mix-blend,
.is-menu-open .mix-blend .logo {
    color: #111111;
}

.logo {
    font-family: var(--font-jost); font-size: 1.5rem; font-weight: 300;
    letter-spacing: 0.2em; text-decoration: none;
}
.main-nav { display: none; gap: 2rem; }
@media(min-width: 768px) { .main-nav { display: flex; } }
.main-nav a {
    font-family: var(--font-sans); font-size: 0.75rem; font-weight: 300; letter-spacing: 0.3em;
    text-decoration: none; text-transform: uppercase;
    transition: opacity 0.5s; opacity: 1;
}
.main-nav a:hover, .main-nav a.active { opacity: 0.5; }

/* -----------------------------------------
   Mobile Menu Button
   ----------------------------------------- */
.menu-button {
    display: flex; flex-direction: column; justify-content: space-between;
    width: 24px; height: 18px; background: none; border: none; padding: 0;
    cursor: pointer; position: relative; z-index: 101;
    color: inherit; /* ヘッダーの白文字（mix-blend）を継承させるために必須 */
}
@media(min-width: 768px) { .menu-button { display: none; } }

.menu-bar {
    width: 100%; height: 1px; background-color: currentColor;
    transition: transform 0.4s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Open states for bars */
.is-menu-open .menu-bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.is-menu-open .menu-bar:nth-child(2) { opacity: 0; }
.is-menu-open .menu-bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* -----------------------------------------
   Overlay Menu
   ----------------------------------------- */
.overlay-menu {
    position: fixed; inset: 0; width: 100%; height: 100vh;
    background-color: var(--bg-main); z-index: 100;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    visibility: hidden; opacity: 0; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.overlay-menu.is-active {
    visibility: visible; opacity: 1;
}

.overlay-nav {
    display: flex; flex-direction: column; align-items: center; gap: 3rem;
}
.overlay-link {
    font-family: var(--font-jost); font-size: 2rem; font-weight: 300; 
    letter-spacing: 0.2em; text-decoration: none; color: var(--text-main);
    opacity: 0; transform: translateY(20px); transition: all 0.6s ease;
}
.overlay-menu.is-active .overlay-link {
    opacity: 1; transform: translateY(0);
}
/* Stagger animation for links */
.overlay-link:nth-child(1) { transition-delay: 0.1s; }
.overlay-link:nth-child(2) { transition-delay: 0.2s; }
.overlay-link:nth-child(3) { transition-delay: 0.3s; }
.overlay-link:nth-child(4) { transition-delay: 0.4s; }

.overlay-footer {
    position: absolute; bottom: 4rem;
}

/* Views */
.view-section {
    display: none; min-height: 100vh;
    animation: fadeIn 0.4s ease both;
}
.view-section.active { display: block; }

/* Split Layout Pattern */
.split-layout {
    display: flex; flex-direction: column; min-height: 100vh; width: 100%;
}
@media(min-width: 1024px) { .split-layout { flex-direction: row; } }

.split-left {
    position: relative; width: 100%; height: 50vh; background-color: var(--bg-alt);
    overflow: hidden;
}
.split-right {
    position: relative; width: 100%; display: flex; flex-direction: column;
}

@media(min-width: 1024px) {
    .split-left { height: 100vh; }
    .split-right { min-height: 100vh; }
    /* Menu, News, About view uses 35/65 split, Home view uses 50/50 */
    #view-home .split-left, #view-home .split-right { width: 50%; }
    #view-home .split-left { position: fixed; left: 0; top: 0; }
    #view-home .split-right { margin-left: 50%; }

    #view-menu .split-left, #view-news .split-left, #view-about .split-left { width: 35%; position: fixed; left: 0; top: 0; }
    #view-menu .split-right, #view-news .split-right, #view-about .split-right { width: 65%; margin-left: 35%; }
}

/* =========================================
   Components (Buttons, Form)
   ========================================= */
/* Outline Button */
.btn-outline {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 1rem 2.5rem; border: 1px solid rgba(17,17,17,0.2);
    font-family: var(--font-jost); font-size: 10px; letter-spacing: 0.4em;
    font-weight: 300; text-decoration: none; color: var(--text-main);
    transition: border-color 0.7s; cursor: pointer; background: transparent;
}
.btn-outline:hover { border-color: var(--text-main); color: white; }
.btn-outline .btn-bg {
    position: absolute; inset: 0; background-color: var(--text-main);
    transform: translateY(100%); transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
    z-index: -1;
}
.btn-outline:hover .btn-bg { transform: translateY(0); }
.btn-outline .btn-text { position: relative; z-index: 10; transition: color 0.7s; }

/* Solid Button */
.btn-solid {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 1.25rem 3rem; border: 1px solid var(--text-main);
    font-family: var(--font-jost); font-size: 12px; letter-spacing: 0.4em;
    font-weight: 300; text-decoration: none; color: white; background: var(--text-main);
    transition: all 0.7s; cursor: pointer; border-radius: 0;
}
.btn-solid:hover { color: var(--text-main); background: transparent; }
.btn-solid .btn-bg {
    position: absolute; inset: 0; background-color: var(--bg-alt);
    transform: translateY(100%); transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
    z-index: 0;
}
.btn-solid:hover .btn-bg { transform: translateY(0); }
.btn-solid .btn-text { position: relative; z-index: 10; }


/* Form Styling */
.form-group { margin-bottom: 2rem; }
.form-group label {
    display: block; font-family: var(--font-jost); font-size: 10px;
    letter-spacing: 0.3em; margin-bottom: 1rem; color: rgba(17,17,17,0.6); text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; border: none; border-bottom: 1px solid rgba(17,17,17,0.2);
    padding: 0.75rem 0; background: transparent; font-family: var(--font-sans);
    font-size: 0.875rem; letter-spacing: 0.1em; color: var(--text-main);
    outline: none; transition: border-color 0.3s; border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--text-main);
}
.form-group textarea { resize: none; }
.form-row { display: grid; gap: 2rem; }
@media(min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* =========================================
   Home View Specific
   ========================================= */
.home-image { width: 100%; height: 100%; object-fit: cover; }
.home-text-container {
    align-items: center; justify-content: center; text-align: center;
    padding: 4rem 1.5rem; min-height: 50vh;
}
.home-text-container h1 {
    font-family: var(--font-jost); font-size: 2.25rem; font-weight: 300;
    letter-spacing: 0.25em; margin-bottom: 2rem;
}
.home-text-container p {
    font-family: var(--font-serif); font-size: 0.875rem; font-weight: 300; letter-spacing: 0.1em;
    font-style: italic; color: var(--text-muted); max-width: 24rem; line-height: 2;
}
@media(min-width: 768px) {
    .home-text-container h1 { font-size: 3rem; }
    .home-text-container p { font-size: 1.125rem; }
}
.ig-icon-wrapper { margin-top: 2rem; text-align: center; }
@media(min-width: 1024px) { .ig-icon-wrapper { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); margin-top: 0; } }
.ig-icon { color: var(--text-muted); transition: color 0.4s; }
.ig-icon:hover { color: var(--text-main); }

/* =========================================
   Menu View Specific
   ========================================= */
.menu-left-fixed { display: none; }
/* Menu・About・Newsページ：タブレット縦表示で画像をコンテンツ上部に表示 */
#view-menu .menu-left-fixed,
#view-about .menu-left-fixed,
#view-news .menu-left-fixed {
    display: block;
    height: 50vh; /* TOPページと同じ高さに合わせる */
    position: relative;
    width: 100%;
}
#view-menu .menu-left-fixed .image-container-inner,
#view-about .menu-left-fixed .image-container-inner,
#view-news .menu-left-fixed .image-container-inner {
    position: absolute;
    inset: 0; /* 余白なし */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* About・Newsのスマホ・タブレット表示時は画像全体に被せる (cover) */
#view-menu .menu-left-fixed .hover-img-layer,
#view-about .menu-left-fixed .hover-img-layer,
#view-news .menu-left-fixed .hover-img-layer {
    object-fit: cover !important;
}
#view-menu .split-right,
#view-about .split-right,
#view-news .split-right {
    width: 100%;
    margin-left: 0;
}
/* Menu・About・Newsのスマホ・タブレット表示時は上部余白を狭める */
@media(max-width: 1023px) {
    #view-menu .split-right .menu-content-inner,
    #view-about .split-right .menu-content-inner,
    #view-news .split-right .menu-content-inner {
        padding-top: 3rem; /* デフォルトの8remから縮小 */
    }
}
@media(min-width: 1024px) { 
    .menu-left-fixed { display: block; }
    #view-menu .menu-left-fixed,
    #view-about .menu-left-fixed,
    #view-news .menu-left-fixed { 
        height: 100vh;
        position: fixed;
        width: 35%;
    }
    #view-menu .split-right,
    #view-about .split-right,
    #view-news .split-right { width: 65%; margin-left: 35%; }
    /* 全ての固定画像エリア（MENU, NEWS, ABOUT）を余白なしの全面表示にする */
    .image-container-inner {
        position: absolute;
        inset: 0 !important;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 全ての固定画像を枠いっぱいに広げる（cover） */
    #view-menu .menu-left-fixed .hover-img-layer,
    #view-about .menu-left-fixed .hover-img-layer,
    #view-news .menu-left-fixed .hover-img-layer {
        object-fit: cover !important;
    }
}

/* Menu Left Title Overlay */
.menu-left-title {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    z-index: 20; padding: 2rem; pointer-events: none;
}
.menu-left-title::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.15); z-index: -1;
}
.menu-left-title h1 {
    color: #FFFFFF !important; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.menu-left-title p {
    color: rgba(255, 255, 255, 0.9) !important; text-shadow: 0 1px 4px rgba(0,0,0,0.2);
    margin-top: 0.5rem;
}

/* =========================================
   News View Specific
   ========================================= */
.news-article-item {
    border-bottom: 1px solid rgba(17,17,17,0.15);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.news-article-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-date-text {
    font-family: var(--font-jost);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--text-main);
    white-space: nowrap;
    display: block;
    margin-bottom: 0.75rem;
}

.news-content-layout {
    display: flex; flex-direction: column; gap: 0.75rem;
}

/* --- アコーディオン本体 --- */
.news-accordion-body {
    position: relative;
    max-height: 10rem; /* 折りたたみ時の高さ上限 */
    overflow: hidden;
    transition: max-height 0.5s ease;
}

/* 折りたたみ時のみ表示する要素 */
.news-collapsed-only {
    display: block;
}
/* 展開時のみ表示する要素（初期は非表示） */
.news-expanded-only {
    display: none;
}

/* --- 展開時 --- */
.news-article-item.is-expanded .news-accordion-body {
    max-height: 5000px; /* 十分に大きい値で制限を解除 */
}
.news-article-item.is-expanded .news-collapsed-only {
    display: none;
}
.news-article-item.is-expanded .news-expanded-only {
    display: block;
}

/* --- 折りたたみ時のレイアウト（サムネ＋テキスト横並び） --- */
.news-body-wrapper {
    display: flex; flex-direction: row; gap: 1.5rem; width: 100%; align-items: flex-start;
}

.news-thumb-wrapper {
    flex-shrink: 0;
}

.news-thumb-img {
    width: 6rem; height: 6rem;
    object-fit: cover; opacity: 0.95;
}
@media(min-width: 1024px) {
    .news-thumb-img { width: 8rem; height: 8rem; }
}

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

.news-title {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}
@media(min-width: 1024px) {
    .news-title { 
        font-size: 1.5rem;
        letter-spacing: 0.025em;
    }
}

.news-desc {
    font-family: var(--font-sans);
    font-size: 10px;
    color: #4B5563;
    font-weight: 300;
    line-height: 1.8;
    white-space: pre-wrap;
}
@media(min-width: 1024px) {
    .news-desc { 
        font-size: 0.75rem;
    }
}

/* --- 展開時のフル幅画像 --- */
.news-full-image-wrapper {
    width: 100%;
    margin-bottom: 1.25rem;
}
.news-full-img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- グラデーションフタ（折りたたみ時） --- */
.news-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    background: linear-gradient(to bottom, transparent, var(--bg-main) 90%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.25rem;
}
.news-article-item.is-expanded .news-fade-overlay {
    display: none;
}

/* --- 「続きを読む」ボタン --- */
.news-read-more-btn {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    transition: color 0.3s ease;
}
.news-read-more-btn:hover {
    color: var(--text-main);
}

/* --- 「×」閉じるボタン --- */
.news-close-btn {
    display: block;
    margin: 1.5rem auto 0;
    background: none;
    border: 1px solid rgba(17,17,17,0.15);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-family: var(--font-jost);
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    line-height: 1;
}
.news-close-btn:hover {
    color: var(--text-main);
    border-color: var(--text-main);
}

/* ホバー画像のアニメーション用クラス */
.hover-img-layer {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    object-position: center center;
    opacity: 0; transform: scale(1.05);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.hover-img-layer.active {
    opacity: 1; transform: scale(1);
}

.filter-wrapper { display: flex; flex-direction: column; margin-bottom: 4rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1rem; width: 100%; }
.main-filter { display: flex; gap: 2rem; font-family: var(--font-jost); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.filter-tab { cursor: pointer; padding-bottom: 0.5rem; transition: color 0.4s ease, border-color 0.4s ease; border-bottom: 1px solid transparent; }
.filter-tab:hover { color: var(--text-main); }
.filter-tab.active { color: var(--text-main); border-bottom: 1px solid var(--text-main); margin-bottom: -9px; }

.sub-filter-wrapper { display: flex; gap: 1.5rem; padding-left: 0.5rem; color: var(--text-muted); opacity: 0.8; height: 0; overflow: hidden; transition: height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease; font-size: 8px; letter-spacing: 0.2em; font-family: var(--font-jost); margin-top: 0; text-transform: uppercase; }
.sub-filter-wrapper.show { height: 16px; opacity: 1; margin-top: 1.5rem; }
.sub-filter-btn { cursor: pointer; transition: color 0.4s ease; }
.sub-filter-btn:hover { color: var(--text-main); }
.sub-filter-btn.active { color: var(--text-main); font-style: italic; }

.menu-item-row {
    position: relative; display: flex; flex-direction: column; justify-content: space-between;
    padding: 2rem 0; border-bottom: 1px solid rgba(17,17,17,0.05); transition: border-color 0.5s; cursor: pointer;
    width: 100%;
}
@media(min-width: 1024px) {
    .menu-item-row { flex-direction: row; align-items: baseline; }
}
.menu-item-row:hover { border-color: rgba(17,17,17,0.3); }

.menu-item-content { flex: 1; padding-right: 0; display: flex; gap: 1.25rem; width: 100%; }
@media(min-width: 1024px) { .menu-item-content { padding-right: 2rem; display: flex; gap: 1.5rem; } }

.menu-item-img-mobile {
    display: block; width: 9rem; aspect-ratio: 3/4; flex-shrink: 0; background: var(--bg-alt);
    overflow: hidden; border-radius: 2px;
}
/* PCでも画像を表示し、縦長（3:4）で表示する */
@media(min-width: 1024px) { .menu-item-img-mobile { width: 10rem; aspect-ratio: 3/4; } }
.menu-item-img-mobile img { width: 100%; height: 100%; object-fit: cover; }

.menu-item-text { flex: 1; }
.menu-item-header { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.menu-item-title { font-family: var(--font-sans); font-size: 1.125rem; font-weight: 300; letter-spacing: 0.05em; color: var(--text-main); transition: color 0.5s; }
@media(min-width: 1024px) { .menu-item-title { font-size: 1.5rem; letter-spacing: 0.025em; } }
.menu-category-tag { font-family: var(--font-jost); font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); padding-top: 0.25rem; }
.menu-special-badge { font-family: var(--font-jost); font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); border: 1px solid rgba(17,17,17,0.2); padding: 0.1rem 0.5rem; margin-left: 0.25rem; border-radius: 2px; }

/* サービス形態バッジ (EAT-IN / TAKE OUT) */
.menu-service-badge { 
    font-family: var(--font-jost); font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; 
    color: var(--text-main); background: rgba(17,17,17,0.03); 
    padding: 0.1rem 0.5rem; margin-left: 0.25rem; border-radius: 2px; 
}
.menu-service-badge.takeout {
    background: transparent; color: var(--text-muted); border: 1px dashed rgba(17,17,17,0.3);
}

.menu-item-desc { font-family: var(--font-sans); font-size: 10px; color: var(--text-muted); font-weight: 300; line-height: 1.8; transition: color 0.5s; margin-top: 0.5rem; }
@media(min-width: 1024px) { .menu-item-desc { font-size: 0.75rem; } }
.menu-item-row:hover .menu-item-desc { color: #4B5563; }

.menu-item-price { 
    font-family: var(--font-jost); font-size: 10px; letter-spacing: 0.2em; font-weight: 300; 
    white-space: nowrap; margin-top: 1.5rem; 
    display: flex; justify-content: flex-end; /* 右寄せ */
}
@media(min-width: 1024px) { .menu-item-price { font-size: 10px; } }

/* 別価格設定用 (EAT-IN / TAKE OUT 併記) */
.dual-price { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }
@media(min-width: 640px) { 
    /* タブレット・PCでは横並び */
    .dual-price { flex-direction: row; align-items: baseline; gap: 0.5rem; } 
}
.dp-label { font-size: 8px; color: var(--text-muted); padding-right: 0.25rem; }
.dp-sep { color: rgba(17,17,17,0.2); margin: 0 0.25rem; display: none; }
@media(min-width: 640px) { 
    .dp-sep { display: inline; } 
}

/* 表示切替ユーティリティ */
.mobile-only { display: block; }
.pc-only { display: none; }
@media(min-width: 1024px) {
    .mobile-only { display: none; }
    .pc-only { display: block; }
}

/* Footer */
.menu-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 10rem; padding-top: 2rem; border-top: 1px solid var(--border-color);
    font-family: var(--font-jost); font-size: 9px; letter-spacing: 0.3em;
    color: var(--text-muted); text-transform: uppercase;
}
.menu-footer a { color: var(--text-muted); transition: color 0.4s ease; }
.menu-footer a:hover { color: var(--text-main); }
.menu-footer svg { stroke: currentColor; }

/* Utility classes for layout */
.pt-32 { padding-top: 8rem; }
.pb-24 { padding-bottom: 6rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
@media(min-width: 768px) { .md-px-24 { padding-left: 6rem; padding-right: 6rem; } }
.mt-40 { margin-top: 10rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }
.max-w-5xl { max-width: 64rem; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; width: 100%; }

/* メニューコンテンツの幅固定 */
.menu-content-inner { width: 100%; }
#menu-list { width: 100%; min-height: 50vh; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
/* NEWS / ABOUT 指定の画像全画面化 */
#news-image-container img,
#about-image-container img {
    width: 100%; height: 100%; object-fit: cover;
}

/* =========================================
   Google Map Styling (Editorial Noir)
   ========================================= */
#about-map-iframe {
    filter: grayscale(1) contrast(1.1) brightness(0.95);
    transition: filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: none !important;
}

/* ホバー時に少しだけ色味を戻し、視認性を高める演出 */
#about-map-iframe:hover {
    filter: grayscale(0.2) contrast(1) brightness(1);
}

/* About Information Blocks */
.about-info-group > div:not(:last-child) {
    margin-bottom: 1.25rem;
}

/* SNS Links */
#about-sns a {
    display: flex;
    align-items: center;
    gap: 0.375rem; /* ~6px */
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.4s ease;
}
#about-sns a:hover {
    color: var(--text-main);
}
#about-sns svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.5;
}

/* Page Footer */
.page-footer {
    text-align: center;
    padding: 3rem 0 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(17,17,17,0.05);
}

.page-footer p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #9CA3AF;
    font-style: normal; /* イタリック等の打ち消し */
}
#view-home .page-footer {
    border-top: none;
    margin-top: 0;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 0;
    white-space: nowrap;
}
