/* ==========================================================================
   MOZ by Noir Premium Landing Page Style Guide
   Base Concept: "Luxury Mysterious Dark Theme" & "Elite Financial Academy"
   ========================================================================== */

/* ==========================================================================
   THEME SETUP (VARIABLES)
   - 後から色やフォントを簡単に変更できるようにCSS変数で集中管理しています。
   ========================================================================== */
:root {
    /* Color Palette: Backgrounds */
    --bg-pure-black: #000000;
    --bg-dark-charcoal: #0a0a0b;
    --bg-card-dark: #121214;
    --bg-card-hover: #19191c;
    
    /* Color Palette: Accents (Matte Gold) */
    --gold-matte: #C5A059;
    --gold-bright: #D4AF37;
    --gold-light: #F2DFB2;
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, #F2DFB2 50%, #D4AF37 100%);
    
    /* Cyber Accents (Glow / Candlesticks) */
    --cyber-cyan: #00F2FE;
    --cyber-cyan-glow: rgba(0, 242, 254, 0.4);
    --gold-glow: rgba(212, 175, 55, 0.2);
    
    /* Typography Colors */
    --text-white: #ffffff;
    --text-muted: #a0a0a5;
    --text-muted-dark: #6e6e73;
    
    /* Borders */
    --border-gold-dim: rgba(197, 160, 89, 0.15);
    --border-gold-bright: rgba(197, 160, 89, 0.4);
    --border-dark: rgba(255, 255, 255, 0.05);
    
    /* Fonts Families */
    --font-serif-en: 'Cinzel', serif;
    --font-serif-ja: 'Shippori Mincho', 'Sawarabi Mincho', serif;
    --font-sans-en: 'Plus Jakarta Sans', sans-serif;
    --font-sans-ja: 'Noto Sans JP', sans-serif;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-pure-black);
    color: var(--text-white);
}

body {
    font-family: var(--font-sans-ja), var(--font-sans-en);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Typography Utilities */
.font-serif {
    font-family: var(--font-serif-ja), var(--font-serif-en);
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(197, 160, 89, 0.1);
}

.text-cyan-gold {
    background: linear-gradient(135deg, var(--cyber-cyan) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes shine-effect {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* ==========================================================================
   PREMIUM BUTTONS (CTA BUTTONS)
   - マウス追従型ホバースポットライト効果付き
   ========================================================================== */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #000;
    background: var(--gold-gradient);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle 100px at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(255, 255, 255, 0.35),
        transparent 80%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.btn-premium:hover::after {
    opacity: 1;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-premium:active {
    transform: translateY(-1px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine-effect 5s infinite ease-in-out;
}

.btn-text {
    z-index: 2;
    position: relative;
    font-family: var(--font-sans-ja);
    text-align: center;
}

/* ==========================================================================
   GLOBAL HEADER
   ========================================================================== */
.main-header {
    width: 100%;
    padding: 32px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(5px);
}

.logo-text {
    font-family: var(--font-serif-en);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold-matte);
    position: relative;
    display: inline-block;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 25%;
    width: 50%;
    height: 1px;
    background: var(--gold-gradient);
}

/* ==========================================================================
   SECTION 1: HERO (Top View)
   - スマホ・PC双方でインパクトを持たせるため、メインビジュアルサイズを拡大
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 180px 0 120px 0;
    display: flex;
    align-items: center;
    background-color: var(--bg-pure-black);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-visual-area {
    width: 100%;
    max-width: 960px; /* 800pxから拡大し、より大きく表現 */
    margin-bottom: 50px;
    padding: 0 10px; /* スマホ時の画面端の余白確保 */
}

.gold-frame {
    padding: 1px;
    background: linear-gradient(135deg, var(--border-gold-bright) 0%, rgba(0,0,0,0.5) 50%, var(--border-gold-dim) 100%);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.visual-placeholder {
    width: 100%;
    background-color: var(--bg-dark-charcoal);
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.badge-wrapper {
    margin-bottom: 28px;
}

.core-badge {
    display: inline-block;
    padding: 8px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    border: 1px solid var(--border-gold-bright);
    border-radius: 50px;
    background: rgba(197, 160, 89, 0.08);
    backdrop-filter: blur(10px);
}

.hero-text-block {
    max-width: 960px;
    margin-bottom: 45px;
}

.hero-headline {
    font-size: 2.3rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-white);
    max-width: 850px;
    margin: 0 auto 35px auto;
    line-height: 1.9;
}

.philosophy-box {
    border-left: 2.5px solid var(--gold-matte);
    padding: 12px 0 12px 24px;
    margin: 30px auto 0 auto;
    max-width: 880px;
    text-align: left;
    background: linear-gradient(to right, rgba(197,160,89,0.03) 0%, rgba(0,0,0,0) 100%);
}

.philosophy-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.cta-wrapper {
    margin-top: 20px;
}

/* ==========================================================================
   SECTION 2: CORE PILLARS
   ========================================================================== */
.pillars-section {
    padding: 80px 0;
    background-color: var(--bg-dark-charcoal);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-gold-dim);
    padding: 50px 30px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold-bright);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.05);
}

.pillar-icon {
    margin-bottom: 24px;
    color: var(--gold-matte);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pillar-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.pillar-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION 3: PROBLEM (Agitation)
   ========================================================================== */
.problem-section {
    padding: 120px 0;
    background-color: var(--bg-pure-black);
}

.section-headline {
    font-family: var(--font-serif-ja);
    font-size: 1.85rem;
    line-height: 1.6;
    margin-bottom: 60px;
    font-weight: 600;
}

.problem-checklist-area {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.premium-checklist {
    list-style: none;
}

.premium-checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.check-box {
    margin-top: 4px;
    margin-right: 18px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--border-gold-bright);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-bright);
    font-size: 0.85rem;
    background: rgba(197, 160, 89, 0.05);
}

.list-text {
    line-height: 1.6;
    color: var(--text-white);
}

.agitation-callout {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--bg-card-dark);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.agitation-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--cyber-cyan) 0%, var(--gold-bright) 100%);
}

