  /* ===== PAGE HERO ===== */
  #page-hero {
    padding: 80px 40px 60px;
    background: #fff;
    position: relative; overflow: hidden;
    min-height: 320px;
    display: flex; align-items: center;
  }
  #page-hero::before {
    content: ""; position: absolute;
    top: 50%; right: 10%; transform: translateY(-50%);
    width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, var(--accent3) 0%, rgba(224,242,244,.4) 50%, transparent 80%); filter: blur(20px); z-index: 0;
    opacity: .55;
  }
  .page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; width: 100%; }
  .page-hero-stamp {
    position: absolute;
    right: 0; top: 50%; transform: translateY(-50%);
    font-size: clamp(80px, 13vw, 180px);
    font-weight: 900; color: var(--accent);
    opacity: .10; letter-spacing: -.04em;
    font-family: "Inter", "Helvetica Neue", sans-serif;
    line-height: 1; pointer-events: none; z-index: 1;
    white-space: nowrap;
  }
  .page-hero-eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 800; letter-spacing: .35em;
    color: var(--accent); margin-bottom: 28px;
    padding-bottom: 6px; border-bottom: 2px solid var(--accent);
  }
  .page-hero h1 {
    font-size: 64px; font-weight: 900; color: var(--navy);
    line-height: 1.3; margin-bottom: 32px; letter-spacing: -.01em;
  }
  .page-hero h1 em { color: var(--accent); font-style: normal; }
  .page-hero p {
    font-size: 18px; color: var(--text); line-height: 2.1;
    max-width: 760px; font-weight: 500;
  }

  /* ===== STEPS ===== */
  #steps {
    padding: 140px 40px;
    background: #fff;
  }
  .steps-header { max-width: 1200px; margin: 0 auto 80px; }

  .step-list {
    max-width: 1000px; margin: 0 auto;
    position: relative;
  }
  /* 縦の線（タイムライン） */
  .step-list::before {
    content: ""; position: absolute;
    left: 40px; top: 60px; bottom: 60px;
    width: 2px; background: var(--border);
  }
  .step {
    display: grid; grid-template-columns: 100px 1fr;
    gap: 48px; align-items: start;
    padding: 32px 0 56px;
    position: relative;
  }
  .step:last-child { padding-bottom: 0; }
  /* 画像つきステップ（右側に画像） */
  .step.has-image-right {
    grid-template-columns: 100px 1fr 320px;
  }
  /* 画像つきステップ（左側に画像） */
  .step.has-image-left {
    grid-template-columns: 100px 320px 1fr;
  }
  .step-image {
    aspect-ratio: 16/10;
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 16px 32px rgba(26,31,46,.10);
    align-self: center;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }
  .step-image img {
    width: 100%; height: 100%; object-fit: contain; object-position: center; display: block;
  }
  .step-num-wrap {
    position: relative; z-index: 2;
  }
  .step-num {
    width: 80px; height: 80px; border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: 900;
    font-family: "Inter","Hiragino Kaku Gothic ProN",sans-serif;
    transition: all .25s ease;
  }
  /* ホバー時：塗りつぶし＋影 */
  .step:hover .step-num {
    background: var(--accent); color: #fff;
    box-shadow: 0 12px 32px rgba(0,151,178,.25);
    transform: scale(1.05);
  }
  .step-body {
    padding-top: 12px;
  }
  .step-tag {
    font-size: 12px; font-weight: 800; letter-spacing: .3em;
    color: var(--accent); margin-bottom: 12px;
  }
  .step-body h3 {
    font-size: 28px; font-weight: 800; color: var(--navy);
    margin-bottom: 14px; line-height: 1.4;
  }
  .step-body p {
    font-size: 17px; color: var(--text); line-height: 2.05;
    font-weight: 500;
  }
  .step-body p strong { color: var(--accent); font-weight: 800; }
  .step-body .step-meta {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--muted);
    background: var(--bg2); padding: 8px 16px;
    border-radius: 100px; margin-top: 16px;
  }
  .step-body .step-meta::before {
    content: "⏱"; font-size: 14px;
  }

  /* ===== PRICING POLICY ===== */
  #pricing {
    padding: 140px 40px;
    background: var(--bg2);
  }
  .pricing-inner {
    max-width: 1100px; margin: 0 auto;
  }
  .pricing-header { text-align: center; margin-bottom: 56px; }
  .pricing-header .eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 800; letter-spacing: .4em;
    color: var(--accent); margin-bottom: 20px;
  }
  .pricing-header h2 {
    font-size: 44px; font-weight: 900; color: var(--navy);
    line-height: 1.4; margin-bottom: 20px; letter-spacing: -.01em;
  }
  .pricing-header h2 em { color: var(--accent); font-style: normal; }
  .pricing-header p {
    font-size: 17px; color: var(--text); line-height: 2.05;
    max-width: 720px; margin: 0 auto; font-weight: 500;
  }

  /* 料金は要相談カード */
  .policy-card {
    background: #fff; border-radius: 8px;
    padding: 56px 64px;
    box-shadow: 0 20px 60px rgba(26,31,46,.06);
    display: grid; grid-template-columns: auto 1fr;
    gap: 48px; align-items: center;
    border-left: 6px solid var(--accent);
    position: relative;
  }
  .policy-icon {
    width: 120px; height: 120px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 56px; font-weight: 900;
  }
  .policy-body h3 {
    font-size: 32px; font-weight: 900; color: var(--navy);
    margin-bottom: 14px; line-height: 1.4;
  }
  .policy-body p {
    font-size: 16px; color: var(--text); line-height: 2;
    margin-bottom: 14px; font-weight: 500;
  }
  .policy-body p strong { color: var(--accent); font-weight: 800; }

  /* 補足ポイント */
  .policy-points {
    margin-top: 48px;
    display: grid; grid-template-columns: repeat(2,1fr); gap: 0;
    border-top: 1px solid var(--border);
    background: #fff; border-radius: 8px; overflow: hidden;
    box-shadow: 0 12px 32px rgba(26,31,46,.04);
  }
  .policy-point {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
    text-align: center;
  }
  .policy-point:last-child { border-right: none; }
  .policy-point .point-num {
    font-size: 13px; font-weight: 800; letter-spacing: .3em;
    color: var(--accent); margin-bottom: 12px;
  }
  .policy-point h4 {
    font-size: 18px; font-weight: 800; color: var(--navy);
    margin-bottom: 12px; line-height: 1.5;
  }
  .policy-point p {
    font-size: 14px; color: var(--text); line-height: 1.95;
    font-weight: 500;
  }

  /* 料金構造への誘導 */
  .pricing-link {
    margin-top: 48px;
    padding: 36px 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
  }
  .pricing-link p {
    font-size: 15px; color: var(--text); line-height: 1.95;
    font-weight: 500;
    margin-bottom: 24px;
    max-width: 720px; margin-left: auto; margin-right: auto;
  }

  /* ===== FAQ LINK SECTION ===== */
  #faq-link {
    padding: 140px 40px;
    background: var(--bg2);
    position: relative; overflow: hidden;
  }
  #faq-link::before {
    content: ""; position: absolute;
    top: -100px; left: -100px;
    width: 360px; height: 360px; border-radius: 50%;
    background: var(--accent3); opacity: .5;
  }
  .faq-link-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
  .faq-link-header { text-align: center; margin-bottom: 56px; }
  .faq-link-header .eyebrow {
    display: inline-block;
    font-size: 13px; font-weight: 800; letter-spacing: .4em;
    color: var(--accent); margin-bottom: 20px;
  }
  .faq-link-header h2 {
    font-size: 40px; font-weight: 900; color: var(--navy);
    line-height: 1.4; margin-bottom: 18px; letter-spacing: -.01em;
  }
  .faq-link-header h2 em { color: var(--accent); font-style: normal; }
  .faq-link-header p {
    font-size: 17px; color: var(--text); line-height: 2.05;
    max-width: 680px; margin: 0 auto; font-weight: 500;
  }

  /* FAQ アコーディオンリスト */
  .flow-faq-list { display: flex; flex-direction: column; gap: 14px; }
  .flow-faq-list details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
  }
  .flow-faq-list details:hover { border-color: var(--accent); }
  .flow-faq-list details[open] {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,151,178,.08);
  }
  .flow-faq-list summary {
    list-style: none;
    padding: 24px 32px;
    font-size: 17px; font-weight: 700; color: var(--navy);
    display: grid; grid-template-columns: 36px 1fr 28px;
    gap: 18px; align-items: center;
    cursor: pointer;
    line-height: 1.5;
  }
  .flow-faq-list summary::-webkit-details-marker { display: none; }
  .flow-faq-list summary::before {
    content: "Q";
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 900;
    grid-column: 1;
  }
  .flow-faq-list summary span { grid-column: 2; }
  .flow-faq-list summary::after {
    content: "+";
    font-size: 26px; color: var(--accent); font-weight: 300;
    text-align: center;
    grid-column: 3;
    transition: transform .2s;
  }
  .flow-faq-list details[open] summary::after {
    content: "−";
  }
  .flow-faq-list .faq-answer {
    padding: 0 32px 28px 86px;
    font-size: 15px; line-height: 2; color: var(--text);
    font-weight: 500;
  }
  .flow-faq-list .faq-answer strong { color: var(--accent); font-weight: 800; }

  .faq-more { text-align: center; margin-top: 56px; }
  .faq-cta-body .eyebrow {
    font-size: 12px; font-weight: 800; letter-spacing: .3em;
    color: var(--accent); margin-bottom: 10px;
  }
  .faq-cta-body h3 {
    font-size: 22px; font-weight: 800; color: var(--navy);
    margin-bottom: 8px; line-height: 1.5;
  }
  .faq-cta-body p {
    font-size: 15px; color: var(--muted); line-height: 1.95;
  }

  /* ===== CTA ===== */
  #cta {
    padding: 60px 40px; background: var(--navy); color: #fff;
    text-align: center;
    position: relative; overflow: hidden;
  }
  #cta::before {
    content: ""; position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: var(--accent); opacity: .15;
  }
  .cta-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
  .cta-eyebrow {
    font-size: 13px; font-weight: 800; letter-spacing: .4em;
    color: var(--accent); margin-bottom: 28px;
  }
  .cta-inner h2 {
    font-size: 48px; font-weight: 900; color: #fff;
    line-height: 1.5; margin-bottom: 28px; letter-spacing: -.01em;
  }
  .cta-inner h2 em { color: var(--accent); font-style: normal; }
  .cta-inner p {
    font-size: 17px; color: rgba(255,255,255,.85); line-height: 2;
    margin-bottom: 44px;
  }
  .cta-inner .btn-wrap {
    display: flex; justify-content: center;
  }

  @media (max-width: 900px) {
    #page-hero { padding: 60px 24px 48px; min-height: auto; }
    #page-hero::before { width: 280px; height: 280px; right: -80px; }
    .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .page-hero h1 { font-size: 36px; }
    .page-hero-stamp { font-size: clamp(60px, 16vw, 120px); opacity: .08; right: -4%; }
    .page-hero-visual { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
    .step-list::before { left: 30px; }
    .step,
    .step.has-image-right,
    .step.has-image-left { grid-template-columns: 80px 1fr; gap: 24px; padding-bottom: 40px; }
    .step-image { grid-column: 1 / -1; max-width: 480px; margin: 16px auto 0; }
    .step-num { width: 60px; height: 60px; font-size: 20px; }
    .step-body h3 { font-size: 22px; }
    .policy-card { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; text-align: center; }
    .policy-icon { margin: 0 auto; width: 100px; height: 100px; font-size: 48px; }
    .policy-body h3 { font-size: 24px; }
    .policy-points { grid-template-columns: 1fr; }
    .policy-point { border-right: none; border-bottom: 1px solid var(--border); }
    .policy-point:last-child { border-bottom: none; }
    .faq-cta { grid-template-columns: 1fr; gap: 20px; text-align: center; padding: 28px 24px; }
    .pricing-header h2 { font-size: 28px; }
  }
  @media (max-width: 600px) {
    #page-hero { padding: 48px 20px 40px; }
    .page-hero h1 { font-size: 28px; }
    .page-hero p { font-size: 15px; }
    .page-hero-stamp { font-size: clamp(48px, 18vw, 90px); opacity: .07; }
    .step-body h3 { font-size: 19px; }
  }
