/* ==========================================================================
   鮨フランチャイズLP - 統一スタイルシート (和モダンデザイン)
   ========================================================================== */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* === 和モダンカラーシステム === */
    --c-bg: #F8F6F0;              /* 和紙背景 */
    --c-surface: #FFFFFF;         /* カード背景 */
    --c-surface-2: #F0EDE5;       /* セカンダリ背景 */
    --c-ink: #2C2922;             /* 墨色テキスト */
    --c-ink-87: rgba(44,41,34,.87); /* ライト墨色 */
    --c-ink-75: rgba(44,41,34,.75); /* より薄い墨色 */

    /* アクセントカラー */
    --c-accent: #8B2635;          /* 深紅 */
    --c-accent-d: #6B1F2A;        /* ダーク深紅 */
    --c-gold: #D4AF37;            /* 金色 */
    --c-gold-l: #E6C547;          /* ライト金色 */
    --c-gold-d: #B8941F;          /* ダーク金色 */

    /* 境界線・ライン */
    --c-line: #E0DDD5;            /* 境界線 */
    --c-line-2: #D4D1C9;          /* セカンダリ境界線 */
    --c-line-3: #C8C5BD;          /* ターシャリ境界線 */

    /* グラデーション */
    --grad-gold: linear-gradient(135deg, #B8941F 0%, #D4AF37 50%, #E6C547 100%);
    --grad-accent: linear-gradient(135deg, #6B1F2A 0%, #8B2635 50%, #A13344 100%);
    --grad-surface: linear-gradient(145deg, #F0EDE5 0%, #FFFFFF 100%);
    --ov-hero: linear-gradient(180deg, rgba(18,16,12,0.75) 0%, rgba(18,16,12,0.48) 55%, rgba(18,16,12,0.35) 100%);

    /* スペーシング */
    --sp-4: 4px; --sp-8: 8px; --sp-12: 12px; --sp-16: 16px;
    --sp-20: 20px; --sp-24: 24px; --sp-32: 32px; --sp-40: 40px;
    --sp-48: 48px; --sp-64: 64px; --sp-80: 80px; --sp-96: 96px; --sp-128: 128px;

    /* 角丸・陰影 */
    --r-card: 12px; --r-thumb: 16px; --r-btn: 8px;
    --sh-soft: 0 4px 12px rgba(44,41,34,.1);
    --sh-card: 0 6px 20px rgba(44,41,34,.1);
    --sh-deep: 0 12px 40px rgba(44,41,34,.15);

    /* タイポグラフィ - エレガントヒエラルキー */
    --h1: 64px; --h2: 48px; --h3: 30px; --h4: 26px;
    --large: 24px; --base-pc: 18px; --base-sp: 16px; --small: 14px; --xs: 12px;

    /* スマホ時タイポグラフィ調整 */
    --h1-sp: 32px; --h2-sp: 28px; --h3-sp: 24px; --h4-sp: 20px;
    --large-sp: 18px; --text-base-sp: 15px;

    /* ブレークポイント */
    --bp-tab: 768px; --bp-pc: 1024px;
}

/* Base Styles */
html { scroll-behavior: smooth; }

body {
    background: var(--c-bg);
    color: var(--c-ink);
    font-family: 'Noto Serif JP', 'Noto Sans JP', system-ui, serif;
    font-size: var(--text-base-sp);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "palt" 1, "kern" 1;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    body { font-size: var(--base-pc); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    color: var(--c-ink);
    line-height: 1.2;
    margin: 0;
    font-feature-settings: "palt" 1, "kern" 1;
    letter-spacing: 0.03em;
}

h1 {
    font-size: var(--h1);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 4px rgba(44, 41, 34, 0.08);
}

h2 {
    font-size: var(--h2);
    font-weight: 400;
    letter-spacing: 0.05em;
}

h3 {
    font-size: var(--h3);
    font-weight: 500;
    letter-spacing: 0.04em;
}

h4 {
    font-size: var(--h4);
    font-weight: 600;
    letter-spacing: 0.03em;
}

@media (max-width: 767px) {
    h1 { font-size: 40px; letter-spacing: 0.05em; }
    h2 { font-size: 32px; }
    h3 { font-size: 28px; }
    h4 { font-size: 24px; }
}

p {
    line-height: 1.7;
    letter-spacing: .005em;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-20);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--sp-40); }
}

/* Section Spacing - 情報設計最適化 */
section {
    padding: var(--sp-32) 0;
}

@media (min-width: 768px) {
    section {
        padding: var(--sp-48) 0;
    }
}

/* 重要セクションの余白最適化 */
.hero {
    padding: 0;
    min-height: 85vh; /* 短縮 */
}

.fc-overview {
    padding: var(--sp-32) 0 var(--sp-48); /* 概要セクションを短縮 */
    background: var(--c-surface-2);
    border-top: 4px solid var(--c-gold);
}

.message-compact {
    padding: var(--sp-32) 0; /* 代表メッセージを短縮 */
}

/* === COMPONENTS === */

/* Hero Badge */
.hero-badge {
    background: var(--grad-gold);
    color: var(--c-ink);
    padding: var(--sp-8) var(--sp-20);
    border-radius: var(--r-btn);
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--sp-20);
    display: inline-block;
    box-shadow: var(--sh-soft);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    gap: var(--sp-8);
    align-items: center;
    justify-content: center;
    padding: var(--sp-16) var(--sp-32);
    border-radius: var(--r-btn);
    font-weight: 700;
    transition: transform .3s, box-shadow .3s, background .3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--grad-accent);
    color: #fff;
    border: 1px solid rgba(212,175,55,.2);
    box-shadow: var(--sh-card);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--sh-deep);
}

.btn-secondary {
    background: var(--c-surface);
    border: 1.5px solid var(--c-line);
    color: var(--c-ink);
    box-shadow: var(--sh-soft);
}

.btn-secondary:hover {
    background: var(--c-surface-2);
    border-color: var(--c-gold);
    transform: translateY(-2px);
}

.btn-large {
    padding: var(--sp-16) var(--sp-32);
    font-size: var(--base-sp);
}

@media (min-width: 768px) {
    .btn-large {
        padding: var(--sp-20) var(--sp-40);
        font-size: var(--base-pc);
    }
}

.btn-small {
    padding: var(--sp-8) var(--sp-16);
    font-weight: 600;
    font-size: var(--small);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--c-line-2);
    color: var(--c-ink);
    box-shadow: var(--sh-soft);
}

.btn-outline:hover {
    border-color: var(--c-gold);
    color: var(--c-accent);
    transform: translateY(-2px);
}

.toast-stack {
    position: fixed;
    top: var(--sp-32);
    right: var(--sp-32);
    display: grid;
    gap: var(--sp-16);
    z-index: 9999;
}

@media (max-width: 600px) {
    .toast-stack {
        top: var(--sp-16);
        left: var(--sp-16);
        right: var(--sp-16);
    }
}

.feedback-toast {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--sp-12);
    align-items: flex-start;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 246, 240, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: var(--sp-16) var(--sp-20);
    color: var(--c-ink-87);
    box-shadow: 0 18px 42px rgba(44, 41, 34, 0.16);
    min-width: 280px;
    max-width: 360px;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .4s ease, transform .4s ease;
    cursor: pointer;
}

.feedback-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feedback-toast--success {
    border-color: rgba(34, 197, 94, 0.28);
    background: linear-gradient(135deg, rgba(236, 252, 243, 0.98) 0%, rgba(245, 255, 250, 0.96) 100%);
}

