@charset "UTF-8";

/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --c-black: #0a0a0a;
    --c-dark: #0f1215;
    --c-gold: #c5a059;
    --c-white: #f2f2f2;
    --c-gray: #888888;
    
    --f-jp: 'Shippori Mincho', serif;
    --f-en: 'Manrope', sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html.lenis, html.lenis body {
    height: auto;
}

body {
    background-color: var(--c-black);
    color: var(--c-white);
    font-family: var(--f-jp);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

img, video {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.t-vert {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.3em;
    font-weight: 500;
}

h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.4;
}

/* =========================================
   COMPONENTS
   ========================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.btn-solid {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--c-gold);
    color: var(--c-black);
    font-family: var(--f-en);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.btn-solid:hover {
    background: var(--c-white);
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--c-white);
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--c-white);
    color: var(--c-black);
}

/* =========================================
   LOADER
   ========================================= */
.loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--c-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader__mark {
    margin-bottom: 1rem;
    animation: pulse 3s infinite ease-in-out;
}

.loader__text {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--c-white);
    margin-bottom: 2rem;
    font-family: var(--f-jp);
}

.loader__bar {
    width: 100px;
    height: 1px;
    background: #333;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader__bar-inner {
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: var(--c-gold);
    transition: width 0.5s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

body:not(.is-loading) .loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================================
   HEADER & LOGO TEXT
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    z-index: 100;
    transition: transform 0.4s ease;
}

.header.is-hidden {
    transform: translateY(-100%);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    z-index: 101;
    line-height: 1;
}

.logo-text a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-mark {
    width: 28px;
    height: auto;
    opacity: 0.9;
}

.logo-main {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--c-white);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .logo-main { font-size: 1rem; }
    .logo-mark { width: 22px; }
    .header { padding: 1.2rem 5%; }
}

.header__controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 101;
}

@media (min-width: 768px) {
    .header__controls { gap: 2rem; }
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--c-white);
    font-family: var(--f-en);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    transition: border-color 0.3s;
}

.lang-btn:hover { border-color: var(--c-gold); color: var(--c-gold); }

.nav-trigger {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 24px;
    position: relative;
    padding: 0;
}

.nav-trigger__line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--c-white);
    right: 0;
    transition: 0.3s var(--ease-out);
}

.nav-trigger__line:first-child { top: 0; }
.nav-trigger__line:last-child { bottom: 0; width: 70%; }

.nav-trigger:hover .nav-trigger__line:last-child { width: 100%; }

.nav-open .nav-trigger__line:first-child {
    transform: rotate(45deg);
    top: 11px;
}
.nav-open .nav-trigger__line:last-child {
    transform: rotate(-45deg);
    bottom: 11px;
    width: 100%;
}

/* =========================================
   NAV OVERLAY
   ========================================= */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; height: 100vh;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.nav-overlay.is-active {
    pointer-events: all;
    opacity: 1;
}

.nav-overlay__bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: -1;
}

.nav-overlay__mark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60vh;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.nav-list {
    list-style: none;
    text-align: center;
    margin-bottom: 3rem;
}

.nav-link {
    font-size: 2rem;
    display: block;
    margin: 0.5rem 0;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.nav-overlay.is-active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-info {
    text-align: center;
    color: var(--c-gray);
    font-size: 0.9rem;
    opacity: 0;
}
.nav-overlay.is-active .nav-info { opacity: 1; transition-delay: 0.3s; }

/* =========================================
   HERO (Slow Cross-fade)
   ========================================= */
.hero {
    position: relative;
    height: 100svh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__media {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    background-color: #000;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 5s ease;
}
.hero__video.is-playing {
    opacity: 1;
}

.hero__cover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    transition: opacity 5s ease-in-out;
    pointer-events: none;
}
.hero__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__cover.is-hidden {
    opacity: 0;
}

.hero__overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 3;
}

