@charset "utf-8";

:root {
  --primary: #bb1a18;
  --primary-dark: #8d1110;
  --gold: #c8a35a;
  --ink: #111111;
  --muted: #57534e;
  --soft: #f7f4ef;
  --surface: #ffffff;
  --line: #ddd6cc;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.11);
  --max: 1120px;
  --content-max: 920px;
  --copy-max: 760px;
  --container-padding: 24px;
  --header-bg: rgba(255, 255, 255, 0.94);
  --section1-bg: #fffdfa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(200, 163, 90, 0.13), transparent 32rem),
    linear-gradient(180deg, #fffdfa 0%, var(--soft) 42%, #ffffff 100%);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
}

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

picture {
  display: block;
}

a {
  color: inherit;
}

section {
  scroll-margin-top: 86px;
}

.container,
.lp-container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.site-header .header-inner {
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.brand-text {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: inherit;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #d80d0b 0%, var(--primary) 100%);
  color: #ffffff;
  box-shadow: 0 5px 12px rgba(187, 26, 24, 0.14);
}

.button-secondary {
  background: #ffffff;
  border-color: #9f9a94;
  color: var(--ink);
}

.button-gold {
  background: #111111;
  border-color: var(--gold);
  color: #ffffff;
}

.button-arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  margin-top: 0;
  padding: 0;
  background: linear-gradient(180deg, var(--header-bg) 0%, var(--section1-bg) 100%);
}

.hero-stage {
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.hero-layout {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1440px;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: clamp(64px, 8vw, 94px);
  bottom: clamp(36px, 5vw, 64px);
  left: clamp(48px, 5.5vw, 80px);
  right: auto;
  width: min(100%, 480px);
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  transform: none;
}

.hero-visual {
  display: block;
  min-width: 0;
}

.hero-media {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.hero-image {
  width: 100%;
  height: auto;
}

.hero-mobile-cta {
  display: none;
}

.hero-mobile-cta .hero-note {
  display: none;
}

.hero-title {
  font-size: clamp(2.55rem, 3.95vw, 3.25rem);
  line-height: 1.12;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.text-red {
  color: var(--primary);
}

.hero-copy {
  margin-top: 18px;
  color: #25211d;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.75;
}

.hero-copy p {
  margin: 0 0 12px;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.hero-price {
  margin: 14px 0 14px;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.hero-price strong {
  margin: 0 4px 0 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.05rem;
  font-weight: 800;
}

.hero-price-tax {
  margin-left: 4px;
  font-size: 0.68em;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.76);
}

.hero-benefits {
  width: min(100%, 400px);
  padding: 14px 18px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-benefits-title {
  margin: 0 0 6px;
  font-weight: 900;
}

.hero-benefits ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-benefits li {
  position: relative;
  padding-left: 26px;
}

.hero-benefits li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateY(-50%);
}

.hero-benefits li::after {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 5px;
  width: 4px;
  height: 7px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-62%) rotate(45deg);
}

.hero-benefits-note {
  margin: 4px 0 0;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.5;
}

.hero-button {
  min-width: 260px;
  margin-top: 14px;
}

.hero-note {
  margin: 12px 0 0;
  color: #6b6259;
  font-size: 0.72rem;
  line-height: 1.6;
}

.section {
  padding: 92px 0;
}

.section-dark {
  background: #111111;
  color: #ffffff;
}

.section-band {
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f1 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto 64px;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.section-dark .lead,
.section-dark .muted,
.section-dark .body-copy,
.panel-dark .body-copy {
  color: rgba(255, 255, 255, 0.82);
}

.body-copy {
  width: 100%;
  max-width: var(--copy-max);
  margin: 0 auto;
  color: #25211d;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
}

.body-copy p {
  margin: 0 0 22px;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.emphasis-line {
  display: inline-block;
  margin: 8px 0;
  color: var(--primary);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  font-weight: 900;
  line-height: 1.55;
}

.note {
  color: #6b6259;
  font-size: 0.86rem;
  line-height: 1.8;
}

.section-dark .note,
.panel-dark .note {
  color: rgba(255, 255, 255, 0.68);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
}

.split > .body-copy,
.split > .panel,
.split > .number-showcase {
  width: 100%;
  justify-self: stretch;
}

.split > .body-copy,
.panel .body-copy {
  max-width: none;
  margin: 0;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 3.3vw, 40px);
}

.panel-dark {
  background:
    linear-gradient(135deg, rgba(200, 163, 90, 0.17), transparent 38%),
    #111111;
  color: #ffffff;
  border-color: rgba(200, 163, 90, 0.45);
}

.panel-title {
  margin: 0 0 18px;
}

.panel-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  text-align: center;
}

.button-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(100%, 440px);
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.button-label {
  min-width: 0;
}

.button-chevron {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

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

.feature-list li {
  position: relative;
  padding-left: 30px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--primary);
}

.feature-list li::after {
  content: "";
  position: absolute;
  top: calc(0.5em + 3px);
  left: 6px;
  width: 4px;
  height: 7px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.number-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px;
  border: 1px solid rgba(200, 163, 90, 0.55);
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  text-align: center;
}

.included-table-section .section-head {
  margin-bottom: 36px;
}

.included-table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.included-table {
  min-width: 1560px;
  width: 1560px;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.included-table th,
.included-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(221, 214, 204, 0.9);
  border-right: 1px solid rgba(221, 214, 204, 0.78);
  text-align: left;
  vertical-align: top;
}

.included-table th:last-child,
.included-table td:last-child {
  border-right: 0;
}

.included-table tbody tr:last-child td {
  border-bottom: 0;
}

.included-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8f4ec;
  color: #211a13;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.included-table tbody td {
  color: #2e2924;
  font-size: 0.95rem;
  line-height: 1.8;
}

.included-table th:nth-child(1),
.included-table td:nth-child(1) {
  width: 160px;
}

.included-table th:nth-child(2),
.included-table td:nth-child(2) {
  width: 104px;
  white-space: nowrap;
}

.included-table th:nth-child(3),
.included-table td:nth-child(3) {
  width: 240px;
}

.included-table th:nth-child(5),
.included-table td:nth-child(5) {
  width: 540px;
}

.included-table th:nth-child(4),
.included-table td:nth-child(4) {
  width: 440px;
}

.included-cta-card {
  margin-top: 30px;
  padding: clamp(24px, 3.6vw, 36px) clamp(26px, 4.8vw, 46px);
  border: 1px solid rgba(200, 163, 90, 0.88);
  border-radius: 14px;
  background:
    radial-gradient(circle at top, rgba(200, 163, 90, 0.08), transparent 44%),
    #fffdfa;
  box-shadow: var(--shadow);
  text-align: center;
}

.included-cta-kicker {
  margin: 0;
  color: #2f271f;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
  line-height: 1.5;
}

.included-cta-title {
  margin-top: 10px;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.45;
}

.included-cta-title span {
  color: var(--primary);
}

.included-cta-break {
  display: none;
}

.included-cta-copy {
  margin: 16px auto 0;
  max-width: var(--copy-max);
  color: #312a22;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.94rem, 1.28vw, 1.14rem);
  line-height: 1.72;
}

.included-cta-price-wrap {
  width: 100%;
  max-width: var(--content-max);
  margin: 22px auto 0;
}

.included-cta-price-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  color: var(--gold);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.22rem, 1.8vw, 1.7rem);
  font-weight: 800;
  line-height: 1;
}

.included-cta-price-label::before,
.included-cta-price-label::after {
  content: "";
  flex: 1 1 auto;
  max-width: 280px;
  height: 1px;
  background: rgba(200, 163, 90, 0.75);
}

.included-cta-price {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--primary);
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
  line-height: 0.9;
}