.feedback-toast--error {
    border-color: rgba(210, 66, 50, 0.35);
    background: linear-gradient(135deg, rgba(255, 244, 242, 0.98) 0%, rgba(255, 245, 240, 0.96) 100%);
}

.feedback-toast__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    background: rgba(212, 175, 55, 0.18);
    color: var(--c-accent);
}

.feedback-toast--success .feedback-toast__icon {
    background: rgba(22, 163, 74, 0.16);
    color: #0f8a3c;
}

.feedback-toast--error .feedback-toast__icon {
    background: rgba(210, 66, 50, 0.18);
    color: #b21c1c;
}

.feedback-toast__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feedback-toast__title {
    font-weight: 700;
    font-size: var(--small);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feedback-toast__message {
    font-size: var(--small);
    line-height: 1.6;
    white-space: pre-line;
}

/* Cards */
.card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-card);
    box-shadow: var(--sh-card);
}

/* Section Titles - エレガントヒエラルキー */
.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: var(--h2);
    font-weight: 300;
    color: var(--c-ink);
    text-align: center;
    margin-bottom: var(--sp-32);
    position: relative;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(44, 41, 34, 0.05);
}

@media (min-width: 768px) {
    .section-title {
        margin-bottom: var(--sp-48);
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: var(--h2-sp);
        margin-bottom: var(--sp-24);
        letter-spacing: 0.05em;
    }
}

.section-title.accent-bar::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
    border-radius: 1px;
}

.section-title.accent-bar::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--c-gold);
    border-radius: 1px;
}

.section-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: var(--h3);
    font-weight: 400;
    color: var(--c-ink);
    text-align: center;
    margin-bottom: var(--sp-32);
    letter-spacing: 0.05em;
    position: relative;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .section-subtitle {
        font-size: 24px;
    }
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--c-accent);
    opacity: 0.6;
}

.section-note {
    text-align: center;
    color: var(--c-ink-75);
    font-size: var(--small);
    margin-top: var(--sp-8);
    margin-bottom: var(--sp-24);
    line-height: 1.6;
}

/* 本文のコントラスト向上 */
p {
    line-height: 1.75; /* より読みやすく */
    letter-spacing: .01em;
    color: var(--c-ink-87); /* より濃く */
    margin-bottom: var(--sp-16);
}

/* 強調テキスト */
strong {
    color: var(--c-accent);
    font-weight: 700;
}

/* リード文 */
.section-description, .market-lead, .investment-lead, .materials-lead {
    font-size: var(--base-pc);
    color: var(--c-ink);
    max-width: 800px;
    margin: 0 auto var(--sp-32);
    line-height: 1.8;
    font-weight: 500;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(255,252,244,0.95) 0%, rgba(248,246,240,0.95) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212,175,55,0.18);
    box-shadow: 0 12px 32px rgba(44,41,34,0.08);
    z-index: 1000;
    transition: background .3s, box-shadow .3s;
}

.navbar {
    padding: var(--sp-12) 0; /* よりコンパクト */
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--sp-16);
}

@media (max-width: 768px) {
    .nav-brand {
        gap: var(--sp-12);
    }
}

.nav-brand .logo {
    height: 25px;
    width: auto;
}

.nav-tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(12px, 2.6vw, 16px);
    color: var(--c-ink);
    letter-spacing: 0.12em;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    margin: 0;
}

@media (max-width: 420px) {
    .nav-tagline {
        white-space: normal;
        text-align: left;
        line-height: 1.4;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-4);
    }
}

.nav-tagline__accent {
    font-weight: 900;
    letter-spacing: 0.24em;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--sp-32);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ov-hero);
    z-index: -1;
}

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

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-32);
    width: 100%;
    max-width: 1000px;
    padding: var(--sp-40) var(--sp-20);
}

@media (min-width: 1024px) {
    .hero-layout {
        grid-template-columns: 2fr 1fr;
        align-items: start;
        gap: var(--sp-64);
    }
}

.hero .container {
    width: 100%;
    padding: 0 var(--sp-24);
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero .container {
        padding: 0 var(--sp-56);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(92vw, 1120px);
    margin: 0 auto;
    padding: var(--sp-20) var(--sp-24);
    border-radius: 28px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.58), rgba(252,250,246,0.38));
    box-shadow: 0 24px 60px rgba(18, 16, 12, 0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(212,175,55,0.12);
}

@media (min-width: 768px) {
    .hero-content {
        padding: clamp(28px, 5vw, 72px) clamp(28px, 6vw, 88px);
    }
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        padding: clamp(44px, 6vw, 110px) clamp(40px, 5vw, 104px);
    }
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(34px, 7vw, 70px);
    font-weight: 700;
    color: var(--c-ink);
    margin: var(--sp-24) 0 var(--sp-32);
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

@media (min-width: 768px) {
    .hero-title {
        margin: var(--sp-32) 0 var(--sp-40);
    }
}

/* スマホ時の改行制御 */
.sp-br {
    display: inline;
}

@media (min-width: 480px) {
    .sp-br {
        display: none;
    }
}

.hero-title em {
    font-style: normal;
    color: var(--c-accent);
}

.hero-description {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(16px, 4vw, 26px);
    font-weight: 500;
    color: rgba(44,41,34,0.92);
    margin-bottom: var(--sp-24);
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-12);
}

@media (min-width: 1024px) {
    .hero-cta {
        justify-content: flex-start;
        gap: var(--sp-20);
    }
}

.hero-cta .btn {
    box-shadow: 0 12px 28px rgba(139, 38, 53, 0.28);
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(139, 38, 53, 0.32);
}

.hero-badges {
    position: absolute;
    top: var(--sp-24);
    right: var(--sp-24);
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
    z-index: 2;
}

.badge {
    background: rgba(248,246,240,.9);
    color: var(--c-ink);
    padding: var(--sp-8) var(--sp-12);
    border-radius: var(--r-btn);
    font-size: var(--xs);
    font-weight: 600;
    box-shadow: var(--sh-soft);
    backdrop-filter: blur(10px);
}

.hero-disclaimer {
    position: absolute;
    bottom: var(--sp-24);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: var(--xs);
    color: var(--c-ink-75);
    max-width: 600px;
    padding: 0 var(--sp-20);
}

/* === FC OVERVIEW === */
.fc-overview {
    background: var(--c-surface-2);
    border-top: 4px solid var(--c-gold);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-20);
    margin-top: var(--sp-24);
}

@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--sp-24);
    }
}

.overview-item {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-card);
    padding: var(--sp-24) var(--sp-20);
    box-shadow: var(--sh-soft);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
    height: 100%;
}

.overview-item h3 {
    color: var(--c-accent);
    font-size: var(--h4);
    font-weight: 700;
    line-height: 1.2;
}

.overview-item h3 .overview-accent {
    display: block;
    margin-top: var(--sp-4);
    font-size: clamp(24px, 2.4vw, 30px);
    letter-spacing: 0.08em;
}

.overview-item p {
    color: var(--c-ink);
    font-size: var(--base-sp);
    line-height: 1.6;
    font-weight: 500;
    flex: 1 0 auto;
    min-height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

/* === MESSAGE COMPACT === */
.message-compact {
    background: var(--c-surface);
}

.message-compact .message-card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-card);
    padding: var(--sp-24); /* 少しコンパクト */
    box-shadow: var(--sh-card);
    display: flex;
    gap: var(--sp-24);
    align-items: center;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .message-compact .message-card {
        flex-direction: row;
        padding: var(--sp-32);
        gap: var(--sp-32);
    }
}

