/* ═══════════════════════════════════════════
     DESIGN TOKENS — identical to design system
  ═══════════════════════════════════════════ */
    :root {
      --midnight: #0a0a12;
      --deep-navy: #0d1428;
      --royal-purple: #2d1b5e;
      --mystic-violet: #4a2d8a;
      --gold: #c9a84c;
      --gold-light: #e8c96a;
      --gold-dim: #7a5f2a;
      --copper: #96634e;
      --copper-dark: #7a4d3d;
      --cream: #f9f5ec;
      --emerald: #1a4a3c;
      --teal: #1d6e5e;
      --cloud: #f5f3fa;
      --white: #ffffff;
      --text-dark: #1a1520;
      --text-mid: #4a4060;
      --text-light: #8a80a0;
      --border-gold: rgba(201, 168, 76, 0.3);
      --border-copper: rgba(150, 99, 78, 0.2);
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Noto Serif JP', serif;
      background: var(--cloud);
      color: var(--text-dark);
      overflow-x: hidden;
      line-height: 1.7;
    }

    /* ═══ MAIN CONTENT WRAPPER ═══ */
    .page-body {
      max-width: 900px;
      margin: 0 auto;
      padding: 72px 40px 100px;
    }

    /* ═══ FAQ LIST ═══ */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    #cancel-policy {
      scroll-margin-top: 100px;
    }

    .faq-item {
      background: var(--cream);
      border: 1px solid var(--border-copper);
      overflow: hidden;
    }

    .faq-q {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 24px 28px 18px;
    }

    .faq-q-text {
      flex: 1;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      letter-spacing: .04em;
      line-height: 1.65;
    }

    .faq-a {
      display: flex;
      gap: 14px;
      padding: 0 28px 28px 28px;
    }

    .faq-a-content {
      flex: 1;
      padding-top: 4px;
    }

    /* Q / A circle icons */
    .q-icon,
    .a-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cinzel', serif;
      font-size: 15px;
      font-weight: 600;
      flex-shrink: 0;
    }

    .q-icon {
      background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
      color: var(--white);
      box-shadow: 0 2px 8px rgba(150, 99, 78, .25);
    }

    .a-icon {
      background: rgba(201, 168, 76, .12);
      color: var(--copper);
      border: 1px solid rgba(150, 99, 78, .3);
      margin-top: 2px;
    }

    /* Answer body */
    .answer-text {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 2;
      letter-spacing: .04em;
    }

    .answer-text + .answer-text,
    .answer-text + .faq-bullets,
    .faq-bullets + .answer-text {
      margin-top: 14px;
    }

    .faq-bullets {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .faq-bullets li {
      position: relative;
      padding: 4px 0 4px 18px;
      font-size: 14px;
      color: var(--text-mid);
      line-height: 2;
      letter-spacing: .04em;
    }

    .faq-bullets li::before {
      content: '●';
      position: absolute;
      left: 0;
      top: 4px;
      color: var(--copper);
      font-size: 9px;
      line-height: 2;
    }

    /* Brown notice banner ("連絡が万一届かない場合") — extends to faq-item edges */
    .faq-notice-banner {
      margin: 22px -28px 14px -74px;
      padding: 14px 20px;
      background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
      color: var(--white);
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .1em;
      box-shadow: 0 2px 10px rgba(150, 99, 78, .22);
    }

    /* ═══ CONTACT CTA ═══ */
    .contact-cta {
      background: var(--midnight);
      padding: 72px 40px;
      position: relative;
      overflow: hidden;
    }

    .contact-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 50% 50%, rgba(45, 27, 94, .5) 0%, transparent 70%),
        radial-gradient(ellipse 30% 30% at 10% 90%, rgba(26, 74, 60, .35) 0%, transparent 60%);
    }

    .contact-cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(1px 1px at 15% 30%, rgba(201, 168, 76, .35) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 20%, rgba(255, 255, 255, .2) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 70%, rgba(201, 168, 76, .25) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 80%, rgba(255, 255, 255, .12) 0%, transparent 100%);
    }

    .contact-cta-inner {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .cta-title {
      font-size: 24px;
      font-weight: 400;
      color: var(--white);
      letter-spacing: .12em;
      margin-bottom: 32px;
    }

    .cta-buttons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-btn-tel,
    .cta-btn-web {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 18px 24px;
      font-size: 15px;
      letter-spacing: .1em;
      text-decoration: none;
      font-family: 'Noto Serif JP', serif;
      transition: all .3s;
    }

    .cta-btn-tel {
      background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
      color: var(--white);
      font-weight: 600;
    }

    .cta-btn-tel:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(150, 99, 78, .35);
    }

    .cta-btn-web {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(201, 168, 76, .4);
      color: #fff;
    }

    .cta-btn-web:hover {
      background: rgba(201, 168, 76, .1);
      border-color: var(--gold);
      color: var(--gold-light);
      transform: translateY(-2px);
    }

    .btn-icon {
      font-size: 16px;
      display: inline-flex;
      align-items: center;
    }

    /* ═══ SCROLL REVEAL ═══ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ═══ RESPONSIVE ═══ */
    @media(max-width:768px) {

      .page-hero {
        padding: 70px 24px 60px;
      }

      .page-title-ja {
        font-size: 28px;
      }

      .page-body {
        padding: 48px 20px 80px;
      }

      .faq-list {
        gap: 20px;
      }

      .faq-q {
        padding: 20px 20px 14px;
        gap: 12px;
      }

      .faq-a {
        padding: 0 20px 22px 20px;
        gap: 12px;
      }

      .faq-q-text {
        font-size: 14px;
      }

      .q-icon,
      .a-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
      }

      .faq-notice-banner {
        font-size: 13px;
        padding: 12px 16px;
        margin: 18px -20px 12px -60px;
      }

      .contact-cta {
        padding: 56px 20px;
      }

      .cta-title {
        font-size: 20px;
      }

      .cta-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
      }

    }
