:root {
    --bg-dark: #070B19;
    --cyber-cyan: #00F0FF;
    --gold-accent: #D4AF37;
    --text-main: #FFFFFF;
    --text-muted: #c8d4e8;
    --glass-bg: rgba(7, 11, 25, 0.7);
    --glass-border: rgba(0, 240, 255, 0.2);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Noto Serif JP', serif;
    overflow-x: hidden;
    line-height: 1.6;
}


/* ========================================
   PC 文字サイズ底上げ
======================================== */
@media (min-width: 769px) {
    body {
        font-size: 20px !important;
    }

    .section-subtitle {
        font-size: 2.2rem !important;
    }

    .section-title {
        font-size: 4.5rem !important;
    }

    .header-nav a {
        font-size: 15px !important;
    }

    .news-card-title {
        font-size: 1.4rem !important;
    }

    .news-card-points li {
        font-size: 1.15rem !important;
    }

    .eva-medium-text {
        font-size: 2.8rem !important;
    }

    .highlight-cyan-huge {
        font-size: 2rem !important;
    }

    .highlight-gold-huge {
        font-size: 2.2rem !important;
    }

    .warning-desc {
        font-size: 1.2rem !important;
    }

    .why-col-problem,
    .why-col-chronos {
        font-size: 1.3rem !important;
    }

    .why-entity-label {
        font-size: 1.3rem !important;
    }

    .strength-title {
        font-size: 1.6rem !important;
    }

    .strength-desc {
        font-size: 1.15rem !important;
    }

    .case-huge-title {
        font-size: 1.8rem !important;
    }

    .case-massive-amount {
        font-size: 2.8rem !important;
    }

    .case-detail-box p {
        font-size: 1.15rem !important;
    }

    .massive-box-title {
        font-size: 1.7rem !important;
    }

    .box-desc {
        font-size: 1.15rem !important;
    }

    .flow-tl-title {
        font-size: 1.2rem !important;
    }

    .flow-tl-desc {
        font-size: 1.05rem !important;
    }

    .massive-step-title {
        font-size: 1.4rem !important;
    }

    .step-desc {
        font-size: 1.05rem !important;
    }

    .price-amount {
        font-size: 3rem !important;
    }

    .price-note {
        font-size: 1.15rem !important;
    }

    .price-info-title {
        font-size: 1.3rem !important;
    }

    .price-info-desc {
        font-size: 1.1rem !important;
    }

    .faq-question {
        font-size: 1.15rem !important;
    }

    .faq-answer p {
        font-size: 1.1rem !important;
    }

    .type-name {
        font-size: 1.3rem !important;
    }

    .type-desc {
        font-size: 1.1rem !important;
    }

    .trust-list li {
        font-size: 1.3rem !important;
    }

    .cta-desc {
        font-size: 1.4rem !important;
    }

    .cta-free-note,
    .cta-fee-note {
        font-size: 1.2rem !important;
    }

    .company-label {
        font-size: 1rem !important;
    }

    .company-value {
        font-size: 1.1rem !important;
    }

    .why-flow-note {
        font-size: 1.2rem !important;
    }

    .why-flow-em {
        font-size: 1.6rem !important;
    }

    .cases-lead {
        font-size: 1rem !important;
    }

    .types-note {
        font-size: 1.05rem !important;
    }
}

/* ========================================
   ローディング
======================================== */
#cyber-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #03050A;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-inner {
    text-align: center;
    width: min(400px, 85vw);
}

.loader-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.7rem, 2.5vw, 0.9rem);
    letter-spacing: 6px;
    color: var(--cyber-cyan);
    opacity: 0.6;
    margin-bottom: 28px;
}

.loader-typewriter {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.65rem, 1.8vw, 0.78rem);
    color: rgba(0, 240, 255, 0.5);
    letter-spacing: 2px;
    height: 1.4em;
    margin-bottom: 20px;
    min-height: 1.4em;
}

.loader-bar-track {
    width: 100%;
    height: 2px;
    background: rgba(0, 240, 255, 0.1);
    margin-bottom: 10px;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--cyber-cyan);
    box-shadow: 0 0 8px var(--cyber-cyan);
    transition: width 0.1s linear;
}

.loader-pct {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: rgba(0, 240, 255, 0.4);
    letter-spacing: 2px;
    text-align: right;
}

/* ========================================
   ヘッダー
======================================== */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 40px;
    z-index: 1000;
}

.logo-area h1 {
    font-size: 20px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 1px;
    transition: 0.3s;
    font-family: 'Orbitron', sans-serif;
}

.header-nav a:hover {
    color: var(--cyber-cyan);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cyber-cyan);
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   共通ボタン
======================================== */
.btn-neon {
    text-decoration: none;
    color: var(--cyber-cyan);
    border: 1px solid var(--cyber-cyan);
    padding: 10px 24px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
    background: transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-neon:hover {
    background: var(--cyber-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--cyber-cyan);
}

/* ========================================
   SP下部追尾バー
======================================== */
.sp-fixed-bar {
    display: none;
}

/* ========================================
   共通セクション
======================================== */
section {
    padding: 120px 5%;
}

.section-header {
    margin-bottom: 50px;
    text-align: left;
}

@media (min-width: 769px) {
    .section-header {
        text-align: center;
    }

    .section-subtitle {
        display: inline-block;
    }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--gold-accent);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.7), 0 0 40px rgba(212, 175, 55, 0.3);
}

.section-subtitle {
    font-size: 1.5rem;
    border-left: 4px solid var(--cyber-cyan);
    padding-left: 15px;
    font-weight: bold;
    margin-bottom: 10px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    position: relative;
    z-index: 2;
}

.highlight-cyan {
    color: var(--cyber-cyan);
}

.sp-only {
    display: none;
}

.sp-br {
    display: none;
}

.bg-parallax {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.bg-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 11, 25, 0.85);
    z-index: 0;
}

.bg-parallax>* {
    position: relative;
    z-index: 1;
}

/* グリッドパターン背景（bg_dark_texture代替） */
.grid-bg {
    position: relative;
    background-color: #0D1535;
}

.grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.grid-bg>* {
    position: relative;
    z-index: 1;
}