.message-compact .message-text {
    flex: 1;
}

.message-compact blockquote {
    font-style: italic;
    position: relative;
    padding-left: var(--sp-20);
    font-size: var(--base-pc);
}

.message-compact blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--c-gold);
    font-size: var(--h2);
    font-weight: 700;
    line-height: 1;
}

.message-compact cite {
    display: block;
    margin-top: var(--sp-12);
    font-size: var(--small);
    color: var(--c-ink-75);
    font-style: normal;
}

.message-compact .message-photo {
    flex-shrink: 0;
}

.message-compact .message-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--r-thumb);
    border: 2px solid var(--c-gold);
}

/* === INVESTMENT TEASER === */
.investment-teaser {
    background: var(--c-surface);
    border: 2px solid var(--c-gold);
    border-radius: var(--r-card);
    padding: var(--sp-32);
    margin: var(--sp-32) auto;
    text-align: center;
    box-shadow: var(--sh-card);
    position: relative;
    max-width: 900px;
}

.investment-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-gold);
    border-radius: var(--r-card) var(--r-card) 0 0;
}

.investment-summary h3 {
    font-size: var(--h3);
    color: var(--c-accent);
    margin-bottom: var(--sp-32);
}

.cost-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-24);
    margin-bottom: var(--sp-40);
}

.cost-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-12);
}

.cost-label {
    font-weight: 600;
    color: var(--c-ink);
    font-size: var(--h4);
}

.cost-blur {
    position: relative;
    background: linear-gradient(45deg, var(--c-line) 0%, var(--c-line-2) 50%, var(--c-line) 100%);
    padding: var(--sp-16) var(--sp-24);
    border-radius: var(--r-btn);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-8);
    border: 1px solid var(--c-line-2);
}

.blur-text {
    color: var(--c-ink-75);
    font-weight: 700;
    font-size: var(--base-sp);
    filter: blur(3px);
    user-select: none;
    letter-spacing: 2px;
}

.reveal-cta {
    background: var(--grad-gold);
    color: var(--c-ink);
    padding: var(--sp-4) var(--sp-12);
    border-radius: 4px;
    font-size: var(--xs);
    font-weight: 700;
}

.investment-reason {
    background: var(--c-surface-2);
    border: 1px solid var(--c-line);
    border-radius: var(--r-card);
    padding: var(--sp-24);
    text-align: left;
}

.investment-reason h4 {
    color: var(--c-accent);
    margin-bottom: var(--sp-16);
    font-size: var(--base-pc);
}

.investment-reason ul {
    list-style: none;
    padding: 0;
}

.investment-reason li {
    position: relative;
    padding-left: var(--sp-20);
    margin-bottom: var(--sp-8);
    color: var(--c-ink-87);
    line-height: 1.6;
}

.investment-reason li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--c-gold);
    font-weight: 700;
}

/* === UTILITIES === */
.tnum {
    font-variant-numeric: tabular-nums;
    -webkit-font-feature-settings: "tnum" 1;
    font-feature-settings: "tnum" 1;
}

.u-text-gold {
    color: var(--c-gold);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(184,148,31,0.2);
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.note, .disclaimer {
    margin-top: var(--sp-12);
    color: var(--c-ink-75);
    font-size: var(--xs);
    line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
    .hero-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: var(--sp-24);
    }

    .message-compact blockquote {
        font-size: var(--base-sp);
    }

    .cost-overview {
        grid-template-columns: 1fr;
    }
}

/* === MISSING SECTIONS === */

/* Social Proof */
.social-proof {
    background: var(--c-surface);
    text-align: center;
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-32);
    margin: var(--sp-48) 0;
    justify-items: center;
}

@media (max-width: 767px) {
    .social-stats {
        grid-template-columns: 1fr;
        gap: var(--sp-24);
        margin: var(--sp-32) 0;
    }

    .stat-card {
        padding: var(--sp-20) var(--sp-16);
        text-align: center;
    }

    .stat-number, .stat-badge {
        font-size: var(--h2);
        margin-bottom: var(--sp-8);
    }

    .stat-label {
        font-size: var(--small);
        line-height: 1.4;
    }

    .stat-badge {
        font-size: var(--h3) !important;
        padding: var(--sp-8) var(--sp-16);
        border-radius: var(--radius);
        background: var(--c-accent-light);
        color: var(--c-accent);
        line-height: 1.3;
        display: inline-block;
    }
}

.stat-card {
    padding: var(--sp-20) var(--sp-16);
}

@media (min-width: 768px) {
    .stat-card {
        padding: var(--sp-32) var(--sp-24);
    }
}

.stat-number, .stat-badge {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--c-accent);
    display: block;
    margin-bottom: var(--sp-8);
}

.stat-label {
    font-size: var(--small);
    color: var(--c-ink-75);
}

.social-image {
    margin: var(--sp-48) auto;
    text-align: center;
    max-width: min(960px, 100%);
}

.social-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: var(--r-thumb);
    box-shadow: var(--sh-card);
}

.social-description {
    font-size: var(--base-pc);
    color: var(--c-ink-87);
    margin: var(--sp-24) 0;
}

/* Market Opportunity */
.market-opportunity {
    background: var(--c-bg);
}

.market-header {
    text-align: center;
    margin-bottom: var(--sp-64);
}

.market-eyebrow {
    font-size: var(--small);
    color: var(--c-accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.market-lead {
    font-size: var(--base-pc);
    color: var(--c-ink-87);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.market-insights {
    display: grid;
    gap: var(--sp-32);
    margin-bottom: var(--sp-48);
}

@media (min-width: 768px) {
    .market-insights {
        grid-template-columns: 1fr 1fr;
    }
}

.market-card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-card);
    padding: var(--sp-32);
    box-shadow: var(--sh-soft);
}

.market-card-title {
    font-size: var(--h4);
    color: var(--c-accent);
    margin-bottom: var(--sp-16);
}

.market-card-copy {
    color: var(--c-ink-87);
    margin-bottom: var(--sp-24);
    line-height: 1.6;
}

.market-figure {
    margin-bottom: var(--sp-20);
}

.metric-label {
    font-size: var(--small);
    color: var(--c-ink-75);
    display: block;
    margin-bottom: var(--sp-8);
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: var(--sp-12);
    margin-bottom: var(--sp-8);
}

.metric-value {
    font-size: var(--h4);
    font-weight: 700;
    color: var(--c-accent);
}

.metric-note {
    font-size: var(--xs);
    color: var(--c-ink-75);
}

.data-source {
    font-size: 8pt;
    color: var(--c-ink-75);
    margin-top: var(--sp-8);
}

.market-points {
    list-style: none;
    padding: 0;
}

.market-points li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-8) 0;
    border-bottom: 1px solid var(--c-line);
}

.point-label {
    color: var(--c-ink-87);
}

.point-value {
    font-weight: 700;
    color: var(--c-accent);
}

/* Value Proposition */
.value-proposition {
    background: var(--c-surface-2);
}

.value-content {
    display: grid;
    gap: var(--sp-48);
    align-items: center;
}

@media (min-width: 768px) {
    .value-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

.sushi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-16);
}

