:root {
    --gold: #b8963e;
    --gold-light: #d4bc6a;
    --gold-glow: rgba(184, 150, 62, 0.15);
    --navy: #0c1527;
    --navy-light: #111d36;
    --navy-card: #13203d;
    --navy-surface: #172645;
    --navy-border: #1e3055;
    --navy-border-light: #264070;
    --text-primary: #f0efe9;
    --text-body: #c8c7c0;
    --text-muted: #8a95a8;
    --success: #34d399;
    --danger: #f87171;
    --white-soft: #f5f4f0;
    /* 明るいセクション用 */
    --light-bg: #f7f6f2;
    --light-bg-alt: #eeeee8;
    --light-card: #ffffff;
    --light-border: #e0dfd8;
    --dark-text: #1a1a1a;
    --dark-text-body: #444;
    --dark-text-muted: #777;
    /* アクセントカラー */
    --red-cta: #dc2626;
    --red-cta-dark: #b91c1c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Noto Sans JP', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', sans-serif;
    background: var(--navy);
    color: var(--text-primary);
    line-height: 1.9;
    overflow-x: hidden;
    font-size: 15px;
}

.container { max-width: 640px; margin: 0 auto; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184,150,62,0.2); }
    50% { box-shadow: 0 0 0 14px rgba(184,150,62,0); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.anim.show { opacity: 1; transform: translateY(0); }

/* ===== SHARED ===== */
.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
}
.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.7;
}
.section-title em {
    font-style: normal;
    color: var(--gold-light);
    border-bottom: 2px solid rgba(212,188,106,0.4);
    padding-bottom: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--navy), transparent);
    z-index: 2;
    pointer-events: none;
}
.hero img {
    width: 100%;
    height: auto;
    display: block;
    animation: fadeIn 1s ease-out;
}

/* ===== HERO CTA (ファーストビュー直下) ===== */
.hero-cta {
    padding: 24px 24px 36px;
    text-align: center;
    position: relative;
    background: var(--navy);
}
.hero-cta-headline {
    font-family: 'Noto Serif JP', serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 6px;
    color: #fff;
}
.hero-cta-sub {
    font-size: 15px;
    color: #d0cfc8;
    margin-bottom: 24px;
    line-height: 1.8;
}
.hero-cta-form {
    max-width: 420px;
    margin: 0 auto;
}
.hero-cta-form .hcf-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}
.hero-cta-form input {
    width: 100%;
    padding: 15px 16px;
    background: #f5f4f0;
    border: 1.5px solid #d0cfc9;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-cta-form input::placeholder { color: #999; font-size: 13px; }
.hero-cta-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,150,62,0.15);
    background: #fff;
}
.hero-cta-form button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
}
.hero-cta-form button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}
.hero-cta-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220,38,38,0.35);
}
.hero-cta-note {
    font-size: 11px;
    color: #8a95a8;
    line-height: 1.6;
}

/* ===== PAIN POINT (LIGHT SECTION) ===== */
.pain {
    padding: 60px 24px 48px;
    text-align: center;
    background: var(--light-bg);
    color: var(--dark-text);
}
.pain-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.pain h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 28px;
    color: var(--dark-text);
}
.pain h2 em {
    font-style: normal;
    color: var(--red-cta);
    border-bottom: 2px solid rgba(220,38,38,0.3);
    padding-bottom: 2px;
}

.pain-list { max-width: 440px; margin: 0 auto; text-align: left; }

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-border);
}
.pain-item:last-child { border-bottom: none; }

.pain-check {
    flex-shrink: 0;
    width: 22px;
    color: var(--red-cta);
    font-size: 16px;
    font-weight: 700;
    margin-top: 4px;
}
.pain-item p { font-size: 15px; color: var(--dark-text-body); line-height: 1.8; }
.pain-item p strong { color: var(--dark-text); font-weight: 700; font-size: 16px; }

.pain-answer {
    margin-top: 36px;
    padding: 28px;
    background: var(--navy);
    border-radius: 14px;
    text-align: center;
}
.pain-answer p { font-size: 14px; color: var(--text-body); margin-bottom: 6px; }
.pain-answer strong {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    color: var(--gold-light);
    font-weight: 700;
}