.included-cta-price strong {
  color: var(--primary);
  font-size: clamp(2.85rem, 6.8vw, 4.7rem);
  line-height: 0.88;
}

.included-cta-tax {
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.55rem);
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 0.08em;
}

.included-cta-yen {
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2.35rem);
  line-height: 0.95;
}

.included-cta-button {
  width: 100%;
  max-width: 520px;
  min-height: 48px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  font-weight: 700;
  letter-spacing: 0;
}

@media (max-width: 960px) {
  .included-cta-copy {
    font-size: clamp(0.92rem, 1.6vw, 1.04rem);
  }
}

.number-heading {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
}

.big-number {
  color: var(--gold);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(4.2rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
}

.number-label {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.section-grid {
  margin-top: 30px;
}

.section-tail-copy {
  margin-top: 34px;
}

#scenes > .container > .body-copy,
#scenes .section-tail-copy {
  text-align: center;
}

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.07);
}

.scene-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 156px;
}

.card-icon,
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: var(--primary);
}

.card-icon svg,
.step-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-card {
  fill: #ffffff;
}

.panel-dark .card-icon {
  color: var(--gold);
}

.scene-card p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}

.card p,
.panel p {
  margin: 0;
}

.learn-list {
  columns: 2;
  column-gap: 40px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.learn-list li {
  position: relative;
  margin: 0 0 16px;
  padding-left: 31px;
  break-inside: avoid;
}

.learn-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--primary);
}