/* ========================================
   1. ヒーロー
======================================== */
.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 !important;
    margin-top: 0;
}

.hero-content {
    position: relative;
    width: 90%;
    margin-top: 70px;
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 0;
        width: 100%;
    }

    .hero-bottom-bar {
        right: 0;
        left: 0;
        bottom: 16px;
        justify-content: center;
        width: 100%;
        padding: 0;
    }
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-bottom-bar {
    position: absolute;
    bottom: 100px;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hero-massive-btn {
    display: inline-block !important;
    font-size: 2rem !important;
    padding: 26px 64px !important;
    border: 2px solid var(--cyber-cyan) !important;
    color: var(--cyber-cyan) !important;
    background: rgba(0, 240, 255, 0.1) !important;
    font-weight: bold !important;
    letter-spacing: 2px !important;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}


.hero-massive-btn:hover {
    background: rgba(0, 240, 255, 0.25) !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

@media (max-width: 768px) {
    .hero-bottom-bar {
        bottom: 30px;
        right: 4%;
        gap: 10px;
    }

    .hero-massive-btn {
        font-size: 1.1rem !important;
        padding: 14px 28px !important;
    }
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid rgba(0, 240, 255, 0.5);
    font-size: 0.82rem;
    color: #e0f8ff;
    letter-spacing: 1px;
    background: rgba(7, 11, 25, 0.8);
    backdrop-filter: blur(4px);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.hero-badge i {
    font-size: 0.78rem;
    color: var(--cyber-cyan);
}

.hero-badge--license {
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.hero-badge--license i {
    color: var(--cyber-cyan);
}

.hero-massive-btn {
    font-size: 1.3rem;
    padding: 15px 40px;
    border-width: 2px;
    font-weight: bold;
    background: rgba(0, 240, 255, 0.1);
}

/* SP対応 */
@media (max-width: 768px) {
    .hero-bottom-bar {
        bottom: 16px;
        right: 4%;
        gap: 10px;
    }

    .hero-massive-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

.hero-img-sp {
    display: none;
}

@media (max-width: 768px) {
    .hero-img-pc {
        display: none;
    }

    .hero-img-sp {
        display: block;
    }
}


/* ========================================
   2. 警告セクション
======================================== */
.eva-warning-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
    border: 1px solid var(--glass-border);
    padding: 60px;
    background: rgba(3, 5, 10, 0.6);
    backdrop-filter: blur(8px);
}

.warn-left {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.warn-right {
    flex: 1;
    min-width: 300px;
}

.eva-huge-text {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.1;
    font-weight: 900;
    color: #e74c3c;
    text-shadow: 2px 2px 0 #000;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.1em;
}

.eva-medium-text {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    color: #fff;
    border-bottom: 4px solid var(--cyber-cyan);
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

.agitation-story {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.agitation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    text-align: center;
}

.agitation-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    margin-bottom: 12px;
    border: 1px solid var(--glass-border);
    filter: grayscale(100%) brightness(0.75);
    transition: filter 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.agitation-img:hover {
    filter: grayscale(0%) brightness(1);
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.agitation-item.agitation-danger .agitation-img {
    border-color: rgba(231, 76, 60, 0.4);
}

.agitation-item.agitation-danger {
    border: 1px solid rgba(231, 76, 60, 0.3);
    background: rgba(231, 76, 60, 0.05);
    padding: 10px;
}

.agitation-num-badge {
    font-size: 2rem;
    font-weight: 900;
    color: var(--cyber-cyan);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.agitation-num-badge.danger {
    color: #e74c3c;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.4);
}

.agitation-caption {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.4;
}

.agitation-arrow {
    font-size: 2rem;
    color: var(--cyber-cyan);
    opacity: 0.5;
}

.warn-box {
    border: 1px solid var(--glass-border);
    padding: 30px;
    background: rgba(7, 11, 25, 0.6);
}

.highlight-cyan-huge {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: var(--cyber-cyan);
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

/* PCのみ改行・スマホは自然な折り返し */
.cyan-br {
    display: block;
}

@media (max-width: 768px) {
    .cyan-br {
        display: none;
    }
}

.highlight-gold-huge {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: var(--gold-accent);
    font-weight: 900;
    line-height: 1.5;
    margin-top: 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.warning-desc {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 2px solid var(--glass-border);
}

.law-link {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 16px;
    border-left: 3px solid var(--glass-border);
    background: rgba(0, 240, 255, 0.03);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.law-link:hover {
    color: var(--cyber-cyan);
    border-color: var(--cyber-cyan);
}

/* ========================================
   3. WHY US — コンパクト比較表 + フロー図
======================================== */
.why-section {
    background: var(--bg-dark);
}

/* 比較テーブル */
.why-compare-table {
    padding: 0;
    overflow: hidden;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-compare-row {
    display: grid;
    grid-template-columns: 110px 1fr 50px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.2s;
}

.why-compare-row:last-child {
    border-bottom: none;
}

.why-compare-row:not(.why-compare-head):hover {
    background: rgba(0, 240, 255, 0.03);
}

.why-compare-head {
    background: rgba(0, 240, 255, 0.04);
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--glass-border);
}

.why-compare-danger {
    background: rgba(231, 76, 60, 0.04);
}

.why-col-entity {
    padding: 26px 20px;
    border-right: 1px solid var(--glass-border);
    text-align: center;
}

.why-entity-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyber-cyan);
    letter-spacing: 2px;
    line-height: 1.4;
}

.why-entity-danger {
    color: #e74c3c;
}

.why-col-problem {
    padding: 24px 28px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-right: 1px solid var(--glass-border);
}

.why-col-arrow {
    text-align: center;
    font-size: 1rem;
    color: var(--cyber-cyan);
    opacity: 0.5;
    border-right: 1px solid var(--glass-border);
}

.why-col-chronos {
    padding: 24px 28px;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.why-problem-tag {
    color: #e74c3c;
    font-weight: 900;
    margin-right: 8px;
    font-size: 1.1rem;
}

.why-chronos-tag {
    color: var(--cyber-cyan);
    font-weight: 900;
    margin-right: 8px;
    font-size: 1rem;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

/* エヴァ風フロー図 */
.why-flow-diagram {
    text-align: center;
    padding: 50px 20px;
    border: 1px solid var(--glass-border);
    background: rgba(7, 11, 25, 0.95);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}

/* 背景グリッド（エヴァ風） */
.why-flow-diagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.why-flow-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--cyber-cyan);
    opacity: 0.7;
    margin-bottom: 40px;
    position: relative;
}

.why-flow-nodes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    margin-bottom: 40px;
}

.why-flow-node {
    width: 160px;
    padding: 24px 16px;
    border: 1px solid var(--glass-border);
    background: rgba(7, 11, 25, 0.9);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.why-flow-node--active {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.15), inset 0 0 20px rgba(0, 240, 255, 0.04);
}

.why-flow-node-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: var(--glass-border);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.why-flow-node--active .why-flow-node-num {
    color: var(--cyber-cyan);
}

.why-flow-node-title {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 900;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 8px;
    white-space: nowrap;
}

.why-flow-node--active .why-flow-node-title {
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.why-flow-node-by {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    white-space: nowrap;
}

.why-flow-node--active .why-flow-node-by {
    color: var(--cyber-cyan);
}

.why-flow-arrow {
    display: flex;
    align-items: center;
    gap: 0;
    width: 60px;
    flex-shrink: 0;
}

.why-flow-arrow-line {
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.why-flow-arrow-head {
    font-size: 0.9rem;
    color: var(--glass-border);
}

.why-flow-note {
    font-size: 1rem;
    color: #c8d4e8;
    line-height: 1.8;
    position: relative;
    letter-spacing: 1px;
}

.why-flow-em {
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--cyber-cyan);
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

/* ========================================
   11. 対応詐欺 — マーキー自動スクロール
======================================== */
.types-section-OLD {
    background: var(--bg-dark);
}

.types-marquee-wrap {
    overflow: hidden;
    position: relative;
}

/* 左右フェードマスク */
.types-marquee-wrap::before,
.types-marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.types-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.types-marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-dark), transparent);
}

.types-marquee {
    display: flex;
    width: max-content;
}

.types-marquee--left .types-marquee-inner {
    display: flex;
    gap: 16px;
    animation: marqueeLeft 28s linear infinite;
}

.types-marquee--right .types-marquee-inner {
    display: flex;
    gap: 16px;
    animation: marqueeRight 28s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ホバーで一時停止 */
.types-marquee-wrap:hover .types-marquee-inner {
    animation-play-state: paused;
}

.types-marquee .type-card {
    width: 300px;
    flex-shrink: 0;
    padding: 28px 24px;
    transition: all 0.3s ease;
    cursor: default;
}

.types-marquee .type-card:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.types-note {
    margin-top: 30px;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
}

/* ========================================
   4. ミッション
======================================== */
.mission-section {
    position: relative;
    text-align: center;
    background: #0D1535;
    overflow: hidden;
}

.bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(6rem, 20vw, 18rem);
    color: rgba(0, 240, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
    overflow: hidden;
    width: 100%;
}

.mission-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    border: 1px solid var(--glass-border);
}

.mission-huge {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--cyber-cyan);
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.4;
    margin-bottom: 24px;
}

.mission-desc {
    font-size: 1.05rem;
    line-height: 2.2;
    color: var(--text-main);
}

.mission-license {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 10px 20px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 240, 255, 0.04);
}

.mission-license i {
    color: var(--cyber-cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

.mission-license-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-muted);
    white-space: nowrap;
}

.mission-license-num {
    font-size: 0.85rem;
    color: var(--cyber-cyan);
    letter-spacing: 1px;
    font-weight: bold;
    white-space: nowrap;
}

/* ========================================
   5. 選ばれる理由
======================================== */
.strength-section {
    background: #0D1535;
}

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

.strength-card {
    text-align: left;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.strength-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--glass-border);
    filter: brightness(0.9);
    transition: filter 0.3s;
}

.strength-card:hover .strength-img {
    filter: brightness(1.05);
}

.strength-card:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.1);
}

.strength-num-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 24px 14px;
    background: rgba(0, 240, 255, 0.03);
}

.strength-card:hover .strength-num-wrap {
    background: rgba(0, 240, 255, 0.06);
}

.strength-num-big {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--cyber-cyan);
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    margin-right: 16px;
}

