/* ============================================================
   Editorial Compliance — shared design system
   compliance/{safety-duty, penalties, incident-reporting, record-keeping} で共有
   各ページは @push('styles') 内で --accent / --accent-soft を上書きする
   ============================================================ */

.essay {
    --paper: #faf8f3;
    --ink: #0a0a0a;
    --ink-soft: #3a3a3a;
    --ink-faint: #7a7a7a;
    --rule: #0a0a0a;
    --rule-soft: #d8d3c4;
    --accent: #a8201a;
    --accent-soft: #f5e8e6;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.essay h1, .essay h2, .essay h3 {
    font-family: 'Shippori Mincho', 'Yu Mincho', serif;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

/* ─── 二段コンテナ ─── */
.col-read,
.col-show {
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}
.col-read { max-width: 720px; }
.col-show { max-width: 1120px; }
@media (min-width: 768px) {
    .col-read, .col-show {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* ─── 本文 ─── */
.essay p, .essay li {
    font-size: 17px;
    line-height: 2.0;
    letter-spacing: 0.05em;
    color: var(--ink);
}

/* ─── キッカー(英字小キャップ) ─── */
.kicker {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

/* ─── マスト(雑誌の最上部) ─── */
.masthead { padding: 32px 0 0; }
.masthead-inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink-faint);
    font-size: 13px;
}
.masthead-title {
    color: var(--ink);
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}
.masthead-meta { letter-spacing: 0.2em; }

/* ─── ヒーロー(PCで2カラム) ─── */
.hero { padding-top: 56px; }
@media (min-width: 880px) {
    .hero { padding-top: 80px; }
    .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 64px;
        align-items: center;
    }
}
.hero-h1 {
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: 0.01em;
    font-weight: 800;
    margin: 0 0 24px;
}
@media (min-width: 480px) { .hero-h1 { font-size: 36px; } }
@media (min-width: 768px) { .hero-h1 { font-size: 44px; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 52px; } }

.hero-byline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: var(--ink-faint);
    line-height: 1.7;
    margin: 0;
}
.hero-lede {
    font-size: 17px;
    line-height: 1.95;
    color: var(--ink-soft);
    margin: 24px 0 0;
    letter-spacing: 0.04em;
}
@media (min-width: 768px) {
    .hero-lede { font-size: 18px; }
}

.hero-image-wrap { margin-top: 40px; }
@media (min-width: 880px) { .hero-image-wrap { margin-top: 0; } }
.hero-image {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: saturate(0.6) contrast(1.06) brightness(0.95);
}
@media (min-width: 880px) { .hero-image { aspect-ratio: 5/6; } }
.hero-caption {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
    margin-top: 12px;
    text-align: right;
}

/* ヒーロー数値スタッツ(3列) */
.hero-stats {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    padding: 24px 0;
}
.hero-stat {
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid var(--rule-soft);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 28px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}
@media (min-width: 768px) { .hero-stat-num { font-size: 36px; } }
.hero-stat-label {
    font-size: 11px;
    color: var(--ink-faint);
    letter-spacing: 0.08em;
    line-height: 1.55;
    margin: 0;
}
@media (min-width: 768px) { .hero-stat-label { font-size: 12px; } }

/* ─── リード(ドロップキャップ) ─── */
.lead {
    margin-top: 96px;
    display: flow-root;
}
.lead p {
    font-size: 19px;
    line-height: 2.0;
    margin: 0;
}
@media (min-width: 768px) {
    .lead p { font-size: 20px; }
}
.dropcap::first-letter {
    font-family: 'Shippori Mincho', serif;
    font-size: 4.4em;
    font-weight: 800;
    float: left;
    line-height: 0.85;
    margin: 0.06em 0.16em -0.06em 0;
    color: var(--accent);
}

/* ─── プルクオート ─── */
.pullquote {
    margin: 96px auto;
    text-align: center;
}
.pullquote-rule {
    border: 0;
    border-top: 1px solid var(--ink);
    margin: 0 auto;
    width: 80px;
    height: 0;
}
.pullquote-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.85;
    letter-spacing: 0.04em;
    margin: 48px auto;
    text-align: center;
}
@media (min-width: 768px) {
    .pullquote-text { font-size: 30px; line-height: 1.7; margin: 64px auto; }
}
.pullquote-emphasis {
    background: linear-gradient(transparent 55%, var(--accent-soft) 55%, var(--accent-soft) 92%, transparent 92%);
    padding: 0 4px;
    color: var(--ink);
    font-weight: 700;
}
.pullquote-attribution {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--ink-faint);
    letter-spacing: 0.12em;
    margin: 0 auto 48px;
}