/* ===== WHAT IS ===== */
.what-is {
    padding: 48px 24px;
    background: var(--navy-light);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
}
.what-desc {
    font-size: 15px;
    color: #c0bfb8;
    line-height: 2.1;
    text-align: center;
    max-width: 480px;
    margin: 0 auto 36px;
}
.what-points { display: flex; flex-direction: column; gap: 14px; }

.what-point {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 14px;
    padding: 26px 22px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color 0.3s, transform 0.25s;
}
.what-point:hover {
    border-color: rgba(184,150,62,0.2);
    transform: translateY(-1px);
}
.wp-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.wp-icon.a { background: linear-gradient(135deg, rgba(184,150,62,0.15), rgba(184,150,62,0.05)); border: 1px solid rgba(184,150,62,0.2); color: var(--gold-light); }
.wp-icon.b { background: linear-gradient(135deg, rgba(52,211,153,0.12), rgba(52,211,153,0.04)); border: 1px solid rgba(52,211,153,0.2); color: var(--success); }
.wp-icon.c { background: linear-gradient(135deg, rgba(96,165,250,0.12), rgba(96,165,250,0.04)); border: 1px solid rgba(96,165,250,0.2); color: #60a5fa; }

.wp-text h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.wp-text p { font-size: 14px; color: #a0aab8; line-height: 1.9; }
.wp-text .beginner-tag {
    display: inline-block;
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.25);
    color: var(--success);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 8px;
    letter-spacing: 0.05em;
}
.wp-text .beginner-tag.gold {
    background: rgba(184,150,62,0.1);
    border-color: rgba(184,150,62,0.25);
    color: var(--gold-light);
}

/* ===== NEW: HOW AI WORKS ===== */
.ai-works {
    padding: 52px 24px;
}
.ai-works-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 2.1;
    text-align: center;
    max-width: 480px;
    margin: -8px auto 36px;
}
.ai-pipeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.ai-stage {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
}
.ai-stage:hover { border-color: rgba(184,150,62,0.25); }

.ai-connector {
    display: flex;
    justify-content: center;
    padding: 4px 0;
    position: relative;
    z-index: 0;
}
.ai-connector svg {
    color: var(--navy-border-light);
}