.strength-num-line {
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.strength-title {
    font-size: 1.2rem;
    color: var(--cyber-cyan);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.5;
    padding: 20px 24px 12px;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}

.strength-desc {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--text-muted);
    padding: 0 24px 24px;
}

/* ========================================
   6. シミュレーション（モーダル方式）
======================================== */

.simulation-section {
    background: #0D1535;
}

.sim-lead-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 700px;
    line-height: 1.8;
}

.sim-banner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 40px;
}

.sim-banner-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--glass-border);
    margin-bottom: 16px;
}

.sim-banner-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.sim-banner-btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    border-width: 2px;
    background: rgba(0, 240, 255, 0.06);
}

/* 追尾フローティングボタン */
.sim-float-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(7, 11, 25, 0.92);
    border: 1px solid var(--cyber-cyan);
    color: var(--cyber-cyan);
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: floatPulse 3s ease-in-out infinite;
    backdrop-filter: blur(8px);
}

.sim-float-btn:hover {
    background: var(--cyber-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.sim-float-btn i {
    font-size: 16px;
}

.sim-float-label {
    font-size: 13px;
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 0 4px 20px rgba(0, 0, 0, 0.5);
    }
}

.sim-float-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sim-float-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* モーダルオーバーレイ */
.sim-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    visibility: hidden;
    transition: background 0.4s ease, visibility 0.4s ease;
}

.sim-modal-overlay.open {
    background: rgba(0, 0, 0, 0.85);
    pointer-events: auto;
    visibility: visible;
}

/* モーダル本体 */
.sim-modal {
    width: 580px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(7, 11, 25, 0.97);
    border: 1px solid var(--cyber-cyan);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.15), inset 0 0 60px rgba(0, 0, 0, 0.5);
    padding: 50px 40px 40px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    text-align: center;
}