/* ─── テキスト型 CTA ─── */
.cta-block {
    text-align: center;
    margin-top: 64px;
    margin-bottom: 64px;
}
.text-cta {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    font-family: 'Shippori Mincho', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 8px;
    transition: color 0.3s, border-color 0.3s, padding 0.3s;
}
.text-cta:hover {
    color: var(--accent);
    border-color: var(--accent);
    padding-bottom: 12px;
}
.text-cta-arrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
}
.cta-meta {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--ink-faint);
    margin-top: 24px;
}

/* ─── 章マーカー ─── */
.chapter {
    margin-top: 128px;
}
@media (min-width: 768px) {
    .chapter { margin-top: 160px; }
}
.chapter-marker {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 16px;
}
.chapter-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 32px;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
}
@media (min-width: 768px) {
    .chapter-num { font-size: 44px; }
}
.chapter-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ink-faint);
    flex-grow: 1;
}
.chapter-jp {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.2em;
}
.chapter-h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin: 0 0 32px;
}
@media (min-width: 768px) {
    .chapter-h2 { font-size: 44px; margin-bottom: 56px; }
}
.chapter-intro {
    margin-bottom: 56px;
}
.chapter-intro strong { color: var(--accent); font-weight: 700; }

/* ─── 4本柱(PCは2x2) ─── */
.pillars {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 880px) {
    .pillars {
        grid-template-columns: 1fr 1fr;
    }
}
.pillar {
    padding: 36px 0;
    border-bottom: 1px solid var(--rule-soft);
}
@media (min-width: 880px) {
    .pillar {
        padding: 40px 32px;
        border-right: 1px solid var(--rule-soft);
    }
    .pillar:nth-child(2n) { border-right: none; padding-right: 0; }
    .pillar:nth-child(2n+1) { padding-left: 0; }
    .pillar:nth-last-child(-n+2) { border-bottom: none; }
}
.pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}
.pillar-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 14px;
}
@media (min-width: 768px) {
    .pillar-title { font-size: 24px; }
}
.pillar-body {
    margin: 0 0 14px;
}
.pillar-heat119 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    line-height: 1.7;
    border-left: 2px solid var(--accent);
    padding-left: 14px;
    margin: 0;
}
.pillar-heat119 strong {
    font-family: 'Shippori Mincho', serif;
    font-style: normal;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.06em;
}

/* ─── リスク3層(番号 + 内容) ─── */
.risk {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 36px 0;
    border-bottom: 1px solid var(--rule-soft);
}
@media (min-width: 768px) {
    .risk {
        grid-template-columns: 100px 1fr;
        gap: 32px;
        padding: 44px 0;
    }
}
.risk-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 32px;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    text-align: right;
}
@media (min-width: 768px) {
    .risk-num { font-size: 52px; }
}
.risk-emphasis {
    background: var(--accent-soft);
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px !important;
    padding-right: 24px !important;
}
@media (min-width: 768px) {
    .risk-emphasis {
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}
.risk-flag {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    border: 1px solid var(--accent);
    padding: 2px 10px;
}
.risk h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 12px;
}
@media (min-width: 768px) {
    .risk h3 { font-size: 23px; }
}
.risk ul {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}
.risk ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 16px;
}
.risk ul li::before {
    content: '─';
    position: absolute;
    left: 0;
    color: var(--ink-faint);
}

/* ─── 引用ブロック(条文・通達) ─── */
.quote-statute {
    border-left: 3px solid var(--accent);
    background: var(--accent-soft);
    padding: 28px 30px;
    margin: 32px 0;
}
.quote-statute p {
    font-family: 'Shippori Mincho', serif;
    font-size: 17px;
    line-height: 1.95;
    color: var(--ink);
    font-weight: 500;
    margin: 0;
}
@media (min-width: 768px) {
    .quote-statute { padding: 32px 40px; }
    .quote-statute p { font-size: 18px; }
}
.quote-statute-cite {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
    margin-top: 16px !important;
    text-align: right;
    font-weight: 400 !important;
}

