/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-surface: #141414;

    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;

    --gold: #d4af37;
    --gold-dim: rgba(212, 175, 55, 0.4);
    --gold-hover: #f3e5ab;

    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', serif;

    --transition-fast: 0.3s ease;
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hide default cursor only when custom cursor script is active */
body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor .menu-item {
    cursor: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   Loading Screen
   ========================================================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    animation: loaderFill 1.5s ease-in-out forwards;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes loaderFill {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* ==========================================================================
   Scroll Progress Bar
   ========================================================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #ff1493, var(--gold));
    z-index: 10001;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   Text Reveal Animation
   ========================================================================== */
.char-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(30deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.char-reveal.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* ==========================================================================
   Parallax Hero Enhancement
   ========================================================================== */
.hero {
    overflow: hidden;
}

.hero-bg img {
    will-change: transform;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, .logo {
    font-family: var(--font-serif);
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
}

.section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.text-center {
    text-align: center;
}

.text-center .section-title {
    justify-content: center;
}

.text-center .section-title::before,
.text-center .section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.mt-xl {
    margin-top: 4rem;
}

/* --- Business Status Indicator (Neon Style) --- */
.status-badge-rich {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.8rem;
    border: 2px solid transparent;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    letter-spacing: 0.15em;
    overflow: visible;
}

/* 営業中（OPEN）のスタイル */
.status-open {
    color: #00ffcc;
    border-color: rgba(0, 255, 204, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.15), inset 0 0 15px rgba(0, 255, 204, 0.1);
    animation: neon-flicker-open 4s infinite;
}

/* 帰りました（CLOSED）のスタイル */
.status-closed {
    color: #ff3366;
    border-color: rgba(255, 51, 102, 0.3);
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.15), inset 0 0 15px rgba(255, 51, 102, 0.1);
}

/* 鼓動する光の輪（パルス） */
.status-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.status-open .status-pulse {
    box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.4);
    animation: status-pulse-anim-open 2.5s infinite;
}

.status-closed .status-pulse {
    box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.3);
    animation: status-pulse-anim-closed 4s infinite;
}

@keyframes status-pulse-anim-open {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.5); }
    70% { box-shadow: 0 0 0 30px rgba(0, 255, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 204, 0); }
}

/* --- Business Status Indicator (Classic Neon) --- */
.status-badge-container {
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.6rem;
    border: 2px solid currentColor;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    letter-spacing: 0.1em;
}

.status-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: currentColor;
    box-shadow: 0 0 15px currentColor;
    transition: all 0.4s ease;
}

/* ON: やる気満々（Green） */
.status-on {
    color: #00ffcc;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.2);
}
.status-on .status-dot {
    animation: status-blink 1.5s infinite;
}

.status-badge.status-dead { border-color: #ff0000; color: #ff0000; box-shadow: 0 0 15px rgba(255, 0, 0, 0.6); }
.status-badge.status-dead .status-dot { background-color: #ff0000; box-shadow: 0 0 10px #ff0000; }

/* OFF: 今日はお休み（Red） */
.status-off {
    color: #ff3366;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.15);
}

@keyframes status-blink {
    0%, 100% { opacity: 1; filter: brightness(1.2) scale(1.1); }
    50% { opacity: 0.4; filter: brightness(0.8) scale(1); }
}

#biz-status-text {
    text-shadow: 0 0 10px currentColor;
}

/* 文字のネオン発光 */
.neon-glow-text {
    text-shadow: 0 0 8px currentColor, 0 0 15px currentColor;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background-color: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: #000;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: background-color var(--transition-fast), padding var(--transition-fast);
}

.header.scrolled {
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    position: absolute;
    transition: var(--transition-fast);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }

.mobile-menu-btn.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.9));
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Optimized Neon Text Gimmick */
.neon-text {
    text-shadow:
        0 0 5px #fff,
        0 0 15px rgba(255, 20, 147, 1),
        0 0 30px rgba(255, 20, 147, 0.8),
        0 0 50px rgba(255, 20, 147, 0.4);
    animation: neonFlicker 3s infinite alternate;
    color: #fff;
    will-change: text-shadow, opacity;
}

/* --- Business Status Indicator (Original Style Restore) --- */
.status-badge-container {
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    border: 2px solid currentColor;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.status-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: currentColor;
    box-shadow: 0 0 12px currentColor;
}