.ai-stage-num {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 500;
}
.ai-stage-num.s1 { background: rgba(96,165,250,0.12); color: #60a5fa; border: 1px solid rgba(96,165,250,0.25); }
.ai-stage-num.s2 { background: rgba(168,85,247,0.12); color: #a855f7; border: 1px solid rgba(168,85,247,0.25); }
.ai-stage-num.s3 { background: rgba(184,150,62,0.12); color: var(--gold-light); border: 1px solid rgba(184,150,62,0.25); }

.ai-stage-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: #fff; }
.ai-stage-text p { font-size: 12.5px; color: #a0aab8; line-height: 1.8; }
.ai-stage-text .ai-stat {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    background: rgba(184,150,62,0.08);
    border: 1px solid rgba(184,150,62,0.15);
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 8px;
}

/* ===== NEW: TRACK RECORD ===== */
.track-record {
    padding: 52px 24px;
    background: var(--navy-light);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
}
.track-desc {
    font-size: 14px;
    color: var(--text-body);
    text-align: center;
    max-width: 460px;
    margin: -8px auto 32px;
    line-height: 1.9;
}

.record-summary {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.record-hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.record-stat {
    text-align: center;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 14px;
    padding: 24px 10px 20px;
    position: relative;
    overflow: hidden;
}
.record-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--navy-border-light);
}
/* 大きなハイライトカード（勝率・騰落率） */
.record-stat.hero-stat {
    padding: 36px 14px 28px;
    background: linear-gradient(170deg, rgba(184,150,62,0.14), var(--navy-card) 50%);
    border-color: rgba(184,150,62,0.35);
}
.record-stat.hero-stat::before {
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.record-stat.hero-stat .rs-num {
    font-family: 'DM Mono', monospace;
    font-size: 52px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    letter-spacing: -0.02em;
}
.record-stat.hero-stat .rs-unit {
    font-size: 26px;
    color: var(--gold-light);
}
.record-stat.hero-stat .rs-label {
    font-size: 13px;
    color: var(--text-body);
    margin-top: 12px;
    line-height: 1.5;
    font-weight: 500;
}
.record-stat.hero-stat .rs-label strong {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 14px;
}
/* 小さな補助カード（銘柄数） */
.record-stat.sub-stat {
    padding: 20px 10px 16px;
}
.record-stat.sub-stat .rs-num {
    font-family: 'DM Mono', monospace;
    font-size: 30px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
}
.record-stat.sub-stat .rs-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.5;
}

.record-cards { display: flex; flex-direction: column; gap: 12px; }

.record-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 14px;
    padding: 22px 20px;
    transition: border-color 0.3s;
}
.record-card:hover { border-color: rgba(184,150,62,0.2); }

.rc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.rc-stock {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rc-badge {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}
.rc-badge.up { background: rgba(52,211,153,0.12); color: var(--success); border: 1px solid rgba(52,211,153,0.2); }
.rc-badge.down { background: rgba(248,113,113,0.12); color: var(--danger); border: 1px solid rgba(248,113,113,0.2); }

.rc-name { font-size: 15px; font-weight: 600; }
.rc-sector { font-size: 11px; color: var(--text-muted); }

.rc-result {
    font-family: 'DM Mono', monospace;
    font-size: 18px;
    font-weight: 500;
}
.rc-result.up { color: var(--success); }
.rc-result.down { color: var(--danger); }

.rc-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}
.rc-detail {
    background: var(--navy-surface);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}
.rc-detail .rd-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.rc-detail .rd-value {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: var(--text-primary);
}

.rc-reason {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(184,150,62,0.05);
    border-left: 2px solid rgba(184,150,62,0.3);
    border-radius: 0 8px 8px 0;
}
.rc-reason .rr-label {
    font-size: 10px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}
.rc-reason p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

.track-note {
    margin-top: 20px;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
    opacity: 0.7;
}

/* ===== NEW: NUMBERS BAND (LIGHT / HIGH IMPACT) ===== */
.numbers-band {
    padding: 48px 24px;
    background: var(--light-bg);
}
.numbers-band-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 520px;
    margin: 0 auto;
}
.num-item {
    text-align: center;
    padding: 28px 14px 24px;
    background: var(--light-card);
    border-radius: 14px;
    border: 1px solid var(--light-border);
    position: relative;
    overflow: hidden;
}
.num-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.num-item:nth-child(1)::before { background: linear-gradient(90deg, #dc2626, #ef4444); }
.num-item:nth-child(2)::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.num-item:nth-child(3)::before { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.num-item:nth-child(4)::before { background: linear-gradient(90deg, #059669, #34d399); }

.num-item .ni-val {
    font-family: 'DM Mono', monospace;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
}
.num-item:nth-child(1) .ni-val { color: #dc2626; }
.num-item:nth-child(2) .ni-val { color: var(--gold); }
.num-item:nth-child(3) .ni-val { color: #2563eb; }
.num-item:nth-child(4) .ni-val { color: #059669; }

.num-item .ni-plus {
    font-size: 18px;
    opacity: 0.7;
}
.num-item .ni-label {
    font-size: 12px;
    color: var(--dark-text-muted);
    margin-top: 8px;
    line-height: 1.5;
    font-weight: 500;
}

/* ===== SIMPLICITY ===== */
.simplicity {
    padding: 52px 24px;
    background: var(--light-bg-alt);
    color: var(--dark-text);
}
.simplicity .section-label { color: var(--gold); }
.simplicity .section-title { color: var(--dark-text); }
.simplicity .section-title em {
    color: var(--gold);
    border-bottom-color: rgba(184,150,62,0.3);
}

.steps-wrap { position: relative; }
.steps-wrap::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 56px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--light-border));
    border-radius: 1px;
}
.step {
    display: flex;
    gap: 22px;
    margin-bottom: 36px;
    align-items: flex-start;
}
.step:last-child { margin-bottom: 0; }

.step-circle {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.step-circle span {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.05em;
}
.step-body { padding-top: 6px; }
.step-body h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--dark-text); }
.step-body p { font-size: 14px; color: var(--dark-text-body); line-height: 1.9; }
.step-body .time-tag {
    display: inline-block;
    background: rgba(184,150,62,0.12);
    border: 1px solid rgba(184,150,62,0.25);
    color: #8a6c20;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    margin-top: 8px;
}

/* ===== REASSURANCE (LIGHT SECTION) ===== */
.reassurance {
    padding: 48px 24px;
    background: var(--light-bg);
    color: var(--dark-text);
    border-top: none;
    border-bottom: none;
}
.reassurance .section-label { color: var(--gold); }
.reassurance .section-title { color: var(--dark-text); }
.reassurance .section-title em {
    color: var(--gold);
    border-bottom-color: rgba(184,150,62,0.3);
}
.re-grid {
    max-width: 480px;
    margin: 28px auto 0;
}
.re-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--light-border);
}
.re-item:last-child { border-bottom: none; }
.re-num {
    flex-shrink: 0;
    font-family: 'DM Mono', monospace;
    font-size: 28px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    width: 36px;
}
.re-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--dark-text); }
.re-content p { font-size: 14px; color: var(--dark-text-muted); line-height: 1.8; }