.price-box {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.82fr);
  align-items: center;
  gap: 0;
  border-radius: 8px;
  padding: clamp(24px, 3.8vw, 46px);
  background:
    linear-gradient(135deg, rgba(200, 163, 90, 0.1), transparent 30%),
    #ffffff;
  box-shadow: var(--shadow);
}

.price-left {
  display: grid;
  align-content: center;
  padding: 0 clamp(30px, 4.4vw, 58px) 0 0;
  background: transparent;
}

.price-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0 0 18px;
  padding: 8px 24px;
  border: 1px solid rgba(200, 163, 90, 0.75);
  border-radius: 8px;
  color: #2a241f;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.price-product {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  gap: 12px;
  color: #26211d;
  font-family: "Noto Serif JP", serif;
  line-height: 0.95;
  white-space: nowrap;
}

.price-product-label {
  padding-bottom: 0.18em;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
}

.price-product-number {
  color: var(--gold);
  font-size: clamp(4.5rem, 8.5vw, 7rem);
  font-weight: 800;
  line-height: 0.82;
}

.price-product-unit {
  padding-bottom: 0.2em;
  font-size: clamp(1.4rem, 2.6vw, 2.25rem);
  font-weight: 800;
}

.price-rule {
  position: relative;
  height: 1px;
  margin: 22px 0 16px;
  background: linear-gradient(90deg, transparent, rgba(200, 163, 90, 0.9), transparent);
}

.price-rule::after,
.price-main-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

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

.price-list li {
  position: relative;
  padding: 14px 0 14px 48px;
  border-bottom: 1px dotted rgba(200, 163, 90, 0.75);
  color: #25211d;
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
}

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

.price-list li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  transform: none;
}

.price-list li::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 11px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

.price-list li:nth-child(-n + 3)::before {
  top: 17px;
}

.price-list li:nth-child(-n + 3)::after {
  top: 24px;
}

.price-list strong {
  color: var(--primary);
  font-size: 1.2em;
  font-weight: 900;
}

.price-main {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid rgba(200, 163, 90, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 163, 90, 0.12), transparent 35%),
    #111111;
  color: #ffffff;
  text-align: center;
  box-shadow: -14px 0 36px rgba(17, 17, 17, 0.12);
}

.price-catch {
  margin: 0 auto;
  padding: 12px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #f3d594 0%, var(--gold) 100%);
  color: #251b10;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.price-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.price {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(3.35rem, 6.4vw, 5.25rem);
  font-weight: 800;
  line-height: 1;
  color: #f4d99d;
}

.price-unit {
  color: #f4d99d;
  font-size: clamp(1.28rem, 2.2vw, 1.85rem);
  font-weight: 900;
}

.price-tax {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 700;
}

.price-button {
  width: 100%;
  min-height: 66px;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
}

.price-main-rule {
  position: relative;
  height: 1px;
  margin: 4px 0;
  background: linear-gradient(90deg, transparent, rgba(200, 163, 90, 0.82), transparent);
}