/* ─── 判例カード ─── */
.case-card {
    padding: 40px 0;
    border-bottom: 1px solid var(--rule-soft);
}
.case-card:last-child { border-bottom: none; }
.case-flag {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 14px;
}
.case-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 3px 10px;
    font-weight: 500;
}
.case-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.12em;
}
.case-h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 18px;
    letter-spacing: 0.02em;
}
@media (min-width: 768px) {
    .case-h3 { font-size: 24px; }
}
.case-body {
    font-size: 16px;
    line-height: 1.95;
    color: var(--ink-soft);
    margin: 0 0 20px;
}
.case-finding {
    border-top: 1px dashed var(--rule-soft);
    padding-top: 18px;
    margin-top: 18px;
}
.case-finding-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 10px;
}
.case-finding ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.case-finding ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7;
}
.case-finding ul li::before {
    content: '─';
    position: absolute;
    left: 0;
    color: var(--ink-faint);
}
.case-meta {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
    margin-top: 12px;
}

/* ─── データテーブル(罰則一覧、保存期間など) ─── */
.data-table-wrap {
    overflow-x: auto;
    margin: 32px -8px;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}
.data-table th {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: left;
    padding: 14px 14px;
    border-bottom: 1px solid var(--ink);
    font-weight: 500;
    background: transparent;
}
.data-table td {
    padding: 20px 14px;
    border-bottom: 1px solid var(--rule-soft);
    vertical-align: top;
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink);
}
.data-table td.label {
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
}
.data-table td.label small {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--ink-faint);
    font-size: 12px;
    margin-top: 4px;
    letter-spacing: 0.04em;
}
.data-table td.cite {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink-faint);
    font-size: 13px;
}
.data-table td.value {
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
}
.data-table td.value strong {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}
.data-table td.accent {
    color: var(--accent);
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
}

/* ─── 二項対立(紙 vs デジタル / Before vs After) ─── */
.versus {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 48px 0;
}
@media (min-width: 768px) {
    .versus {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-top: 1px solid var(--ink);
        border-bottom: 1px solid var(--ink);
    }
}
.versus-col {
    padding: 32px 0;
}
@media (min-width: 768px) {
    .versus-col {
        padding: 40px 32px;
    }
    .versus-col:first-child {
        border-right: 1px solid var(--rule-soft);
        padding-left: 0;
    }
    .versus-col:last-child {
        padding-right: 0;
    }
}
.versus-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 0 0 8px;
}
.versus-col.is-positive .versus-label { color: var(--accent); }
.versus-h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 18px;
    letter-spacing: 0.02em;
}
.versus ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.versus ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 14px;
    font-size: 15.5px;
    line-height: 1.8;
}
.versus ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    line-height: 1.7;
}
.versus-col:not(.is-positive) ul li::before { content: '×'; color: var(--ink-faint); }
.versus-col.is-positive ul li::before { content: '✓'; color: var(--accent); }
.versus ul li strong { color: var(--ink); font-weight: 700; }

/* ─── 手順フロー(ステップ番号 + 内容) ─── */
.steps {
    counter-reset: step;
    margin: 48px 0;
}
.step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid var(--rule-soft);
}
@media (min-width: 768px) {
    .step {
        grid-template-columns: 100px 1fr;
        gap: 32px;
        padding: 32px 0;
    }
}
.step:last-child { border-bottom: none; }
.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 32px;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    text-align: right;
}
@media (min-width: 768px) {
    .step-num { font-size: 44px; }
}
.step-h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 10px;
}
@media (min-width: 768px) {
    .step-h3 { font-size: 22px; }
}
.step-body {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--ink-soft);
    margin: 0;
}

/* ─── 注釈ボックス(警告・補足) ─── */
.note {
    margin: 32px 0;
    padding: 24px 28px;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    background: rgba(255,255,255,0.4);
}
.note-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 10px;
}
.note p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.95;
    color: var(--ink);
}
.note p strong { color: var(--accent); font-weight: 700; }
.note + .note { margin-top: 24px; }

/* ─── インライン項目グリッド(チェックリスト系) ─── */
.checks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 32px 0;
    border-top: 1px solid var(--rule-soft);
}
@media (min-width: 768px) {
    .checks { grid-template-columns: 1fr 1fr; }
}
.check {
    padding: 24px 0;
    border-bottom: 1px solid var(--rule-soft);
}
@media (min-width: 768px) {
    .check { padding: 28px 32px 28px 0; }
    .check:nth-child(2n) { padding-right: 0; padding-left: 32px; border-left: 1px solid var(--rule-soft); }
}
.check-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 6px;
}
.check-h4 {
    font-family: 'Shippori Mincho', serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.5;
    color: var(--ink);
}
.check ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check ul li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--ink-soft);
}
.check ul li::before {
    content: '─';
    position: absolute;
    left: 0;
    color: var(--ink-faint);
}