/* スキャンライン装飾 */
.sim-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 240, 255, 0.015) 2px,
            rgba(0, 240, 255, 0.015) 4px);
    pointer-events: none;
    z-index: 0;
}

.sim-modal>* {
    position: relative;
    z-index: 1;
}

.sim-modal-overlay.open .sim-modal {
    transform: translateY(0);
    opacity: 1;
}

.sim-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sim-modal-close:hover {
    color: var(--cyber-cyan);
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.sim-modal-header {
    margin-bottom: 30px;
}

.sim-modal-en {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--glass-border);
    display: block;
    margin-bottom: 8px;
}

.sim-modal-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--text-main);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.sim-modal-lead {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.sim-progress-area {
    margin-bottom: 35px;
}

.sim-step-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--cyber-cyan);
    margin-bottom: 10px;
}

.sim-bar-track {
    width: 100%;
    height: 2px;
    background: var(--glass-border);
}

.sim-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.4), var(--cyber-cyan));
    transition: width 0.4s ease;
    box-shadow: 0 0 8px var(--cyber-cyan);
}

.sim-step {
    display: none;
}

.sim-step.active {
    display: block;
    animation: simFade 0.5s ease;
}

@keyframes simFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.sim-question {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: var(--text-main);
    margin-bottom: 28px;
    letter-spacing: 2px;
    line-height: 1.5;
}

.sim-choice {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 16px;
    font-size: 0.98rem;
    font-family: 'Noto Serif JP', serif;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-align: left;
}

.sim-choice:hover {
    background: rgba(0, 240, 255, 0.07);
    border-color: var(--cyber-cyan);
    color: var(--cyber-cyan);
    padding-left: 24px;
    box-shadow: inset 3px 0 0 var(--cyber-cyan);
}

/* 結果画面 */
.result-step {
    text-align: center;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 4px;
    font-family: 'Orbitron', sans-serif;
}

.result-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--cyber-cyan);
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.result-pct {
    font-size: 0.5em;
    color: var(--glass-border);
}

.result-msg {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.7;
}

.sim-result-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

body.sim-modal-open {
    overflow: hidden;
}

/* ========================================
   7. 事例データ
======================================== */
.cases-section {
    background: var(--bg-dark);
}

.cases-lead {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.7;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.case-card {
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: var(--cyber-cyan);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.1);
}

.case-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.case-tag {
    display: inline-block;
    font-size: 0.72rem;
    padding: 4px 12px;
    background: var(--cyber-cyan);
    color: var(--bg-dark);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-family: 'Orbitron', sans-serif;
}

.case-huge-title {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.case-massive-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyber-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.case-detail-box {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.case-detail-box p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.case-detail-box strong {
    color: var(--cyber-cyan);
}

/* ========================================
   8. 鑑識技術
======================================== */
.forensics-section {
    background: #0D1535;
}

.forensics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.forensic-box {
    text-align: center;
    transition: all 0.3s ease;
}

.forensic-box:hover {
    border-color: var(--cyber-cyan);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.reason-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    filter: grayscale(50%) sepia(10%);
    transition: 0.3s;
}

.forensic-box:hover .reason-img {
    filter: grayscale(0%);
    border-color: var(--cyber-cyan);
}

.massive-box-title {
    font-size: 1.2rem;
    color: var(--cyber-cyan);
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: 900;
}

.box-desc {
    font-size: 0.9rem;
    line-height: 2;
    color: var(--text-muted);
}

/* ========================================
   9. フロー
======================================== */
.flow-section {
    background: var(--bg-dark);
}

.flow-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
}

.flow-step-highlight {
    border-color: rgba(0, 240, 255, 0.4) !important;
    background: rgba(0, 240, 255, 0.03) !important;
}

.flow-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    filter: grayscale(60%);
    flex-shrink: 0;
    transition: 0.3s;
}

.flow-step:hover .flow-img {
    filter: grayscale(0%);
    border-color: var(--cyber-cyan);
}

.step-text-area {
    flex: 1;
}

.step-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--cyber-cyan);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.massive-step-title {
    font-size: 1.15rem;
    color: var(--text-main);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========================================
   10. 料金
======================================== */
.price-section {
    background: var(--bg-dark);
    padding: 60px 5%;
}

.price-layout {
    max-width: 800px;
    margin: 0 auto;
}

.price-main-card {
    margin-bottom: 16px;
    overflow: hidden;
}

.price-card-header {
    padding: 12px 20px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 240, 255, 0.04);
}

.price-card-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cyber-cyan);
    letter-spacing: 3px;
}

.price-card-body {
    padding: 20px;
    text-align: center;
}

.price-amount {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.price-highlight {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2em;
    color: var(--cyber-cyan);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

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

.price-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.price-info-card {
    transition: all 0.3s ease;
    padding: 20px !important;
}

.price-info-card:hover {
    border-color: var(--cyber-cyan);
}

.price-info-title {
    font-size: 1rem;
    color: var(--cyber-cyan);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-info-title i {
    margin-right: 6px;
}

.price-info-desc {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ========================================
   11. 対応詐欺種別
======================================== */
.types-section {
    background: #0D1535;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.type-card {
    transition: all 0.3s ease;
}

.type-card:hover {
    border-color: var(--cyber-cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
}

.type-icon {
    margin-bottom: 14px;
    color: var(--cyber-cyan);
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.type-name {
    font-size: 1rem;
    color: var(--text-main);
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: bold;
}

.type-desc {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.types-note {
    margin-top: 30px;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
}

/* ========================================
   12. FAQ
======================================== */
.faq-section {
    background: #0D1535;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    color: var(--text-main);
    background: transparent;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    line-height: 1.6;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--cyber-cyan);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--cyber-cyan);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 18px 16px;
    border-top: 1px solid var(--glass-border);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--text-muted);
    padding-top: 12px;
}

/* ========================================
   13. トラスト
======================================== */
.trust-section {
    padding: 120px 5%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 11, 25, 0.88);
    z-index: 0;
}

.trust-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.trust-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--gold-accent);
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 40px;
}

.trust-list {
    list-style: none;
    text-align: left;
}

.trust-list li {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-main);
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
    letter-spacing: 1px;
}