.hero__content {
    position: relative;
    z-index: 4;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.hero__mark-wrap {
    margin-bottom: 2rem;
    opacity: 0.8;
}
.hero__mark {
    width: 40px;
    margin: 0 auto;
}

.hero__titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero__subtitle-en {
    font-family: var(--f-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--c-gold);
}

.hero__title-jp {
    font-size: 3rem;
    height: 40vh;
    min-height: 250px;
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.hero__title-en {
    font-family: var(--f-en);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 300;
}

.hero__desc {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator span {
    font-size: 0.7rem;
    font-family: var(--f-en);
    letter-spacing: 0.2em;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: var(--c-white);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
    padding: 8rem 0;
    position: relative;
    background: var(--c-black);
    overflow: hidden;
}

.section__header {
    margin-bottom: 4rem;
    position: relative;
}

.section-mark {
    width: 24px;
    display: block;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}
.center-align .section-mark { margin: 0 auto 1.5rem; }

.section__label {
    display: block;
    font-family: var(--f-en);
    color: var(--c-gold);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.section__title {
    font-size: 2.2rem;
    font-weight: 400;
}

.center-align { text-align: center; }
.dark-bg { background-color: var(--c-dark); }
.relative { position: relative; }
.z-10 { z-index: 10; }

.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

/* Philosophy / Ingredients */
.philosophy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.txt-lg {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-feature-settings: "palt";
}

.txt-body {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 2rem; /* ボタンとの余白 */
}

.parallax-wrap {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: center;
}

.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { grid-template-columns: 0.9fr 1.1fr; }
.feature-row.reverse .feature-img { order: 2; }

.feature-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--c-gold);
    padding-left: 1.2rem;
}

.feature-content p {
    color: #ccc;
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}

/* Gallery (INTERIOR FIXED) */
.gallery-wrapper {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2rem;
    padding-left: 5%;
    padding-right: 5%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.gallery-wrapper::-webkit-scrollbar { display: none; }

.gallery-item {
    /* 縮小させない設定 */
    flex: 0 0 80vw;
    height: 350px;
    scroll-snap-align: center;
    position: relative;
}

@media (min-width: 768px) {
    .gallery-item {
        flex: 0 0 400px;
        height: 450px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interior-caption {
    text-align: center;
    color: var(--c-gray);
    font-size: 0.9rem;
}

/* Menu */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

.menu-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: block;
    border: 1px solid rgba(255,255,255,0.1);
}
.menu-card__bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-out);
}
.menu-card__overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    transition: opacity 0.3s;
}
.menu-card:hover .menu-card__bg { transform: scale(1.1); }
.menu-card:hover .menu-card__overlay { background: rgba(0,0,0,0.3); }

.menu-card__content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.menu-card__content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.arrow-icon {
    display: inline-block;
    color: var(--c-gold);
    transform: translateX(0);
    transition: transform 0.3s;
}
.menu-card:hover .arrow-icon { transform: translateX(10px); }

/* Banquet */
.banquet {
    padding: 12rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banquet__bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}
.banquet__overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
.banquet__box {
    background: rgba(10,10,10,0.85);
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}
.box-mark { width: 40px; margin: 0 auto 1.5rem; opacity: 0.8; }
.banquet__title { font-size: 1.8rem; margin-bottom: 1rem; font-feature-settings: "palt"; }

/* News & Contact */
.snapwidget-placeholder {
    width: 100%;
    height: 400px;
    background: #111;
    border: 1px dashed #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
    .contact__grid { grid-template-columns: 1fr 1fr; }
}
.contact__info {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact__info h3 { font-size: 1.5rem; margin-bottom: 2rem; }
.contact__info .tel { font-size: 2rem; font-family: var(--f-en); margin-bottom: 2rem; }
.contact__info .hours { color: var(--c-gray); margin-bottom: 2rem; font-size: 0.9rem; }

.contact__map {
    position: relative;
    height: 300px;
}
@media (min-width: 768px) {
    .contact__map { height: auto; min-height: 400px; }
}
.map-link {
    display: block;
    width: 100%; height: 100%;
    position: relative;
}
.map-link img { width: 100%; height: 100%; object-fit: cover; }
.map-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.map-btn {
    border: 1px solid var(--c-white);
    padding: 0.5rem 1.5rem;
    background: rgba(0,0,0,0.8);
    font-size: 0.9rem;
}
.address {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    font-size: 0.75rem;
    background: rgba(0,0,0,0.9);
    padding: 0.8rem;
    text-align: center;
}

/* Footer */
.footer {
    padding: 4rem 0 3rem;
    border-top: 1px solid #222;
    text-align: center;
}
.footer__mark {
    display: block;
    width: 30px;
    height: auto;
    margin: 0 auto 1.5rem;
    opacity: 0.6;
    object-fit: contain;
}
.footer__logo {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--c-white);
    letter-spacing: 0.1em;
}
.footer__sns a { margin: 0 15px; font-size: 0.9rem; color: var(--c-gray); }
.footer__sns a:hover { color: var(--c-white); }
.copyright { margin-top: 2rem; font-size: 0.7rem; color: #444; font-family: var(--f-en); }

/* Responsive */
@media (max-width: 768px) {
    .hero__title-jp { font-size: 2.2rem; gap: 2rem; }
    .philosophy__grid, .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 2rem; }
    .feature-row.reverse .feature-img { order: 0; }
    .parallax-wrap, .feature-img { height: 300px; }
    .section { padding: 5rem 0; }
    .contact__info { padding: 2rem 1.5rem; }
}
/* =========================================
   SUB PAGES (Philosophy, Quality etc.)
   ========================================= */

/* ページトップのヒーロー画像 */
.page-hero {
    position: relative;
    height: 60vh; /* 少し高さを抑える */
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero__bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-hero__overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}

.page-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.page-hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--c-white);
}

