:root {
  --pink-50: #fff7f7;
  --pink-100: #f9ecec;
  --pink-200: #efd4d6;
  --pink-500: #c96672;
  --pink-700: #9d4e5a;
  --green-900: #0d403d;
  --rose-500: #d45f6e;
  --rose-600: #bf4e5e;
  --rose-700: #a33d4d;
  --rose-900: #4e2430;
  --ink: #343131;
  --muted: #756b6b;
  --line: rgba(157, 78, 90, 0.22);
  --white: #fff;
  --shadow: 0 18px 48px rgba(116, 73, 78, 0.16);
  --radius: 8px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--pink-50) 40%, #fff 100%);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
  padding-bottom: 86px;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  background: rgba(255, 250, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Countdown bar ── */
.countdown-bar {
  display: block;
  width: 100%;
  background: var(--rose-900);
  padding: 5px 16px;
  line-height: 1;
}

.countdown-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.countdown-label {
  display: inline;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.countdown-timer {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}

.countdown-unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 2px 7px;
  min-width: 30px;
}

.countdown-num {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  font-family: Georgia, "Times New Roman", serif;
}

.countdown-num--secs {
  color: var(--rose-500);
}

.countdown-unit-label {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 7px;
  line-height: 1;
  margin-top: 1px;
}

.countdown-sep {
  display: inline-block;
  color: var(--rose-500);
  font-size: 12px;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  align-self: flex-start;
  margin-top: 3px;
}

.countdown-seats {
  display: inline-block;
  background: rgba(212, 95, 110, 0.2);
  border: 1px solid rgba(212, 95, 110, 0.4);
  color: #f5a0aa;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.4;
}

/* ── Header nav row ── */
.header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 10px 16px;
  width: 100%;
}

.header-cta,
.primary-cta,
.soft-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.header-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

.header-logo-img {
  display: block;
  height: 36px;
  max-height: 36px;
  width: auto;
  max-width: none;
}

.header-cta {
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  font-size: 13px;
}

.hero {
  position: relative;
  background: #f7eded;
}

.hero-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.conversion-band {
  padding: 18px 16px 34px;
  background: linear-gradient(180deg, #fff 0%, var(--pink-100) 100%);
}

.price-card {
  max-width: 680px;
  margin: -8px auto 0;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--pink-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.35;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: 600;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 18px;
}

p {
  margin: 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 10px;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 14px;
}

.arrow {
  color: var(--pink-700);
  font-weight: 700;
}

.price-row strong {
  color: var(--pink-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1;
  font-weight: 500;
}

.price-row strong span {
  font-family: inherit;
  font-size: 22px;
}

.microcopy {
  color: var(--muted);
  font-size: 14px;
}

.primary-cta {
  width: 100%;
  margin-top: 18px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  box-shadow: 0 12px 24px rgba(163, 61, 77, 0.30);
  font-size: 14px;
}

.note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.section {
  padding: 58px 16px;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.worry-list,
.feature-grid,
.reason-list,
.review-grid {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.worry-list article,
.feature-grid article,
.reason-list article,
.review-grid article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.worry-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  color: var(--pink-700);
  border: 1px solid var(--pink-200);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.worry-list p,
.feature-grid p,
.reason-list p,
.review-grid p,
.doctor-copy p,
.flow-list p,
.faq-list p,
.access-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.features,
.doctor,
.faq,
.final-cta {
  background: var(--pink-50);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--pink-700);
  border: 1px solid var(--pink-200);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.case-highlight {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 18px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-highlight img {
  width: 100%;
  border-radius: 6px;
}

.case-highlight div {
  padding: 4px 4px 10px;
}

.case-highlight p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.soft-cta {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 18px;
  text-align: center;
  background: var(--pink-100);
  border-radius: var(--radius);
}

.soft-cta p {
  font-weight: 700;
}

.soft-cta-actions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.soft-cta-actions a {
  border: 1px solid var(--pink-500);
  color: var(--pink-700);
  background: #fff;
}

.doctor-card {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.doctor-intro {
  margin-bottom: 18px;
}

.doctor-intro p:not(.eyebrow) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 18px;
  color: var(--green-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.doctor-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8eef0;
  box-shadow: var(--shadow);
}

.doctor-photo img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.doctor-copy {
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.achievement-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.achievement-list div {
  padding: 14px;
  background: var(--pink-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.achievement-list dt {
  color: var(--muted);
  font-size: 12px;
}

.achievement-list dd {
  margin: 2px 0 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.review-grid article {
  position: relative;
}

.review-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--pink-500);
}

.review-grid span {
  display: block;
  margin-top: 12px;
  color: var(--pink-700);
  font-size: 12px;
  font-weight: 700;
}

.flow-list {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--pink-500);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list details + details {
  margin-top: 10px;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 44px 16px 16px;
  font-weight: 700;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink-700);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 16px 16px;
}

.access-card {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame {
  overflow: hidden;
  min-height: 300px;
  border-radius: 6px;
  background: var(--pink-100);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.access-card a {
  color: var(--pink-700);
  font-weight: 700;
}

.final-cta {
  padding: 58px 18px;
  text-align: center;
}

.final-cta h2 {
  font-size: 30px;
}

.final-cta p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--muted);
}

.final-cta .primary-cta {
  max-width: 430px;
}

.site-footer {
  padding: 30px 16px 26px;
  color: #fff;
  background: var(--rose-900);
  text-align: center;
}

.site-footer p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.site-footer small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.sticky-cta a {
  display: grid;
  place-items: center;
  min-height: 54px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-700));
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(163, 61, 77, 0.32);
}

.sticky-cta span {
  font-size: 11px;
  font-weight: 600;
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding: 14px 32px;
  }

  .hero-image {
    min-height: auto;
  }

  .conversion-band {
    padding: 30px 24px 54px;
  }

  .price-card {
    margin-top: -18px;
    padding: 30px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .price-row strong {
    font-size: 74px;
  }

  .section {
    padding: 78px 24px;
  }

  .worry-list,
  .feature-grid,
  .reason-list,
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-highlight {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 18px;
  }

  .soft-cta-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
    margin-inline: auto;
  }

  .doctor-card {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .achievement-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .access-card {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
  }

  .sticky-cta {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 330px;
    padding: 0;
    background: transparent;
    border: 0;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 27px;
  }

  h2 {
    font-size: 22px;
  }

  .price-row strong {
    font-size: 44px;
  }

  .primary-cta {
    font-size: 13px;
    padding-inline: 14px;
  }

  .sticky-cta a {
    font-size: 14px;
  }
}