/* Color Classes (Adaptive) */
.status-green { color: #00ffcc; }
.status-green .status-dot { animation: status-blink-live 1.5s infinite; }

.status-amber { color: #ffcc00; }
.status-purple { color: #cc00ff; }
.status-red { color: #ff3366; }
.status-dead { color: #880000; box-shadow: none; opacity: 0.6; } /* 消灯に近い赤 */

@keyframes status-blink-live {
    0%, 100% { opacity: 1; transform: scale(1.1); }
    50% { opacity: 0.5; transform: scale(1); }
}

#biz-status-text {
    letter-spacing: 0.05em;
    text-transform: none; /* 自由記述なので大文字強制ナシ */
}

@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 5px #fff,
            0 0 15px rgba(255, 20, 147, 1),
            0 0 30px rgba(255, 20, 147, 0.8),
            0 0 50px rgba(255, 20, 147, 0.4);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: 0 0 5px rgba(255, 20, 147, 0.5);
        opacity: 0.8;
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background-color: var(--text-primary);
    overflow: hidden;
    position: relative;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    animation: scrollLine 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.concept {
    /* Assuming .section already has relative or we just make sure everything is clean */
    position: relative;
    overflow: hidden;
    background-color: transparent;
    /* allow video to show */
}

.bg-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-video-wrapper video,
.bg-video-wrapper iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85; /* さらに明るく */
    pointer-events: none;
}

/* 膜（オーバーレイ）をより薄く調整 */
.bg-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* 濃すぎない程度に */
    z-index: 1;
    pointer-events: none;
}

#pvVideo {
    opacity: 0.9;
}

.video-clear {
    opacity: 1 !important;
}

.video-clear-parent::after {
    background: rgba(0, 0, 0, 0.1) !important;
}

/* Ensure content sits above video */
.concept .container {
    position: relative;
    z-index: 2;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.concept-headline {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.concept-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.attention-text {
    font-size: 0.85rem;
    color: var(--gold);
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
    margin-top: 2rem;
    opacity: 0.8;
}

.concept-image .image-wrapper {
    position: relative;
    padding-bottom: 100%;
    /* square aspect ratio */
    overflow: hidden;
}

.concept-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.concept-grid-reverse {
    direction: rtl;
}

#concept, #staff {
    background-color: transparent !important;
}

/* ==========================================================================
   CSS Cyber Animation Backgrounds (High Performance)
   ========================================================================== */

/* 1. Cyber Network / Neon Gradient background */
.css-bg-cyber-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 1; /* section内で確実に最背面に */
    pointer-events: none;
    background: linear-gradient(45deg, #0f0c29, #302b63, #24243e, #0f0c29);
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 2. Digital Matrix Noise / Dark grid */
.css-bg-digital-noise {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    background-color: #050505;
    background-image: 
        radial-gradient(ellipse at center, rgba(10, 10, 15, 0) 0%, rgba(0, 0, 0, 0.8) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 20, 147, 0.05) 2px, rgba(255, 20, 147, 0.05) 4px);
    background-size: 100% 100%, 100% 4px;
}

/* 3. Global Scanlines (CRT effect) overlay */
.scanlines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.25));
    background-size: 100% 4px;
}

/* 文字の裏でアニメが確実に見えるように container は z-index:2 以上に */
.css-bg-cyber-gradient ~ .container,
.css-bg-cyber-gradient ~ div,
.css-bg-digital-noise ~ .container,
.css-bg-digital-noise ~ div {
    position: relative;
    z-index: 3;
}

.concept-grid-reverse>* {
    direction: ltr;
}



/* ==========================================================================
   Menu Section
   ========================================================================== */


.section-desc {
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: var(--bg-surface);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    display: block; /* PC・スマホ共に完全なブロック要素に強制（グリッドによる引き伸ばし回避） */
    overflow: hidden;
}

.menu-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    /* Transform handled by JS for tilt, fallback below */
}

.menu-img-wrap {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* 完全に正方形に固定 */
    overflow: hidden;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-item:hover img {
    transform: scale(1.05);
}

.menu-info {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 1.5rem;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto 1fr auto; /* 上段・中段（余白全吸収）・下段 */
    align-items: center; 
    justify-items: center; /* 横方向のセンター配置 */
    text-align: center;
    overflow-y: auto;
}

.menu-name {
    font-size: 1.5rem;
    margin-bottom: 0; /* マージン不要（グリッドで制御） */
    color: var(--gold);
}

.menu-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0; /* マージン不要（完全な中央へ） */
    /* ガタガタに見えるのを防ぐため、テキスト自体は左揃えにしつつ、ブロックごと中央に配置する */
    display: inline-block;
    text-align: left;
    width: fit-content;
}

.menu-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 0;
}