.trust-list li:last-child {
    border-bottom: none;
}

/* ========================================
   フッター
======================================== */
.cyber-footer {
    background: #03050A;
    border-top: 1px solid var(--glass-border);
}

.footer-cta {
    padding: 100px 5%;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.massive-cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--cyber-cyan);
    letter-spacing: 6px;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.cta-free-note {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}

.cta-fee-note {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #fff;
}

.fee-asterisk {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.cta-image-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-link {
    text-decoration: none;
}

.cta-btn-img {
    max-width: 280px;
    width: 100%;
    transition: opacity 0.3s, transform 0.3s;
}

.cta-btn-img:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.footer-company {
    padding: 60px 5%;
    border-bottom: 1px solid var(--glass-border);
}

.footer-company-inner {
    max-width: 900px;
    margin: 0 auto;
}

.footer-company-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--cyber-cyan);
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.footer-company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 0;
}

.footer-company-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
}

.company-label {
    min-width: 90px;
    font-size: 0.78rem;
    color: var(--cyber-cyan);
    letter-spacing: 1px;
    flex-shrink: 0;
    font-family: 'Orbitron', sans-serif;
}

.company-value {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-bottom {
    padding: 40px 5%;
    text-align: center;
}

.footer-bottom h2 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 8px;
}

.copyright {
    margin-top: 20px;
    font-family: 'Orbitron', sans-serif;
    opacity: 0.5;
    font-size: 11px;
}

/* ========================================
   スクロールアニメーション
======================================== */
.slide-up-trigger {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-up-trigger.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   探偵演出 — グローバル
======================================== */

/* サイト全体スキャンライン */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 3px,
            rgba(0, 240, 255, 0.012) 3px,
            rgba(0, 240, 255, 0.012) 4px);
    pointer-events: none;
    z-index: 9000;
}

/* ヒーロー：CCTV風コーナーラベル */
.hero-cctv-label {
    position: absolute;
    top: 100px;
    left: 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    color: rgba(0, 240, 255, 0.5);
    letter-spacing: 3px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-cctv-label .cctv-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e74c3c;
    box-shadow: 0 0 8px #e74c3c;
    animation: cctvBlink 1.5s ease-in-out infinite;
    margin-right: 6px;
}

@keyframes cctvBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

/* ヒーロー：CASE FILE スタンプ */
.hero-case-stamp {
    position: absolute;
    bottom: 80px;
    left: 5%;
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: rgba(0, 240, 255, 0.7);
    letter-spacing: 3px;
    z-index: 2;
    border: 1px solid rgba(0, 240, 255, 0.5);
    padding: 8px 14px;
    background: rgba(7, 11, 25, 0.5);
    backdrop-filter: blur(4px);
}

/* タイプライターテキスト（ヒーロー） */
.hero-typewriter {
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden;
    display: block;
}

/* セクション共通：左ライン装飾 */
.section-case-id {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: rgba(212, 175, 55, 0.7);
    letter-spacing: 4px;
    margin-bottom: 6px;
    display: block;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* ケースカード：スキャン演出 */
.case-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-cyan), transparent);
    opacity: 0;
    transition: none;
}

.case-card:hover::after {
    animation: caseScan 0.8s ease forwards;
}

@keyframes caseScan {
    0% {
        top: -2px;
        opacity: 0.8;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* EVIDENCE DATA バッジ */
.evidence-badge {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(0, 240, 255, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 3px 8px;
    margin-bottom: 12px;
}

/* 鑑識ボックス：番号強調 */
.forensic-num-cyber {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--glass-border);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

/* フロータイムライン：左ライン */
.flow-container {
    position: relative;
}

.flow-container::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--cyber-cyan), transparent);
    opacity: 0.3;
}

/* FAQ：アイコン回転修正（既に定義済みを上書き防止のためコメント） */

/* SP固定CTAバー用追尾ボタン位置調整 */
@media (max-width: 768px) {
    .sim-float-btn {
        bottom: 80px;
        right: 12px;
        padding: 11px 16px;
        font-size: 12px;
    }
}