.price-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.price-feature {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 0 12px;
  border-right: 1px solid rgba(200, 163, 90, 0.5);
  color: #f2d99f;
}

.price-feature:last-child {
  border-right: 0;
}

.price-feature-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  color: var(--gold);
}

.price-feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-feature p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.88rem, 1.35vw, 1.05rem);
  font-weight: 700;
  line-height: 1.55;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 226px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.step-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 124px;
}

.step-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 36px;
  height: 24px;
  padding: 0 8px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #3a2b0a;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.step-copy p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  min-height: 5.4em;
  font-weight: 800;
  line-height: 1.8;
}

.flow-note {
  margin-top: 28px;
}

#question .body-copy,
#flow > .container > .body-copy {
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.6;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: #34302b;
}

.faq-answer p {
  margin: 0 0 14px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.final-cta {
  text-align: center;
}

.final-cta .button {
  margin: 22px 0 28px;
}

.final-note {
  margin-top: 0;
}

.footer {
  padding: 50px 0 96px;
  background: #111111;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer h3 {
  margin: 0 0 14px;
  font-family: inherit;
  font-size: 1rem;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer .brand {
  justify-content: center;
  margin-bottom: 18px;
  color: #ffffff;
  align-items: flex-start;
}

.footer .brand-logo {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.footer .brand-text {
  display: block;
  line-height: 1.05;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin: 28px auto 0;
  text-align: center;
}

.footer .footer-links a {
  display: inline-flex;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer .footer-links a:hover {
  color: #ffffff;
}

.copyright {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  text-align: center;
}

.mobile-fixed-cta {
  display: none;
}

@media (max-width: 1020px) {
  .nav {
    display: none;
  }

  .nav.is-open {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav.is-open a {
    padding: 13px 14px;
    border-radius: 8px;
  }

  .nav.is-open a:hover {
    background: #fbf7f1;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-actions .button-secondary {
    display: none;
  }

  .split,
  .price-box {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: minmax(0, 560px);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
    line-height: 1.85;
  }

  .container,
  .lp-container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .brand-text {
    font-size: 1.28rem;
  }

  .header-actions .button-primary {
    display: none;
  }

  .hero-stage {
    overflow: hidden;
  }

  .hero-layout {
    max-width: none;
  }

  .hero-content {
    position: absolute;
    z-index: 2;
    top: 16px;
    bottom: auto;
    left: 14px;
    right: 14px;
    width: auto;
    max-width: none;
    display: block;
    box-sizing: border-box;
    transform: none;
    padding: 0 14px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-media {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-content > .hero-button {
    display: none;
  }

  .hero-content > .hero-note {
    display: none;
  }

  .hero-mobile-cta {
    display: block;
    padding-top: 14px;
    padding-bottom: 8px;
  }

  .hero-mobile-cta .hero-note {
    display: block;
    margin-top: 10px;
  }

  .hero-title,
  .hero-copy,
  .hero-price,
  .hero-benefits {
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: clamp(1.68rem, 7.2vw, 2rem);
    line-height: 1.04;
  }

  .hero-copy {
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.46;
  }

  .hero-copy p {
    margin-bottom: 4px;
  }

  .hero-price {
    margin: 6px 0 6px;
    font-size: 0.95rem;
  }

  .hero-price strong {
    font-size: 1.62rem;
  }

  .hero-price-tax {
    font-size: 0.72em;
  }

  .hero-benefits {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 8px 10px 9px;
  }

  .hero-benefits-title {
    margin-bottom: 3px;
    font-size: 0.86rem;
  }

  .hero-benefits ul {
    gap: 1px;
    font-size: 0.74rem;
    line-height: 1.32;
  }

  .hero-benefits li {
    padding-left: 21px;
  }

  .hero-benefits li::before {
    top: 0.68em;
    width: 14px;
    height: 14px;
  }

  .hero-benefits li::after {
    top: 0.68em;
    left: 4.5px;
    width: 3.5px;
    height: 6px;
    border-width: 0 1.8px 1.8px 0;
  }

  .hero-benefits-note {
    margin-top: 2px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero-button {
    width: 100%;
  }

  .hero-note {
    font-size: 0.74rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 46px;
    text-align: left;
  }

  .panel {
    padding: 22px;
  }

  .grid-3,
  .step-list {
    grid-template-columns: 1fr;
  }

  .number-showcase {
    padding: 24px;
  }

  .included-table {
    min-width: 1320px;
    width: 1320px;
  }

  .included-cta-card {
    margin-top: 24px;
    padding: 28px 20px 26px;
    border-radius: 10px;
  }

  .included-cta-kicker {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .included-cta-title {
    margin-top: 10px;
    font-size: clamp(2rem, 4.2vw, 3.35rem);
    line-height: 1.45;
  }

  .included-cta-break {
    display: block;
  }

  .included-cta-copy {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .included-cta-price-wrap {
    margin-top: 20px;
  }

  .included-cta-price-label {
    gap: 12px;
    font-size: 1.05rem;
  }

  .included-cta-price {
    gap: 6px;
    margin-top: 10px;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1;
  }

  .included-cta-price strong {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .included-cta-tax {
    font-size: 0.92rem;
    align-self: flex-end;
    margin-bottom: 0.06em;
  }

  .included-cta-yen {
    font-size: 1.85rem;
  }

  .included-cta-button {
    min-height: 56px;
    margin-top: 20px;
    padding-inline: 20px;
    white-space: normal;
    font-size: 1.14rem;
    line-height: 1.3;
  }

  .number-heading {
    gap: 8px;
  }

  .price-left,
  .price-main {
    padding: 0;
  }

  .price-box {
    gap: 0;
    padding: 22px;
    overflow: hidden;
  }

  .price-left {
    align-content: start;
    box-shadow: none;
    padding-bottom: 28px;
  }

  .price-main {
    box-shadow: none;
    padding: 22px;
  }

  .price-kicker {
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    min-height: 40px;
    margin-right: auto;
    margin-bottom: 18px;
    margin-left: auto;
    padding: 8px 12px;
    font-size: 0.98rem;
    text-align: center;
  }

  .price-product {
    justify-content: center;
    gap: 8px;
  }

  .price-product-label {
    font-size: clamp(1.55rem, 7.4vw, 2rem);
  }

  .price-product-number {
    font-size: clamp(3.4rem, 16vw, 4.5rem);
  }

  .price-product-unit {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
  }

  .price-rule {
    margin: 22px 0 14px;
  }

  .price-list li {
    padding: 12px 0 12px 36px;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .price-list li::before {
    top: 12px;
    width: 23px;
    height: 23px;
  }

  .price-list li::after {
    top: 18px;
    left: 9px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
  }

  .price-list li:nth-child(-n + 3)::before {
    top: 16px;
  }

  .price-list li:nth-child(-n + 3)::after {
    top: 22px;
  }

  .price-main {
    gap: 18px;
  }

  .price-catch {
    padding: 10px 12px;
    font-size: clamp(0.82rem, 3.5vw, 0.98rem);
  }

  .price {
    font-size: clamp(3.15rem, 15vw, 4rem);
  }

  .price-unit {
    font-size: 1.35rem;
  }

  .price-tax {
    font-size: 0.82rem;
  }

  .price-button {
    min-height: 58px;
    font-size: 1.2rem;
  }

  .price-feature {
    gap: 8px;
    padding: 0 8px;
  }

  .price-feature-icon {
    width: 38px;
    height: 38px;
  }

  .price-feature p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .learn-list {
    columns: 1;
  }

  .card {
    padding: 22px;
  }

  .step {
    min-height: auto;
  }

  .scene-card,
  .step {
    grid-template-columns: 60px 1fr;
    gap: 14px;
  }

  .card-icon,
  .step-icon {
    width: 60px;
    height: 60px;
  }

  .card-icon svg,
  .step-icon svg {
    width: 44px;
    height: 44px;
  }

  .button-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
    padding-inline: 18px;
  }

  .step-copy {
    min-height: auto;
  }

  .step-copy p {
    min-height: auto;
  }

  summary {
    align-items: flex-start;
    min-height: 64px;
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }
}
