/*
 * 私達のサービス LP — レガシー分析・モダナイゼーション（desktop）
 * デザイン言語 = /service/ インデックス・recruit-screening LP と同じ「The Threshold」
 * 明朝(Yu Mincho)×ゴシック(Yu Gothic)・マゼンタ #a40b5e・暗明リズム・しきい線/→・reveal。
 * 挿絵はレガシー分析レポート接地のUIモック（サンプル明示・ブランド色へ翻訳）。
 * 020_§3.5 ワイヤー準拠／ノンフォーマット系／主語=技術移行でなく「解析」／CTA動詞は視える化・解析。
 */

:root {
    --lm-magenta: #a40b5e;
    --lm-magenta-dark: #7d0847;
    --lm-magenta-bright: #d4267e;
    --lm-ink: #1a1216;
    --lm-sub: #5d545b;
    --lm-line: #e3dad0;
    --lm-paper: #f5f1ea;
    --lm-paper-2: #efe9df;
    --lm-dark: #140c11;
    --lm-dark-2: #1f141b;
    --lm-mincho: "Yu Mincho", YuMincho, "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Noto Serif JP", serif;
    --lm-gothic: "Yu Gothic", YuGothic, "游ゴシック", "Hiragino Sans", "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
    --lm-ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}

/* 文節折返しユーティリティ：句中改行を防ぎ、折返しを文節境界に限定する */
.lm-nb { display: inline-block; }

/* ===== モーション基盤 ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--lm-ease), transform 0.8s var(--lm-ease);
    transition-delay: var(--d, 0s);
    will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== ヒーロー（page-header 外殻は共通） ===== */
