:root {
  --magenta: #e6007e;
  --pink: #ff1492;
  --navy: #171527;
  --cyan: #00a7d8;
  --yellow: #ffd900;
  --bg: #f3f4f6;
  --white: #fff;
  --line: #efe9f1;
  --muted: #5f5d70;
  --shadow: 0 14px 30px rgba(23, 21, 39, 0.13);
  --soft-shadow: 0 8px 20px rgba(23, 21, 39, 0.08);
}

* { box-sizing: border-box; }
html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  min-height: 100%;
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle, rgba(230, 0, 126, 0.14) 0 2px, transparent 2.6px) 0 0 / 18px 18px,
    var(--bg);
  color: var(--navy);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.lp-wrapper {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(230, 0, 126, 0.11) 0 2px, transparent 2.5px) 0 0 / 12px 12px,
    linear-gradient(180deg, #fff 0%, #fff 86%, #fff7fb 100%);
  box-shadow: 0 0 46px rgba(23, 21, 39, 0.1);
}

section {
  position: relative;
  margin: 0 14px 20px;
}

.hero {
  margin: 0 0 16px;
}

.hero-main {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 0 20px 20px;
  box-shadow: var(--shadow);
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.cta-button-primary {
  background: linear-gradient(180deg, #ff1b98, var(--magenta));
  color: #fff;
  box-shadow: 0 10px 22px rgba(230, 0, 126, 0.25);
}

.panel {
  overflow: hidden;
  padding: 24px 15px 20px;
  border: 1px solid rgba(23, 21, 39, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 95% 9%, rgba(230, 0, 126, 0.13) 0 2px, transparent 2.5px) 0 0 / 11px 11px,
    linear-gradient(180deg, #fff 0%, #fff 80%, #fff8fc 100%);
  box-shadow: var(--shadow);
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 18px;
  text-align: center;
}

.section-heading h2 {
  position: relative;
  margin: 0;
  padding: 0 36px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.steps .section-heading h2 {
  padding: 0 32px;
  font-size: 14px;
  white-space: nowrap;
}

.faq .section-heading h2 {
  padding: 0 32px;
  font-size: 17px;
  white-space: nowrap;
}

.steps .section-heading h2::before,
.steps .section-heading h2::after {
  font-size: 18px;
}

.section-heading h2::before,
.section-heading h2::after {
  position: absolute;
  top: 0;
  color: var(--magenta);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.section-heading h2::before {
  content: "\\\\";
  left: 4px;
}

.section-heading h2::after {
  content: "//";
  right: 4px;
}

.benefits .section-heading h2,
.notes .section-heading h2 {
  font-size: 20px;
}

.tag {
  width: fit-content;
  margin: 0 0 7px;
  padding: 3px 13px;
  border: 2px solid var(--magenta);
  border-right-color: var(--cyan);
  border-radius: 999px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
}

.profile {
  margin: 0 10px 20px;
}

.profile-image-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.profile-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.pre-benefit-cta {
  display: grid;
  align-items: center;
  min-height: 124px;
  padding: 16px 18px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.18) 0 2px, transparent 2.5px) 0 0 / 13px 13px,
    linear-gradient(135deg, #ff1492 0%, var(--magenta) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.pre-benefit-content {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  width: 69%;
  min-height: 92px;
}

.pre-benefit-cta h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.58;
  text-align: center;
}

.pre-benefit-cta img {
  position: absolute;
  right: 10px;
  bottom: -20px;
  z-index: 2;
  width: 112px;
  max-width: none;
  pointer-events: none;
}

.speech {
  position: relative;
  z-index: 4;
  width: fit-content;
  max-width: 68%;
  margin: 16px 0 0 8px;
  padding: 11px 15px;
  border: 2px solid rgba(23, 21, 39, 0.18);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.speech::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid rgba(23, 21, 39, 0.18);
  border-right: 2px solid rgba(23, 21, 39, 0.18);
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}

.section-character {
  position: absolute;
  z-index: 2;
  max-width: none;
  pointer-events: none;
}

.benefits {
  padding: 24px 14px 18px;
}

.benefit-list {
  display: grid;
  gap: 9px;
}

.benefit-card {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 74px;
  align-items: center;
  min-height: 92px;
  padding: 12px 13px;
  overflow: hidden;
  border: 2px solid var(--magenta);
  border-radius: 16px;
  background:
    radial-gradient(circle at 94% 18%, rgba(230, 0, 126, 0.09) 0 2px, transparent 2.5px) 0 0 / 10px 10px,
    #fff;
  box-shadow: var(--soft-shadow);
}

.benefit-new {
  border-color: var(--cyan);
}

.benefit-turbo {
  border-color: var(--navy);
}

.benefit-label {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--magenta), #ff3aa8);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.benefit-new .benefit-label {
  background: linear-gradient(135deg, var(--cyan), #24c6ef);
}

.benefit-turbo .benefit-label {
  background: linear-gradient(135deg, var(--navy), #302c52);
  color: var(--yellow);
  font-size: 14px;
}

.benefit-main {
  display: grid;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.benefit-main p {
  width: clamp(150px, 42vw, 168px);
  margin: 0 0 4px;
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.benefit-new .benefit-main p {
  color: var(--cyan);
}

.benefit-turbo .benefit-main p {
  color: var(--navy);
  font-size: 11.5px;
}

.benefit-main strong {
  display: block;
  width: clamp(150px, 42vw, 168px);
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: clamp(42px, 12.2vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.benefit-get {
  align-self: end;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  transform: translateY(-4px);
}

.steps {
  min-height: 0;
  padding-bottom: 22px;
}

.step-list {
  display: grid;
  gap: 8px;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  overflow: hidden;
  border: 2px solid var(--magenta);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.step-card:nth-of-type(even) {
  border-color: var(--cyan);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 6px;
  background: var(--magenta);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.step-card:nth-of-type(even) .step-number {
  background: var(--cyan);
}

.step-body {
  padding: 11px 11px;
}

.step-body h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.38;
}

.step-body p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.capture-frame,
.logo-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 146px;
  margin-top: 9px;
  overflow: hidden;
  border: 2px solid rgba(0, 167, 216, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(240,251,255,0.96)),
    repeating-linear-gradient(-18deg, transparent 0 12px, rgba(230, 0, 126, 0.08) 12px 18px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.85);
}

.capture-frame img,
.logo-frame img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

.capture-frame span,
.logo-frame span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 12px;
}

.logo-frame {
  min-height: 92px;
  max-width: 122px;
  margin: 10px auto 0;
  padding: 12px;
  background: #e6007e;
}

.logo-frame img {
  border-radius: 18px;
}

.inline-alert {
  margin: 9px 0 0 !important;
  padding: 10px 11px;
  border: 2px solid rgba(255, 217, 0, 0.84);
  border-radius: 12px;
  background: #fff9d8;
  color: var(--navy) !important;
  font-size: 11.5px !important;
  font-weight: 900 !important;
  line-height: 1.55 !important;
}

.step-arrow {
  width: 0;
  height: 0;
  margin: -1px auto;
  border-top: 13px solid var(--magenta);
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  filter: drop-shadow(0 4px 4px rgba(230, 0, 126, 0.16));
}

.point-callout {
  display: grid;
  gap: 4px;
  place-items: center;
  min-height: auto;
  margin: 10px 0 0;
  padding: 2px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--magenta);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: none;
}

.point-callout span {
  display: block;
  color: var(--magenta);
  font-size: 18px;
  line-height: 1;
}

.point-schedule img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.schedule-note {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.65;
}

.qa-list {
  display: grid;
  gap: 11px;
}

.qa-card {
  padding: 17px 16px;
  overflow: hidden;
  border: 2px solid rgba(230, 0, 126, 0.55);
  border-radius: 12px;
  background:
    radial-gradient(circle at 9% 96%, rgba(230, 0, 126, 0.13) 0 2px, transparent 2.5px) 0 0 / 9px 9px,
    #fff;
}

.qa-card:nth-child(2) {
  border-color: rgba(0, 167, 216, 0.62);
}

.qa-card h3,
.qa-card p {
  margin: 0;
  font-weight: 900;
  line-height: 1.38;
}

.qa-card h3 {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(23, 21, 39, 0.16);
  font-size: 16px;
}

.qa-card p {
  font-size: 14.5px;
  line-height: 1.62;
}

.qa-card span {
  margin-right: 5px;
  color: var(--magenta);
  font-size: 25px;
  font-weight: 900;
}

.notes {
  background:
    radial-gradient(circle at 94% 12%, rgba(0, 167, 216, 0.1) 0 2px, transparent 2.5px) 0 0 / 12px 12px,
    linear-gradient(180deg, #fff 0%, #fff 100%);
}

.note-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.note-card {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 14px 8px;
  border: 2px solid rgba(230, 0, 126, 0.42);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.38;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.note-card.cyan-line {
  border-color: rgba(0, 167, 216, 0.54);
}

.note-card span {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--magenta);
}

.note-card.cyan-line span {
  background: var(--cyan);
}

.note-card span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 7px;
  height: 13px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(42deg);
}

.notes .speech {
  max-width: none;
  margin: 14px auto 0;
  font-size: 14px;
}

.qa-card:nth-child(2) span {
  color: var(--cyan);
}

.conditions {
  margin-bottom: 28px;
  background:
    linear-gradient(180deg, #fff 0%, #fffafd 100%);
}

.condition-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.condition-list li {
  position: relative;
  padding-left: 30px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.condition-list li::before {
  content: "✓";
  position: absolute;
  top: 0.18em;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--magenta);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(230, 0, 126, 0.1);
}

.conditions .speech {
  max-width: none;
  margin: 16px auto 0;
  border-color: rgba(230, 0, 126, 0.26);
  color: var(--magenta);
  font-size: 14px;
  text-align: center;
}

.lp-footer {
  padding: 8px 18px 22px;
  color: rgba(23, 21, 39, 0.55);
  text-align: center;
}

.lp-footer small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: block;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(23, 21, 39, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 24px rgba(23, 21, 39, 0.12);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  background: var(--magenta);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 380px) {
  .section-heading h2 {
    padding: 0 32px;
    font-size: 18px;
  }

  .steps .section-heading h2 {
    padding: 0 27px;
    font-size: 13px;
  }

  .faq .section-heading h2 {
    padding: 0 27px;
    font-size: 15px;
  }

  .benefits .section-heading h2,
  .notes .section-heading h2 { font-size: 18px; }
  .note-card { font-size: 11px; }
}

@media (max-width: 430px) {
  body {
    background: #fff;
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .lp-wrapper {
    box-shadow: none;
  }
}
