/* ==========================================================================
   【能登前寿司 - カスタム和モダンデザインシステム】
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0a0a0a;             /* 漆黒 */
    --bg-card: #141414;             /* 炭色 */
    --bg-card-hover: #1e1e1e;
    --accent-gold: #cfa960;         /* 金箔色 */
    --accent-gold-hover: #e5c17d;
    --accent-red: #8e1a1a;          /* 漆赤 */
    --text-light: #f5f4f0;          /* 生成り */
    --text-muted: #9c9b98;          /* 灰薄 */
    --border-color: rgba(207, 169, 96, 0.15);
    --border-active: rgba(207, 169, 96, 0.6);
    
    --font-serif: 'Shippori Mincho', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   1. 基本設定
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

/* スクロールバーのカスタマイズ */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* タイポグラフィ */
h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
    font-weight: 600;
}

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

/* 共通コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ボタン共通 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    border: 1px solid var(--accent-gold);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: transparent;
    color: var(--accent-gold);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(207, 169, 96, 0.15);
}

.btn-outline:hover {
    background: rgba(207, 169, 96, 0.1);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* セクションタイトル */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title span {
    display: block;
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title h2 {
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
}

/* ==========================================================================
   2. ヘッダー
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 60px;
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-light);
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    margin-top: 1px;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

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

.header-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    border-color: var(--accent-gold);
}

/* モバイル用ナビゲーション */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

/* ==========================================================================
   3. ヒーローセクション
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: opacity 2s ease-in-out, transform 20s ease-out;
}

.hero-slide.active {
    opacity: 0.55;
    transform: scale(1.15);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(10, 10, 10, 0.15) 50%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-subtitle {
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s forwards 0.5s;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1s forwards 1s;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--text-light);
    animation: scrollDown 2s infinite;
}

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

@keyframes scrollDown {
    0% { top: -20px; }
    100% { top: 50px; }
}

/* ==========================================================================
   4. 美味しさの理由 (Reason)
   ========================================================================== */
.reason-banner {
    padding: 5rem 0;
}

.reason-card {
    position: relative;
    overflow: hidden;
    height: 380px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.reason-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transition: var(--transition-smooth);
}

.reason-card:hover .reason-card-bg {
    transform: scale(1.05);
}

.reason-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.3) 100%);
    display: flex;
    align-items: center;
    padding: 3rem;
}

.reason-card-content {
    max-width: 600px;
}

.reason-card-tag {
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.reason-card-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.reason-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.reason-card-link {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 4px;
    color: var(--accent-gold);
}

.reason-card:hover .reason-card-link {
    color: var(--text-light);
    border-color: var(--text-light);
}

/* ==========================================================================
   5. 店舗一覧セクション
   ========================================================================== */
.shops-section {
    padding: 7rem 0;
    background-color: #0f0f0f;
}

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
}

.filter-btn:hover {
    color: var(--text-light);
    border-color: rgba(207, 169, 96, 0.4);
}

.filter-btn.active {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border-color: var(--accent-gold);
    font-weight: 500;
}

.filter-btn.btn-ticket-filter {
    border-color: rgba(142, 26, 26, 0.3);
    color: #e57373;
}

.filter-btn.btn-ticket-filter.active {
    background-color: var(--accent-red);
    color: var(--text-light);
    border-color: var(--accent-red);
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.shop-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 1;
    transform: scale(1);
}

.shop-card.fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.shop-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-active);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.shop-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.ticket-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-red);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.4rem 0.8rem;
    z-index: 10;
}

.shop-card-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.shop-card:hover .shop-card-title {
    color: var(--accent-gold);
}

.shop-card-icon {
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-fast);
}

.shop-card:hover .shop-card-icon {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   6. 旬の魚カレンダー (Seasonal Calendar)
   ========================================================================== */
.season-section {
    padding: 7rem 0;
    background-color: var(--bg-dark);
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.season-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.season-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-active);
}

.season-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.75rem;
}