/* ===== MINI CTA (mid-page conversion points) ===== */
.mini-cta {
    padding: 44px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mini-cta::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 400px;
    background: radial-gradient(ellipse, rgba(184,150,62,0.05), transparent 70%);
    pointer-events: none;
}
.mini-cta-flat {
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
}
.mini-cta h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.6;
}
.mini-cta h3 em { font-style: normal; color: var(--gold-light); }
.mini-cta .mini-cta-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}
.mini-cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}
.mini-cta-form input {
    width: 100%;
    padding: 14px 16px;
    background: #f5f4f0;
    border: 1.5px solid #d0cfc9;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.mini-cta-form input::placeholder { color: #999; font-size: 13px; }
.mini-cta-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,150,62,0.15);
    background: #fff;
}
.mini-cta-form button {
    width: 100%;
    padding: 14px 22px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
}
.mini-cta-form button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}
.mini-cta-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220,38,38,0.35);
}
.mini-cta-note {
    font-size: 10.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Link-style mini CTA (after reviews) */
.mini-cta-link {
    padding: 32px 24px 8px;
    text-align: center;
}
.mini-cta-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.mini-cta-link a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}
.mini-cta-link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(220,38,38,0.35);
}
.mini-cta-link .mcl-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ===== SOCIAL PROOF (improved) ===== */
.social-proof { padding: 52px 24px; }

.review-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 14px;
    padding: 28px 24px;
    margin-bottom: 14px;
    position: relative;
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 14px; right: 22px;
    font-family: 'Noto Serif JP', serif;
    font-size: 52px;
    color: rgba(184,150,62,0.08);
    line-height: 1;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #8a6c20);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
}
.review-meta .r-name { font-size: 14px; font-weight: 600; }
.review-meta .r-info { font-size: 11px; color: var(--text-muted); }
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.review-stars span { color: var(--gold); font-size: 14px; }

.review-text { font-size: 14.5px; color: #c8c7c0; line-height: 2; }
.review-highlight {
    display: inline;
    background: rgba(184,150,62,0.1);
    padding: 1px 4px;
    border-radius: 3px;
    color: var(--gold-light);
}

.review-before-after {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    align-items: center;
}
.rba-box {
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
}
.rba-box.before {
    background: rgba(248,113,113,0.06);
    border: 1px solid rgba(248,113,113,0.12);
}
.rba-box.after {
    background: rgba(52,211,153,0.06);
    border: 1px solid rgba(52,211,153,0.12);
}
.rba-box .rba-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.rba-box.before .rba-label { color: var(--danger); }
.rba-box.after .rba-label { color: var(--success); }
.rba-box p { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; }
.rba-arrow { color: var(--text-muted); font-size: 16px; }

/* ===== NEW: TARGET AUDIENCE ===== */
.target {
    padding: 52px 24px;
    background: var(--navy-light);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
}
.target-list {
    max-width: 460px;
    margin: 0 auto;
}
.target-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(30,48,85,0.4);
}
.target-item:last-child { border-bottom: none; }
.target-icon {
    flex-shrink: 0;
    width: 24px;
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    margin-top: 3px;
    text-align: center;
}
.target-item p {
    font-size: 15px;
    color: #c0bfb8;
    line-height: 1.8;
}
.target-item p strong {
    color: #fff;
    font-weight: 700;
}

/* ===== FAQ ===== */
.faq {
    padding: 52px 24px;
}
.faq-item {
    border-bottom: 1px solid var(--navy-border);
    padding: 20px 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--navy-border); }
