:root {
    --color-bg: #FBF6F3;
    --color-text: #4A3F3D;
    --color-text-strong: #5A3F3D;
    --color-text-sub: #6B5654;
    --color-text-muted: #A99A94;
    --color-text-faint: #8A7876;
    --color-accent: #E8949B;
    --color-accent-strong: #C97B7E;
    --color-accent-soft: #F3B9BD;
    --color-peach: #F6D9C9;
    --color-peach-light: #FDEDE3;
    --color-border: #F0DCCF;
    --color-white: #FFFFFF;
    --radius-card: 16px;
    --radius-pill: 999px;
    --font-display: 'Zen Maru Gothic', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --max-width: 480px;
  }

  * { box-sizing: border-box; }

  html { -webkit-text-size-adjust: 100%; }

  body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }

  a { text-decoration: none; color: inherit; }

  .page {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--color-bg);
    overflow: hidden;
  }

  /* ---------- Header ---------- */
  .site-header {
    padding: 14px 20px;
  }

  .site-header img {
    height: 26px;
    width: auto;
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding: 44px 24px 40px;
    text-align: center;
    background-color: var(--color-peach);
    background-image: url('hero-bg.jpg'), linear-gradient(135deg, var(--color-peach), var(--color-accent-soft));
    background-size: cover;
    background-position: center;
    background-blend-mode: normal;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(251, 246, 243, 0.35) 0%,
      rgba(246, 217, 201, 0.45) 45%,
      rgba(243, 185, 189, 0.6) 100%);
  }

  .hero__icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    font-size: 24px;
  }

  .hero__badge {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-white);
    background: var(--color-accent-strong);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.03em;
    margin: 0 0 12px;
    box-shadow: 0 4px 12px rgba(201, 123, 126, 0.4);
  }

  .hero__eyebrow {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--color-accent-strong);
    margin: 0 0 10px;
  }

  .hero__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.6;
    color: var(--color-text-strong);
    margin: 0 0 12px;
  }

  .hero__lead {
    position: relative;
    z-index: 1;
    font-size: 13px;
    color: var(--color-text-sub);
    line-height: 1.85;
    margin: 0;
    max-width: 320px;
    margin-inline: auto;
  }

  /* ---------- CTA button ---------- */
  .cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    border-radius: var(--radius-pill);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 16px rgba(232, 148, 155, 0.35);
    border: none;
    width: 100%;
    cursor: pointer;
  }

  .cta-primary--light {
    background: var(--color-white);
    color: var(--color-accent-strong);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .cta-wrap {
    padding: 22px 24px 30px;
    text-align: center;
    background: var(--color-bg);
  }

  /* ---------- Section base ---------- */
  section {
    padding: 34px 24px;
  }

  .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-text-strong);
    margin: 0 0 18px;
    line-height: 1.6;
  }

  /* ---------- Concerns ---------- */
  .concerns-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .concerns-list li {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 14px 16px;
    font-size: 13px;
    color: var(--color-text-sub);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }

  /* ---------- Resolution band ---------- */
  .resolution {
    background: var(--color-peach);
    text-align: center;
    padding: 32px 24px;
  }

  .resolution .section-title { margin-bottom: 10px; }

  .resolution p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--color-text-sub);
    margin: 0;
    max-width: 320px;
    margin-inline: auto;
  }

  /* ---------- Timeline ---------- */
  .timeline {
    position: relative;
    padding-left: 24px;
    margin: 0 0 18px;
    list-style: none;
  }

  .timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: var(--color-accent-soft);
    border-radius: 2px;
  }

  .timeline li {
    position: relative;
    margin-bottom: 18px;
  }

  .timeline li::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
  }

  .timeline li:last-child::before {
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
  }

  .timeline li:last-child {
    margin-bottom: 0;
  }

  .timeline__time {
    font-size: 12px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 2px;
  }

  .timeline__label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-text-strong);
  }

  .note-box {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 14px 16px;
    font-size: 12px;
    line-height: 1.9;
    color: var(--color-text-faint);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }

  /* ---------- Reasons ---------- */
  .reasons-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .reasons-list li {
    background: var(--color-white);
    border-radius: var(--radius-card);
    padding: 14px 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  }

  .reasons-list__title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-text-strong);
    margin: 0 0 4px;
  }

  .reasons-list__title .icon {
    font-size: 15px;
    color: var(--color-accent);
    line-height: 1;
  }

  .reasons-list__desc {
    font-size: 12px;
    color: var(--color-text-faint);
    line-height: 1.75;
    margin: 0;
  }

  /* ---------- Overview table ---------- */
  .overview {
    background: var(--color-peach-light);
  }

  .overview-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    color: var(--color-text-sub);
  }

  .overview-table th,
  .overview-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    text-align: right;
    vertical-align: top;
    font-weight: 400;
  }

  .overview-table tr:last-child th,
  .overview-table tr:last-child td {
    border-bottom: none;
  }

  .overview-table th {
    color: var(--color-text-muted);
    text-align: left;
    white-space: nowrap;
    padding-right: 12px;
  }

  .overview-table .sub-note {
    display: block;
    font-size: 10.5px;
    color: var(--color-text-muted);
    margin-top: 4px;
  }

  .overview-table address {
    font-style: normal;
    line-height: 1.8;
  }

  /* ---------- FAQ ---------- */
  .faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .faq-list .q {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-strong);
    margin: 0 0 4px;
  }

  .faq-list .a {
    font-size: 12.5px;
    color: var(--color-text-faint);
    margin: 0;
  }

  /* ---------- Final CTA ---------- */
  .final-cta {
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--color-accent-soft), var(--color-accent));
  }

  .final-cta__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-white);
    line-height: 1.75;
    margin: 0 0 18px;
  }

  /* ---------- Footer ---------- */
  .site-footer {
    padding: 16px 24px 28px;
    text-align: center;
    font-size: 10.5px;
    color: var(--color-text-muted);
  }

  .site-footer a {
    text-decoration: underline;
  }

  /* ---------- Focus visibility ---------- */
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--color-accent-strong);
    outline-offset: 2px;
  }

  /* ---------- Reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
  }

  /* ---------- Wider screens: a little breathing room ---------- */
  @media (min-width: 481px) {
    .page {
      border-radius: 20px;
      margin-top: 24px;
      margin-bottom: 24px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    }
  }