.callout-text {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: justify;
    line-height: 1.8;
}

/* ==========================================================================
   SECTION 4: AFFINITY & AGITATION
   ========================================================================== */
.affinity-section {
    padding: 120px 0;
    background-color: var(--bg-dark-charcoal);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.story-body {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
}

.story-body p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    text-align: justify;
}

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

/* ==========================================================================
   SECTION 5: SOLUTION
   ========================================================================== */
.solution-section {
    padding: 120px 0;
    background-color: var(--bg-pure-black);
    text-align: center;
}

.section-badge {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    margin-bottom: 15px;
}

.solution-section .section-headline {
    max-width: 960px;
    margin: 0 auto 50px auto;
}

.solution-body {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    color: var(--text-muted);
}

.solution-body p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    text-align: justify;
}

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

/* ==========================================================================
   SECTION 6: FEATURES & BENEFITS (WITH EVIDENCE AREA)
   ========================================================================== */
.features-section {
    padding: 120px 0;
    background-color: var(--bg-dark-charcoal);
    border-top: 1px solid var(--border-dark);
}

.features-section .section-headline {
    margin-bottom: 80px;
}

.subsection-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--border-gold-dim);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}

.subsection-title span {
    font-family: var(--font-serif-en);
    color: var(--gold-matte);
    font-size: 1.8rem;
    margin-right: 15px;
    font-weight: 400;
}

