/*
 * 私達のサービス LP — Access モダナイゼーション（desktop）
 * デザイン言語 = legacy-modernization LP と同系（am- プレフィクス、lm からの派生スキン）。
 * 040_調査準拠: EUC由来の構造課題を是正しクラウド/イントラ業務システム化まで。広告テイストは
 * チェックリスト・短期着手・無料棚卸し診断の3点に限定（危機感の煽りは不採用）。
 */

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

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

/* ===== モーション基盤 ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--am-ease), transform 0.8s var(--am-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; }
.am-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #f4bcd6;
    font-family: var(--am-gothic);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3em;
    margin: 0 0 22px;
}
.am-hero-eyebrow::before { content: ""; width: 34px; height: 1px; background: rgba(244, 188, 214, 0.7); }
.am-hero-eyebrow .en { color: rgba(244, 188, 214, 0.7); letter-spacing: 0.16em; font-size: 11px; }
.page-header .am-hero-main {
    font-family: var(--am-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 .am-hero-main em { font-style: normal; color: #ffd9ea; }
.page-header .am-hero-lead {
    font-family: var(--am-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);
}
.am-scroll-cue {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-family: var(--am-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); } }

/* ===== ボタン ===== */
.am-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--am-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(--am-ease), box-shadow 0.18s var(--am-ease), background-color 0.18s, color 0.18s;
}
.am-btn .arr { transition: transform 0.2s var(--am-ease); }
.am-btn:hover .arr { transform: translateX(5px); }
.am-btn--primary { background: var(--am-magenta); color: #fff; box-shadow: 0 12px 28px rgba(164, 11, 94, 0.30); }
.am-btn--primary:hover { background: var(--am-magenta-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(164, 11, 94, 0.40); }
.am-btn--ghost { background: transparent; color: var(--am-ink); border: 1.5px solid rgba(26, 18, 22, 0.28); }
.am-btn--ghost:hover { border-color: var(--am-magenta); color: var(--am-magenta-dark); transform: translateY(-2px); }
.am-btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.65); }
.am-btn--ghost-light:hover { background: #fff; color: var(--am-magenta-dark); border-color: #fff; transform: translateY(-2px); }

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

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

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

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

.am-ghost {
    position: absolute;
    font-family: var(--am-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;
}
.am-ghost--ondark { color: rgba(255, 255, 255, 0.045); }

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

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

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

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

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

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

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

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

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

/* ===== 4.5 Access 分岐カード ===== */
.am-branch { background: var(--am-paper); }
.am-branch-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    background: #fff;
    border: 1.5px solid var(--am-magenta);
    border-radius: 16px;
    padding: 36px 40px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.2s var(--am-ease), box-shadow 0.2s var(--am-ease);
}
.am-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;
}
.am-branch-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(31, 18, 28, 0.12); }
.am-branch-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--am-magenta); margin: 0 0 10px; }
.am-branch-title {
    font-family: var(--am-mincho);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--am-ink);
    margin: 0 0 10px;
}
.am-branch-copy { font-size: 14px; line-height: 1.9; color: var(--am-sub); margin: 0; }
.am-branch-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: var(--am-magenta);
    white-space: nowrap;
}
.am-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(--am-ease), background-color 0.24s, color 0.24s, border-color 0.24s;
}
.am-branch-card:hover .am-branch-cta .arr { background: var(--am-magenta); border-color: var(--am-magenta); color: #fff; transform: translateX(4px); }

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

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

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

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

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

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

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

/* ===== Access専用: あるあるチェックリスト（広告テイスト・共感型） ===== */
.am-checks { background: var(--am-paper-2); overflow: hidden; }
.am-check-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.am-check-list li {
    position: relative;
    display: flex; align-items: flex-start; gap: 14px;
    background: #fff; border: 1px solid var(--am-line); border-radius: 10px;
    padding: 18px 20px;
    font-size: 14.5px; line-height: 1.8; color: var(--am-ink);
}
.am-check-box {
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; margin-top: 2px;
    border: 2px solid var(--am-magenta); border-radius: 5px;
    color: var(--am-magenta); font-size: 13px; font-weight: 800;
}
.am-check-note { font-size: 15px; font-weight: 700; color: var(--am-magenta-dark); margin: 0; }

/* ===== Access専用: なぜこうなるのか（EUCの遡及・責めない） ===== */
.am-why { background: var(--am-paper); }
.am-why-flow { display: flex; align-items: stretch; flex-wrap: wrap; gap: 10px; margin: 8px 0 26px; }
.am-why-step {
    flex: 1 1 0; min-width: 170px;
    background: #fff; border: 1px solid var(--am-line); border-radius: 10px;
    padding: 18px 18px;
    font-size: 13.5px; line-height: 1.8; color: var(--am-ink);
}
.am-why-step b { display: block; font-size: 14.5px; margin-bottom: 6px; color: var(--am-ink); }
.am-why-arrow { align-self: center; color: var(--am-magenta-bright); font-size: 20px; font-weight: 700; }
/* flex はテキストノード/spanが別カラムに分裂するため block＋inline-block 罫線で組む */
.am-why-absolve {
    display: block;
    font-family: var(--am-mincho);
    font-size: clamp(19px, 2.2vw, 26px); font-weight: 600; line-height: 1.7;
    color: var(--am-magenta-dark); margin: 0;
}
.am-why-absolve .line { display: inline-block; vertical-align: middle; margin-right: 16px; width: 40px; height: 2px; background: var(--am-magenta); }

/* ===== Access専用: 短期着手バンド（広告テイスト・控えめ） ===== */
.am-band {
    margin-top: clamp(36px, 5vw, 54px);
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
/* ダークセクション（am-method）内に置くため明色で組む */
.am-band-item {
    background: rgba(212, 38, 126, 0.10);
    border: 1px dashed rgba(212, 38, 126, 0.5);
    border-radius: 10px;
    padding: 18px 20px;
    font-size: 13.5px; line-height: 1.8; color: #f4e2ec;
}
.am-band-item b { display: block; font-size: 15px; color: #ffd0e4; margin-bottom: 5px; }
@media (max-width: 1000px) {
    .am-check-list { grid-template-columns: 1fr; }
    .am-band { grid-template-columns: 1fr; }
    .am-why-arrow { display: none; }
    .am-why-step { flex-basis: 100%; }
}

/* =====================================================================
   広告LPスキン v2 — 「突き破るデータシート」ヒーロー＋マーカー黄
   配色: 深プラム #220714 / ブランドマゼンタ #A40B5E / マーカー黄 #FFC83D
   見出しは極太ゴシック（明朝は情緒セクションに残し緩急を作る）
   ===================================================================== */

/* ヒーロー地: 写真を不透明プラムグラデで覆い、広告の地に置き換える */
.am-hero .page-header-content::before {
    background:
        radial-gradient(110% 120% at 82% 30%, rgba(212, 38, 126, 0.30) 0%, rgba(34, 7, 20, 0) 55%),
        linear-gradient(135deg, #220714 0%, #3d0a26 55%, #5c0f3a 100%);
}
.am-hero .page-header-content.am-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: left;
}
.am-hero-copy { position: relative; z-index: 2; }
.am-hero .am-hero-eyebrow { margin-bottom: 18px; }
.am-hero .page-header .am-hero-main,
.page-header.am-hero .am-hero-main {
    font-family: var(--am-gothic);
    font-weight: 900;
    font-size: clamp(34px, 3.6vw, 52px);
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-align: left;
    margin: 0 0 22px;
    max-width: none;
    text-shadow: none;
}
/* マーカー黄の下塗り強調（チラシの蛍光マーカー語彙） */
.am-mk {
    background: linear-gradient(transparent 62%, #FFC83D 62%);
    padding: 0 2px;
}
.am-mk--cta { color: #fff; background: linear-gradient(transparent 62%, rgba(255, 200, 61, 0.85) 62%); }
.page-header.am-hero .am-hero-lead {
    text-align: left !important;
    margin: 0 0 26px;
    max-width: 560px;
    font-size: 15.5px;
}
.am-hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.am-hero-cta-note { font-size: 12.5px; font-weight: 700; color: #f4bcd6; margin: 0; letter-spacing: 0.04em; }

/* 影付きイエローCTA（チラシ調・このLP専用） */
.am-btn--blast {
    background: #FFC83D;
    color: #1A1216;
    font-weight: 800;
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
    border-radius: 4px;
}
.am-btn--blast:hover {
    background: #ffd76a;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.35);
}

/* シグネチャ: 傾いた巨大データシート */
.am-sheet {
    position: relative;
    z-index: 1;
    margin: 0;
    transform: rotate(-3.5deg);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 36px 70px rgba(0, 0, 0, 0.45);
    overflow: visible;
}
.am-sheet-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #8a1c4e, #6f1640);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 10px 14px;
    border-radius: 10px 10px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.am-sheet-dots { display: inline-flex; gap: 6px; flex-shrink: 0; }
.am-sheet-dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.35); }
.am-sheet-grid { padding: 6px 0 10px; }
.am-sheet-row {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr 1fr 1.25fr;
    gap: 10px;
    align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid #ece4e9;
    font-size: 13px;
    color: #1A1216;
}
.am-sheet-row:last-child { border-bottom: none; }
.am-sheet-row--head { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; color: #9a8f96; border-bottom: 2px solid #d8ccd3; }
.am-sheet-row span:nth-child(2), .am-sheet-row span:nth-child(3) { color: #5d545b; }
.am-chip { display: inline-block; font-style: normal; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.am-chip--warn { background: #FFC83D; color: #1A1216; }
.am-chip--black { background: #1A1216; color: #fff; }

/* 回転イエローシール */
.am-sticker {
    position: absolute;
    top: -46px; right: -34px;
    width: 132px; height: 132px;
    border-radius: 50%;
    background: #FFC83D;
    color: #1A1216;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transform: rotate(9deg);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    z-index: 3;
}
.am-sticker b { font-size: 30px; font-weight: 900; line-height: 1; }
.am-sticker small { font-size: 10.5px; font-weight: 700; }

/* 痛みワードのマーキー帯 */
.am-ticker {
    position: relative;
    z-index: 5;
    background: var(--am-magenta);
    overflow: hidden;
    padding: 13px 0;
}
.am-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    animation: amTicker 26s linear infinite;
    will-change: transform;
}
.am-ticker-track span { color: #fff; font-size: 14.5px; font-weight: 800; letter-spacing: 0.06em; }
.am-ticker-track i { color: #FFC83D; font-style: normal; font-size: 9px; }
@keyframes amTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .am-ticker-track { animation: none; } }

/* チェックリストの圧を上げる（見出し=極太ゴシック・ボックス拡大） */
.am-checks .am-statement {
    font-family: var(--am-gothic);
    font-weight: 900;
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.45;
}
.am-check-list li { font-weight: 600; font-size: 15px; transition: transform 0.16s var(--am-ease), box-shadow 0.16s var(--am-ease); }
.am-check-list li:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(31, 18, 28, 0.10); }
.am-check-box { width: 26px; height: 26px; font-size: 15px; background: #FFC83D; border-color: #FFC83D; color: #1A1216; border-radius: 6px; }

/* CTAの圧を上げる */
.am-cta .am-cta-title {
    font-family: var(--am-gothic);
    font-weight: 900;
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.45;
}

/* モバイル追従CTA（デスクトップ非表示） */
.am-stickycta { display: none; }

@media (max-width: 1000px) {
    .am-hero .page-header-content.am-hero-grid { grid-template-columns: 1fr; gap: 26px; padding: 56px 24px; }
    .am-sheet { transform: rotate(-2deg); max-width: 560px; }
    .am-sticker { top: -38px; right: -8px; }
}

/* =====================================================================
   広告LPスキン v3 — ジャンル文法準拠（オファー完結FV・多重CTA・料金表・FAQ・注記）
   参照: NURO光/クリニック系 広告LPの構造解析（docs/our-service/work/040）
   ===================================================================== */

/* FV: 内容量が多いためヘッダー高さを可変に（共通 60vh 固定を解除） */
.page-header.am-hero { height: auto; min-height: 640px; }
.am-hero .page-header-content.am-hero-grid {
    position: relative;
    height: auto;
    padding-top: 130px;
    padding-bottom: 70px;
}
.am-fv-target {
    display: inline-block;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 7px 18px;
    margin: 0 0 18px;
}
.am-fv-target b { color: #FFC83D; }
.page-header.am-hero .am-hero-main { font-size: clamp(32px, 3.3vw, 48px); margin-bottom: 18px; }

/* 0円オファーボックス */
.am-offerbox {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 24px;
    margin: 0 0 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.am-offerbox-name {
    font-size: 18px;
    font-weight: 800;
    color: #1A1216;
    margin: 0;
    line-height: 1.4;
}
.am-offerbox-price { display: flex; align-items: baseline; margin: 0; color: var(--am-magenta); line-height: 1; }
.am-offerbox-price b { font-size: 64px; font-weight: 900; letter-spacing: -0.02em; }
.am-offerbox-price small { font-size: 24px; font-weight: 800; }
.am-offerbox-tags { list-style: none; display: flex; flex-direction: column; gap: 5px; margin: 0; padding: 0; }
.am-offerbox-tags li {
    font-size: 11.5px; font-weight: 800; color: #1A1216;
    background: #FFE9AE; border-radius: 999px; padding: 3px 12px; white-space: nowrap;
}
.am-fv-provider { font-size: 11.5px; color: rgba(255, 255, 255, 0.75); margin: 14px 0 0; letter-spacing: 0.02em; }

/* 吹き出し（共感） */
.am-bubbles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0 0 34px; }
.am-bubble {
    position: relative;
    background: #fff;
    border: 2px solid var(--am-magenta);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--am-ink);
    text-align: center;
    margin: 0;
}
.am-bubble::after {
    content: "";
    position: absolute;
    left: 50%; bottom: -9px;
    width: 14px; height: 14px;
    background: #fff;
    border-right: 2px solid var(--am-magenta);
    border-bottom: 2px solid var(--am-magenta);
    transform: translateX(-50%) rotate(45deg);
}

/* なぜ＝情緒セクションは明朝に戻す */
.am-statement--mincho { font-family: var(--am-mincho) !important; font-weight: 600 !important; }
/* 広告見出し（チェック/理由/オファー/FAQ）は極太ゴシック */
.am-page .am-statement {
    font-family: var(--am-gothic);
    font-weight: 900;
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.45;
}

/* 選ばれる理由: 大ナンバー */
.am-vcard--reason { padding-top: 26px; }
.am-reason-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--am-magenta);
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 14px;
    box-shadow: 4px 4px 0 #FFC83D;
}

/* オファー詳細＋料金表 */
.am-offer { background: var(--am-paper-2); }
.am-offer-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.am-offer-list li {
    background: #fff; border: 1px solid var(--am-line); border-radius: 10px;
    padding: 18px 20px;
    font-size: 14px; line-height: 1.85; color: var(--am-sub);
}
.am-offer-list li b { display: block; font-size: 15.5px; font-weight: 800; color: var(--am-ink); margin-bottom: 5px; }
.am-offer-list li b::before { content: "◎ "; color: var(--am-magenta); }
.am-price { border: 2px solid var(--am-ink); border-radius: 14px; overflow: hidden; background: #fff; max-width: 880px; }
.am-price-row {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 22px 28px;
}
.am-price-row--free { background: #FFF5DA; border-bottom: 1px dashed var(--am-line); }
.am-price-name { font-size: 17px; font-weight: 800; color: var(--am-ink); display: flex; flex-direction: column; gap: 4px; }
.am-price-name small { font-size: 12px; font-weight: 600; color: var(--am-sub); }
.am-price-val { color: var(--am-magenta); line-height: 1; white-space: nowrap; font-weight: 900; font-size: 22px; }
.am-price-val b { font-size: 52px; letter-spacing: -0.02em; }
.am-price-val--quote { font-size: 18px; color: var(--am-ink); font-weight: 800; }

/* CTA帯（各セクション末の反復） */
.am-ctaband { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: clamp(30px, 4vw, 44px); }
.am-ctaband .am-btn--blast { font-size: 16px; padding: 17px 40px; }
.am-ctaband-note { font-size: 12px; color: var(--am-sub); margin: 0; }
.am-ctaband--ondark .am-ctaband-note { color: #d8ccd3; }

/* FAQ */
.am-faq { background: var(--am-paper); }
.am-faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; }
.am-faq-item {
    background: #fff; border: 1px solid var(--am-line); border-radius: 10px;
    overflow: hidden;
}
.am-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: baseline; gap: 12px;
    padding: 18px 22px;
    font-size: 15px; font-weight: 800; color: var(--am-ink);
}
.am-faq-item summary::-webkit-details-marker { display: none; }
.am-faq-item summary::before { content: "Q"; flex-shrink: 0; color: var(--am-magenta); font-weight: 900; font-size: 18px; }
.am-faq-item summary::after { content: "＋"; margin-left: auto; color: var(--am-magenta); font-weight: 800; }
.am-faq-item[open] summary::after { content: "－"; }
.am-faq-item > p {
    display: flex; align-items: baseline; gap: 12px;
    margin: 0; padding: 0 22px 18px;
    font-size: 14px; line-height: 1.9; color: var(--am-sub);
}
.am-faq-item > p::before { content: "A"; flex-shrink: 0; color: #c9a227; font-weight: 900; font-size: 16px; }

/* 注意事項 */
.am-notes { background: var(--am-paper-2); padding-top: 28px; padding-bottom: 36px; }
.am-notes-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; max-width: 980px; }
.am-notes-list li { font-size: 11.5px; line-height: 1.8; color: #8a828a; }

@media (max-width: 1000px) {
    .am-bubbles { grid-template-columns: 1fr; gap: 14px; }
    .am-bubble::after { display: none; }
    .am-offer-list { grid-template-columns: 1fr; }
    .am-offerbox { flex-wrap: wrap; gap: 14px; }
    .am-price-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =====================================================================
   v4 整列規律 — 「ガタガタ・AI感」是正
   ・背景動画を非表示（覆い隠しでなく除去）
   ・見出し中央＋帯ラベルで全セクション統一、白/クリーム交互の一定リズム
   ・編集的残骸（ゴースト/英字アイブロウ/ダーク帯/マーキー）を廃止
   ===================================================================== */

/* 背景動画・ポスターを要素ごと非表示 */
.am-hero .page-header-bg { display: none !important; }
.am-hero { background: linear-gradient(135deg, #220714 0%, #3d0a26 55%, #5c0f3a 100%); }

/* データシートの傾きを抑制（ギミック感の低減） */
.am-sheet { transform: rotate(-2deg); }

/* 帯ラベル（全セクション共通の見出し前装飾） */
.am-label {
    display: inline-block;
    background: var(--am-magenta);
    color: #fff;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    border-radius: 999px;
    padding: 6px 20px;
    margin: 0 0 18px;
}

/* セクション余白を固定（リズム統一） */
.am-page .am-section { padding: 80px 0; }
.am-page .am-notes { padding: 30px 0 40px; }
.am-page .am-branch { padding: 56px 0; }

/* 背景: 白とクリームの交互のみ（ダーク帯廃止） */
.am-page .am-checks { background: #fff; }
.am-page .am-why { background: #FBF6EC; }
.am-page .am-solution { background: #fff; }
.am-page .am-offer { background: #FBF6EC; }
.am-page .am-method { background: #fff; color: var(--am-ink); }
.am-page .am-faq { background: #FBF6EC; }
.am-page .am-branch { background: #fff; }
.am-page .am-notes { background: #FBF6EC; }
.am-method .am-section-title--light { color: var(--am-ink); }
.am-method .am-step { box-shadow: 0 12px 30px rgba(31, 18, 28, 0.08); border: 1px solid var(--am-line); }
.am-ctaband--ondark .am-ctaband-note { color: var(--am-sub); }

/* 見出し・リード・結び＝中央、カード内部＝左 の規律 */
.am-page .am-label-wrap,
.am-page .am-section > .am-container { text-align: center; }
.am-page .am-statement,
.am-page .am-section-title { text-align: center; }
.am-page .am-lead,
.am-page .am-check-note,
.am-page .am-guard { text-align: center; max-width: 860px; margin-left: auto; margin-right: auto; }
.am-page .am-check-list li,
.am-page .am-vcard,
.am-page .am-vcard h3,
.am-page .am-offer-list li,
.am-page .am-step,
.am-page .am-step-head h3,
.am-page .am-faq-item,
.am-page .am-why-step,
.am-page .am-price-row,
.am-page .am-branch-card,
.am-page .am-notes-list li { text-align: left; }

/* 結びの一文（なぜ）: 罫線を捨てて中央の言い切りに */
.am-why-absolve { text-align: center; font-size: clamp(19px, 2.1vw, 25px); }
.am-why-absolve .line { display: none; }

/* 中央寄せブロックの幅統一 */
.am-bubbles { max-width: 1000px; margin: 0 auto 36px; }
.am-check-list { max-width: 1000px; margin: 0 auto 26px; }
.am-vcards { max-width: 1100px; margin: 0 auto; }
.am-offer-list { max-width: 1000px; margin: 0 auto 30px; }
.am-price { margin: 0 auto; }
.am-steps { max-width: 1140px; margin: 0 auto; }
.am-why-flow { max-width: 1080px; margin: 8px auto 30px; }
.am-faq-list { margin: 0 auto; }
.am-notes-list { margin: 0 auto; }
.am-branch-card { max-width: 980px; margin: 0 auto; }
/* 見出し書体の統一（流れセクションも極太ゴシックへ。明朝は「なぜ」の情緒のみ） */
.am-page .am-section-title {
    font-family: var(--am-gothic);
    font-weight: 900;
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.45;
}

/* =====================================================================
   v5 形態言語 — 直角と罫線（データシートの語彙）
   面取り四角の羅列を廃止。角丸はピルタグと0円シール（唯一の円）のみに限定。
   ===================================================================== */

/* ヒーロー部品 */
.am-sheet, .am-sheet-bar { border-radius: 0; }
.am-offerbox {
    border-radius: 0;
    border: 2px solid #1A1216;
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.30);
}
.am-btn--blast { border-radius: 0; }
.am-btn--blast:hover { border-radius: 0; }

/* 吹き出し: 直角の台詞枠 */
.am-bubble { border-radius: 0; }

/* チェックリスト: カードをやめ、紙のチェック表（罫線リスト）に */
.am-check-list {
    border-top: 2px solid var(--am-ink);
    border-bottom: 2px solid var(--am-ink);
}
.am-check-list li {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--am-line);
    border-radius: 0;
    padding: 17px 6px;
}
.am-check-list li:last-child { border-bottom: none; }
.am-check-list li:hover { transform: none; box-shadow: none; background: #FFF8E6; }
.am-check-box { border-radius: 0; }

/* EUCの流れ: 表のヘッダ風（上罫アクセント） */
.am-why-step {
    border-radius: 0;
    border: 1px solid var(--am-line);
    border-top: 3px solid var(--am-magenta);
}

/* 理由カード: 直角＋上罫アクセント、ナンバーは正方形 */
.am-page .am-vcard {
    border-radius: 0;
    border: 1px solid var(--am-line);
    border-top: 4px solid var(--am-magenta);
}
.am-reason-no { border-radius: 0; }

/* 診断でわかること: 罫線共有の表組み（border-collapse 風） */
.am-offer-list {
    gap: 1px;
    background: var(--am-line);
    border: 1px solid var(--am-line);
}
.am-offer-list li { border: none; border-radius: 0; }

/* 料金表・ステップ・FAQ・分岐: 直角 */
.am-price { border-radius: 0; }
.am-page .am-step { border-radius: 0; }
.am-step-label { border-radius: 0; }
.am-step-free { border-radius: 0; }
.am-faq-list { border-top: 2px solid var(--am-ink); border-bottom: 2px solid var(--am-ink); }
.am-faq-item { border: none; border-bottom: 1px solid var(--am-line); border-radius: 0; background: transparent; }
.am-faq-item:last-child { border-bottom: none; }
.am-branch-card { border-radius: 0; }

/* モック内のごく小さな角丸も統一 */
.am-finding { border-radius: 0; }

/* ===== EUC 4コマ（生成イラスト＋HTMLキャプション） ===== */
.am-euc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1120px;
    margin: 8px auto 30px;
}
.am-euc-step { margin: 0; position: relative; }
.am-euc-step img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--am-line);
}
/* コマ間の進行矢印（最終コマ以外） */
.am-euc-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 32%;
    right: -19px;
    color: var(--am-magenta-bright);
    font-size: 20px;
    font-weight: 700;
}
.am-euc-step figcaption {
    text-align: left;
    font-size: 13px;
    line-height: 1.8;
    color: var(--am-sub);
    margin-top: 12px;
}
.am-euc-step figcaption b {
    display: block;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--am-ink);
    margin-bottom: 4px;
}
@media (max-width: 1000px) {
    .am-euc { grid-template-columns: 1fr 1fr; }
    .am-euc-step:not(:last-child)::after { display: none; }
}

/* =====================================================================
   v6 センタリング精密化
   ・.am-statement の lm 由来 max-width:940/margin:0 がボックスごと左寄り（-70px）
     になっていたのを是正
   ・行末の全角句読点による光学ずれを .am-op（-0.5em）で補正
   ===================================================================== */
.am-page .am-statement {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}
.am-op { margin-right: -0.5em; }