.page-hero__title .en {
    font-family: var(--f-en);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--c-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.page-hero__title .jp {
    font-size: 2.5rem;
    letter-spacing: 0.2em;
}

/* テキストレイアウト */
.text-body-lg {
    max-width: 800px;
    margin: 3rem auto 0;
    line-height: 2.2;
    font-size: 1.05rem;
    color: #ddd;
}
.text-body-lg p { margin-bottom: 2rem; }

/* 左右分割レイアウト（写真＋テキスト） */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl; /* 要素の順序を逆にする簡易ハック */
}
.split-layout.reverse > * {
    direction: ltr; /* 中身の文字方向は戻す */
}

.split-text {
    padding: 2rem;
}

.split-image {
    height: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .page-hero__title .jp { font-size: 2rem; }
    
    .split-layout, .split-layout.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }
    .split-image { height: 300px; }
    .text-body-lg { padding: 0 1rem; text-align: left; }
}

/* 次のページへのリンクエリア */
.next-link-area {
    padding: 6rem 0;
    text-align: center;
    background: #050505;
}

.next-page-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s;
}
.next-page-link:hover { opacity: 0.7; }

.next-page-link .small {
    font-family: var(--f-en);
    font-size: 0.8rem;
    color: var(--c-gold);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.next-page-link .large {
    font-size: 2rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--c-white);
    padding-bottom: 0.5rem;
}
/* =========================================
   MENU PAGE STYLES
   ========================================= */

/* Menu Navigation */
.menu-nav {
    background: var(--c-dark);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 0;
}
.menu-nav__list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}
.menu-nav__list a {
    color: var(--c-gray);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
}
.menu-nav__list a:hover {
    color: var(--c-gold);
}

/* Menu Grid Items */
.menu-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.menu-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

.menu-item__img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.menu-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.menu-item:hover .menu-item__img img {
    transform: scale(1.05);
}

.menu-item__txt {
    padding: 1.5rem;
}
.menu-item__txt h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--c-gold);
    padding-left: 0.8rem;
}
.menu-item__txt .price {
    font-family: var(--f-en);
    font-size: 1.1rem;
    color: var(--c-gold);
    margin-bottom: 0.8rem;
}
.menu-item__txt .desc {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

/* Large Price */
.price-lg {
    font-family: var(--f-en);
    font-size: 2rem;
    color: var(--c-gold);
    margin: 1rem 0;
}

/* Pickup Grid (Single items) */
.pickup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.pickup-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 4px;
}
.pickup-item h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--c-gold);
}
.pickup-item p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Text Menu List */
.text-menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.text-menu-col h5 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--c-gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}
.text-menu-col ul {
    list-style: none;
}
.text-menu-col li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #333;
    padding-bottom: 0.5rem;
}
.text-menu-col li .price {
    color: var(--c-gold);
    font-family: var(--f-en);
}