.season-name {
    font-size: 1.75rem;
    font-weight: 700;
}

.season-months {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.season-fish {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.season-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 季節カラーのアクセント（枠線など） */
.season-spring { border-top: 3px solid #f48fb1; }
.season-summer { border-top: 3px solid #64b5f6; }
.season-autumn { border-top: 3px solid #ffb74d; }
.season-winter { border-top: 3px solid #b0bec5; }

/* ==========================================================================
   7. モデルコース (Model Courses)
   ========================================================================== */
.course-section {
    padding: 7rem 0;
    background-color: #0f0f0f;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.course-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--accent-gold);
    padding: 2.5rem;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.course-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
}

.course-time-tag {
    font-size: 0.7rem;
    color: var(--accent-gold);
    background-color: rgba(207, 169, 96, 0.1);
    padding: 0.25rem 0.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.course-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.course-timeline {
    position: relative;
    padding-left: 2rem;
}

.course-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    bottom: 5px;
    width: 1px;
    background-color: rgba(207, 169, 96, 0.3);
}

.course-step {
    position: relative;
    margin-bottom: 1.5rem;
}

.course-step:last-child {
    margin-bottom: 0;
}

.course-step-dot {
    position: absolute;
    top: 5px;
    left: -28px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    border: 2px solid var(--bg-card);
    z-index: 2;
}

.course-step-time {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.course-step-text {
    font-size: 0.9rem;
    font-weight: 400;
}

/* ==========================================================================
   8. FAQ セクション
   ========================================================================== */
.faq-section {
    padding: 7rem 0;
    background-color: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--bg-card);
    border-left: 4px solid var(--border-color);
    padding: 2rem;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-left-color: var(--accent-gold);
}

.faq-question {
    display: flex;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.faq-q-prefix {
    color: var(--accent-gold);
    font-family: var(--font-serif);
    margin-right: 0.75rem;
    font-weight: 700;
}

.faq-answer {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 1.75rem;
}

/* ==========================================================================
   9. アクセス情報 (Access)
   ========================================================================== */
.access-section {
    padding: 7rem 0;
    background-color: #0f0f0f;
    border-top: 1px solid var(--border-color);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.access-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.access-icon {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.access-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.access-route {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 500;
}

.access-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.access-link {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(207, 169, 96, 0.3);
    padding-bottom: 2px;
}

.access-link:hover {
    color: var(--text-light);
    border-bottom-color: var(--text-light);
}



/* ==========================================================================
   11. モーダル (Modals)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: row;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    color: var(--text-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
}

/* モーダルの左側: ビジュアルギャラリー */
.modal-visual {
    width: 55%;
    position: relative;
    background-color: #000;
    overflow: hidden;
    min-height: 350px;
}

.modal-visual-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    filter: blur(20px);
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease;
}

.modal-visual-main {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
}

.modal-visual-main img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.modal-visual-title-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(8px);
    border-left: 4px solid var(--accent-gold);
    padding: 1rem 1.5rem;
    z-index: 3;
    max-width: 80%;
}

.modal-visual-title-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.modal-visual-title-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* モーダルの右側: 情報セクション */
.modal-info {
    width: 45%;
    padding: 3rem;
    overflow-y: auto;
    border-left: 1px solid var(--border-color);
}

/* 詳細ギャラリーのサムネイル */
.modal-gallery-label {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.25rem;
    margin-bottom: 1rem;
    display: block;
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.modal-gallery-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.modal-gallery-thumb.active {
    border-color: var(--accent-gold);
}

.modal-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.modal-gallery-thumb:hover img {
    transform: scale(1.05);
}

/* 店舗基本情報リスト */
.modal-info-list {
    margin-bottom: 2rem;
}

.modal-info-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.modal-info-item-icon {
    color: var(--accent-gold);
    margin-right: 0.85rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.modal-info-item-content {
    flex-grow: 1;
}

.modal-info-item-label {
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.modal-map-container {
    height: 200px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    overflow: hidden;
}

.modal-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* シェアボタンなど */
.modal-actions {
    display: flex;
    gap: 1rem;
}

.modal-action-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
}

/* プレミアムチケットエリア */
.modal-ticket-box {
    margin-top: 2rem;
    background: linear-gradient(135deg, #1f1414 0%, #141414 100%);
    border: 1px solid rgba(142, 26, 26, 0.3);
    padding: 1.5rem;
    text-align: center;
}

.modal-ticket-box p {
    font-size: 0.65rem;
    color: #e57373;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-ticket-box h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.modal-ticket-btn {
    width: 100%;
    border-color: var(--accent-red);
    color: #f5f4f0;
    background-color: var(--accent-red);
}

.modal-ticket-btn:hover {
    background-color: #a32222;
    border-color: #a32222;
}

/* 理由モーダル・チケットモーダルなどの汎用レイアウト */
.modal-container.modal-text-layout {
    display: block;
    max-width: 800px;
    padding: 3rem;
}

.modal-text-layout .modal-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.modal-text-layout .modal-body {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* 理由モーダルの中身 */
.modal-reason-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.modal-reason-item:last-child {
    margin-bottom: 0;
}

.modal-reason-image {
    width: 45%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.modal-reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-reason-content {
    width: 55%;
}

.modal-reason-content-full {
    width: 100%;
    text-align: center;
}

.modal-reason-eng {
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 0.25em;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.modal-reason-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.modal-reason-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: #dfba73;
    margin-bottom: 0.75rem;
}

.modal-reason-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    white-space: pre-line;
}

.modal-reason-btn-box {
    margin-top: 3.5rem;
    text-align: center;
}

/* チケットモーダルのレイアウト */
.modal-container.modal-split-layout {
    max-width: 850px;
}

.modal-split-visual {
    width: 50%;
}

.modal-split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-split-info {
    width: 50%;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-split-info .modal-reason-eng {
    margin-bottom: 1rem;
}

.modal-split-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.modal-split-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

/* プライバシーポリシー */
.privacy-modal-body h4 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-modal-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.privacy-modal-body a {
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(207, 169, 96, 0.3);
}

.privacy-modal-close-box {
    margin-top: 2.5rem;
    text-align: center;
}

/* ==========================================================================
   12. フッター
   ========================================================================== */
footer {
    background-color: #050505;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.copyright {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   13. レスポンシブ対応
   ========================================================================== */
@media (max-width: 992px) {
    .modal-container {
        flex-direction: column;
        max-height: 95vh;
    }
    
    .modal-visual {
        width: 100%;
        height: 300px;
        min-height: auto;
    }
    
    .modal-visual-main {
        padding: 1rem;
    }
    
    .modal-visual-main img {
        max-height: 220px;
    }
    
    .modal-visual-title-card {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .modal-visual-title-card h3 {
        font-size: 1.35rem;
    }
    
    .modal-info {
        width: 100%;
        padding: 2rem;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
    
    .modal-container.modal-split-layout {
        flex-direction: column;
        max-width: 500px;
    }
    
    .modal-split-visual {
        width: 100%;
        height: 220px;
    }
    
    .modal-split-info {
        width: 100%;
        padding: 2rem;
    }
    
    .modal-reason-item {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .modal-reason-image {
        width: 100%;
    }
    
    .modal-reason-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header {
        height: 60px;
    }
    
    header.scrolled {
        height: 50px;
    }
    
    nav {
        display: none; /* シンプルにするためモバイルヘッダーはすっきり */
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .reason-card {
        height: 480px;
    }
    
    .reason-card-overlay {
        padding: 1.5rem;
        background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 100%);
        align-items: flex-end;
    }
    
    .reason-card-title {
        font-size: 1.5rem;
    }
    
    .reason-card-desc {
        font-size: 0.85rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .modal-container.modal-text-layout {
        padding: 2rem 1.5rem;
    }
    
    .modal-text-layout .modal-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}