@media (min-width: 768px) {
    .sushi-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sushi-photo {
    border-radius: var(--r-card);
    box-shadow: var(--sh-soft);
}

.sushi-photo.menu {
    grid-column: 1 / -1;
}

.value-text {
    padding: var(--sp-24);
}

.value-text h3 {
    font-size: var(--h3);
    color: var(--c-accent);
    margin-bottom: var(--sp-20);
}

.value-text p {
    margin-bottom: var(--sp-16);
    line-height: 1.7;
}

/* Success Vision */
.success-vision {
    background: var(--c-bg);
}

.vision-grid {
    display: grid;
    gap: var(--sp-48);
}

@media (min-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vision-card {
    background: var(--c-surface);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--sh-card);
    transition: transform .3s;
}

.vision-card:hover {
    transform: translateY(-8px);
}

.vision-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.vision-card:hover .vision-image img {
    transform: scale(1.1);
}

.vision-content {
    padding: var(--sp-32);
}

.vision-content h3 {
    font-size: var(--h4);
    color: var(--c-accent);
    margin-bottom: var(--sp-16);
}

.vision-content > p {
    color: var(--c-ink-87);
    margin-bottom: var(--sp-20);
}

.vision-benefits {
    list-style: none;
    padding: 0;
}

.vision-benefits li {
    position: relative;
    padding-left: var(--sp-20);
    margin-bottom: var(--sp-8);
    color: var(--c-ink-87);
    font-size: var(--small);
    line-height: 1.6;
}

.vision-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--c-gold);
    font-weight: 700;
}

/* Training */
.training-reframe {
    background: var(--c-surface);
}

.training-features {
    display: grid;
    gap: var(--sp-32);
    margin-bottom: var(--sp-48);
    grid-template-rows: repeat(auto-fit, 1fr);
}

@media (max-width: 767px) {
    .training-features {
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
    }

    .training-features.snap-x {
        align-items: stretch;
        min-height: 240px;
    }

    .training-feature {
        min-height: 200px;
        align-items: stretch;
    }

    .training-feature.snap-item {
        height: 100%;
        min-height: 220px;
    }

    .training-feature h3 {
        flex: 0 0 auto;
    }

    .training-feature p {
        flex: 1 1 auto;
        min-height: 4.5rem;
    }
}

@media (min-width: 768px) {
    .training-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.training-feature {
    text-align: center;
    padding: var(--sp-16);
    background: var(--c-surface-2);
    border-radius: var(--r-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--sh-soft);
    display: flex;
    flex-direction: column;
    gap: var(--sp-12);
    height: 100%;
}

@media (min-width: 768px) {
    .training-feature {
        padding: var(--sp-24);
        gap: var(--sp-16);
    }
}

.training-feature h3 {
    font-size: var(--h4);
    color: var(--c-accent);
    margin-bottom: 0;
    line-height: 1.4;
}

.training-feature p {
    color: var(--c-ink-87);
    font-size: var(--base-sp);
    line-height: 1.6;
    flex: 1 0 auto;
    min-height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.training-feature i {
    font-size: var(--h2);
    color: var(--c-gold);
    margin-bottom: var(--sp-20);
}

/* FC Merits */
.fc-merits {
    background: var(--c-surface-2);
}

.merits-grid {
    display: grid;
    gap: var(--sp-32);
}

@media (min-width: 768px) {
    .merits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.merit-card {
    background: var(--c-surface);
    padding: var(--sp-32);
    border-radius: var(--r-card);
    box-shadow: var(--sh-soft);
    text-align: center;
}

.merit-icon {
    font-size: var(--h2);
    color: var(--c-gold);
    margin-bottom: var(--sp-20);
}

.merit-card h3 {
    font-size: var(--h4);
    color: var(--c-accent);
    margin-bottom: var(--sp-20);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    align-items: center;
    line-height: 1.3;
}

.merit-card h3 .headline {
    font-weight: 700;
    letter-spacing: 0.08em;
}

.merit-card h3 .subtitle {
    font-size: var(--small);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.merit-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.merit-card li {
    position: relative;
    padding-left: var(--sp-20);
    margin-bottom: var(--sp-8);
    color: var(--c-ink-87);
    font-size: var(--small);
}

.merit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--c-gold);
    font-weight: 700;
}

/* Mid CTA */
.mid-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-16);
    margin: var(--sp-32) 0;
}

@media (min-width: 600px) {
    .mid-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* CTA統一デザイン */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
    align-items: center;
    margin-top: var(--sp-24);
}

@media (min-width: 600px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Support System */
.support-system {
    background: var(--c-bg);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-16);
    margin-bottom: var(--sp-48);
}

@media (min-width: 768px) {
    .support-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--sp-24);
    }
}

.support-item {
    background: var(--c-surface);
    padding: var(--sp-16);
    border-radius: var(--r-card);
    text-align: center;
    box-shadow: var(--sh-soft);
    border: 1px solid var(--c-line);
    position: relative;
}

@media (min-width: 768px) {
    .support-item {
        padding: var(--sp-24);
    }
}

.support-item--optional {
    border: 2px solid var(--c-gold);
    background: linear-gradient(135deg, var(--c-surface) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.support-optional-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--c-gold);
    color: var(--c-surface);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px!important;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.support-icon {
    font-size: var(--h3);
    color: var(--c-gold);
    margin-bottom: var(--sp-16);
}

.support-item span {
    color: var(--c-ink-87);
    font-size: clamp(16px, 2.4vw, 18px);
    font-weight: 600;
    line-height: 1.6;
}

.support-option-note {
    margin-top: var(--sp-12);
    font-size: 11px;
    color: var(--c-ink-75);
    line-height: 1.4;
    font-weight: 400;
}

/* Business Style */
.business-style {
    background: var(--c-surface);
}

.section-description {
    text-align: center;
    color: var(--c-ink-87);
    font-size: var(--base-pc);
    max-width: 800px;
    margin: 0 auto var(--sp-48);
    line-height: 1.7;
}

.business-style-grid {
    display: grid;
    gap: var(--sp-32);
    margin-bottom: var(--sp-64);
}

@media (min-width: 768px) {
    .business-style-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.style-layout {
    display: grid;
    gap: var(--sp-24);
    align-items: start;
    margin-top: var(--sp-24);
}

@media (min-width: 640px) {
    .style-layout {
        grid-template-columns: auto minmax(0, 1fr);
    }
}

.style-visual {
    inline-size: clamp(56px, 20vw, 80px);
    justify-self: center;
}

.style-visual img {
    display: block;
    inline-size: 100%;
    block-size: auto;
}

.style-content > h3 {
    font-size: var(--h3);
    color: var(--c-accent);
    margin-bottom: 0;
}

.style-body {
    display: grid;
    gap: var(--sp-24);
}

.style-content {
    background: var(--c-surface-2);
    padding: var(--sp-32);
    border-radius: var(--r-card);
    border: 1px solid var(--c-line);
    box-shadow: var(--sh-soft);
}

.style-lead {
    color: var(--c-ink-87);
    font-size: var(--base-sp);
    margin-bottom: var(--sp-24);
    line-height: 1.6;
}

.style-merits h4 {
    font-size: var(--base-sp);
    color: var(--c-gold);
    margin-bottom: var(--sp-16);
    font-weight: 700;
}

.style-merits ul {
    list-style: none;
    padding: 0;
}

.style-merits li {
    position: relative;
    padding-left: var(--sp-20);
    margin-bottom: var(--sp-8);
    color: var(--c-ink-87);
    font-size: var(--small);
    line-height: 1.6;
}

.style-merits li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--c-gold);
}

/* ================================
   役割セクション：画像通りのレイアウト
   ================================ */

/* Roles Section */
.responsibility-section {
    margin-top: var(--sp-64);
}