@media (max-width: 768px) {
    .pickup-grid { grid-template-columns: 1fr; }
    .text-menu-list { grid-template-columns: 1fr; gap: 3rem; }
}
/* =========================================
   BANQUET PAGE STYLES
   ========================================= */

/* Course Example List */
.course-example {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    margin-top: 2rem;
    border-left: 2px solid var(--c-gold);
}
.course-example h5 {
    color: var(--c-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.course-example ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列表示 */
    gap: 0.5rem 2rem;
}
.course-example li {
    position: relative;
    padding-left: 1em;
}
.course-example li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--c-gray);
}

/* Course Detail Box (Definition List) */
.course-detail-box {
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.course-detail-box dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
}
.course-detail-box dt {
    color: var(--c-gold);
    font-weight: 600;
}
.course-detail-box dd {
    color: #ccc;
}

/* Plan Box (Nomihodai) */
.plan-box {
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem;
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
}
.plan-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.drink-list {
    color: #aaa;
    line-height: 1.8;
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .course-example ul { grid-template-columns: 1fr; }
    .course-detail-box dl { grid-template-columns: 1fr; gap: 0.5rem; }
    .course-detail-box dt { border-left: 3px solid var(--c-gold); padding-left: 0.5rem; }
    .plan-box { padding: 2rem 1rem; }
}
/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Phone Area */
.contact-phone-area {
    text-align: center;
    margin-bottom: 4rem;
}
.contact-phone-area p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.phone-link {
    font-family: var(--f-en);
    font-size: 2.5rem;
    color: var(--c-gold);
    display: block;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}
.phone-link:hover { opacity: 0.7; }
.hours {
    font-size: 0.85rem;
    color: #888;
}

/* Divider Line */
.divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 4rem 0;
}

/* Form Area */
.contact-form-area {
    max-width: 700px;
    margin: 0 auto;
}
.form-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
.form-lead {
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

/* Note Box */
.note-box {
    background: rgba(197, 160, 89, 0.1); /* ゴールドの薄い背景 */
    border: 1px solid var(--c-gold);
    padding: 2rem;
    margin-bottom: 3rem;
}
.note-box h4 {
    color: var(--c-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}
.note-box ul {
    padding-left: 1.5rem;
    color: #ddd;
    font-size: 0.9rem;
}
.note-box li {
    margin-bottom: 0.8rem;
}
.note-box strong {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--c-gold);
}

/* Form Elements */
.main-form .form-group {
    margin-bottom: 2rem;
}
.main-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}
.main-form .required {
    background: #cc4444;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.main-form input[type="text"],
.main-form input[type="email"],
.main-form input[type="tel"],
.main-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.main-form input:focus,
.main-form textarea:focus {
    outline: none;
    border-color: var(--c-gold);
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}
.confirm-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #aaa;
}
.submit-btn {
    width: 100%;
    max-width: 300px;
    cursor: pointer;
    border: none;
}

/* Access Info Grid */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 4rem;
}
.access-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.access-dl {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem 0;
}
.access-dl dt { color: var(--c-gold); }
.access-map { height: 300px; position: relative; }

@media (max-width: 768px) {
    .phone-link { font-size: 1.8rem; }
    .access-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================
   MARQUEE ADDITION (Philosophy)
   ========================================= */
.marquee-area {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.marquee-container {
    width: 100%;
    display: flex;
}
.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}
.marquee-item {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    margin-right: 1.5rem;
    overflow: hidden;
    position: relative;
}
.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   INTERIOR PAGE SPECIFIC
   ========================================= */
.art-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
    background: rgba(255,255,255,0.02);
    padding: 2rem;
}
.art-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.art-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.view-360-area {
    margin-top: 6rem;
}
.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .art-section {
        grid-template-columns: 1fr;
        padding: 0;
        background: none;
    }
    .art-img {
        height: 300px;
    }
}