.faq-q {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}
.faq-q .q-mark {
    flex-shrink: 0;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    margin-top: 1px;
}
.faq-q p { font-size: 15px; font-weight: 700; color: var(--text-primary); flex-grow: 1; }
.faq-q .faq-toggle {
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 18px;
    transition: transform 0.3s;
    margin-top: 1px;
}
.faq-q .faq-toggle.open { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 200px; padding-top: 14px; }
.faq-a p { font-size: 14px; color: #a0aab8; line-height: 2; padding-left: 28px; }

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 60px 24px;
    text-align: center;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -180px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(184,150,62,0.06), transparent 70%);
    pointer-events: none;
}
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(184,150,62,0.1);
    border: 1px solid rgba(184,150,62,0.25);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 22px;
    animation: pulse 2.5s ease-in-out infinite;
}
.cta h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 10px;
}
.cta h2 em {
    font-style: normal;
    color: var(--gold-light);
    border-bottom: 2px solid rgba(212,188,106,0.4);
    padding-bottom: 2px;
}
.cta .cta-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.form-flat {
    max-width: 460px;
    margin: 0 auto;
    position: relative;
}
.form-flat .email-field {
    margin-bottom: 14px;
}
.form-flat .form-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-align: left;
}
.email-field {
    width: 100%;
    padding: 16px 18px;
    background: #f5f4f0;
    border: 1.5px solid #d0cfc9;
    border-radius: 12px;
    color: #1a1a1a;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    margin-bottom: 16px;
}
.email-field::placeholder { color: #999; font-size: 14px; }
.email-field:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,150,62,0.15);
    background: #fff;
}
.check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    text-align: left;
}
.check-row input[type="checkbox"] {
    width: 18px; height: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
    flex-shrink: 0;
    cursor: pointer;
}
.check-row label {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.7;
    cursor: pointer;
}
.check-row label a {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(184,150,62,0.3);
}
.check-row label a:hover { border-color: var(--gold); }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: transform 0.2s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(220,38,38,0.35);
}
.submit-btn:active { transform: translateY(0); }

.form-footnote {
    margin-top: 16px;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
}

/* ===== NOTICE ===== */
.notice { padding: 28px 24px; border-top: 1px solid var(--navy-border); }
.notice-box {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-left: 3px solid rgba(184,150,62,0.35);
    border-radius: 10px;
    padding: 20px 22px;
}
.notice-box strong { font-size: 13px; color: var(--gold-light); display: block; margin-bottom: 8px; }
.notice-box p { font-size: 12.5px; color: var(--text-muted); line-height: 2; }

/* ===== FOOTER ===== */
footer {
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid var(--navy-border);
}
.foot-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-bottom: 14px;
}
.foot-links a { font-size: 11px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--gold-light); }
.foot-copy { font-size: 10px; color: rgba(255,255,255,0.12); letter-spacing: 0.05em; }

/* ===== SCROLL PROGRESS ===== */
.scroll-bar {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    width: 0%;
    z-index: 10000;
}