/* スマホ表示用：画像と各種テキストブロックを完全な「正方形（1:1）」にする */
@media (max-width: 767px) {
    .menu-item {
        /* グリッドの自動引き伸ばし（他要素に高さを合わせる現象）を防止 */
        display: block !important;
        width: 100% !important;
        overflow: hidden !important;
        height: auto !important;
    }
    
    /* 画面幅（100vw）からコンテナの左右余白（約4rem）を引いた値を高さに強制することで、文字量に左右されない「完全な正方形」を作る */
    .menu-img-wrap {
        width: 100% !important;
        height: calc(100vw - 4rem) !important;
        flex: none !important;
        aspect-ratio: auto !important;
    }

    .menu-info {
        width: 100% !important;
        height: calc(100vw - 4rem) !important;
        display: grid !important;
        grid-template-rows: auto 1fr auto !important;
        align-items: center !important;
        justify-items: center !important;
        padding: 1.5rem !important;
        overflow-y: auto !important;
        aspect-ratio: auto !important;
        box-sizing: border-box !important;
    }
    
    /* テキストブロックを垂直方向（上下）の中央に絶対配置しつつ、文字自体はガタつかないよう左揃え */
    .menu-desc {
        text-align: left !important;
        width: fit-content !important;
        margin: 0 !important;
    }

    /* PV(動画)セクションもスマホでは完全な正方形にする */
    .pv-section {
        height: auto !important;
        min-height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }
}

/* ==========================================================================
   Full Width Neon CTA
   ========================================================================== */
.neon-cta {
    position: relative;
    padding: 6rem 0;
    /* slightly less tall so it's a tight clean band */
    background-image: url('assets/btn-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* PC版（768px以上）ではパララックスにして見切れ・ズレを防ぐ */
@media (min-width: 768px) {
    .neon-cta {
        background-attachment: fixed;
    }
}

.neon-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Darker so the neon doesn't look too chaotic behind the text */
    z-index: 1;
}

/* ==========================================================================
   Access Section
   ========================================================================== */
.access-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.info-value {
    color: var(--text-secondary);
    font-weight: 300;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor-dot,
.cursor-outline {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* The script will add this class if it matches the environment */
body.has-custom-cursor .cursor-dot,
body.has-custom-cursor .cursor-outline {
    display: block !important;
    z-index: 100000 !important;
    opacity: 1 !important;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #d4af37;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    background-color: var(--gold-dim);
    border-color: transparent;
}

/* ==========================================================================
   Glitch Title Effect
   ========================================================================== */
.glitch-title {
    position: relative;
    color: var(--gold);
    /* Make text scale properly and large */
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.1em;
    animation: glitch-anim 3s infinite;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-title::before {
    left: 2px;
    text-shadow: -2px 0 #ff1493;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch-title::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-3 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {

    0%,
    14%,
    16%,
    100% {
        transform: skew(0deg);
    }

    15% {
        transform: skew(-5deg);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    20% {
        clip: rect(27px, 9999px, 85px, 0);
    }

    40% {
        clip: rect(44px, 9999px, 12px, 0);
    }

    60% {
        clip: rect(110px, 9999px, 55px, 0);
    }

    80% {
        clip: rect(14px, 9999px, 140px, 0);
    }

    100% {
        clip: rect(89px, 9999px, 33px, 0);
    }
}

@keyframes glitch-anim-3 {
    0% {
        clip: rect(12px, 9999px, 55px, 0);
    }

    20% {
        clip: rect(85px, 9999px, 110px, 0);
    }

    40% {
        clip: rect(27px, 9999px, 44px, 0);
    }

    60% {
        clip: rect(100px, 9999px, 89px, 0);
    }

    80% {
        clip: rect(55px, 9999px, 14px, 0);
    }

    100% {
        clip: rect(140px, 9999px, 65px, 0);
    }
}

/* ==========================================================================
   Hover Glow Effects for Lists & Menus
   ========================================================================== */
.menu-row,
.feature-list li {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.menu-row::before,
.feature-list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 105%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: 8px;
    pointer-events: none;
}

.menu-row:hover,
.feature-list li:hover {
    transform: translateX(10px);
}

.menu-row:hover::before,
.feature-list li:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.menu-row:hover .item-name,
.feature-list li:hover {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

.delay-5 {
    transition-delay: 0.5s !important;
}

.delay-6 {
    transition-delay: 0.6s !important;
}



/* ==========================================================================
   Reservation Form (Facade)
   ========================================================================== */
.reservation-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(17, 17, 17, 0.8);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 1rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(212, 175, 55, 0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all var(--transition-fast);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    margin-top: 2rem;
    border-radius: 4px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 900px) {

    .concept-grid,
    .access-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .concept-image .image-wrapper {
        padding-bottom: 100%;
    }
}

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

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-darker);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right var(--transition-slow);
        z-index: 100;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.8rem);
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}