/* グリッドレイアウト（右サイドレール付き） */
.roles-grid {
    display: grid;
    gap: var(--sp-24);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "hq-band       hq-band"
        "hq-cards      hq-cards"
        "taisho-band   owner-band"
        "taisho-cards  owner-cards";
}

/* 帯見出し */
.lane-band {
    display: flex;
    align-items: center;
    gap: var(--sp-12);
    padding: var(--sp-12) var(--sp-16);
    border-radius: var(--r-btn);
    color: #fff;
    font-weight: 700;
    letter-spacing: .06em;
    box-shadow: var(--sh-soft);
}

.lane-band i { font-size: 18px; }

.lane-band--hq     { background: var(--c-accent); grid-area: hq-band; }
.lane-band--owner  { background: #2563eb;    grid-area: owner-band; }
.lane-band--taisho { background: #16a34a;    grid-area: taisho-band; }

/* カード群 */
.lane-cards {
    display: grid;
    gap: var(--sp-16);
    align-items: stretch;
}

.lane-cards--hq     { grid-area: hq-cards;     grid-template-columns: repeat(5, minmax(120px, 1fr)); }
.lane-cards--owner  { grid-area: owner-cards;  grid-template-columns: repeat(4, minmax(120px, 1fr)); }
.lane-cards--taisho { grid-area: taisho-cards; grid-template-columns: repeat(4, minmax(120px, 1fr)); }

/* 共通タイル */
.role-card {
    background: var(--c-surface);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--r-card);
    box-shadow: var(--sh-soft);
    padding: var(--sp-20) var(--sp-12);
    text-align: center;
    display: grid;
    gap: var(--sp-12);
    place-items: center;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.role-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-card);
    border-color: var(--c-gold);
}


.role-card--image {
    padding: 0;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--r-card);
    box-shadow: var(--sh-soft);
    background: var(--c-surface);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
}

.role-card--image:hover {
    transform: none;
    box-shadow: var(--sh-soft);
    border-color: rgba(212, 175, 55, 0.25);
}

.role-card--image img {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
}

.role-card__icon {
    inline-size: 64px;
    block-size: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--c-surface-2);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,.2);
}

.role-card__icon i { font-size: 26px; color: var(--c-ink); }

.role-card__label {
    font-weight: 700;
    font-size: clamp(14px, 1.6vw, 16px);
    color: var(--c-ink-87);
    line-height: 1.3;
}

/* 右サイドレール */
.lane-option-rail {
    display: grid;
    gap: var(--sp-16);
    align-content: start;
    grid-area: option-rail;
}

.option-card {
    background: var(--c-surface);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--r-card);
    padding: var(--sp-20);
    display: grid;
    gap: var(--sp-12);
    place-items: center;
    box-shadow: var(--sh-soft);
}

.option-card__icon {
    inline-size: 72px;
    block-size: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(212,175,55,.12);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,.35);
}

.option-card__icon i { font-size: 28px; color: var(--c-ink); }

.option-card__label {
    font-weight: 700;
    font-size: clamp(14px, 1.6vw, 16px);
    color: var(--c-ink);
}

/* レスポンシブ調整 */
@media (max-width: 1023px) {
    .lane-cards--hq     { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lane-cards--owner,
    .lane-cards--taisho { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 599px) {
    .roles-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "hq-band"
            "hq-cards"
            "owner-band"
            "owner-cards"
            "taisho-band"
            "taisho-cards";
    }
    .lane-cards--hq,
    .lane-cards--owner,
    .lane-cards--taisho { grid-template-columns: 1fr 1fr; }
}

/* オプションサービス */
.roles-optional {
    margin-top: var(--sp-48);
    background: var(--c-surface-2);
    border-radius: var(--r-card);
    padding: var(--sp-32);
    text-align: center;
}

.optional-title {
    font-size: var(--base-sp);
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: var(--sp-24);
    position: relative;
}

.optional-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--c-gold);
}

.optional-services {
    display: grid;
    gap: var(--sp-24);
    grid-template-columns: 1fr;
    margin-top: var(--sp-32);
}

@media (min-width: 768px) {
    .optional-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

.optional-service {
    background: white;
    border: 1px solid var(--c-gold);
    border-radius: var(--r-btn);
    padding: var(--sp-20);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-8);
    transition: background-color 0.3s ease;
}

.optional-service:hover {
    background: rgba(212, 175, 55, 0.1);
}

.optional-service i {
    font-size: 24px;
    color: var(--c-gold);
}

.optional-service span {
    font-weight: 600;
    color: var(--c-ink);
}

.optional-service small {
    font-size: var(--xs);
    color: var(--c-ink-75);
    text-align: center;
}

.roles-note {
    margin-top: var(--sp-32);
    padding: var(--sp-20);
    background: var(--c-surface-2);
    border-radius: var(--r-btn);
    border-left: 4px solid var(--c-accent);
}

.roles-note p {
    font-size: var(--small);
    color: var(--c-ink-75);
    line-height: 1.5;
    margin: 0;
}
/* オプションサービス */
.roles-optional {
    margin-top: var(--sp-48);
    background: var(--c-surface-2);
    border-radius: var(--r-card);
    padding: var(--sp-32);
    text-align: center;
}

.optional-title {
    font-size: var(--base-sp);
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: var(--sp-24);
    position: relative;
}

.optional-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--c-gold);
}

.optional-services {
    display: grid;
    gap: var(--sp-24);
    grid-template-columns: 1fr;
    margin-top: var(--sp-32);
}

@media (min-width: 768px) {
    .optional-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

.optional-service {
    background: white;
    border: 1px solid var(--c-gold);
    border-radius: var(--r-btn);
    padding: var(--sp-20);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-8);
    transition: background-color 0.3s ease;
}

.optional-service:hover {
    background: rgba(212, 175, 55, 0.1);
}

.optional-service i {
    font-size: 24px;
    color: var(--c-gold);
}

.optional-service span {
    font-weight: 600;
    color: var(--c-ink);
}

.optional-service small {
    font-size: var(--xs);
    color: var(--c-ink-75);
    text-align: center;
}

.roles-note {
    margin-top: var(--sp-32);
    padding: var(--sp-20);
    background: var(--c-surface-2);
    border-radius: var(--r-btn);
    border-left: 4px solid var(--c-accent);
}

.roles-note p {
    font-size: var(--small);
    color: var(--c-ink-75);
    line-height: 1.5;
    margin: 0;
}

/* Investment Suite */
.investment-suite {
    background: var(--c-surface-2);
}

.investment-header {
    text-align: center;
    margin-bottom: var(--sp-64);
}

.investment-eyebrow {
    font-size: var(--small);
    color: var(--c-accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.investment-lead {
    font-size: var(--base-pc);
    color: var(--c-ink-87);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.cost-cta {
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
    align-items: center;
    margin-top: var(--sp-48);
}

@media (min-width: 768px) {
    .cost-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* Owner Voices */
.owner-voices {
    background: var(--c-surface);
}

.voice-carousel {
    position: relative;
}

.voice-slide {
    display: none;
}

.voice-slide.active {
    display: block;
}

.voice-content {
    display: flex;
    gap: var(--sp-32);
    align-items: flex-start;
    flex-direction: column;
}

@media (min-width: 768px) {
    .voice-content {
        flex-direction: row;
    }
}

.voice-photo img {
    width: clamp(160px, 20vw, 220px);
    height: clamp(160px, 20vw, 220px);
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(212,175,55,0.45);
    box-shadow: 0 12px 30px rgba(44,41,34,0.12);
}

.voice-text {
    flex: 1;
    display: grid;
    gap: var(--sp-24);
}

.voice-qa {
    background: rgba(212,175,55,0.08);
    border-radius: var(--r-card);
    padding: var(--sp-20) var(--sp-24);
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.18);
}

.voice-qa:last-of-type {
    margin-bottom: 0;
}

.voice-question {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--c-accent);
    margin-bottom: var(--sp-12);
    display: flex;
    gap: var(--sp-12);
    align-items: center;
}

.voice-question::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
}

.voice-answer {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--c-ink-87);
    line-height: 1.8;
}

