* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: #e9eef5;
}

body {
  margin: 0;
  color: #171d26;
  font-family:
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "YuGothic",
    "Meiryo",
    system-ui,
    sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
}

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

a {
  color: inherit;
}

.lp {
  width: min(100%, 480px);
  min-height: 100svh;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgb(17 29 47 / 0.08), 0 28px 90px rgb(17 29 47 / 0.18);
}

.hero {
  position: relative;
  min-height: 708px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 38%, rgb(255 255 255 / 0.16) 74%),
    #f4f7fb;
}

.hero__visual {
  position: absolute;
  top: 0;
  right: -70px;
  width: 348px;
  height: 650px;
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 44%, rgb(255 255 255 / 0.68) 60%, rgb(255 255 255 / 0.04) 100%),
    linear-gradient(180deg, rgb(255 255 255 / 0) 0%, #ffffff 89%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 708px;
  padding: 76px 22px 30px;
}

.hero__badge {
  width: fit-content;
  margin: 0;
  padding: 9px 14px;
  border-radius: 5px;
  color: #ffffff;
  background: linear-gradient(180deg, #075bd1 0%, #0042a8 100%);
  box-shadow: 0 8px 18px rgb(0 72 184 / 0.24);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.hero__title {
  margin: 4px 0 0;
  color: #1a202a;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  text-shadow:
    0 2px 0 #ffffff,
    0 8px 20px rgb(16 34 64 / 0.2);
}

.hero__lead {
  max-width: 300px;
  margin: 0;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
}

.hero__copy {
  max-width: 292px;
  margin: 0;
  color: #202733;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.82;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 352px);
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #d8dde6;
  border-radius: 8px;
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 16px 34px rgb(29 41 57 / 0.08);
}

.quick-point {
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 118px;
  padding: 18px 8px 13px;
  border-right: 1px solid #d8dde6;
  text-align: center;
}

.quick-point:last-child {
  border-right: 0;
}

.quick-point span:last-child {
  min-height: 34px;
  color: #161d28;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.quick-point__icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.hero__hint {
  margin: 8px 0 -2px;
  color: #121923;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
}

.button--primary {
  color: #111827;
  background: linear-gradient(180deg, #ffe24a 0%, #ffc515 100%);
  box-shadow:
    inset 0 -2px 0 rgb(156 108 0 / 0.28),
    0 14px 26px rgb(204 145 0 / 0.22);
}

.hero__button {
  width: min(100%, 318px);
  font-size: 24px;
}

.button__arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: auto;
  border-radius: 999px;
  color: #ffe04a;
  background: #152033;
  font-size: 30px;
  line-height: 1;
}

.section {
  padding: 40px 18px;
  background: #ffffff;
}

.section--mechanism {
  border-top: 1px solid #e3e8f1;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.section__inner {
  width: 100%;
}

.section__eyebrow {
  margin: 0 0 8px;
  color: #075bd1;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.section__title {
  margin: 0;
  color: #111827;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.28;
  text-align: center;
}

.section__title strong,
.section__title span {
  color: #075bd1;
}

.section__text {
  margin: 16px 0 24px;
  color: #344054;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
}

.comparison {
  display: grid;
  gap: 14px;
  align-items: center;
}

.price-board {
  overflow: hidden;
  border: 1px solid #d7deea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgb(34 48 73 / 0.08);
}

.price-board__title {
  margin: 0;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.price-board--store .price-board__title {
  background: #075bd1;
}

.price-board--online .price-board__title {
  background: #172130;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 10px 12px;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid #edf1f7;
}

.price-list li:last-child {
  border-bottom: 0;
}

.media-thumb {
  display: block;
  width: 34px;
  height: 40px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.72), 0 4px 10px rgb(17 24 39 / 0.18);
}

.media-thumb--blue {
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.55), transparent 36%),
    linear-gradient(160deg, #2f6ce5, #f5ca39 44%, #1f2937);
}

.media-thumb--silver {
  background:
    linear-gradient(135deg, #ffffff, #ccd4df 48%, #111827);
}

.media-thumb--gold {
  background:
    linear-gradient(135deg, #8bd5ff, #19345f 42%, #e9a727);
}

.price-list__name {
  color: #172033;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.price-list strong {
  color: #141c29;
  font-size: 20px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.gap-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 198px;
  height: 198px;
  padding: 20px 14px;
  margin: 0 auto;
  border: 2px solid #d7dbe3;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgb(17 24 39 / 0.1);
  text-align: center;
}

.gap-badge span {
  color: #394354;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.gap-badge strong {
  color: #ef5b61;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.gap-badge strong span {
  color: #ef5b61;
  font-size: 20px;
}

.gap-badge em {
  color: #ef5b61;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.micro-note {
  margin: 14px 0 0;
  color: #667085;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.reason-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.reason-card {
  padding: 16px;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgb(17 24 39 / 0.07);
}

.reason-card__head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
}

.reason-card__num {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  color: #ffffff;
  background: #075bd1;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.reason-card h3 {
  margin: 0;
  color: #121923;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.reason-card p {
  margin: 14px 0 0;
  color: #475467;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

.reason-card__image {
  width: 100%;
  margin-top: 14px;
  border-radius: 7px;
  background: #162033;
}

.mini-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  margin-top: 16px;
}

.mini-compare div {
  display: grid;
  gap: 6px;
  min-width: 0;
  min-height: 82px;
  place-items: center;
  border-radius: 7px;
  background: #f2f5fa;
}

.mini-compare span {
  color: #344054;
  font-size: 11px;
  font-weight: 800;
}

.mini-compare strong {
  color: #075bd1;
  font-size: clamp(20px, 6vw, 27px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.mini-compare__arrow {
  display: grid;
  place-items: center;
  color: #075bd1;
  font-size: 24px;
  font-weight: 900;
}

.beginner-mark {
  display: grid;
  place-items: center;
  min-height: 126px;
}

.beginner-mark__icon {
  display: block;
  width: 116px;
  height: 116px;
  filter: drop-shadow(0 12px 20px rgb(17 24 39 / 0.16));
}

.section--steps {
  background: #fbfcff;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 50px 72px 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: center;
  min-height: 126px;
  padding: 16px;
  border: 1px solid #dfe6f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgb(17 24 39 / 0.06);
}

.step__num {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: #075bd1;
  font-size: 20px;
  font-weight: 900;
}

.step__icon {
  position: relative;
  grid-row: 1 / 3;
  width: 68px;
  height: 78px;
}

.step__icon--form {
  border: 4px solid #243044;
  border-radius: 10px;
  background:
    linear-gradient(#d6dde8, #d6dde8) 14px 19px / 36px 5px no-repeat,
    linear-gradient(#d6dde8, #d6dde8) 14px 34px / 28px 5px no-repeat,
    #ffffff;
}

.step__icon--form::after {
  position: absolute;
  right: -11px;
  bottom: -11px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  content: "✓";
  border-radius: 999px;
  color: #ffffff;
  background: #075bd1;
  font-size: 21px;
  font-weight: 900;
}

.step__icon--store {
  background:
    linear-gradient(90deg, #075bd1 0 20%, #2e7ee8 20% 40%, #075bd1 40% 60%, #2e7ee8 60% 80%, #075bd1 80%) top / 100% 26px no-repeat,
    linear-gradient(#dce9f7, #dce9f7) bottom / 100% 55px no-repeat;
  border-radius: 12px 12px 6px 6px;
}

.step__icon--store::after {
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 20px;
  height: 30px;
  content: "";
  background: #203047;
}

.step__icon--ship {
  border-radius: 10px;
  background:
    linear-gradient(135deg, transparent 0 26%, #075bd1 26% 36%, transparent 36% 100%),
    linear-gradient(180deg, #ffffff 0 48%, #dfe8f5 48% 100%);
  border: 4px solid #243044;
}

.step__icon--ship::after {
  position: absolute;
  right: 9px;
  bottom: 10px;
  width: 25px;
  height: 25px;
  content: "";
  border-radius: 50%;
  background: #075bd1;
  box-shadow: -30px 0 0 #075bd1;
}

.step h3 {
  grid-column: 3;
  align-self: end;
  margin: 0 0 6px;
  color: #121923;
  font-size: 17px;
  font-weight: 900;
}

.step p {
  grid-column: 3;
  align-self: start;
  margin: 0;
  color: #526071;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.pricing {
  padding: 24px 18px;
  background: #ffffff;
}

.pricing__inner {
  display: grid;
  gap: 16px;
  padding: 22px 18px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #10274a 0%, #0b1c34 58%, #142d55 100%);
  box-shadow: 0 18px 36px rgb(10 29 57 / 0.2);
}

.pricing__badge {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto -8px;
  border-radius: 999px;
  color: #111827;
  background: #ffe03f;
  box-shadow: 0 12px 22px rgb(0 0 0 / 0.2);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.pricing__body {
  text-align: center;
}

.pricing__kicker {
  margin: 0;
  color: #dce8ff;
  font-size: 13px;
  font-weight: 800;
}

.pricing__title {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 0;
}

.pricing__price strong {
  color: #ffdf3f;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.pricing__price span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

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

.pricing__features li {
  position: relative;
  padding-left: 25px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.pricing__features li::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "✓";
  color: #ffe03f;
  font-size: 17px;
  font-weight: 900;
}

.pricing__note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgb(255 255 255 / 0.18);
  color: #dce8ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

.closing {
  padding: 20px 18px 34px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  text-align: center;
}

.closing__inner {
  display: grid;
  gap: 16px;
}

.closing h2 {
  margin: 0;
  color: #121923;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.36;
}

.closing p {
  margin: 0;
  color: #344054;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.button--wide {
  width: min(100%, 344px);
  margin: 0 auto;
  font-size: 24px;
}

.disclaimer {
  padding: 22px 18px;
  color: #d4d8df;
  background: #202020;
}

.disclaimer h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.disclaimer ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.1em;
}

.disclaimer li {
  font-size: 11px;
  line-height: 1.65;
}

.footer {
  display: grid;
  gap: 8px;
  padding: 20px 18px 26px;
  color: #cfd5dd;
  background: #191919;
  text-align: center;
}

.footer a {
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.footer p {
  margin: 0;
  font-size: 11px;
}

@media (max-width: 390px) {
  .hero {
    min-height: 704px;
  }

  .hero__visual {
    right: -92px;
    width: 344px;
  }

  .hero__content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero__title {
    font-size: 52px;
  }

  .hero__lead {
    max-width: 248px;
    font-size: 18px;
  }

  .hero__copy {
    max-width: 246px;
    font-size: 15px;
  }

  .quick-point {
    padding-right: 6px;
    padding-left: 6px;
  }

  .quick-point span:last-child {
    font-size: 11px;
  }

  .step {
    grid-template-columns: 42px 62px 1fr;
    padding: 14px 12px;
  }

  .step__icon {
    width: 60px;
    height: 70px;
  }
}

@media (min-width: 481px) {
  body {
    padding: 24px 0;
  }
}