/* Method Pillars Grid */
.method-pillars {
    margin-bottom: 80px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method-card {
    background-color: var(--bg-card-dark);
    border-left: 3px solid var(--gold-matte);
    padding: 35px 30px;
    border-radius: 0 6px 6px 0;
}

.method-num {
    font-family: var(--font-serif-en);
    font-size: 2rem;
    color: var(--gold-matte);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.5;
}

.method-title {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.method-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Supportive Indicator Functions Grid */
.indicator-functions {
    margin-bottom: 60px;
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.function-card {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    padding: 40px;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.function-card:hover {
    border-color: var(--border-gold-dim);
}

.function-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.function-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--gold-light);
}

.function-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Evidence Block (Trade Results Evidence) */
.evidence-area {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-gold-dim);
    border-radius: 8px;
    padding: 50px;
    max-width: 960px; /* メインビジュアルに合わせて拡大 */
    margin: 0 auto;
}

.evidence-header {
    text-align: center;
    margin-bottom: 35px;
}

.evidence-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-family: var(--font-sans-en);
    font-weight: 700;
    color: var(--gold-matte);
    border: 1px solid var(--border-gold-dim);
    border-radius: 4px;
    margin-bottom: 12px;
}

.evidence-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.evidence-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.evidence-wrapper {
    width: 100%;
}

.evidence-placeholder {
    width: 100%;
    border: 1px dashed var(--border-gold-bright);
    background-color: var(--bg-pure-black);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.evidence-placeholder:hover {
    border-color: var(--gold-bright);
    background-color: rgba(197, 160, 89, 0.02);
}

.evidence-placeholder-svg {
    width: 100%;
    height: auto;
    display: block;
}

.evidence-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   SECTION 7: SOCIAL PROOF (Testimonials & Questions Box)
   ========================================================================== */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--bg-pure-black);
}

.testimonials-section .section-headline {
    margin-bottom: 50px;
}

/* 実践者アンケート質問内容枠のスタイリング */
.testimonial-questions-box {
    max-width: 900px;
    margin: 0 auto 60px auto;
    background: linear-gradient(135deg, rgba(18, 18, 20, 0.9) 0%, rgba(10, 10, 11, 0.9) 100%);
    border: 1px solid var(--border-gold-dim);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.questions-box-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.questions-box-title i {
    font-size: 1.4rem;
}

.questions-box-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 15px;
}

.questions-list-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
}

.questions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.questions-list li {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-white);
    display: flex;
    align-items: flex-start;
}

.q-num {
    color: var(--gold-matte);
    font-weight: 700;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Testimonials Cards Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    padding: 40px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-gold-dim);
    transform: translateY(-2px);
}

.testimonial-card.card-large {
    grid-column: span 2;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.08);
    border: 1px solid var(--border-gold-dim);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-matte);
    font-size: 1.3rem;
}

.user-num {
    font-family: var(--font-serif-ja);
    color: var(--gold-matte);
    font-size: 0.9rem;
    font-weight: 600;
}

.user-title {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-top: 2px;
}