/* ========================================
   レスポンシブ（768px以下）
======================================== */
@media (max-width: 768px) {
    .bg-parallax {
        background-attachment: scroll;
    }

    .sp-only {
        display: inline;
    }

    .sp-br {
        display: block;
    }

    .glass-header {
        padding: 12px 15px;
    }

    .logo-area h1 {
        font-size: 14px;
        letter-spacing: 1px;
    }

    /* CCTVラベル・スタンプはSPでテキストと被るため非表示 */
    .hero-cctv-label,
    .hero-case-stamp {
        display: none;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(3, 5, 10, 0.97);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right 0.4s ease;
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }

    .header-nav.open {
        right: 0;
    }

    .header-nav a {
        font-size: 15px;
    }

    .hamburger {
        display: block;
    }

    .sp-fixed-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        border-top: 1px solid var(--glass-border);
    }

    .sp-fixed-btn {
        flex: 1;
        text-align: center;
        padding: 14px 0;
        font-size: 13px;
        font-weight: bold;
        text-decoration: none;
        letter-spacing: 1px;
    }

    .sp-btn-line {
        background: #06C755;
        color: #fff;
    }

    .sp-btn-mail {
        background: var(--cyber-cyan);
        color: var(--bg-dark);
    }

    .cyber-footer {
        padding-bottom: 60px;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 0 5%;
    }

    .hero-content {
        justify-content: center;
        padding-top: 90px;
        padding-bottom: 80px;
        flex-direction: column;
        align-items: center;
    }

    .hero-woman-wrap {
        display: none;
    }

    .hero-main {
        text-align: center;
        align-items: center;
        width: 100%;
        min-width: unset;
        padding-right: 0;
    }

    .hero-speech-box--main {
        text-align: left;
    }

    .hero-sub-message {
        white-space: normal;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        text-align: center;
    }

    .weapon-block {
        border-right: none;
        border-left: 5px solid var(--gold-accent);
        padding-right: 0;
        padding-left: 15px;
        text-align: left;
    }

    .weapon-sub {
        font-size: 1.1rem;
    }

    .massive-weapon {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .main-brand {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
        white-space: normal;
        word-break: break-all;
        line-height: 1.15;
        text-align: center;
        letter-spacing: 2px;
    }

    .hero-massive-btn {
        font-size: 1rem;
        padding: 14px 20px;
        width: 100%;
        text-align: center;
    }

    .hero-keywords {
        justify-content: center;
        font-size: 0.78rem;
    }

    .hero-badges {
        justify-content: center;
    }

    section {
        padding: 60px 4%;
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .section-subtitle {
        font-size: 1.1rem;
        padding-left: 10px;
    }

    .glass-panel {
        padding: 20px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* 警告 */
    .eva-warning-grid {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .eva-huge-text {
        font-size: clamp(1.8rem, 7vw, 3rem);
        writing-mode: horizontal-tb;
        white-space: nowrap;
    }

    .eva-medium-text {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .agitation-story {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .agitation-item {
        width: 100%;
    }

    .agitation-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    /* WHY US — スマホは横スクロールテーブル */
    .why-compare-table {
        padding: 0;
        border: 1px solid var(--glass-border);
        background: var(--glass-bg);
        backdrop-filter: blur(5px);
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--glass-border) transparent;
    }

    /* テーブル内部を横並び固定幅に */
    .why-compare-table .why-compare-row {
        display: grid;
        grid-template-columns: 80px 200px 36px 200px;
        min-width: 520px;
        border-bottom: 1px solid var(--glass-border);
    }

    .why-compare-table .why-compare-row:last-child {
        border-bottom: none;
    }

    .why-compare-head {
        display: grid;
    }

    .why-col-entity {
        padding: 12px 10px;
        border-right: 1px solid var(--glass-border);
        background: var(--glass-bg);
        text-align: center;
    }

    .why-compare-danger .why-col-entity {
        background: rgba(231, 76, 60, 0.06);
    }

    .why-entity-label {
        font-size: 0.78rem;
    }

    .why-col-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid var(--glass-border);
        font-size: 0.9rem;
    }

    .why-col-problem {
        display: block;
        padding: 12px 12px;
        font-size: 0.8rem;
        border-right: 1px solid var(--glass-border);
        color: var(--text-muted);
        line-height: 1.6;
    }

    .why-col-chronos {
        display: block;
        padding: 12px 12px;
        font-size: 0.8rem;
        color: var(--text-main);
        line-height: 1.6;
    }

    /* スワイプヒント */
    .why-compare-table::after {
        content: '← スワイプして確認 →';
        display: block;
        font-family: 'Orbitron', sans-serif;
        font-size: 9px;
        letter-spacing: 3px;
        color: var(--glass-border);
        text-align: center;
        padding: 8px 0 0;
    }

    /* beforeラベルは非表示（テーブルヘッダーがあるので不要） */
    .why-col-problem::before,
    .why-col-chronos::before {
        display: none;
    }

    .why-flow-nodes {
        flex-direction: column;
        gap: 0;
    }

    .why-flow-node {
        width: 100%;
        max-width: 280px;
        padding: 18px 16px;
    }

    .why-flow-arrow {
        width: auto;
        height: 40px;
        flex-direction: column;
    }

    .why-flow-arrow-line {
        width: 1px;
        height: 100%;
        flex: 1;
        background: var(--glass-border);
    }

    .why-flow-arrow-head {
        transform: rotate(90deg);
    }

    .why-flow-note {
        font-size: 0.88rem;
    }

    .why-flow-em {
        font-size: 1.1rem;
    }

    /* ミッション */
    .mission-content {
        padding: 30px 16px;
    }

    .mission-huge {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .mission-license {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 16px;
    }

    .mission-license-label,
    .mission-license-num {
        white-space: normal;
    }

    .bg-text {
        display: none;
    }

    /* 選ばれる理由 */
    .strength-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .strength-grid::-webkit-scrollbar {
        height: 4px;
    }

    .strength-grid::-webkit-scrollbar-track {
        background: rgba(0, 240, 255, 0.05);
    }

    .strength-grid::-webkit-scrollbar-thumb {
        background: var(--cyber-cyan);
    }

    .strength-card {
        flex: 0 0 72vw;
        scroll-snap-align: start;
    }

    .strength-num-big {
        font-size: 2.5rem;
    }

    .strength-title {
        font-size: 1.1rem;
        padding: 16px 16px 8px;
        color: var(--cyber-cyan);
        font-weight: 900;
    }

    .strength-desc {
        padding: 0 16px 16px;
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    .strength-num-wrap {
        padding: 12px 16px 10px;
    }

    /* マーキー */
    .types-marquee .type-card {
        width: 260px;
        padding: 20px 16px;
    }

    /* シミュレーション */
    .sim-huge-q {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }

    .sim-btn {
        padding: 14px 10px;
        font-size: 0.92rem;
    }

    /* 事例 */
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .case-massive-amount {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    /* 鑑識 */
    .forensics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reason-img {
        height: 140px;
    }

    /* フロー */
    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .flow-img {
        margin: 0 auto;
    }

    /* 料金 */
    .price-card-body {
        padding: 24px 16px;
    }

    .price-info-grid {
        grid-template-columns: 1fr;
    }

    /* 詐欺種別はマーキーのため変更不要 */

    /* FAQ */
    .faq-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .faq-question {
        font-size: 0.85rem;
        padding: 14px 14px;
    }

    .faq-answer {
        padding: 0 14px 14px;
    }

    /* トラスト */
    .trust-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-bottom: 24px;
    }

    /* フッター */
    .footer-cta {
        padding: 60px 4%;
    }

    .cta-image-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-company-grid {
        grid-template-columns: 1fr;
    }

    .footer-company-item {
        flex-direction: column;
        gap: 4px;
    }
}

/* タブレット */
@media (min-width: 769px) and (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .forensics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-brand {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-woman-wrap {
        width: 55%;
        margin-left: -3%;
    }

    .hero-main {
        width: 50%;
        min-width: 300px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .hero-woman-wrap {
        width: 58%;
        margin-left: -4%;
    }

    .hero-main {
        width: 47%;
        min-width: 340px;
    }
}

/* ========================================
   報道ブロック + クロノス宣言
======================================== */
.news-block {
    margin-top: 28px;
    border: 1px solid rgba(231, 76, 60, 0.3);
    overflow: hidden;
}

/* ヘッダー行（常時表示） */
.news-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(231, 76, 60, 0.08);
    border-bottom: 1px solid rgba(231, 76, 60, 0.15);
}

.news-block-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
    color: #e74c3c;
    opacity: 0.8;
}

/* 出典リンク（常時表示） */
.news-block-cite-inline {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
    transition: all 0.3s;
    white-space: nowrap;
}

.news-block-cite-inline:hover {
    color: var(--cyber-cyan);
    border-color: var(--glass-border);
}

/* アコーディオントリガーボタン */
.news-accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
    gap: 12px;
}

.news-accordion-trigger:hover {
    background: rgba(231, 76, 60, 0.04);
}

.news-accordion-headline {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #ccc;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.news-accordion-icon {
    font-size: 1.3rem;
    color: #e74c3c;
    flex-shrink: 0;
    transition: transform 0.3s;
    opacity: 0.7;
}

.news-accordion-trigger[aria-expanded="true"] .news-accordion-icon {
    transform: rotate(45deg);
}

/* アコーディオン本体（開閉） */
.news-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(3, 5, 10, 0.5);
}

.news-accordion-body.open {
    max-height: 500px;
}

.news-facts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px;
}

.news-fact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.news-fact-icon {
    color: var(--text-muted);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.4;
}

.news-fact-icon.danger {
    color: #e74c3c;
    opacity: 0.8;
}

.news-fact-item p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.news-quote {
    color: #e0e0e0;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.chronos-declaration {
    padding: 32px 24px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 240, 255, 0.03);
    margin-top: 48px;
    text-align: center;
}

.declaration-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--cyber-cyan);
    opacity: 0.6;
    margin-bottom: 20px;
}