/* Opening Flow */
.opening-flow {
    background: var(--c-surface-2);
}

.flow-timeline {
    display: grid;
    gap: var(--sp-32);
    position: relative;
}

@media (min-width: 768px) {
    .flow-timeline {
        grid-template-columns: repeat(6, 1fr);
    }

    .flow-timeline::before {
        content: '';
        position: absolute;
        top: 22px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--c-line-2);
        z-index: 0;
    }
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-accent);
    border: 3px solid var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--sp-16);
    position: relative;
    z-index: 2;
}

.step-content h4 {
    font-size: var(--base-sp);
    color: var(--c-accent);
    margin-bottom: var(--sp-8);
}

.step-duration {
    font-size: var(--small);
    color: var(--c-gold);
    font-weight: 600;
    margin-bottom: var(--sp-4);
}

.step-content p {
    font-size: var(--small);
    color: var(--c-ink-75);
}

/* FAQ */
.faq-section {
    background: var(--c-surface);
}

.faq-grid {
    max-width: 1050px;
    margin: var(--sp-40) auto 0;
    display: grid;
    gap: var(--sp-24);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-card {
    position: relative;
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: var(--r-card);
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,246,240,0.9));
    box-shadow: 0 14px 36px rgba(44,41,34,0.1);
    padding: clamp(24px, 3.6vw, 36px);
    display: grid;
    gap: var(--sp-16);
}

.faq-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.35);
    pointer-events: none;
}

.faq-card__head {
    display: flex;
    flex-direction: column;
    gap: var(--sp-12);
}

.faq-card__eyebrow {
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--c-accent);
    font-weight: 700;
}

.faq-card__question {
    font-size: clamp(18px, 2.6vw, 22px);
    color: var(--c-ink);
    line-height: 1.6;
    margin: 0;
}

.faq-card__answer {
    font-size: clamp(15px, 2.1vw, 17px);
    line-height: 1.8;
    color: var(--c-ink-87);
    margin: 0;
}

@media (max-width: 599px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-20);
    }

    .faq-card {
        padding: var(--sp-24);
    }
}

/* Final CTA */
.final-cta {
    background: var(--grad-accent);
    color: #fff;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-gold);
}

.final-cta .cta-content {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,246,240,0.92));
    color: var(--c-ink);
    border-radius: 28px;
    padding: clamp(40px, 6vw, 72px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.2);
    border: 1px solid rgba(212,175,55,0.2);
}

.final-cta .cta__title,
.final-cta .cta-subtitle {
    color: var(--c-ink);
}

.cta-proof {
    margin-bottom: var(--sp-16);
}

.cta-proof small {
    color: rgba(255,255,255,.8);
    font-size: var(--xs);
}

.cta__title {
    font-size: clamp(var(--h3), 4vw, var(--h2));
    margin-bottom: var(--sp-16);
    font-weight: 700;
}

.cta-subtitle {
    font-size: var(--base-pc);
    margin-bottom: var(--sp-32);
    opacity: .95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
    align-items: center;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Materials Request */
.materials-request {
    background: var(--c-surface);
}

.materials-header {
    text-align: center;
    margin-bottom: var(--sp-48);
}

.materials-eyebrow {
    font-size: var(--small);
    color: var(--c-accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.materials-lead {
    font-size: var(--base-pc);
    color: var(--c-ink-87);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.materials-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 var(--sp-24);
}

.form-fieldset--inline {
    display: grid;
    gap: var(--sp-12);
}

.form-group--inline {
    gap: var(--sp-12);
    align-items: flex-start;
}

.form-group--inline .form-label {
    font-weight: 600;
    color: var(--c-ink);
}

/* Request type selector */

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-12);
}

@media (max-width: 480px) {
    .radio-group {
        flex-direction: column;
        align-items: stretch;
    }
}

.radio-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-12);
    padding: var(--sp-12) var(--sp-18);
    border-radius: var(--r-btn);
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
    font-weight: 600;
    min-width: 160px;
}

.radio-pill input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--c-line);
    border-radius: 50%;
    background: #fff;
    position: relative;
    margin: 0;
}

.radio-pill input:checked {
    border-color: var(--c-accent);
    background: var(--c-accent);
}

.radio-pill input:checked::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #fff;
}

.radio-pill input:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
}

.radio-pill span {
    color: var(--c-ink-87);
}

.radio-pill.is-active span {
    color: var(--c-accent);
}

.materials-note-left {
    margin: 0;
    font-size: var(--small);
    color: var(--c-ink-75);
    line-height: 1.7;
}

.radio-group.field-error {
    outline: 2px solid #dc2626;
    outline-offset: 4px;
    border-radius: var(--r-card);
    padding: var(--sp-8);
}

.seminar-schedule[hidden] {
    display: none !important;
}

.seminar-schedule {
    margin: var(--sp-24) auto;
    padding: var(--sp-24);
    border-radius: var(--r-card);
    border: 1px solid var(--c-line);
    background: #fff;
    box-shadow: none;
    display: grid;
    gap: var(--sp-24);
}

.seminar-note {
    margin: 0;
    font-size: var(--small);
    color: var(--c-ink-75);
    line-height: 1.7;
}

.seminar-grid {
    display: grid;
    gap: var(--sp-24);
}

.optional {
    display: inline-block;
    color: var(--c-ink-75);
    font-size: var(--small);
    margin-left: var(--sp-8);
}

.form-group.field-error,
.field-error {
    outline: 2px solid #dc2626;
    outline-offset: 4px;
}

.materials-grid {
    display: grid;
    gap: var(--sp-24);
    margin-bottom: var(--sp-32);
}

@media (min-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--c-ink);
}

.form-label {
    font-weight: 600;
    color: var(--c-ink);
}

.required {
    color: var(--c-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--c-surface-2);
    color: var(--c-ink);
    border: 2px solid var(--c-line);
    border-radius: var(--r-btn);
    padding: var(--sp-12) var(--sp-16);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--c-gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,.12);
}

.materials-actions {
    text-align: center;
    margin-bottom: var(--sp-24);
}

.materials-note {
    text-align: center;
    color: var(--c-ink-75);
    font-size: var(--xs);
    line-height: 1.5;
}
.materials-note-left {
    text-align: left;
    color: var(--c-ink-75);
    font-size: var(--xs);
    line-height: 1.5;
}

.materials-success {
    max-width: 840px;
    margin: var(--sp-48) auto var(--sp-96);
    padding: var(--sp-48) var(--sp-32) var(--sp-48);
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, rgba(247, 242, 230, 0.92) 0%, rgba(255, 255, 255, 0.98) 55%, rgba(248, 246, 240, 0.96) 100%);
    box-shadow: 0 34px 80px rgba(44, 41, 34, 0.16);
    position: relative;
    overflow: hidden;
}

.materials-success::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at top right, rgba(212, 175, 55, 0.18), transparent 55%);
    pointer-events: none;
}

