  :root {
    --teal:          #0d7577;
    --teal-deep:     #0a5c5e;
    --teal-dark:     #084a4c;
    --navy:          #1a2a5e;
    --navy-deep:     #111d42;
    --red:           #d63a2f;
    --red-deep:      #b22d24;
    --bg:            #e6f0f3;
    --bg-soft:       #f1f6f8;
    --yellow:        #f7d94c;
    --yellow-soft:   #fde9a0;
    --ink:           #2c3444;
    --ink-soft:      #4a556b;
    --text:          #3a4455;
    --text-mute:     #8a94a6;
    --white:         #ffffff;
    --line:          #dfe7eb;
  }

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

  body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #cfd9de;
    color: var(--text);
    line-height: 1.85;
    font-size: 15px;
    font-feature-settings: "palt";
    overflow-x: hidden;
  }

  img{
    width: 100%;
  }

  .container {
    max-width: 100%;
    margin: 0 auto;
    background: var(--white);
    position: relative;
    box-shadow: 0 0 60px rgba(0,0,0,0.08);
  }

  /* タブレットサイズでは左右パディングを広げて端貼り付きを回避 */
  @media (min-width: 768px) {
    .hero { padding: 32px 48px 56px; }
    .section { padding: 64px 48px; }
    .cta-wrap { padding: 40px 48px; }
    .cta-band { padding: 48px 48px; }
    .footer { padding: 40px 48px 28px; }
  }

  /* PCサイズではLP風の中央寄せレイアウトに戻す */
  @media (min-width: 1025px) {
    .container { max-width: 430px; }
    .hero { padding: 20px 20px 44px; }
    .section { padding: 48px 20px; }
    .cta-wrap { padding: 32px 20px; }
    .cta-band { padding: 36px 20px; }
    .footer { padding: 28px 20px 20px; }
  }

  /* ===== HERO ===== */
  .hero {
    background: var(--teal);
    color: var(--white);
    padding: 20px 20px 44px;
    position: relative;
    overflow: hidden;
  }
  .hero-logo-wrap{
    display: flex;
    margin-bottom: 18px;
    justify-content: space-between;
  }
  .hero-logo-txt{
    margin-left: 10px;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 14px;
  }
  .hero-logo {
    display: flex;
    align-items: center;
  }
  .hero-logo img {
    height: 25px;
    width: auto;
    display: block;
  }

  .hero-illus {
    margin: 4px 0 14px;
    position: relative;
  }
  .hero-illus svg {
    width: 100%; height: 100%;
    display: block;
  }
  .dummy-tag {
    position: absolute;
    top: 6px; left: 6px;
    background: rgba(255,255,255,0.9);
    color: var(--teal-deep);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 1px;
  }

  .hero-badge {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
    letter-spacing: 0.5px;
  }
  .hero-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
  }
  .hero-title .hl {
    background: none;
    padding: 0;
    color: var(--yellow);
  }
  .hero-bullets {
    list-style: none;
    padding: 0;
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
    line-height: 2;
  }
  .hero-bullets li::before {
    content: '・';
    margin-right: 2px;
  }

  /* ===== CTA BUTTON ===== */
  .cta-wrap {
    background: var(--white);
    padding: 32px 20px;
    text-align: center;
  }
  .cta-red {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 20px;
    background: var(--red);
    color: var(--white);
    border: none;
    text-decoration: none;
    border-radius: 4px;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 0 var(--red-deep);
    position: relative;
  }
  .cta-red:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--red-deep);
  }
  .cta-red::after {
    content: '›';
    position: absolute;
    right: 18px;
    font-size: 22px;
    font-weight: 400;
    top: 50%;
    transform: translateY(-55%);
  }

  /* ===== SECTION BASE ===== */
  .section {
    padding: 48px 20px;
    position: relative;
    overflow: hidden;
  }
  .section-tint { background: var(--bg); }
  .section-light { background: var(--bg-soft); }
  .section-white { background: var(--white); }
  .section-navy { background: var(--navy); color: var(--white); }
  .section-teal { background: var(--teal); color: var(--white); }

  .section-bg-text {
    position: absolute;
    top: 40%;
    left: -30px;
    font-size: 86px;
    font-weight: 900;
    letter-spacing: 4px;
    color: rgba(13,117,119,0.08);
    line-height: 1;
    transform: rotate(-90deg);
    transform-origin: left top;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
  }
  .section-navy .section-bg-text { color: rgba(255,255,255,0.04); }

  .section-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }
  .section-title .hl {
    background: linear-gradient(transparent 65%, var(--yellow) 65%, var(--yellow) 88%, transparent 88%);
    padding: 0 2px;
  }
  .section-navy .section-title { color: var(--white); }
  .section-teal .section-title { color: var(--white); }
  .section-navy .section-title .hl,
  .section-teal .section-title .hl {
    background: none;
    padding: 0;
    color: var(--yellow);
  }

  .section-sub {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
  .section-navy .section-sub,
  .section-teal .section-sub { color: var(--white); }

  .section-lead {
    text-align: center;
    font-size: 14px;
    color: var(--text);
    line-height: 1.95;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  .section-navy .section-lead,
  .section-teal .section-lead { color: rgba(255,255,255,0.85); }

  .section-title-ornate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }
  .section-title-ornate::before {
    content: '';
    width: 1px;
    height: 18px;
    background: var(--teal);
    transform: rotate(-20deg);
  }
  .section-title-ornate::after {
    content: '';
    width: 1px;
    height: 18px;
    background: var(--teal);
    transform: rotate(20deg);
  }

  /* ===== CASE GRID ===== */
  .case-box {
    background: var(--white);
    border-radius: 6px;
    padding: 18px 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .case-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 4px;
  }
  .case-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
    padding: 12px 0;
    font-weight: 500;
  }
  .case-item + .case-item {
    border-top: 1px dashed var(--line);
  }
  .case-tag {
    background: var(--teal);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    position: relative;
    min-width: 58px;
    text-align: center;
  }
  .case-tag::after {
    content: '';
    position: absolute;
    right: -5px; top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--teal);
  }

  /* ===== POINT CARDS ===== */
  .points-intro {
    text-align: center;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--ink);
    font-weight: 600;
  }
  .point-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }
  .point-card {
    background: var(--white);
    border-radius: 6px;
    padding: 20px 18px 18px 60px;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .point-ribbon {
    position: absolute;
    top: -2px; left: 14px;
    width: 34px;
    background: var(--teal);
    color: var(--white);
    padding: 6px 0 10px;
    text-align: center;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.3px;
  }
  .point-ribbon::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 0;
    border-left: 17px solid var(--teal);
    border-right: 17px solid var(--teal);
    border-bottom: 6px solid transparent;
  }
  .point-ribbon .num {
    display: block;
    font-size: 12px;
    margin-top: 2px;
  }
  .point-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--teal-deep);
    margin-bottom: 6px;
    line-height: 1.5;
  }
  .point-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.75;
    text-align: left;
  }

  /* ===== NUMBER HIGHLIGHT BLOCK ===== */
  .number-highlight {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .number-highlight .kicker {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .number-highlight .big {
    font-size: 38px;
    font-weight: 900;
    color: var(--teal);
    line-height: 1.2;
    margin: 4px 0;
  }
  .number-highlight .big small {
    font-size: 18px;
    margin-left: 2px;
  }
  .number-highlight .big sup {
    font-size: 13px;
    color: var(--red);
    vertical-align: super;
  }
  .number-highlight .footnote {
    font-size: 10px;
    color: var(--text-mute);
    margin-top: 6px;
  }

  /* ===== COMPARE CHART ===== */
  .compare-chart {
    background: var(--white);
    border-radius: 6px;
    padding: 22px 16px 16px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    z-index: 1;
  }
  .compare-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 32px;
    height: 180px;
    padding: 0 20px;
    position: relative;
  }
  .compare-bar-unit { text-align: center; position: relative; }
  .compare-bar {
    width: 80px;
    background: var(--teal);
    position: relative;
    border-radius: 2px 2px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
  }
  .compare-bar.ours { height: 140px; }
  .compare-bar.theirs {
    height: 160px;
    background: var(--white);
    border: 1.5px solid var(--ink);
    color: var(--ink);
    flex-direction: column;
  }
  .compare-bar.theirs .fee {
    width: 100%;
    height: 18px;
    background: var(--red);
    color: var(--white);
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .compare-bar.theirs .body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .compare-bar .side-label {
    position: absolute;
    right: -42px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--ink);
    font-weight: 600;
    white-space: nowrap;
  }
  .compare-bar-unit .name {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
  }
  .compare-annot {
    position: absolute;
    top: -30px;
    font-size: 9px;
    font-weight: 700;
    color: var(--teal-deep);
    line-height: 1.3;
    text-align: center;
    width: 100px;
  }
  .compare-annot::before,
  .compare-annot::after {
    content: '';
    position: absolute;
    bottom: -4px;
    width: 1px; height: 12px;
    background: var(--teal-deep);
  }
  .compare-annot::before { left: 10px; transform: rotate(-20deg); }
  .compare-annot::after { right: 10px; transform: rotate(20deg); }

  .compare-note {
    text-align: center;
    margin-top: 20px;
    padding: 12px 16px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
  }
  .compare-note .accent { color: var(--red); }
  .compare-footnote {
    margin-top: 12px;
    font-size: 10px;
    color: var(--text-mute);
    text-align: center;
    line-height: 1.7;
  }

  /* ===== FLOW COMPARE (2 rows) ===== */
  .flow-row {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 14px 14px 16px;
    margin-top: 14px;
    position: relative;
  }
  .flow-row-tag {
    position: absolute;
    top: -10px; left: 14px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
  }
  .flow-row-tag.good {
    background: var(--teal);
  }
  .flow-row-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    padding-top: 4px;
  }
  .flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 4px;
    padding: 8px 0;
  }
  .flow-person {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: var(--text);
    font-weight: 600;
  }
  .flow-person svg {
    width: 44px; height: 44px;
    display: block;
    margin: 0 auto 4px;
  }
  .flow-arrow {
    font-size: 16px;
    color: var(--teal);
    font-weight: 300;
    position: relative;
  }
  .flow-fee-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    color: var(--red);
    font-weight: 700;
    white-space: nowrap;
  }

  /* ===== MERIT 3-UP ===== */
  .merit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }
  .merit-card {
    background: var(--white);
    border-radius: 6px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .merit-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
    flex-shrink: 0;
    min-width: 32px;
  }
  .merit-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 2px;
  }
  .merit-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
  }

  /* ===== VOICE CARDS ===== */
  .voice-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }
  .voice-card {
    background: var(--white);
    border-radius: 8px;
    padding: 16px;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 14px;
    align-items: flex-start;
    position: relative;
  }
  .voice-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--bg);
    color: var(--teal-deep);
    border: 2px solid var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    overflow: hidden;
  }
  .voice-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .voice-content {
    min-width: 0;
  }
  .voice-meta {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal-deep);
    margin-bottom: 4px;
  }
  .voice-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .voice-body {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  /* ===== FLOW STEPS (Card row) ===== */
  .flow-steps {
    display: flex;
    gap: 4px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .flow-step {
    min-width: 60px;
    background: var(--bg-soft);
    border: 1px solid var(--teal);
    border-radius: 2px;
    padding: 10px 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: 150px;
    text-align: center;
    line-height: 1.5;
    flex-shrink: 0;
  }
  .flow-step.last {
    background: var(--teal);
    color: var(--white);
  }
  .flow-step-arrow {
    display: flex;
    align-items: center;
    color: var(--teal);
    font-size: 14px;
    flex-shrink: 0;
  }

  /* 診断までのステップリスト */
  .flow-list {
    margin-top: 24px;
    display: grid;
    gap: 12px;
  }
  .flow-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .flow-list-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
  }
  .flow-list-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .flow-list-desc {
    font-size: 13px;
    color: var(--text);
    line-height: 1.8;
  }

  /* ===== FAQ ===== */
  .faq {
    background: var(--white);
    border-radius: 6px;
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .faq-q {
    padding: 14px 44px 14px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.6;
    position: relative;
    user-select: none;
  }
  .faq-q::before {
    content: 'Q.';
    color: var(--teal);
    font-weight: 900;
    font-size: 15px;
    flex-shrink: 0;
  }
  .faq-q::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px; height: 10px;
    border-right: 2px solid var(--text-mute);
    border-bottom: 2px solid var(--text-mute);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.2s;
  }
  .faq.open .faq-q::after {
    transform: translateY(-20%) rotate(-135deg);
  }
  .faq-a {
    padding: 0 16px 14px 40px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.85;
    display: none;
    border-top: 1px dashed var(--line);
    padding-top: 12px;
  }
  .faq.open .faq-a { display: block; }

  /* ===== CTA BAND (navy) ===== */
  .cta-band {
    background: linear-gradient(120deg, var(--navy-deep), var(--navy));
    padding: 36px 20px;
    position: relative;
    overflow: hidden;
  }
  .cta-band::before, .cta-band::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.03);
    transform: rotate(45deg);
  }
  .cta-band::before {
    top: -40px; left: -60px;
    width: 200px; height: 200px;
    clip-path: polygon(0 40%, 50% 0, 100% 40%, 100% 100%, 0 100%);
  }
  .cta-band-lead {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
  }
  .cta-band-notes {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
  }
  .cta-band-notes span::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 900;
    margin-right: 4px;
  }

  /* ===== SCORE PREVIEW ===== */
  .score-preview {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px 16px;
    position: relative;
    z-index: 1;
    margin-top: 20px;
  }
  .score-preview-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 14px;
  }
  .score-preview-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-mute);
    letter-spacing: 1px;
  }
  .score-preview-badge {
    background: var(--yellow);
    color: var(--ink);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
  }
  .score-preview-body {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .score-circle {
    position: relative;
    width: 88px; height: 88px;
    flex-shrink: 0;
  }
  .score-circle-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
  }
  .score-info-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-mute);
    letter-spacing: 1px;
  }
  .score-info-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin: 2px 0 6px;
  }
  .score-info-num small {
    font-size: 13px;
    color: var(--text-mute);
    font-weight: 500;
  }
  .score-type {
    display: inline-block;
    background: var(--bg);
    color: var(--teal-deep);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 700;
  }
  .score-axes-mini {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
  }
  .score-axis-mini {
    text-align: center;
  }
  .axis-bar {
    height: 26px;
    background: var(--bg);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
    margin-bottom: 4px;
  }
  .axis-bar-fill {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--teal);
  }
  .axis-label {
    font-size: 8.5px;
    color: var(--text-mute);
    font-weight: 700;
  }

  /* ===== 7 AXES GRID (criteria) ===== */
  .axis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }
  .axis-card {
    background: var(--white);
    border-radius: 6px;
    padding: 14px 16px 14px 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    position: relative;
  }
  .axis-card-num {
    position: absolute;
    top: 14px; left: 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    background: var(--teal);
    padding: 3px 6px;
    border-radius: 2px;
    letter-spacing: 0.5px;
  }
  .axis-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
  }
  .axis-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
  }
  .axis-card-icon { display: none; }

  /* ===== TWO LAYER REPORT ===== */
  .layer-cards {
    display: grid;
    gap: 14px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
  }
  .layer-card {
    background: var(--white);
    border-radius: 8px;
    padding: 20px 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
  }
  .layer-card.primary {
    border: 2px solid var(--teal);
  }
  .layer-card.primary::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -10px; left: 18px;
    background: var(--teal);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
  }
  .layer-step {
    font-size: 10px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .layer-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .layer-card .desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 12px;
  }
  .layer-card ul {
    list-style: none;
    padding: 12px 0 0;
    border-top: 1px dashed var(--line);
  }
  .layer-card ul li {
    font-size: 14px;
    color: var(--ink);
    padding: 5px 0 5px 20px;
    position: relative;
    line-height: 1.65;
  }
  .layer-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 4px;
    color: var(--teal);
    font-weight: 700;
  }
  .layer-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--line);
  }
  .layer-price-label {
    font-size: 11px;
    color: var(--text-mute);
    font-weight: 700;
  }
  .layer-price-value {
    font-size: 22px;
    font-weight: 900;
    color: var(--teal);
  }
  .layer-price-value small {
    font-size: 10px;
    color: var(--text-mute);
    margin-left: 4px;
    font-weight: 600;
  }

  /* ===== FINAL CTA ===== */
  .final-final {
    background: var(--teal);
    padding: 48px 20px;
    text-align: center;
    color: var(--white);
  }
  .final-final h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .final-final h2 .hl {
    background: none;
    color: var(--yellow);
    padding: 0;
  }
  .final-final p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.9);
    margin-bottom: 22px;
  }
  .final-final .cta-red { box-shadow: 0 4px 0 var(--red-deep); }
  .final-sub {
    margin-top: 10px;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
  }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    padding: 32px 20px 28px;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  .footer-logo img {
    height: 28px;
    width: auto;
    display: inline-block;
  }
  .footer-tagline {
    font-size: 11px;
    margin-bottom: 18px;
    line-height: 1.8;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11px;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
  }
  .footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
  }
  .footer-copy {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
  }

  /* ===== PDF VIEWER ===== */
  .pdf-viewer {
    background: var(--white);
    border-radius: 8px;
    padding: 14px;
    margin-top: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
  }
  .pdf-frame {
    background: #f3f3f3;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 800/1130;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .pdf-slides {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    height: 100%;
  }
  .pdf-slide { min-width: 100%; height: 100%; }
  .pdf-slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    display: block;
  }
  .pdf-controls {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 12px;
  }
  .pdf-indicators {
    display: flex; gap: 6px;
    flex: 1; justify-content: center;
  }
  .pdf-indicator {
    width: 20px; height: 3px;
    background: var(--line);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s;
  }
  .pdf-indicator.active {
    background: var(--teal);
    width: 30px;
  }
  .pdf-nav-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--teal);
    font-size: 14px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
  }

  /* ===== SECTION VARIANTS ===== */
  .section-about { padding: 25px 20px; }
  .section-about .section-title-ornate { margin-top: 18px; }
  .section-about .case-box { padding: 8px 16px; }
  .section-points { padding: 25px 20px 48px; }
  .section-pdf-preview { padding: 25px 20px 48px; }
  .section-flow-compare .section-title-ornate { margin-top: 32px; }
  .section-faq { background: #c1d3d6; }
  .text-red { color: var(--red); }

  /* スコアプレビューのバー高さ（サンプル値） */
  .score-axes-mini .score-axis-mini:nth-child(1) .axis-bar-fill { height: 70%; }
  .score-axes-mini .score-axis-mini:nth-child(2) .axis-bar-fill { height: 60%; }
  .score-axes-mini .score-axis-mini:nth-child(3) .axis-bar-fill { height: 80%; }
  .score-axes-mini .score-axis-mini:nth-child(4) .axis-bar-fill { height: 75%; }
  .score-axes-mini .score-axis-mini:nth-child(5) .axis-bar-fill { height: 40%; }
  .score-axes-mini .score-axis-mini:nth-child(6) .axis-bar-fill { height: 65%; }
  .score-axes-mini .score-axis-mini:nth-child(7) .axis-bar-fill { height: 55%; }

  /* ===== UTILITY ===== */
  .center { text-align: center; }
  .mt-8 { margin-top: 8px; }
  .mt-16 { margin-top: 16px; }
  .mt-24 { margin-top: 24px; }
  .mb-0 { margin-bottom: 0; }