/* ===== FLOATING CTA ===== */
.float-cta {
    position: fixed;
    bottom: 0; left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 100%;
    max-width: 640px;
    background: rgba(12,21,39,0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--navy-border);
    padding: 14px 24px;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.float-cta.show { transform: translateX(-50%) translateY(0); }
.float-cta a {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    border: none;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.04em;
}

/* ===== RESPONSIVE ===== */
/* ===== PC / TABLET (768px+) ===== */
@media (min-width: 768px) {
    .container { max-width: 880px; }

    body { font-size: 16px; line-height: 1.9; }

    /* Hero CTA */
    .hero-cta { padding: 48px 48px 52px; }
    .hero-cta-headline { font-size: 26px; }
    .hero-cta-sub { font-size: 16px; margin-bottom: 28px; }
    .hero-cta-form { max-width: 520px; }
    .hero-cta-form input { padding: 20px 22px; font-size: 18px; border-radius: 12px; }
    .hero-cta-form input::placeholder { font-size: 15px; }
    .hero-cta-form button { padding: 20px 30px; font-size: 17px; border-radius: 12px; }
    .hero-cta-note { font-size: 12px; }

    /* Hero - full width on PC */
    .hero {
        max-width: 100%;
    }
    .hero img {
        width: 100%;
        height: auto;
        max-height: 600px;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
    }

    /* Section spacing */
    .pain { padding: 72px 48px 60px; }
    .what-is { padding: 68px 48px; }
    .ai-works { padding: 72px 48px; }
    .track-record { padding: 72px 48px; }
    .numbers-band { padding: 60px 48px; }
    .numbers-band-title { font-size: 22px; margin-bottom: 36px; }
    .numbers-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 780px; }
    .num-item { padding: 34px 16px 28px; border-radius: 16px; }
    .num-item .ni-val { font-size: 38px; }
    .num-item .ni-plus { font-size: 22px; }
    .num-item .ni-label { font-size: 13px; margin-top: 10px; }
    .simplicity { padding: 72px 48px; }
    .reassurance { padding: 68px 48px; }
    .social-proof { padding: 72px 48px; }
    .target { padding: 72px 48px; }
    .faq { padding: 72px 48px; }
    .cta { padding: 80px 48px; }
    .notice { padding: 36px 48px; }
    footer { padding: 40px 48px; }

    /* Typography scale up */
    .pain-eyebrow { font-size: 11px; margin-bottom: 22px; }
    .pain h2 { font-size: 30px; margin-bottom: 36px; }
    .section-label { font-size: 11px; margin-bottom: 18px; }
    .section-title { font-size: 30px; margin-bottom: 36px; }
    .what-desc { font-size: 17px; max-width: 580px; margin-bottom: 44px; }
    .ai-works-desc { font-size: 17px; max-width: 580px; margin-bottom: 44px; }
    .track-desc { font-size: 16px; max-width: 560px; margin-bottom: 40px; }

    /* Pain list */
    .pain-list { max-width: 580px; }
    .pain-item p { font-size: 16px; }
    .pain-item p strong { font-size: 18px; }
    .pain-answer { padding: 34px 40px; margin-top: 44px; }
    .pain-answer p { font-size: 16px; }
    .pain-answer strong { font-size: 26px; }

    /* What is cards - 横並び可能に */
    .what-points { gap: 16px; }
    .what-point { padding: 30px 28px; }
    .wp-icon { width: 58px; height: 58px; font-size: 26px; }
    .wp-text h4 { font-size: 18px; margin-bottom: 8px; }
    .wp-text p { font-size: 14px; }
    .wp-text .beginner-tag { font-size: 11px; }

    /* AI works */
    .ai-stage { padding: 28px 28px; }
    .ai-stage-num { width: 50px; height: 50px; font-size: 14px; }
    .ai-stage-text h4 { font-size: 17px; }
    .ai-stage-text p { font-size: 14px; }
    .ai-stage-text .ai-stat { font-size: 12px; }

    /* Track record */
    .record-summary { gap: 16px; margin-bottom: 36px; }
    .record-hero-row { gap: 16px; }
    .record-stat.hero-stat { padding: 44px 20px 34px; border-radius: 18px; }
    .record-stat.hero-stat .rs-num { font-size: 64px; }
    .record-stat.hero-stat .rs-unit { font-size: 32px; }
    .record-stat.hero-stat .rs-label { font-size: 15px; margin-top: 14px; }
    .record-stat.hero-stat .rs-label strong { font-size: 16px; }
    .record-stat.sub-stat { padding: 22px 16px 18px; border-radius: 14px; }
    .record-stat.sub-stat .rs-num { font-size: 34px; }
    .record-cards { gap: 16px; }
    .record-card { padding: 28px 28px; }
    .rc-name { font-size: 17px; }
    .rc-result { font-size: 22px; }
    .rc-details { gap: 10px; }
    .rc-detail { padding: 14px; }
    .rc-detail .rd-label { font-size: 11px; }
    .rc-detail .rd-value { font-size: 15px; }
    .rc-reason p { font-size: 13px; }

    /* Numbers band */
    .numbers-grid { max-width: 860px; }
    .num-item .ni-val { font-size: 44px; }
    .num-item .ni-plus { font-size: 26px; }
    .num-item .ni-label { font-size: 14px; }

    /* Steps */
    .step { gap: 28px; margin-bottom: 44px; }
    .step-circle { width: 64px; height: 64px; }
    .step-circle span { font-size: 12px; }
    .steps-wrap::before { left: 31px; }
    .step-body h4 { font-size: 19px; margin-bottom: 8px; }
    .step-body p { font-size: 14px; }
    .step-body .time-tag { font-size: 12px; }

    /* Reassurance - 2x2 grid */
    .re-grid { max-width: 560px; margin-top: 36px; }
    .re-item { padding: 26px 0; gap: 20px; }
    .re-num { font-size: 32px; }
    .re-content h4 { font-size: 17px; margin-bottom: 6px; }
    .re-content p { font-size: 14px; }

    /* Reviews */
    .review-card { padding: 34px 32px; margin-bottom: 18px; border-radius: 16px; }
    .review-avatar { width: 52px; height: 52px; font-size: 19px; }
    .review-meta .r-name { font-size: 15px; }
    .review-meta .r-info { font-size: 12px; }
    .review-stars span { font-size: 16px; }
    .review-text { font-size: 15px; }
    .review-before-after { margin-top: 18px; gap: 12px; }
    .rba-box { padding: 14px 18px; }
    .rba-box .rba-label { font-size: 11px; }
    .rba-box p { font-size: 13px; }

    /* Target */
    .target-list { max-width: 580px; }
    .target-item { padding: 20px 0; gap: 18px; }
    .target-icon { width: 28px; font-size: 20px; }
    .target-item p { font-size: 16px; }

    /* FAQ */
    .faq-q .q-mark { font-size: 16px; }
    .faq-q p { font-size: 16px; }
    .faq-a p { font-size: 14px; padding-left: 34px; }

    /* CTA */
    .cta-badge { font-size: 14px; padding: 10px 24px; margin-bottom: 28px; }
    .cta h2 { font-size: 30px; margin-bottom: 14px; }
    .cta .cta-sub { font-size: 15px; margin-bottom: 40px; }
    .form-flat { max-width: 520px; }
    .form-flat .form-label { font-size: 13px; }
    .email-field { padding: 20px 22px; font-size: 18px; border-radius: 14px; }
    .email-field::placeholder { font-size: 16px; }
    .check-row label { font-size: 12px; }
    .submit-btn { padding: 22px; font-size: 18px; border-radius: 14px; }
    .form-footnote { font-size: 12px; margin-top: 20px; }

    /* Notice */
    .notice-box { padding: 26px 30px; }
    .notice-box strong { font-size: 13px; }
    .notice-box p { font-size: 12.5px; }

    /* Footer */
    .foot-links { gap: 8px 28px; margin-bottom: 18px; }
    .foot-links a { font-size: 12px; }

    /* Mini CTA */
    .mini-cta { padding: 56px 48px; }
    .mini-cta-flat { max-width: 520px; }
    .mini-cta h3 { font-size: 22px; }
    .mini-cta .mini-cta-sub { font-size: 14px; }
    .mini-cta-form input { padding: 18px 20px; font-size: 17px; border-radius: 12px; }
    .mini-cta-form input::placeholder { font-size: 15px; }
    .mini-cta-form button { padding: 18px 28px; font-size: 17px; border-radius: 12px; }
    .mini-cta-link a { font-size: 16px; padding: 18px 44px; }

    /* Float CTA */
    .float-cta { max-width: 880px; padding: 16px 36px; }
    .float-cta a { padding: 16px; font-size: 15px; border-radius: 12px; }
}