.success-screen__wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--sp-24);
    align-items: center;
    text-align: center;
}

.success-screen:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.45);
    outline-offset: 6px;
}

.success-icon {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--grad-accent);
    color: #fff;
    box-shadow: 0 22px 44px rgba(139, 38, 53, 0.28);
}

.success-icon__glow {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent 70%);
    z-index: -1;
}

.success-icon i {
    font-size: 42px;
}

.success-eyebrow {
    font-size: var(--xs);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-gold-d);
}

.success-title {
    font-size: clamp(28px, 3vw, 34px);
    letter-spacing: 0.06em;
}

.success-lead {
    max-width: 640px;
    color: var(--c-ink-87);
    line-height: 1.8;
}

.success-grid {
    width: 100%;
    display: grid;
    gap: var(--sp-24);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.success-card {
    padding: var(--sp-24);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--sh-soft);
    text-align: left;
}

.success-card--tone {
    background: rgba(248, 246, 240, 0.92);
}

.success-card__title {
    font-size: var(--base-pc);
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-16);
}

.success-steps,
.success-reminders {
    list-style: none;
    display: grid;
    gap: var(--sp-12);
    font-size: var(--small);
    color: var(--c-ink-87);
    line-height: 1.7;
}

.success-steps li,
.success-reminders li {
    position: relative;
    padding-left: var(--sp-32);
}

.success-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(139, 38, 53, 0.14);
    color: var(--c-accent);
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 14px;
}

.success-reminders li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-gold);
}

.success-actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-16);
    justify-content: center;
    margin-top: var(--sp-12);
}

.success-actions .btn {
    min-width: 200px;
}

.success-note {
    max-width: 520px;
    font-size: var(--xs);
    color: var(--c-ink-75);
    line-height: 1.7;
}

@media (max-width: 600px) {
    .materials-success {
        margin: var(--sp-32) auto var(--sp-64);
        padding: var(--sp-32) var(--sp-20) var(--sp-40);
    }

    .success-card {
        padding: var(--sp-24);
    }

    .success-actions .btn {
        width: 100%;
    }
}


/* Footer */
.footer {
    background: var(--c-accent);
    color: #fff;
    padding: var(--sp-48) 0 var(--sp-32);
    position: relative;
}

.u-top-gold-rule::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: var(--grad-gold);
}

.footer-content {
    margin-bottom: var(--sp-32);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--sp-32);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,.8);
    font-size: var(--small);
    transition: color .3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--sp-24);
    border-top: 1px solid rgba(255,255,255,.2);
}

.footer-bottom p {
    color: rgba(255,255,255,.6);
    font-size: var(--xs);
}

/* === MISSING COMPLEX SECTIONS === */

/* Market Fact Grid (detailed) */
.market-fact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-24);
    margin: var(--sp-48) 0;
}

.market-fact {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-card);
    padding: var(--sp-24);
    text-align: center;
    box-shadow: var(--sh-soft);
}

.fact-label {
    font-size: var(--small);
    color: var(--c-ink-75);
    display: block;
    margin-bottom: var(--sp-8);
    font-weight: 600;
}

.fact-values {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-12);
    margin-bottom: var(--sp-8);
}

.fact-values.single {
    justify-content: center;
}

.fact-current, .fact-target, .fact-high {
    font-size: var(--h3);
    font-weight: 700;
    color: var(--c-accent);
}

.fact-note {
    font-size: var(--xs);
    color: var(--c-ink-75);
    line-height: 1.4;
}

/* Market Card Variants */
.market-card--inbound {
    border-left: 4px solid var(--c-gold);
}

.market-card--domestic {
    border-left: 4px solid var(--c-accent);
}

.market-figure--trend .metric-trend {
    background: var(--c-surface-2);
    padding: var(--sp-12);
    border-radius: var(--r-btn);
}

.market-figure--highlight .metric-value.is-strong {
    color: var(--c-gold);
    font-size: var(--h2);
}

/* Support System Advanced */
.support-additional {
    margin-top: var(--sp-48);
    background: var(--c-surface-2);
    border-radius: var(--r-card);
    padding: var(--sp-32);
}

.support-additional-grid {
    display: grid;
    gap: var(--sp-24);
    margin-top: var(--sp-32);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .support-additional-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-32);
    }
}

.support-sns, .support-secretary {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-card);
    padding: var(--sp-24);
    box-shadow: var(--sh-soft);
    position: relative;
    z-index: 1; /* 表示優先 */
}

@media (min-width: 768px) {
    .support-sns, .support-secretary {
        padding: var(--sp-32);
    }
}

/* カード内テキストの視認性確保 */
.support-sns *, .support-secretary * {
    position: relative;
    z-index: 2;
}

/* オプションバッジスタイル */
.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--sp-16);
}

.option-badge {
    background: var(--c-gold);
    color: var(--c-surface);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: var(--tiny);
    font-weight: 700;
    white-space: nowrap;
}

.option-badge-large {
    display: inline-block;
    background: var(--c-gold);
    color: var(--c-surface);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: var(--small);
    font-weight: 700;
    margin-bottom: var(--sp-12);
    letter-spacing: 0.1em;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.option-note {
    color: var(--c-ink-75);
    font-size: var(--xs);
    line-height: 1.6;
    margin: var(--sp-8) 0;
    padding-left: var(--sp-8);
    border-left: 3px solid var(--c-gold);
}

.option-description {
    color: var(--c-ink-75);
    line-height: 1.6;
}

/* Support Accordion (Mobile Only) */
@media (max-width: 767px) {
    .support-accordion-btn {
        width: 100%;
        background: none;
        border: none;
        padding: 0;
        text-align: left;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--sp-16);
    }

    .support-accordion-btn h4 {
        margin: 0;
        pointer-events: none;
    }

    .accordion-icon {
        transition: transform 0.3s ease;
        color: var(--c-gold);
        font-size: var(--base);
    }

    .support-accordion-btn[aria-expanded="true"] .accordion-icon {
        transform: rotate(180deg);
    }

    .support-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
}

/* PC時は通常表示 */
@media (min-width: 768px) {
    .support-accordion-btn {
        display: none;
    }

    .support-accordion-content {
        display: block;
    }
}

/* Flow Scroll Hints */
.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }

    .scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--sp-8);
        margin-bottom: var(--sp-16);
        padding: var(--sp-12) var(--sp-16);
        background: var(--c-accent-light);
        border-radius: var(--radius);
        color: var(--c-accent);
        font-size: var(--small);
        font-weight: 500;
        animation: pulseHint 2s ease-in-out infinite;
    }

    .scroll-hint i {
        font-size: var(--small);
    }

    .flow-indicators {
        display: flex;
        justify-content: center;
        gap: var(--sp-8);
        margin-top: var(--sp-24);
    }

    .indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--c-line);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .indicator.active {
        background: var(--c-accent);
        transform: scale(1.2);
    }
}

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


.card--sizzle {
    border: 2px solid var(--c-gold);
    position: relative;
}

.card--sizzle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-gold);
    border-radius: var(--r-card) var(--r-card) 0 0;
}

.support-sns h4, .support-secretary h4 {
    font-size: var(--h4);
    margin-bottom: var(--sp-12);
    font-weight: 700;
}

.support-sns h5, .support-secretary h5 {
    font-size: var(--base-sp);
    color: var(--c-ink);
    font-weight: 600;
    margin-bottom: var(--sp-8);
    line-height: 1.5;
}