.declaration-text {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 2;
    color: #fff;
    margin-bottom: 20px;
}

.declaration-em {
    color: var(--cyber-cyan);
    font-weight: 900;
    font-size: 1.15em;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.declaration-sub {
    font-size: 0.88em;
    color: var(--text-muted);
}

.declaration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.decl-badge {
    font-size: 0.78rem;
    padding: 5px 14px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--cyber-cyan);
    letter-spacing: 1px;
    background: rgba(0, 240, 255, 0.05);
}

@media (max-width: 768px) {
    .news-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 14px;
    }

    .news-block-body {
        padding: 16px;
    }

    .news-block-headline {
        font-size: 0.95rem;
    }

    .news-fact-item p {
        font-size: 0.82rem;
    }

    .chronos-declaration {
        padding: 20px 16px 20px 20px;
    }

    .declaration-text {
        font-size: 0.92rem;
    }

    .decl-badge {
        font-size: 0.72rem;
        padding: 5px 10px;
    }
}

/* ========================================
   シミュレーション結果ランクバッジ
======================================== */
.result-rank-badge {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    padding: 6px 18px;
    margin: 8px 0 16px;
    border: 1px solid;
}

.rank-high {
    color: var(--cyber-cyan);
    border-color: var(--cyber-cyan);
    background: rgba(0, 240, 255, 0.06);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.rank-mid {
    color: var(--gold-accent);
    border-color: var(--gold-accent);
    background: rgba(212, 175, 55, 0.06);
}

.rank-low {
    color: #e0a040;
    border-color: #e0a040;
    background: rgba(224, 160, 64, 0.06);
}

.rank-impossible {
    color: #e74c3c;
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.06);
}

/* 追跡不可の場合は数字を非表示っぽく */
#result-number:empty,
#result-number {
    min-height: 1.1em;
}

/* ========================================
   フッター：マップ＋公的機関リンク
======================================== */
.footer-map {
    margin-top: 32px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.footer-authorities {
    margin-top: 24px;
    padding: 20px 0 4px;
    border-top: 1px solid var(--glass-border);
}

.footer-auth-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.footer-auth-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-auth-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    letter-spacing: 1px;
}

.footer-auth-link:hover {
    color: var(--cyber-cyan);
    border-color: var(--cyber-cyan);
}