/* ===== LARGE PC (1024px+) ===== */
@media (min-width: 1024px) {
    .container { max-width: 960px; }

    .hero-cta-headline { font-size: 28px; }
    .hero-cta-form { max-width: 560px; }
    .hero-cta-form input { padding: 22px 24px; font-size: 19px; }
    .hero-cta-form button { padding: 22px; font-size: 18px; }

    .hero img {
        max-height: 720px;
    }

    .pain h2 { font-size: 34px; }
    .section-title { font-size: 34px; }
    .what-desc { font-size: 17px; }
    .ai-works-desc { font-size: 17px; }

    /* What is - 3カラム横並び */
    .what-points {
        flex-direction: row;
        gap: 18px;
    }
    .what-point {
        flex: 1;
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .wp-icon { margin: 0 auto 14px; }
    .wp-text h4 { font-size: 17px; }
    .wp-text p { font-size: 13px; }

    /* Reassurance - wider cards */
    .re-grid { max-width: 620px; }
    .re-num { font-size: 36px; }

    /* Reviews - 横幅活用 */
    .review-card { padding: 36px 40px; }

    /* CTA */
    .cta h2 { font-size: 34px; }
    .form-flat { max-width: 560px; }

    /* Mini CTA */
    .mini-cta-flat { max-width: 560px; }
    .mini-cta h3 { font-size: 24px; }

    .float-cta { max-width: 960px; }
}

/* ===== MOBILE (480px-) ===== */
@media (max-width: 480px) {
    .hero-cta { padding: 20px 18px 28px; }
    .hero-cta-headline { font-size: 17px; margin-bottom: 4px; }
    .hero-cta-sub { font-size: 13px; margin-bottom: 18px; }
    .hero-cta-form .hcf-row { gap: 10px; }
    .hero-cta-form button { padding: 15px; }
    .pain { padding: 44px 18px 36px; }
    .pain h2 { font-size: 20px; }
    .what-is { padding: 40px 18px; }
    .section-title { font-size: 20px; }
    .ai-works { padding: 44px 18px; }
    .track-record { padding: 44px 18px; }
    .record-hero-row { gap: 8px; }
    .record-stat.hero-stat { padding: 28px 8px 22px; }
    .record-stat.hero-stat .rs-num { font-size: 42px; }
    .record-stat.hero-stat .rs-unit { font-size: 22px; }
    .record-stat.hero-stat .rs-label { font-size: 12px; }
    .record-stat.sub-stat { padding: 16px 8px 14px; }
    .record-stat.sub-stat .rs-num { font-size: 24px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .simplicity { padding: 44px 18px; }
    .reassurance { padding: 40px 18px; }
    .re-grid { margin-top: 20px; }
    .social-proof { padding: 44px 18px; }
    .review-before-after { grid-template-columns: 1fr; gap: 6px; }
    .rba-arrow { transform: rotate(90deg); margin: 0 auto; }
    .target { padding: 44px 18px; }
    .faq { padding: 44px 18px; }
    .cta { padding: 52px 18px; }
    .form-flat { max-width: 100%; }
    .cta h2 { font-size: 20px; }
    .mini-cta { padding: 36px 18px; }
    .mini-cta-flat { max-width: 100%; }
    .mini-cta h3 { font-size: 17px; }
    .mini-cta-form { gap: 10px; }
    .mini-cta-form button { padding: 14px; }
    .mini-cta-link a { font-size: 14px; padding: 14px 28px; }
}
/* 個人情報保護方針 */
.personal_top h2 {
  background: url(../images/personal_topimg.png);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  padding: 80px;
  font-size: 2.5rem;
}
.personal_box {
  width: 80%;
  margin: 0 auto;
  word-break: break-word;
  padding: 30px 0 0;
}
.personal_box a{
  color: var(--success) !important;
}

.personal_1 {
  margin-bottom: 20px;
}

/* 個人情報保護方針 */
/* 製品情報 */
.product h2 {
  background: url(../images/product_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  padding: 80px;
  font-size: 2.5rem;
}

.product_textbox {
  padding: 30px 0 0;
  word-break: break-word;
  width: 80%;
  margin: 0 auto;
}

.product_text {
  margin-bottom: 30px;
}

.product_text h4 {
  margin-bottom: 5px;
  border-left:var(--danger)  4px solid;
  padding-left: 5px;
}

/* 製品情報 */
/* 特定商 */

.spacific_top h2{
  background: url(../images/spacific_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  padding: 80px;
  font-size: 2.5rem;
}

.spacific_1 table {
  border-collapse: collapse;
  margin: 30px auto;

}

.spacific_1 table tr {
  border-bottom: 1px solid#cccccc;
  padding-right: 10px;
}

.spacific_1 table tr td {
  padding: 15px;
  font-size: 18px;
}

.spacific_title {
  font-weight: bold;

}

@media screen and (max-width:767px) {
  .spacific_1 table tr td {
      font-size: 14px;
  }
}

/* 特定商 */
@media screen and (max-width:599px) {
.personal_top h2,.product h2,.spacific_top h2 {
  font-size: 1.6rem;
  padding:40px;
}
}