.page-header { margin-bottom: 0; }
.page-header-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 50% 6%, rgba(164, 11, 94, 0.20) 0%, rgba(20, 6, 14, 0) 55%),
        linear-gradient(180deg, rgba(20, 6, 14, 0.42) 0%, rgba(20, 6, 14, 0.66) 100%);
    z-index: -1;
}
.page-header-content { padding: 0 24px; }
.lm-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #f4bcd6;
    font-family: var(--lm-gothic);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3em;
    margin: 0 0 22px;
}
.lm-hero-eyebrow::before { content: ""; width: 34px; height: 1px; background: rgba(244, 188, 214, 0.7); }
.lm-hero-eyebrow .en { color: rgba(244, 188, 214, 0.7); letter-spacing: 0.16em; font-size: 11px; }
.page-header .lm-hero-main {
    font-family: var(--lm-mincho);
    color: #fff;
    font-size: clamp(30px, 4.1vw, 52px);
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: 0.015em;
    text-align: center;
    margin: 0 0 24px;
    max-width: 1000px;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.42);
}
.page-header .lm-hero-main em { font-style: normal; color: #ffd9ea; }
.page-header .lm-hero-lead {
    font-family: var(--lm-gothic);
    color: #f1e8ed;
    font-size: 16px;
    line-height: 1.95;
    text-align: center !important; /* グローバル .desktop-device p { text-align:left } 対策 */
    margin: 0 auto 30px;
    max-width: 780px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.lm-scroll-cue {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-family: var(--lm-gothic);
    font-size: 10.5px;
    letter-spacing: 0.24em;
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    z-index: 11;
    animation: lmBob 2.2s ease-in-out infinite;
}
@keyframes lmBob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* ===== ボタン ===== */
.lm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lm-gothic);
    padding: 15px 30px;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.4;
    transition: transform 0.18s var(--lm-ease), box-shadow 0.18s var(--lm-ease), background-color 0.18s, color 0.18s;
}
.lm-btn .arr { transition: transform 0.2s var(--lm-ease); }
.lm-btn:hover .arr { transform: translateX(5px); }
.lm-btn--primary { background: var(--lm-magenta); color: #fff; box-shadow: 0 12px 28px rgba(164, 11, 94, 0.30); }
.lm-btn--primary:hover { background: var(--lm-magenta-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(164, 11, 94, 0.40); }
.lm-btn--ghost { background: transparent; color: var(--lm-ink); border: 1.5px solid rgba(26, 18, 22, 0.28); }
.lm-btn--ghost:hover { border-color: var(--lm-magenta); color: var(--lm-magenta-dark); transform: translateY(-2px); }
.lm-btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.65); }
.lm-btn--ghost-light:hover { background: #fff; color: var(--lm-magenta-dark); border-color: #fff; transform: translateY(-2px); }

/* ===== 本体共通 ===== */
.lm-page {
    text-align: left; /* 新世代スコープの基準（祖先の center 継承を遮断） */
    position: relative;
    z-index: 1;
    background: var(--lm-paper);
    color: var(--lm-ink);
    font-family: var(--lm-gothic);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.lm-section { position: relative; padding: clamp(72px, 9vw, 120px) 0; }
.lm-container { position: relative; max-width: 1160px; margin: 0 auto; padding: 0 40px; }
/* `.desktop-device section > div { padding: 10px !important }` がコンテナ余白を潰すため再宣言 */
.lm-section > .lm-container { padding-left: 40px !important; padding-right: 40px !important; }

.lm-eyebrow {
    display: inline-flex; align-items: baseline; gap: 14px;
    font-family: var(--lm-gothic);
    font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
    color: var(--lm-magenta);
    margin: 0 0 20px;
}
.lm-eyebrow::before { content: ""; align-self: center; width: 30px; height: 2px; background: var(--lm-magenta); }
.lm-eyebrow .en { color: #b9a7b1; font-weight: 600; font-size: 11px; letter-spacing: 0.16em; }
.lm-eyebrow--ondark { color: #f4bcd6; }
.lm-eyebrow--ondark::before { background: #f4bcd6; }
.lm-eyebrow--ondark .en { color: rgba(244, 188, 214, 0.6); }

.lm-section-title {
    font-family: var(--lm-mincho);
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--lm-ink);
    margin: 0 0 clamp(36px, 4vw, 54px);
}
.lm-section-title--light { color: #fff; }
.lm-section-title em { font-style: normal; color: var(--lm-magenta-dark); }

/* グローバル `.desktop-device h1,h2,h3 { text-align:center }` 漏れの打ち消し（編集的レイアウトは左基調） */
.lm-page .lm-section-title,
.lm-page .lm-statement,
.lm-page .lm-glimpse-title,
.lm-page .lm-vcard h3,
.lm-page .lm-step-head h3,
.lm-page .lm-tcard h3,
.lm-page .lm-contrast-col h3 {
    text-align: left;
}
.lm-page .lm-cta-title { text-align: center; }

.lm-ghost {
    position: absolute;
    font-family: var(--lm-mincho); font-weight: 700; line-height: 0.8;
    color: rgba(26, 18, 22, 0.04);
    pointer-events: none; user-select: none; z-index: 0; white-space: nowrap;
}
.lm-ghost--ondark { color: rgba(255, 255, 255, 0.045); }

.lm-note { font-size: 13.5px; line-height: 1.85; color: #8a828a; margin: 22px 0 0; max-width: 820px; }

.lm-badge { display: inline-block; margin-left: 8px; padding: 2px 9px; border-radius: 999px; background: #f0e6ec; color: var(--lm-magenta-dark); font-size: 10.5px; font-weight: 700; vertical-align: middle; }
.lm-badge--lg { font-size: 12px; padding: 3px 12px; vertical-align: 6px; }

/* ===== 0. グリンプス（解析レポート mock） ===== */
.lm-glimpse { background: var(--lm-paper); }
.lm-glimpse-grid { display: grid; grid-template-columns: 1fr 1.04fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.lm-glimpse-title {
    font-family: var(--lm-mincho);
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 600; line-height: 1.45; color: var(--lm-ink);
    margin: 0 0 20px;
}
.lm-glimpse-title em { font-style: normal; color: var(--lm-magenta-dark); }
.lm-glimpse-lead { font-size: 16px; line-height: 2; color: var(--lm-sub); margin: 0 0 24px; }
.lm-glimpse-lead .lm-note { display: inline; color: #9a8f96; font-size: 13px; }
.lm-glimpse-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lm-glimpse-points li {
    position: relative; padding-left: 28px;
    font-size: 14.5px; line-height: 1.7; color: var(--lm-ink); font-weight: 500;
}
.lm-glimpse-points li::before {
    content: "→"; position: absolute; left: 0; top: 0;
    color: var(--lm-magenta); font-weight: 700;
}

/* ===== 解析レポート mock ===== */
.lm-mock {
    position: relative;
    background: #fff;
    border: 1px solid var(--lm-line);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(31, 18, 28, 0.12);
    margin: 0;
    overflow: hidden;
}
.lm-mock-cap {
    display: flex; align-items: center; gap: 9px;
    padding: 13px 20px;
    border-bottom: 1px solid var(--lm-line);
    background: var(--lm-paper-2);
    font-size: 12.5px; font-weight: 700; color: var(--lm-ink); letter-spacing: 0.02em;
}
.lm-mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lm-magenta); box-shadow: 14px 0 0 -2px #d8ccd3, 28px 0 0 -2px #d8ccd3; margin-right: 22px; }
.lm-mock-sample { margin-left: auto; font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--lm-magenta-dark); background: rgba(164, 11, 94, 0.10); padding: 3px 10px; border-radius: 999px; }

.lm-map-head { padding: 20px 24px 14px; }
.lm-map-target { display: block; font-size: 15px; font-weight: 700; color: var(--lm-ink); margin-bottom: 9px; }
.lm-map-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lm-map-tag { background: #f0e6ec; color: var(--lm-magenta-dark); border-radius: 999px; padding: 2px 10px; font-size: 10.5px; font-weight: 700; }
.lm-map-tag--ok { background: var(--lm-magenta); color: #fff; }

.lm-chain { list-style: none; margin: 0; padding: 2px 24px 4px; position: relative; }
.lm-chain::before {
    content: "";
    position: absolute; left: 35px; top: 14px; bottom: 14px;
    width: 2px;
    background: linear-gradient(180deg, var(--lm-magenta) 0%, var(--lm-magenta) 70%, rgba(164, 11, 94, 0.15) 100%);
}
.lm-chain-row {
    position: relative;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 11px 0 11px 30px;
}
.lm-chain-row::before {
    content: "";
    position: absolute; left: 6px; top: 50%;
    transform: translateY(-50%);
    width: 12px; height: 12px; border-radius: 50%;
    background: #fff; border: 2px solid var(--lm-magenta);
}
.lm-chain-node { display: flex; flex-direction: column; gap: 2px; font-size: 13.5px; font-weight: 700; color: var(--lm-ink); }
.lm-chain-node small { font-size: 11px; font-weight: 500; color: #9a8f96; }
.lm-chain-st { flex-shrink: 0; font-size: 11px; font-weight: 700; padding: 3px 11px; border-radius: 999px; }
.lm-chain-st--done { background: #f0e6ec; color: var(--lm-magenta-dark); }
.lm-chain-st--warn { background: rgba(212, 38, 126, 0.14); color: var(--lm-magenta-bright); border: 1px solid rgba(212, 38, 126, 0.45); }
.lm-chain-st--black { background: var(--lm-ink); color: rgba(255, 255, 255, 0.85); }

.lm-finding { margin: 12px 24px 22px; padding: 14px 16px; background: var(--lm-paper-2); border-left: 3px solid var(--lm-magenta); border-radius: 6px; font-size: 13px; line-height: 1.8; color: var(--lm-ink); }
.lm-finding-label { display: inline-block; margin-right: 8px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; color: #fff; background: var(--lm-magenta); padding: 2px 9px; border-radius: 999px; vertical-align: middle; }
.lm-finding strong { color: var(--lm-magenta-dark); }

/* ===== 2. 二段オープニング ===== */
.lm-opening { background: var(--lm-paper-2); overflow: hidden; }
.lm-opening .lm-ghost { top: -6px; right: -8px; font-size: clamp(96px, 13vw, 190px); }
.lm-statement {
    font-family: var(--lm-mincho);
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 600; line-height: 1.55; color: var(--lm-ink);
    margin: 0 0 22px; max-width: 940px;
}
.lm-lead { font-size: 16px; line-height: 2; color: var(--lm-sub); margin: 0 0 32px; max-width: 860px; }
.lm-pain-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lm-pain-list li {
    position: relative;
    background: #fff; border: 1px solid var(--lm-line); border-radius: 10px;
    padding: 20px 22px 20px 58px;
    font-size: 14.5px; line-height: 1.8; color: var(--lm-ink);
}
.lm-pain-no {
    position: absolute; left: 20px; top: 18px;
    font-family: var(--lm-mincho); font-size: 18px; font-weight: 600; color: var(--lm-magenta); opacity: 0.5;
}
/* flex はテキストノードと strong が別カラムに分裂するため block＋inline-block 罫線で組む */
.lm-cost { display: block; font-size: 16px; line-height: 1.85; color: var(--lm-ink); margin: 0; max-width: 940px; }
.lm-cost-line { display: inline-block; vertical-align: middle; margin-right: 16px; width: 40px; height: 2px; background: var(--lm-magenta); }
.lm-cost strong { color: var(--lm-magenta-dark); font-weight: 700; }

/* ===== 2.5 読み解きの哲学（共通フレーム・黒帯） ===== */
.lm-creed { background: var(--lm-dark-2); color: #fff; overflow: hidden; }
.lm-creed .lm-ghost { top: -18px; right: -10px; font-size: clamp(100px, 14vw, 200px); }
.lm-creed-title {
    font-family: var(--lm-mincho);
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 26px;
    text-align: left;
}
.lm-creed-body {
    font-size: 16px;
    line-height: 2.15;
    color: #d8ccd3;
    margin: 0;
    max-width: 880px;
}
.lm-creed-body strong { color: #ffd0e4; font-weight: 700; }

/* ===== 4.5 Access 分岐カード ===== */
.lm-branch { background: var(--lm-paper); }
.lm-branch-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    background: #fff;
    border: 1.5px solid var(--lm-magenta);
    border-radius: 16px;
    padding: 36px 40px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.2s var(--lm-ease), box-shadow 0.2s var(--lm-ease);
}
.lm-branch-card::after {
    content: "";
    position: absolute;
    right: -70px; top: -70px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(164, 11, 94, 0.10) 0%, rgba(164, 11, 94, 0) 70%);
    pointer-events: none;
}
.lm-branch-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(31, 18, 28, 0.12); }
.lm-branch-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--lm-magenta); margin: 0 0 10px; }
.lm-branch-title {
    font-family: var(--lm-mincho);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--lm-ink);
    margin: 0 0 10px;
}
.lm-branch-copy { font-size: 14px; line-height: 1.9; color: var(--lm-sub); margin: 0; }
.lm-branch-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: var(--lm-magenta);
    white-space: nowrap;
}
.lm-branch-cta .arr {
    display: inline-flex;
    width: 32px; height: 32px;
    align-items: center; justify-content: center;
    border: 1.5px solid rgba(164, 11, 94, 0.4);
    border-radius: 50%;
    transition: transform 0.24s var(--lm-ease), background-color 0.24s, color 0.24s, border-color 0.24s;
}
.lm-branch-card:hover .lm-branch-cta .arr { background: var(--lm-magenta); border-color: var(--lm-magenta); color: #fff; transform: translateX(4px); }

/* ===== 3. 解決・提供価値 ===== */
.lm-solution { background: var(--lm-paper); }
.lm-vcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lm-solution .lm-vcard {
    width: auto; max-width: none; /* グローバル article{width:100vw} 無効化 */
    position: relative;
    background: #fff; border: 1px solid var(--lm-line); border-radius: 14px;
    padding: 32px 28px;
    transition: transform 0.18s var(--lm-ease), box-shadow 0.18s var(--lm-ease), border-color 0.18s;
}
.lm-vcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(31, 18, 28, 0.10); border-color: #dcc8d4; }
.lm-vcard-ic { display: inline-flex; width: 46px; height: 46px; color: var(--lm-magenta); }
.lm-vcard-ic svg { width: 100%; height: 100%; }
.lm-vcard-no { position: absolute; top: 26px; right: 28px; font-family: var(--lm-mincho); font-size: 22px; font-weight: 600; color: var(--lm-magenta); opacity: 0.32; }
.lm-vcard h3 { font-family: var(--lm-gothic); font-size: 19px; font-weight: 800; margin: 16px 0 12px; color: var(--lm-ink); }
.lm-vcard p { font-size: 14.5px; line-height: 1.9; color: var(--lm-sub); margin: 0; }
.lm-vcard p small { display: block; margin-top: 8px; font-size: 12px; color: #9a8f96; }
.lm-vcard strong { color: var(--lm-magenta-dark); }
.lm-guard { font-size: 13.5px; line-height: 1.85; color: #8a828a; margin: 34px 0 0; padding-top: 20px; border-top: 1px solid var(--lm-line); }
.lm-cta-inline { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.lm-cta-inline--center { justify-content: center; margin-top: clamp(36px, 5vw, 54px); }

/* ===== 4. 方法論（ダーク・4ステップ＋主語の対比） ===== */
.lm-method { background: var(--lm-dark); color: #fff; overflow: hidden; }
.lm-method .lm-ghost { bottom: -24px; left: -6px; font-size: clamp(110px, 16vw, 230px); }
.lm-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lm-method .lm-step {
    width: auto; max-width: none; /* article 幅罠対策 */
    display: flex; flex-direction: column;
    background: #fff; color: var(--lm-ink);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.30);
}
.lm-step-head { padding: 22px 22px 0; }
.lm-step-label {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 14px;
    padding: 5px 14px; border-radius: 999px;
    background: var(--lm-magenta); color: #fff;
    font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
}
.lm-step-free { font-style: normal; background: #fff; color: var(--lm-magenta-dark); font-size: 10px; font-weight: 800; padding: 1px 8px; border-radius: 999px; }
.lm-step-head h3 { display: flex; flex-direction: column; gap: 3px; font-family: var(--lm-gothic); font-size: 16.5px; font-weight: 800; margin: 0; color: var(--lm-ink); line-height: 1.45; }
.lm-step-head h3 small { font-size: 11.5px; font-weight: 600; color: #9a8f96; }
.lm-step > p { font-size: 13px; line-height: 1.85; color: var(--lm-sub); margin: 12px 0 14px; padding: 0 22px; flex-grow: 1; }
.lm-step-foot { display: flex; gap: 7px; padding: 0 22px 20px; }
.lm-who { font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 2px 11px; border-radius: 999px; }
.lm-who--human { background: var(--lm-magenta); color: #fff; }
.lm-who--ai { background: transparent; color: var(--lm-sub); border: 1px solid rgba(26, 18, 22, 0.3); }

.lm-contrast {
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
    margin: clamp(34px, 4vw, 50px) 0 0;
}
.lm-contrast-col { border-radius: 12px; padding: 26px 28px; }
.lm-contrast-col--them { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.16); }
.lm-contrast-col--us { background: rgba(212, 38, 126, 0.12); border: 1px solid rgba(212, 38, 126, 0.5); }
.lm-contrast-col h3 { font-family: var(--lm-gothic); font-size: 15.5px; font-weight: 800; margin: 0 0 14px; color: #fff; }
.lm-contrast-col--us h3 { color: #ffd0e4; }
.lm-contrast-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.lm-contrast-col li { position: relative; padding-left: 22px; font-size: 13.5px; line-height: 1.75; color: #d8ccd3; }
.lm-contrast-col--them li::before { content: "・"; position: absolute; left: 4px; color: #9c9098; }
.lm-contrast-col--us li { color: #f4e2ec; }
.lm-contrast-col--us li::before { content: "→"; position: absolute; left: 0; color: var(--lm-magenta-bright); font-weight: 700; }

/* ===== 5. 信頼 ===== */
.lm-trust { background: var(--lm-paper); }
.lm-tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lm-tcard { background: #fff; border: 1px solid var(--lm-line); border-radius: 14px; padding: 30px 28px; }
.lm-tcard-no { display: block; font-family: var(--lm-mincho); font-size: 22px; font-weight: 600; color: var(--lm-magenta); opacity: 0.4; margin-bottom: 12px; }
.lm-tcard h3 { font-family: var(--lm-gothic); font-size: 18px; font-weight: 800; margin: 0 0 12px; color: var(--lm-ink); }
.lm-tcard p { font-size: 14.5px; line-height: 1.9; color: var(--lm-sub); margin: 0; }

/* ===== 6. 想定シナリオ ===== */
.lm-cases { background: var(--lm-paper-2); }
.lm-scards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lm-cases .lm-scard {
    width: auto; max-width: none; /* article 幅罠対策 */
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--lm-line); border-radius: 14px;
    padding: 26px 26px;
}
.lm-scard-before {
    font-size: 14px; line-height: 1.85; color: var(--lm-sub); margin: 0 0 16px;
    padding-bottom: 16px; border-bottom: 1px dashed var(--lm-line);
}
.lm-scard-after { display: flex; gap: 10px; font-size: 14px; line-height: 1.85; color: var(--lm-ink); font-weight: 500; margin: 0; }
.lm-scard-arr { flex-shrink: 0; color: var(--lm-magenta); font-weight: 700; }

/* ===== 7. CTA（マゼンタ） ===== */
.lm-cta {
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 45%),
        linear-gradient(135deg, #2a0a1a 0%, var(--lm-magenta-dark) 52%, var(--lm-magenta) 120%);
    color: #fff; overflow: hidden; text-align: center;
}
.lm-cta .lm-ghost { top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: clamp(140px, 22vw, 300px); color: rgba(255, 255, 255, 0.06); }
.lm-cta-inner { max-width: 880px; margin: 0 auto; position: relative; text-align: center !important; /* .desktop-device div 左寄せ対策 */ }
.lm-cta-flag {
    display: inline-flex; align-items: center; gap: 16px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.24em; color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px;
}
.lm-cta-flag::before, .lm-cta-flag::after { content: ""; width: 30px; height: 1px; background: rgba(255, 255, 255, 0.5); }
.lm-cta-title { font-family: var(--lm-mincho); font-size: clamp(24px, 3.2vw, 40px); font-weight: 600; line-height: 1.5; color: #fff; margin: 0 0 18px; }
.lm-cta-lead { font-size: 16px; line-height: 1.9; color: #f4e2ec; margin: 0 0 34px; text-align: center !important; }
.lm-cta-lead strong { color: #fff; }
.lm-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lm-cta .lm-btn--primary { background: #fff; color: var(--lm-magenta-dark); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22); }
.lm-cta .lm-btn--primary:hover { background: var(--lm-ink); color: #fff; }
.lm-cta-fine { font-size: 12.5px; color: #e7cdda; margin: 26px 0 0; text-align: center !important; }

/* ===== レスポンシブ（狭幅デスクトップ） ===== */
@media (max-width: 1100px) {
    .lm-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
    .lm-glimpse-grid { grid-template-columns: 1fr; }
    .lm-vcards, .lm-tcards, .lm-scards { grid-template-columns: 1fr; }
    .lm-pain-list { grid-template-columns: 1fr; }
    .lm-contrast { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .lm-steps { grid-template-columns: 1fr; }
}