.survey-qa {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qa-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qa-q {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-matte);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.qa-a {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

/* ==========================================================================
   SECTION 8: BEHIND THE SCENES (Mentors Profile - 3 Columns Layout)
   ========================================================================== */
.mentors-section {
    padding: 120px 0;
    background-color: var(--bg-dark-charcoal);
    border-top: 1px solid var(--border-dark);
}

.mentors-section .section-headline {
    margin-bottom: 80px;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mentor-card {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-gold-dim);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mentor-card:hover {
    border-color: var(--border-gold-bright);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.03);
}

.mentor-image-wrapper {
    background-color: var(--bg-pure-black);
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
}

.mentor-placeholder-img {
    width: 150px;
    height: 150px;
}

.mentor-info {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mentor-name {
    font-family: var(--font-serif-ja);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
}

.mentor-role {
    font-family: var(--font-sans-en);
    font-size: 0.8rem;
    color: var(--text-muted-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.mentor-tagline {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 15px;
    line-height: 1.5;
}

.mentor-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: justify;
}

.mentor-message {
    background-color: rgba(0, 0, 0, 0.2);
    border-left: 2px solid var(--gold-matte);
    padding: 15px;
    border-radius: 0 4px 4px 0;
    margin-top: auto;
}

.message-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.message-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

/* ==========================================================================
   SECTION 9: EPILOGUE (FAQ & FINAL MESSAGE)
   ========================================================================== */
.epilogue-section {
    padding: 120px 0;
    background-color: var(--bg-pure-black);
    border-top: 1px solid var(--border-dark);
}

/* FAQ Layout */
.faq-area {
    max-width: 900px;
    margin: 0 auto 100px auto;
}

.faq-area .section-headline {
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    padding: 30px;
}

.faq-q-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-icon-q {
    width: 28px;
    height: 28px;
    background-color: var(--gold-matte);
    color: #000;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-serif-en);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.faq-question {
    font-size: 1.1rem;
    color: var(--text-white);
    font-family: var(--font-sans-ja);
    line-height: 1.5;
    margin-top: 2px;
}

.faq-a-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-left: 0;
}

.faq-icon-a {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-gold-bright);
    color: var(--gold-bright);
    background-color: rgba(197, 160, 89, 0.05);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-serif-en);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: justify;
    margin-top: 1px;
}

/* Final Message (お手紙形式のスタイリング) */
.final-message-area {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(18, 18, 20, 0.6) 0%, rgba(10, 10, 11, 0.8) 100%);
    border: 1px solid var(--border-gold-dim);
    border-radius: 8px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.gold-shield-icon {
    font-size: 2.2rem;
    color: var(--gold-matte);
    margin-bottom: 25px;
    opacity: 0.8;
}

.final-title {
    font-size: 1.6rem;
    margin-bottom: 35px;
    letter-spacing: 0.1em;
}

.final-body {
    text-align: left;
    color: var(--text-muted);
}

.final-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.final-highlight-box {
    margin: 40px 0;
    padding: 24px;
    border-top: 1px solid var(--border-gold-bright);
    border-bottom: 1px solid var(--border-gold-bright);
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
    text-align: center;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.final-close {
    margin-top: 50px !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   GLOBAL FOOTER & ACTION (SIGNUP & OFFER CARD)
   ========================================================================== */
.main-footer {
    padding: 120px 0 60px 0;
    background-color: var(--bg-dark-charcoal);
    border-top: 1px solid var(--border-gold-bright);
}

.footer-cta-text-block {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.footer-cta-title {
    font-size: 2.1rem;
    line-height: 1.5;
    margin-bottom: 35px;
}

.footer-cta-body {
    color: var(--text-muted);
    text-align: left;
}

.footer-cta-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: justify;
}

.cta-value-text {
    font-size: 1.1rem !important;
    font-weight: 600;
    color: var(--gold-light);
    border-left: 2px solid var(--gold-matte);
    padding-left: 15px;
    margin-top: 35px;
}

/* Pricing Card Component */
.pricing-card-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-gold-bright);
    border-radius: 8px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(197, 160, 89, 0.08);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 4px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.pricing-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    max-width: 480px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.pricing-features li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    font-size: 1.1rem;
}

.price-display-box {
    background-color: var(--bg-pure-black);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    margin-bottom: 35px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.price-value {
    font-family: var(--font-serif-en), var(--font-sans-ja);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 6px;
}

.btn-cta-buy {
    width: 100%;
    max-width: 500px;
    padding: 22px 30px;
    font-size: 1.05rem;
}

.footer-bottom {
    margin-top: 100px;
    border-top: 1px solid var(--border-dark);
    padding-top: 40px;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
    letter-spacing: 1px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Large Tablets & Small Desktops (max-width: 1199px) */
@media (max-width: 1199px) {
    .mentors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .mentor-info {
        padding: 25px 20px;
    }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .pillars-grid,
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.card-large {
        grid-column: span 1;
    }
    
    .functions-grid {
        grid-template-columns: 1fr;
    }
    
    .questions-list-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mentors-grid .mentor-card:nth-child(3) {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-headline {
        font-size: 1.85rem;
    }
    
    .hero-visual-area {
        max-width: 100%;
    }
}

/* Mobile Viewports (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .main-header {
        padding: 20px 0;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .hero-section {
        padding: 130px 0 80px 0;
    }
    
    .hero-visual-area {
        max-width: 100%;
        margin-bottom: 35px;
        padding: 0 5px; /* スマホ画面のいっぱいに近く大きく表示する */
    }
    
    .hero-headline {
        font-size: 1.45rem;
        line-height: 1.4;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .philosophy-box {
        padding: 10px 0 10px 16px;
    }
    
    .pillars-grid,
    .method-grid,
    .mentors-grid {
        grid-template-columns: 1fr;
    }
    
    .mentors-grid .mentor-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .section-headline {
        font-size: 1.35rem;
        margin-bottom: 40px;
    }
    
    .problem-section,
    .affinity-section,
    .solution-section,
    .features-section,
    .testimonials-section,
    .mentors-section,
    .epilogue-section {
        padding: 80px 0;
    }
    
    .testimonial-questions-box {
        padding: 24px;
    }
    
    .questions-box-title {
        font-size: 1.15rem;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .evidence-area {
        padding: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.88rem;
    }
    
    .final-message-area {
        padding: 40px 20px;
    }
    
    .final-title {
        font-size: 1.3rem;
    }
    
    .final-body p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
    
    .final-close {
        font-size: 1.1rem !important;
    }
    
    .footer-cta-title {
        font-size: 1.45rem;
    }
    
    .footer-cta-body p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .pricing-card {
        padding: 40px 20px;
    }
    
    .price-value {
        font-size: 2.2rem;
    }
    
    .btn-premium {
        width: 100%;
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .mentor-info {
        padding: 24px;
    }
    
    .mentor-message {
        padding: 15px;
    }
    
    .footer-cta-title {
        font-size: 1.5rem;
    }
    
    .footer-cta-desc {
        font-size: 1rem;
    }
    
    .desktop-only {
        display: none;
    }
}
/* ==========================================================================
   追加カスタム：講師陣・実績・リスク枠・特商法（完全レスポンシブ統合決定版）
   ========================================================================== */

/* --------------------------------------------------------
   1. 共通・PC用スタイル（元のデザイン・色味を100%維持）
   -------------------------------------------------------- */

/* 講師紹介：丸型金色枠に画像を綺麗に収める共通設定 */
.mentor-placeholder-img {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid #C5A059 !important;
    background-color: #121214 !important;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2) !important;
    overflow: hidden !important; 
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.mentor-actual-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 実績エリア：横スクロール制御 */
.evidence-wrapper {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.evidence-scroll-inner {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    gap: 30px;
    padding: 10px 5px 25px 5px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.evidence-item {
    flex: 0 0 650px;
    max-width: 100% !important;
    scroll-snap-align: start;
    display: inline-block;
    background: #121214 !important;
    border: 1px solid rgba(197, 160, 89, 0.25) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.evidence-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain;
}

.evidence-scroll-inner::-webkit-scrollbar {
    height: 5px;
}
.evidence-scroll-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}
.evidence-scroll-inner::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #C5A059 0%, #F2DFB2 50%, #D4AF37 100%);
    border-radius: 3px;
}

/* 一番下の005.png画像コンテナ */
.final-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.final-responsive-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 8px;
}

/* 投資リスク免責枠 */
.risk-disclaimer-container {
    width: 100%;
    max-width: 1200px;
    margin: 35px auto 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.risk-disclaimer-box {
    background-color: #0d0d0f !important;
    border: 1px solid rgba(197, 160, 89, 0.18) !important;
    border-radius: 6px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.risk-title {
    color: var(--gold-matte) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
    margin-bottom: 14px !important;
    letter-spacing: 1px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
}

.risk-body p {
    color: #949499 !important;
    font-size: 0.78rem !important;
    line-height: 1.75 !important;
    margin: 0 0 10px 0 !important;
    white-space: normal !important;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
}

.risk-body p:last-child {
    margin-bottom: 0 !important;
}

/* 特定商取引法に基づく表記テーブル */
.tokutei-section-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.tokutei-box {
    background-color: #121214 !important;
    border: 1px solid rgba(197, 160, 89, 0.25) !important;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.tokutei-main-title {
    color: var(--text-white) !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    text-align: center;
    margin-top: 0 !important;
    margin-bottom: 35px !important;
    letter-spacing: 2px;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
}

.tokutei-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: var(--gold-gradient);
}

.tokutei-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
}

.tokutei-table tr {
    border-bottom: 1px solid rgba(197, 160, 89, 0.12) !important;
}
.tokutei-table tr:last-child {
    border-bottom: none !important;
}

.tokutei-table th {
    width: 25%;
    color: var(--gold-matte) !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    text-align: left !important;
    vertical-align: top !important;
    padding: 20px 15px 20px 10px !important;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.5px;
}

.tokutei-table td {
    width: 75%;
    color: #cccccc !important;
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
    text-align: left !important;
    vertical-align: top !important;
    padding: 20px 10px 20px 15px !important;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: normal !important;
}


/* --------------------------------------------------------
   2. スマホ・レスポンシブ（重複を完全に解消した統合版）
   -------------------------------------------------------- */
@media (max-width: 768px) {
    
    /* 🔴 【重要】講師陣カード：スマホでの写真見切れ・崩れ防止設定 */
    .mentors-section .container {
        padding: 0 15px;
    }
    .mentors-grid {
        gap: 30px;
    }
    .mentor-card {
        padding: 25px 20px;
        display: flex !important;
        flex-direction: column !important; /* スマホでは縦並びを強制 */
        align-items: center !important;
    }
    .mentor-image-wrapper {
        position: relative !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        margin: 0 auto 20px auto !important; /* 写真を中央に寄せて下に余白を開ける */
        width: 140px !important;  /* スマホ用のサイズ固定 */
        height: 140px !important;
        flex: 0 0 140px !important;
    }
    .mentor-placeholder-img {
        width: 140px !important;
        height: 140px !important;
        margin: 0 auto !important;
    }
    .mentor-info {
        width: 100% !important;
        text-align: center; /* テキストを中央揃えにしてバランスを取る */
    }
    .mentor-tagline {
        font-size: 0.9rem !important;
    }
    .mentor-bio {
        font-size: 0.85rem !important;
    }
    .mentor-message {
        text-align: left; /* 長文メッセージのみ読みやすさ優先で左揃え */
    }

    /* 実績画像スクロール（スマホ幅にフィット） */
    .evidence-item {
        flex: 0 0 88vw !important;
    }

    /* 一番下の画像 */
    .final-image-container {
        margin: 25px auto 0 auto;
        padding: 0 15px;
    }

    /* 投資リスク免責枠 */
    .risk-disclaimer-container {
        margin: 25px auto 30px auto;
        padding: 0 15px;
    }
    .risk-disclaimer-box {
        padding: 18px 20px;
    }
    .risk-title {
        font-size: 0.82rem !important;
    }
    .risk-body p {
        font-size: 0.72rem !important;
        line-height: 1.6 !important;
    }

    /* 特定商取引法（スマホ用縦並び） */
    .tokutei-section-container {
        margin: 30px auto 40px auto;
        padding: 0 15px;
    }
    .tokutei-box {
        padding: 25px 20px;
    }
    .tokutei-main-title {
        font-size: 1.15rem !important;
        margin-bottom: 25px !important;
    }
    .tokutei-table tr {
        display: block !important;
        padding: 15px 0 !important;
    }
    .tokutei-table th, 
    .tokutei-table td {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
    }
    .tokutei-table th {
        margin-bottom: 6px !important;
        font-size: 0.85rem !important;
    }
    .tokutei-table td {
        font-size: 0.82rem !important;
        line-height: 1.6 !important;
    }
}
/* ==========================================================================
   別ページ用（legal.html）法的表記・規約一覧のプレミアムデザインCSS
   ========================================================================== */

/* ページ全体の背景（NOIR共通の完全な漆黒） */
.legal-page-body {
    background-color: #000000 !important;
    color: #cccccc !important;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
}

/* ページ全体をまとめる中央寄せコンテナ */
.legal-page-container {
    width: 100%;
    max-width: 1000px; /* 規約が読みやすいように少しスマートな横幅に固定 */
    margin: 0 auto;
    padding: 60px 20px 80px 20px;
    box-sizing: border-box;
}

/* LPに戻るボタンのナビゲーション */
.legal-back-nav {
    margin-bottom: 30px;
    text-align: left;
}
.btn-back-home {
    color: var(--gold-matte) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.btn-back-home:hover {
    color: var(--gold-bright) !important;
    text-decoration: underline !important;
}

/* 各規約を囲む独立した高級ダークグレーのカード */
.legal-section-card {
    background-color: #121214 !important;
    border: 1px solid rgba(197, 160, 89, 0.25) !important; /* NOIRお馴染みの薄い金枠 */
    border-radius: 8px;
    padding: 45px 50px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}
.legal-section-card:last-child {
    margin-bottom: 0;
}

/* 各規約の大見出し（特商法・プライバシー・利用規約） */
.legal-section-title {
    color: var(--text-white) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-align: center;
    margin-top: 0 !important;
    margin-bottom: 40px !important;
    letter-spacing: 2px;
    position: relative;
}
.legal-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--gold-gradient);
}

/* --- 特商法用：テーブル構造の最適化 --- */
.legal-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
}
.legal-table tr {
    border-bottom: 1px solid rgba(197, 160, 89, 0.12) !important;
}
.legal-table tr:last-child {
    border-bottom: none !important;
}
.legal-table th {
    width: 25%;
    color: var(--gold-matte) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-align: left !important;
    vertical-align: top !important;
    padding: 20px 15px 20px 10px !important;
    letter-spacing: 0.5px;
}
.legal-table td {
    width: 75%;
    color: #cccccc !important;
    font-size: 0.9rem !important;
    line-height: 1.75 !important;
    text-align: left !important;
    vertical-align: top !important;
    padding: 20px 10px 20px 15px !important;
    white-space: normal !important;
}

/* --- ポリシー・利用規約用：文章の装飾設定 --- */
.legal-text-block {
    text-align: left;
}
.legal-text-block p {
    font-size: 0.9rem !important;
    line-height: 1.8 !important;
    color: #b5b5ba !important;
    margin: 0 0 18px 0 !important;
}
/* 章タイトル（1. 適用 など） */
.legal-text-block h3 {
    color: var(--gold-matte) !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    margin: 30px 0 12px 0 !important;
    letter-spacing: 0.5px;
}
/* 箇条書きリスト */
.legal-text-block ul {
    margin: 0 0 20px 20px !important;
    padding: 0 !important;
}
.legal-text-block ul li {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    color: #b5b5ba !important;
    margin-bottom: 8px !important;
    list-style-type: disc !important;
}

/* --- 【スマホ・レスポンシブ対応】画面幅768px以下 --- */
@media (max-width: 768px) {
    .legal-page-container {
        padding: 40px 15px 50px 15px;
    }
    .legal-section-card {
        padding: 30px 20px; /* 横余白を狭めて画面を広く使う */
        margin-bottom: 25px;
    }
    .legal-section-title {
        font-size: 1.25rem !important;
        margin-bottom: 30px !important;
    }
    
    /* スマホ時：テーブルを縦並びのブロックに分解 */
    .legal-table tr {
        display: block !important;
        padding: 15px 0 !important;
    }
    .legal-table th, 
    .legal-table td {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
    }
    .legal-table th {
        margin-bottom: 6px !important;
        font-size: 0.85rem !important;
    }
    .legal-table td {
        font-size: 0.85rem !important;
        line-height: 1.65 !important;
    }
    
    /* スマホ時：文章のサイズ微調整 */
    .legal-text-block p,
    .legal-text-block ul li {
        font-size: 0.85rem !important;
    }
    .legal-text-block h3 {
        font-size: 0.95rem !important;
        margin: 25px 0 10px 0 !important;
    }
}
.img-wrap{
  position:relative;
}

.img-protect{
  position:absolute;
  inset:0;
  z-index:1;
}