/* ─── インパクト数字パネル(黒背景) ─── */
.impact-panel {
    margin: 96px 0;
    padding: 56px 28px;
    background: var(--ink);
    color: var(--paper);
    text-align: center;
}
@media (min-width: 768px) {
    .impact-panel { padding: 80px 56px; }
}
.impact-panel .impact-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(250, 248, 243, 0.82);
    margin: 0 0 32px;
    line-height: 1.4;
}
.impact-panel .impact-h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--paper);
    margin: 0 0 24px;
    letter-spacing: 0.04em;
}
@media (min-width: 768px) {
    .impact-panel .impact-h2 { font-size: 38px; }
}
.impact-panel .impact-lede {
    font-size: 16px;
    line-height: 2.0;
    color: rgba(250, 248, 243, 0.92);
    max-width: 560px;
    margin: 0 auto 40px;
}

/* ─── 最終CTA ─── */
.final-cta {
    margin: 128px 0 64px;
    padding: 64px 24px;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    text-align: center;
}
@media (min-width: 768px) {
    .final-cta { padding: 96px 40px; }
}
.final-cta-h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 32px;
}
@media (min-width: 768px) {
    .final-cta-h2 { font-size: 44px; margin-bottom: 40px; }
}
.final-cta-lead {
    font-size: 16px;
    line-height: 2.0;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .final-cta-lead { font-size: 17px; }
}
.final-cta ul {
    list-style: none;
    padding: 0;
    margin: 32px auto 40px;
    max-width: 380px;
    text-align: left;
}
.final-cta ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--ink-soft);
}
.final-cta ul li::before {
    content: '─';
    position: absolute;
    left: 0;
    color: var(--ink-faint);
}

.final-cta-secondary {
    margin-top: 18px;
    font-size: 14px;
    color: var(--ink-faint);
}
.final-cta-secondary a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ─── 関連リンク ─── */
.related {
    padding: 56px 0 32px;
    border-top: 1px solid var(--rule-soft);
}
.related-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-faint);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 32px;
}
@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.related-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule-soft);
    text-decoration: none;
    color: var(--ink-soft);
    transition: padding 0.3s, color 0.3s;
}
.related-link:hover {
    padding-left: 12px;
    color: var(--accent);
}
.related-link .latin {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    display: block;
    margin-bottom: 2px;
}
.related-link .ja {
    font-family: 'Shippori Mincho', serif;
    font-size: 14px;
    font-weight: 500;
}

/* ─── スマホ sticky CTA ─── */
.sticky-essay {
    display: block;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--paper);
    padding: 14px 32px;
    z-index: 50;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    font-family: 'Shippori Mincho', serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
    border: 1px solid var(--ink);
}
@media (min-width: 768px) {
    .sticky-essay { display: none; }
}
.sticky-essay:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }

/* ─── パンくず ─── */
.essay-breadcrumb {
    padding-top: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: 0.12em;
}
.essay-breadcrumb a {
    color: var(--ink-faint);
    text-decoration: none;
    border-bottom: 1px dotted var(--ink-faint);
}
.essay-breadcrumb a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.essay-breadcrumb .sep { margin: 0 8px; color: var(--rule-soft); }
.essay-breadcrumb .current { color: var(--ink); font-style: normal; font-family: 'Shippori Mincho', serif; letter-spacing: 0.08em; }

/* ─── 強調されたインライン強調 ─── */
.essay strong.mark {
    background: linear-gradient(transparent 60%, var(--accent-soft) 60%);
    padding: 0 2px;
    color: var(--ink);
    font-weight: 700;
}

/* ─── 目次(編集的) ─── */
.toc {
    margin-top: 64px;
    padding: 28px 28px 24px;
    border: 1px solid var(--ink);
    background: rgba(255,255,255,0.4);
}
.toc-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 16px;
}
.toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}
.toc ol li {
    counter-increment: toc;
    padding: 8px 0 8px 38px;
    position: relative;
    border-bottom: 1px dotted var(--rule-soft);
    font-size: 15px;
    line-height: 1.6;
}
.toc ol li:last-child { border-bottom: none; }
.toc ol li::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 14px;
    letter-spacing: 0.06em;
}
.toc ol li a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
}
.toc ol li a:hover { border-bottom-color: var(--accent); color: var(--accent); }

/* ─── アニメーション ─── */
@keyframes essayReveal {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    animation: essayReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.reveal-1 { animation-delay: 0.1s; }
.reveal-2 { animation-delay: 0.3s; }
.reveal-3 { animation-delay: 0.5s; }