.footer-auth-link i {
    font-size: 0.7rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-auth-links {
        gap: 8px;
    }

    .footer-auth-link {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

/* フッター法的リンク */
.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 12px 0 8px;
}

.footer-legal-link {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-legal-link:hover {
    color: var(--cyber-cyan);
}

.footer-legal-sep {
    color: var(--glass-border);
    font-size: 0.7rem;
}

/* ========================================
   事例カード アコーディオン
======================================== */
.case-accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 12px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--cyber-cyan);
    font-size: 0.82rem;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.case-accordion-btn:hover {
    background: rgba(0, 240, 255, 0.06);
    border-color: var(--cyber-cyan);
}

.case-acc-icon {
    font-size: 1.1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.case-accordion-btn.open .case-acc-icon {
    transform: rotate(45deg);
}

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

.case-accordion-body.open {
    max-height: 300px;
}

.case-accordion-body p {
    padding-top: 12px;
}

/* ========================================
   ヒーロー：女性の発言ボックス
======================================== */
.hero-woman-wrap {
    position: relative;
}

.hero-speech-box {
    position: absolute;
    left: 5%;
    transform: none;
    bottom: 10%;
    background: rgba(7, 11, 25, 0.82);
    border: 1px solid var(--glass-border);
    border-left: 5px solid var(--gold-accent);
    backdrop-filter: blur(8px);
    padding: 20px 32px;
    white-space: nowrap;
    z-index: 3;
}

.hero-speech-sub {
    font-size: 1.1rem;
    color: var(--gold-accent);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hero-speech-main {
    font-size: 2.2rem;
    color: var(--gold-accent);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

/* SPではhero-woman-wrap内のボックスは非表示、hero-main内を表示 */
.hero-speech-box--main {
    display: none;
}

@media (max-width: 768px) {
    .hero-woman-wrap .hero-speech-box {
        display: none;
    }

    .hero-speech-box--main {
        display: block;
        position: static;
        transform: none;
        width: auto;
        white-space: normal;
        margin-bottom: 8px;
        padding: 10px 14px;
        border-left: 3px solid var(--gold-accent);
    }

    .hero-speech-box--main .hero-speech-sub {
        font-size: 0.78rem;
    }

    .hero-speech-box--main .hero-speech-main {
        font-size: 1.2rem;
        white-space: normal;
    }
}

/* 警告セクション 女性画像 */
.warn-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100%;
}

.warn-woman-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    mix-blend-mode: lighten;
    filter: brightness(1.05) contrast(1.02);
    margin-top: auto;
}

@media (max-width: 768px) {
    .warn-woman-img {
        display: none;
    }
}

/* ========================================
   セクション背景動画
======================================== */
.section-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.warning-section,
.why-section,
.mission-section,
.strength-section,
.simulation-section,
.cases-section,
.forensics-section,
.flow-section,
.price-section,
.types-section,
.faq-section,
.trust-section {
    position: relative;
    overflow: hidden;
}

.warning-section>*:not(.section-bg-video),
.why-section>*:not(.section-bg-video),
.mission-section>*:not(.section-bg-video),
.strength-section>*:not(.section-bg-video),
.simulation-section>*:not(.section-bg-video),
.cases-section>*:not(.section-bg-video),
.forensics-section>*:not(.section-bg-video),
.flow-section>*:not(.section-bg-video),
.price-section>*:not(.section-bg-video),
.types-section>*:not(.section-bg-video),
.faq-section>*:not(.section-bg-video),
.trust-section>*:not(.section-bg-video) {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .section-bg-video {
        display: block;
    }
}

/* ========================================
   NEWSセクション
======================================== */
.news-section {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.news-section>*:not(.section-bg-video) {
    position: relative;
    z-index: 1;
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card-source {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--cyber-cyan);
    border: 1px solid var(--cyber-cyan);
    padding: 3px 10px;
}

.news-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.news-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-main);
    border-left: 3px solid var(--gold-accent);
    padding-left: 12px;
}

.news-card-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-card-points li {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 14px;
    position: relative;
}

.news-card-points li::before {
    content: '◇';
    position: absolute;
    left: 0;
    color: var(--cyber-cyan);
    font-size: 0.7rem;
    top: 3px;
}

.news-card-points li strong {
    color: var(--text-main);
}

.news-card-accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--cyber-cyan);
    font-size: 0.8rem;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 1px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.news-card-accordion-btn:hover {
    background: rgba(0, 240, 255, 0.06);
    border-color: var(--cyber-cyan);
}

.news-card-acc-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.news-card-accordion-btn.open .news-card-acc-icon {
    transform: rotate(45deg);
}

.news-card-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.news-card-accordion-body.open {
    max-height: 400px;
}

.news-card-accordion-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    padding: 12px 0 4px;
    border-top: 1px solid var(--glass-border);
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: auto;
    transition: color 0.3s;
}

.news-card-link:hover {
    color: var(--cyber-cyan);
}

.news-card-link i {
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .news-cards-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .news-cards-grid::-webkit-scrollbar {
        height: 4px;
    }

    .news-cards-grid::-webkit-scrollbar-track {
        background: rgba(0, 240, 255, 0.05);
    }

    .news-cards-grid::-webkit-scrollbar-thumb {
        background: var(--cyber-cyan);
        opacity: 0.4;
    }

    .news-card {
        flex: 0 0 82vw;
        scroll-snap-align: start;
    }
}

/* ========================================
   FLOW 横タイムライン（PC専用）
======================================== */
.flow-timeline {
    position: relative;
    display: block;
}

.flow-timeline-track {
    display: none;
}

.flow-timeline-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.flow-tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyber-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
    margin-bottom: 12px;
    flex-shrink: 0;
}

.flow-tl-dot--last {
    background: var(--gold-accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.flow-tl-card {
    width: 100%;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.flow-tl-card--last {
    border-color: rgba(212, 175, 55, 0.4);
}

.flow-tl-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--cyber-cyan);
    padding: 10px 14px 6px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 240, 255, 0.03);
}

.flow-tl-card--last .flow-tl-num {
    color: var(--gold-accent);
    background: rgba(212, 175, 55, 0.03);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.flow-tl-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--glass-border);
    filter: brightness(0.85) grayscale(20%);
    transition: filter 0.3s;
}

.flow-tl-card:hover .flow-tl-img {
    filter: brightness(1);
}

.flow-tl-title {
    font-size: 0.88rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.5;
    padding: 12px 14px 6px;
    letter-spacing: 1px;
}

.flow-tl-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 14px 16px;
    flex: 1;
}

/* SP時はタイムライン非表示・縦積みを表示 */
@media (max-width: 768px) {
    .flow-timeline {
        display: none;
    }
}

/* PC時は縦積みを非表示 */
@media (min-width: 769px) {
    .flow-section .flow-container {
        display: none;
    }
}

.price-section .section-header {
    margin-bottom: 24px;
}

/* ========================================
   フッターCTA ボタン
======================================== */
.cta-image-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 36px;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    border-radius: 2px;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    transition: left 0.4s ease;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn i {
    font-size: 2rem;
    flex-shrink: 0;
}

.cta-btn-main {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
}

.cta-btn-sub {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    margin-top: 3px;
}

/* LINE */
.cta-btn--line {
    background: #06C755;
    box-shadow: 0 4px 24px rgba(6, 199, 85, 0.4);
}

.cta-btn--line i {
    color: #fff;
}

.cta-btn--line:hover {
    background: #05b34c;
    box-shadow: 0 6px 32px rgba(6, 199, 85, 0.6);
    transform: translateY(-2px);
}

/* メール */
.cta-btn--mail {
    background: #1a73e8;
    box-shadow: 0 4px 24px rgba(26, 115, 232, 0.4);
}

.cta-btn--mail i {
    color: #fff;
}

.cta-btn--mail:hover {
    background: #1557b0;
    box-shadow: 0 6px 32px rgba(26, 115, 232, 0.6);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-btn {
        min-width: unset;
        width: 100%;
        padding: 16px 24px;
    }

    .cta-image-buttons {
        flex-direction: column;
        gap: 12px;
    }
}