.support-sns-lead, .support-secretary-lead {
    font-size: var(--base-sp);
    color: var(--c-ink-87);
    margin-bottom: var(--sp-16);
    line-height: 1.6;
    font-weight: 500;
}

/* 秘書代行セクション内のテキスト間隔調整 */
.support-secretary h6 {
    margin-top: var(--sp-12);
    margin-bottom: var(--sp-4);
    font-weight: 600;
    color: var(--c-ink);
}

.support-secretary p {
    margin-bottom: var(--sp-8);
    line-height: 1.5;
}

.support-secretary .point {
    margin-bottom: var(--sp-20);
}

.support-secretary .point:last-child {
    margin-bottom: 0;
}

.process-definition {
    background: var(--c-surface-2);
    border: 1px solid var(--c-line);
    border-radius: var(--r-card);
    padding: var(--sp-16);
    margin-top: var(--sp-16);
}

.process-title {
    color: var(--c-accent);
    font-size: var(--small);
    margin-bottom: var(--sp-8);
    font-weight: 700;
}

.process-definition p {
    font-size: var(--xs);
    color: var(--c-ink-87);
    line-height: 1.6;
    margin-bottom: 0;
}


.points {
    display: grid;
    gap: var(--sp-12);
    margin-top: var(--sp-16);
}

@media (min-width: 768px) {
    .points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.point {
    background: var(--c-surface);
    border: 2px solid var(--c-line-2);
    border-radius: var(--r-card);
    padding: var(--sp-24) var(--sp-32);
    display: flex;
    flex-direction: column;
    gap: var(--sp-16);
    height: 100%;
}

.point-title {
    color: var(--c-accent);
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 700;
    margin-bottom: var(--sp-12);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-8);
}

.point-label {
    font-size: inherit;
}

.point-number {
    background: var(--c-accent);
    color: #fff;
    font-size: clamp(18px, 2.4vw, 24px);
    font-weight: 900;
    padding: var(--sp-8) var(--sp-12);
    border-radius: 50%;
    min-width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--c-gold);
}

.point h5, .point h6 {
    color: var(--c-accent);
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 700;
    margin: var(--sp-12) 0 var(--sp-8);
    line-height: 1.4;
}

.point p {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--c-ink);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: var(--sp-8);
    padding-left: var(--sp-4);
}

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

/* モバイル対応でPOINTをより目立たせる */
@media (max-width: 767px) {
    .point {
        margin-bottom: var(--sp-24);
        padding: var(--sp-20) var(--sp-24);
    }

    .point-title {
        font-size: clamp(20px, 5vw, 28px);
        padding: var(--sp-10) var(--sp-20);
        margin-bottom: var(--sp-20);
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .points {
        gap: var(--sp-20);
    }
}

/* Animation classes - 表示優先モード */
.reveal-up {
    opacity: 1; /* 表示優先 */
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* アニメーションを有効にしたい場合はこのクラスを追加 */
.reveal-up.animation-enabled {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-up.animation-enabled.in-view {
    opacity: 1;
    transform: translateY(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }

/* ===== SCROLL SNAP UTILITIES ===== */
/* 共通：横スク＋スナップのベース */
.snap-x {
    display: flex;
    gap: var(--sp-16);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-padding-inline: var(--sp-16);
    -webkit-overflow-scrolling: touch;
    padding-inline: var(--sp-16);
}

.snap-x::-webkit-scrollbar {
    display: none;
}

.snap-item {
    flex: 0 0 80%;
    scroll-snap-align: start;
}

/* 料理写真ギャラリー専用調整 */
.sushi-grid.snap-x .snap-item {
    flex: 0 0 70%; /* 写真を大きく見せる */
    scroll-snap-align: center;
}

/* 大将の声カルーセル専用調整 */
@media (max-width: 767px) {
    .voice-carousel.snap-x .snap-item {
        flex: 0 0 90%; /* 1スライド＝1スナップで読みやすく */
        scroll-snap-align: center;
        display: block !important; /* スナップスクロール時は常に表示 */
    }
}

/* PC時は従来のカルーセル動作 */
@media (min-width: 768px) {
    .voice-carousel.snap-x {
        /* スナップスクロール無効化 */
        display: block;
        scroll-snap-type: none;
        overflow: visible;
    }

    .voice-carousel .snap-item {
        /* 従来のカルーセル動作を維持 */
        display: none;
    }

    .voice-carousel .snap-item.active {
        display: block;
    }
}

/* 開業フロー専用調整 */
.flow-timeline.snap-x .snap-item {
    flex: 0 0 85%; /* ステップ単位でパンッと止まる */
    scroll-snap-align: center;
}

/* FCの強み・研修ポイント専用調整 */
.merits-grid.snap-x .snap-item {
    flex: 0 0 80%; /* カードをサクサク送る */
    scroll-snap-align: start;
}

.training-features.snap-x {
    align-items: stretch;
}

.training-features.snap-x .snap-item {
    flex: 0 0 80%; /* カードをサクサク送る */
    scroll-snap-align: start;
    height: auto;
    min-height: 280px;
}

/* スナップ厳密化が欲しい箇所（声・フロー） */
.snap-x.is-strict {
    scroll-snap-type: x mandatory;
}

.snap-item.is-stop {
    scroll-snap-stop: always;
}

/* タブレット/PCでは従来のグリッドに戻す */
@media (min-width: 768px) {
    .snap-x {
        display: grid;
        overflow: visible;
        scroll-snap-type: none;
        padding-inline: 0;
    }

    .snap-x.cols-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-24);
    }

    .snap-x.cols-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--sp-24);
    }

    .snap-x.cols-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--sp-24);
    }

    .snap-item {
        flex: unset;
        scroll-snap-align: unset;
        scroll-snap-stop: unset;
    }
}

@media (prefers-reduced-motion: reduce) {
    .snap-x {
        scroll-behavior: auto;
    }
}

/* Washi texture effects - 軽量化 */
.is-washi {
    position: relative;
}

.is-washi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(248,246,240,.05) 30.5%, rgba(248,246,240,.05) 31%, transparent 31.5%);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0; /* テキストより後ろ */
}

.has-lattice {
    position: relative;
}

.has-lattice::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(212,175,55,.02) 30.5%, rgba(212,175,55,.02) 31%, transparent 31.5%),
        linear-gradient(-45deg, transparent 30%, rgba(212,175,55,.02) 30.5%, rgba(212,175,55,.02) 31%, transparent 31.5%);
    background-size: 20px 20px;
    pointer-events: none;
    border-radius: inherit;
    z-index: 0; /* テキストより後ろ */
}

/* Voice Navigation */
.voice-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-20);
    margin-top: var(--sp-32);
}

.nav-btn {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    color: var(--c-ink);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
}

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

.nav-dots {
    display: flex;
    gap: var(--sp-8);
}

.dot {
    border: none;
    padding: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-line);
    cursor: pointer;
    transition: background .3s;
}

.dot:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 2px;
}

.dot.active {
    background: var(--c-gold);
}

/* Financial metrics with special styling */
.is-current {
    color: var(--c-accent) !important;
}

.is-target {
    color: var(--c-gold) !important;
}

.is-strong {
    color: var(--c-gold) !important;
    font-weight: 700;
}

.single {
    justify-content: center;
}

/* Timeline improvements */
.timeline {
    position: relative;
    padding: var(--sp-24) 0;
}

/* Font Awesome and Icon Classes */
.fas, .fab, .fa-solid {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
    font-style: normal;
}

.fab {
    font-weight: 400;
}

/* Utility classes */
.checkmark {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: var(--sp-8);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
