:root {
  --ivory: #fbf6ec;
  --ivory-deep: #f1e7d6;
  --white: #ffffff;
  --ink: #171512;
  --muted: #655d52;
  --line: #ded1bc;
  --bronze: #a9773f;
  --bronze-dark: #6f4d28;
  --gold-soft: #ead6ad;
  --gold: #c79a4c;
  --gold-dark: #8b6027;
  --sage: #dfe7dc;
  --shadow: 0 18px 48px rgba(42, 32, 20, 0.12);
  --shadow-soft: 0 12px 32px rgba(42, 32, 20, 0.09);
  --shadow-strong: 0 24px 64px rgba(42, 32, 20, 0.16);
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --content: 1120px;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(234, 214, 173, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffdf8 42%, #ffffff 100%);
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.8;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  width: 100%;
}

.sp-break {
  display: none;
}

@supports (line-break: anywhere) {
  body {
    line-break: anywhere;
  }
}

@media (max-width: 639px) {
  body {
    word-break: break-all;
  }

  .sp-break {
    display: block;
  }

  h2,
  .message h2 {
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .brand-name,
  .hero-logo span,
  .cta-button,
  .line-pill {
    word-break: normal;
  }

  .site-header {
    padding: 10px 18px;
  }

  .brand {
    align-items: baseline;
    gap: 8px;
  }

  .brand-name {
    font-size: 27px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .header-cta {
    display: none;
  }

  .hero.section {
    gap: 14px;
    padding-bottom: 38px;
    padding-top: 12px;
  }

  .hero-media img {
    aspect-ratio: 1 / 0.74;
    max-height: 310px;
  }

  .photo-caption {
    bottom: 10px;
    left: 10px;
    margin: 0;
    position: absolute;
  }

  .trust-badge-floating {
    bottom: 10px;
    margin: 0;
    position: absolute;
    right: 10px;
    width: min(58%, 214px);
  }

  .trust-badge-floating span,
  .trust-badge-floating strong {
    font-size: 10px;
  }

  .hero-logo {
    display: none;
  }

  .hero-logo span {
    font-size: 38px;
  }

  .program-label {
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(25px, 6.8vw, 30px);
    margin-bottom: 14px;
  }

  .lead {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .consult-note {
    margin-bottom: 6px;
  }

  .cta-button {
    min-height: 54px;
    padding: 12px 18px;
  }

  .hero-meta {
    gap: 8px 12px;
    margin-left: auto;
    margin-right: auto;
    max-width: 310px;
    width: 100%;
  }

  .hero-meta li {
    white-space: nowrap;
  }
}

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(111, 77, 40, 0.12);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 14px 18px;
  position: sticky;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
}

.brand-name,
.brand-sub {
  display: block;
  line-height: 1.2;
}

.brand-name {
  color: var(--gold-dark);
  font-family: "Allura", "Zen Old Mincho", serif;
  font-size: clamp(23px, 7vw, 29px);
  font-weight: 400;
}

.brand-sub {
  color: var(--muted);
  font-size: 11px;
}

.header-cta {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  color: var(--white);
  display: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(139, 96, 39, 0.2);
  padding: 9px 13px;
  white-space: nowrap;
}

.section {
  padding: 72px 20px;
  position: relative;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background:
    radial-gradient(circle at 10% 8%, rgba(234, 214, 173, 0.28), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--ivory) 100%);
  padding-top: 16px;
  overflow-x: hidden;
}

.hero-media {
  margin: 0 auto;
  max-width: 520px;
  position: relative;
  width: 100%;
  animation: hero-rise 900ms var(--ease-luxury) both;
}

.hero-media img {
  aspect-ratio: 1 / 1.05;
  border-radius: 0;
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  object-position: center top;
  outline: 1px solid rgba(234, 214, 173, 0.56);
  outline-offset: -10px;
  width: 100%;
}

.photo-caption {
  background: rgba(255, 255, 255, 0.9);
  color: var(--bronze-dark);
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  margin: 8px 0 0;
  padding: 6px 10px;
  position: static;
  z-index: 1;
}

.hero-copy {
  margin: 0 auto;
  max-width: 620px;
  min-width: 0;
  width: 100%;
  animation: hero-rise 900ms var(--ease-luxury) 110ms both;
}

.hero-logo {
  align-items: baseline;
  color: var(--gold-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1;
  margin-bottom: 18px;
}

.hero-logo span {
  font-family: "Allura", "Zen Old Mincho", serif;
  font-size: 45px;
  font-weight: 400;
}

.hero-logo small {
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--bronze-dark);
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.program-label {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(169, 119, 63, 0.28);
  color: var(--bronze-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 6px 10px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
}

h1 {
  font-size: clamp(27px, 7.3vw, 31px);
  margin-bottom: 20px;
}

h2 {
  font-size: 27px;
  margin-bottom: 0;
}

h3 {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}

.consult-note {
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.cta-button {
  align-items: center;
  background: linear-gradient(135deg, #e7c981 0%, var(--gold) 48%, var(--gold-dark) 100%);
  border: 1px solid rgba(111, 77, 40, 0.18);
  border-radius: 999px;
  box-shadow: 0 13px 28px rgba(139, 96, 39, 0.24);
  color: var(--white);
  display: inline-flex;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  min-height: 58px;
  overflow: hidden;
  padding: 14px 20px;
  position: relative;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.cta-button::after {
  animation: cta-sheen 5.4s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  inset: -42% auto -42% -36%;
  opacity: 0.72;
  position: absolute;
  transform: skewX(-18deg);
  width: 34%;
  z-index: 0;
}

.cta-button > span {
  position: relative;
  z-index: 1;
}

.cta-button:hover,
.cta-button:focus-visible {
  box-shadow: 0 18px 36px rgba(139, 96, 39, 0.28);
  transform: translateY(-1px);
}

.line-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--gold-dark);
  display: inline-flex;
  font-size: 10px;
  height: 32px;
  justify-content: center;
  width: 42px;
}

.cta-arrow {
  font-size: 18px;
  line-height: 1;
}

.microcopy {
  color: var(--bronze-dark);
  font-size: 12px;
  font-weight: 700;
  margin: 10px 0 0;
  text-align: center;
}

.cta-support {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  margin: 10px auto 0;
  max-width: 360px;
  text-align: center;
}

.cta-support-dark {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.final-panel .cta-support-dark {
  color: rgba(255, 255, 255, 0.82);
  margin: 10px auto 0;
}

.trust-badge {
  background: radial-gradient(circle at 50% 0%, rgba(234, 214, 173, 0.2), transparent 42%), var(--ink);
  border: 1px solid rgba(234, 214, 173, 0.34);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(23, 21, 18, 0.28);
  color: var(--white);
  display: grid;
  height: 118px;
  line-height: 1.6;
  padding: 24px 16px;
  place-items: center;
  text-align: center;
  width: 118px;
}

.trust-badge span,
.trust-badge strong {
  display: block;
  font-size: 11px;
}

.trust-badge strong {
  color: var(--gold-soft);
}

.trust-badge-floating {
  border-radius: var(--radius);
  height: auto;
  margin: 12px 0 0;
  min-height: 0;
  padding: 12px 14px;
  position: static;
  width: min(100%, 230px);
  z-index: 1;
  animation: badge-float 7s ease-in-out infinite;
}

.chat-dot {
  background: var(--bronze);
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  height: 9px;
  margin-top: 9px;
  width: 9px;
}

.hero-meta {
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 700;
  gap: 10px 16px;
  justify-content: center;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.hero-meta li {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.hero-meta li::before {
  border: 1px solid rgba(111, 77, 40, 0.3);
  border-radius: 50%;
  content: "";
  height: 14px;
  width: 14px;
}

.section-head {
  margin: 0 auto 28px;
  max-width: 680px;
  text-align: center;
}

.section-note {
  color: var(--muted);
  font-size: 13px;
  margin: 12px auto 0;
  max-width: 520px;
}

.result-grid,
.feature-grid,
.voice-grid {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: var(--content);
}

.result-card,
.feature-card,
.voice-card,
.price-card,
.special-plan,
  .chat-card,
  .coach-note,
  .trust-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(111, 77, 40, 0.1);
  border-radius: var(--radius);
}

.result-card,
.feature-card,
.voice-card,
.price-card,
.special-plan,
.chat-card,
.coach-note,
.trust-card,
.meetup-showcase {
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

@media (hover: hover) {
  .result-card:hover,
  .feature-card:hover,
  .voice-card:hover,
  .trust-card:hover {
    border-color: rgba(169, 119, 63, 0.26);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
  }

  .hero-media:hover img,
  .message-visual:hover img,
  .meetup-gallery figure:hover img,
  .results-visual figure:hover img,
  .voice-card-piro:hover .voice-photo-piro {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.025);
  }
}

.result-card {
  padding: 28px 22px;
  text-align: center;
}

.results-visual {
  display: flex;
  gap: 10px;
  margin: 0 auto 10px;
  max-width: var(--content);
  overflow-x: auto;
  padding: 0 0 8px;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.results-visual figure {
  background: var(--ivory);
  border: 1px solid rgba(111, 77, 40, 0.1);
  box-shadow: 0 14px 34px rgba(42, 32, 20, 0.1);
  flex: 0 0 132px;
  margin: 0;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.results-visual img {
  aspect-ratio: 9 / 14;
  background: #171512;
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: filter 700ms var(--ease-luxury), transform 700ms var(--ease-luxury);
  width: 100%;
}

.results-visual figcaption {
  background: rgba(23, 21, 18, 0.82);
  bottom: 7px;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 700;
  left: 7px;
  line-height: 1.35;
  padding: 5px 6px;
  position: absolute;
  right: 7px;
  text-align: center;
}

.results-visual-note {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  margin: 0 auto 18px;
  max-width: var(--content);
  text-align: center;
}

.result-card-featured {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.result-card-featured p {
  color: var(--muted);
}

.result-icon {
  align-items: center;
  border: 1px solid rgba(169, 119, 63, 0.42);
  border-radius: 50%;
  color: var(--gold-dark);
  display: inline-flex;
  font-size: 20px;
  height: 48px;
  justify-content: center;
  line-height: 1;
  margin-bottom: 14px;
  width: 48px;
}

.result-number {
  color: var(--bronze-dark);
  font-family: "Zen Old Mincho", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}

.result-card-featured .result-number {
  color: var(--bronze-dark);
}

.result-card p:last-child,
.feature-card p,
.voice-card p,
.special-plan p,
.community-panel p,
.final-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.message {
  background: linear-gradient(180deg, var(--white), var(--ivory));
}

.message-layout {
  display: grid;
  gap: 26px;
  margin: 0 auto;
  max-width: var(--content);
}

.message-inner {
  margin: 0 auto;
  max-width: 760px;
}

.message-body {
  margin-top: 28px;
}

.message h2 {
  word-break: keep-all;
}

.message-body p {
  color: var(--muted);
  margin-bottom: 18px;
}

.message-visual {
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.message-visual img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center top;
  transition: filter 700ms var(--ease-luxury), transform 700ms var(--ease-luxury);
  width: 100%;
}

.message-visual figcaption {
  background: rgba(255, 255, 255, 0.92);
  bottom: 12px;
  color: var(--bronze-dark);
  font-size: 12px;
  font-weight: 700;
  left: 12px;
  padding: 7px 10px;
  position: absolute;
  right: 12px;
}

.features {
  background: linear-gradient(180deg, var(--ivory), #f7efe2);
}

.feature-card {
  padding: 24px 20px;
}

.feature-index {
  color: var(--bronze);
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.meetup-showcase {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(111, 77, 40, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  margin: 22px auto 0;
  max-width: var(--content);
  overflow: hidden;
  padding: 12px;
}

.meetup-gallery {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meetup-gallery figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.meetup-gallery img {
  aspect-ratio: 1 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: filter 700ms var(--ease-luxury), transform 700ms var(--ease-luxury);
  width: 100%;
}

.meetup-photo-main {
  grid-column: 1 / -1;
}

.meetup-photo-main img {
  aspect-ratio: 4 / 3;
  object-position: center 42%;
}

.meetup-copy {
  padding: 2px 4px 8px;
}

.meetup-copy h3 {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 24px;
  line-height: 1.45;
  margin-bottom: 14px;
}

.meetup-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}

.meetup-points {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.meetup-points li {
  align-items: center;
  background: var(--ivory);
  border: 1px solid rgba(169, 119, 63, 0.14);
  color: var(--bronze-dark);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  padding: 10px 12px;
}

.meetup-points li::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}

.coach-note {
  background: var(--sage);
  margin: 18px auto 0;
  max-width: var(--content);
  padding: 18px;
}

.coach-title {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
}

.voices {
  background: var(--white);
}

.voice-card {
  align-items: flex-start;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.voice-card img,
.voice-photo-placeholder {
  aspect-ratio: 1;
  border-radius: 50%;
  flex: 0 0 auto;
  height: 72px;
  object-fit: cover;
  width: 72px;
}

.voice-card-piro {
  background: linear-gradient(135deg, var(--ink), #2b251c);
  box-shadow: var(--shadow);
  color: var(--white);
  gap: 18px;
  margin: 0 auto 16px;
  max-width: var(--content);
  padding: 0;
  overflow: hidden;
}

.voice-card-piro p {
  color: rgba(255, 255, 255, 0.78);
}

.voice-card-piro .voice-name {
  color: var(--gold-soft);
}

.piro-follower-badge {
  align-items: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-dark));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  color: var(--ink);
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  margin: 0 0 16px;
  padding: 12px 14px;
}

.piro-follower-badge span {
  color: rgba(23, 21, 18, 0.74);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.piro-follower-badge strong {
  color: var(--white);
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 6vw, 34px);
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(76, 47, 14, 0.22);
}

.piro-follower-badge small {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.voice-card-piro .voice-photo-piro {
  border: 1px solid rgba(234, 214, 173, 0.34);
  border-radius: 0;
  height: auto;
  object-fit: cover;
  object-position: center 24%;
  transition: filter 700ms var(--ease-luxury), transform 700ms var(--ease-luxury);
  width: 100%;
}

.voice-card-piro > div {
  padding: 20px;
}

.voice-photo-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #e6d8bf, #fff8e8);
  border: 1px solid rgba(234, 214, 173, 0.5);
  color: var(--bronze-dark);
  display: inline-flex;
  flex-direction: column;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
}

.voice-photo-placeholder small {
  font-size: 10px;
  font-weight: 500;
}

.voice-meta {
  margin-bottom: 10px;
}

.voice-name {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0;
}

.voice-role {
  color: var(--bronze-dark);
  font-size: 12px;
  margin-bottom: 0;
}

.chat-card {
  background:
    linear-gradient(180deg, rgba(243, 251, 241, 0.92), rgba(255, 250, 240, 0.96));
  border-color: rgba(6, 199, 85, 0.18);
  margin: 18px auto 0;
  max-width: var(--content);
  padding: 20px;
}

.chat-phone-bar {
  align-items: center;
  background: #06c755;
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--white);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  margin: -20px -20px 16px;
  padding: 10px 14px;
}

.line-app-badge {
  background: var(--white);
  border-radius: 999px;
  color: #06a846;
  display: inline-flex;
  font-size: 10px;
  justify-content: center;
  line-height: 1;
  padding: 5px 8px;
}

.chat-header {
  align-items: center;
  color: #096b36;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 14px;
}

.chat-dot {
  height: 8px;
  margin-top: 0;
  width: 8px;
}

.chat-bubbles {
  display: grid;
  gap: 12px;
}

.chat-bubble {
  background: var(--white);
  border: 1px solid rgba(6, 199, 85, 0.12);
  border-radius: 18px 18px 18px 5px;
  box-shadow: 0 10px 24px rgba(32, 68, 45, 0.08);
  color: var(--muted);
  margin: 0;
  padding: 16px;
  position: relative;
}

.chat-bubble::before {
  border-bottom: 8px solid transparent;
  border-right: 10px solid var(--white);
  bottom: 12px;
  content: "";
  left: -7px;
  position: absolute;
}

.chat-bubble span {
  color: #096b36;
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.chat-bubble strong {
  color: var(--ink);
  display: block;
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 6px;
}

.chat-bubble p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}

.chat-bubble-featured {
  background: linear-gradient(135deg, #06c755, #049c43);
  border-color: rgba(6, 199, 85, 0.24);
}

.chat-bubble-featured::before {
  border-right-color: #06c755;
}

.chat-bubble-featured span,
.chat-bubble-featured strong {
  color: var(--white);
}

.chat-bubble-featured p {
  color: rgba(255, 255, 255, 0.76);
}

.pending {
  border: 1px dashed rgba(111, 77, 40, 0.28);
}

.pricing {
  background: var(--ivory);
}

.price-card {
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 760px;
  padding: 26px;
  text-align: center;
}

.price-head {
  border-bottom: 1px solid rgba(111, 77, 40, 0.14);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.plan-name {
  color: var(--bronze-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.price {
  font-family: "Zen Old Mincho", serif;
  color: var(--gold-dark);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 6px;
}

.price span {
  display: block;
  font-size: 16px;
  margin-top: 4px;
}

.tax,
.payment-note {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.included-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.included-list li {
  align-items: center;
  border-top: 1px solid rgba(111, 77, 40, 0.1);
  color: var(--muted);
  display: grid;
  font-size: 13px;
  gap: 8px;
  justify-items: center;
  padding-top: 12px;
  text-align: center;
}

.included-list li::before {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(169, 119, 63, 0.5);
  border-radius: 50%;
  color: var(--gold-dark);
  content: "✓";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  height: 28px;
  justify-content: center;
  margin-top: 0;
  width: 28px;
}

.payment-note {
  margin-bottom: 18px;
}

.special-plan {
  margin: 16px auto 0;
  max-width: 760px;
  padding: 18px;
}

.special-title,
.special-price {
  color: var(--ink);
  font-weight: 700;
}

.special-title {
  margin-bottom: 8px;
}

.special-price {
  margin-top: 10px;
}

.trust-section {
  background:
    linear-gradient(180deg, var(--ivory), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 80% 0%, rgba(199, 154, 76, 0.12), transparent 28%);
}

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

.trust-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.9));
  box-shadow: 0 12px 34px rgba(42, 32, 20, 0.08);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), transparent);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.trust-index {
  color: var(--gold-dark);
  display: inline-block;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.trust-card h3 {
  color: var(--ink);
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.community {
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.96), rgba(23, 21, 18, 0.72)),
    url("assets/existing/camp-scene-img-0975.jpg") center / cover;
  color: var(--white);
}

.community-panel {
  margin: 0 auto;
  max-width: 760px;
}

.community-panel .eyebrow,
.community-panel h2 {
  color: var(--gold-soft);
}

.community-panel p {
  margin-top: 22px;
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin: 0 auto;
  max-width: 820px;
}

details {
  background: var(--ivory);
  border: 1px solid rgba(111, 77, 40, 0.14);
  border-radius: var(--radius);
  padding: 16px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.6;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.final-cta {
  background:
    linear-gradient(rgba(23, 21, 18, 0.72), rgba(23, 21, 18, 0.82)),
    url("assets/existing/kaketaku-piro-candidate.png") center / cover;
  padding-bottom: 96px;
}

.final-panel {
  background: rgba(23, 21, 18, 0.78);
  border: 1px solid rgba(234, 214, 173, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 760px;
  padding: 24px;
}

.final-panel h2,
.final-panel .eyebrow {
  color: var(--gold-soft);
}

.final-panel p {
  color: rgba(255, 255, 255, 0.8);
  margin: 18px 0 22px;
}

.final-panel .microcopy {
  margin-bottom: 0;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  padding: 28px 20px;
  text-align: center;
}

.site-footer p {
  margin-bottom: 4px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms var(--ease-luxury),
    transform 760ms var(--ease-luxury);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes cta-sheen {
  0%,
  28% {
    left: -42%;
  }

  52%,
  100% {
    left: 128%;
  }
}

@media (max-width: 639px) {
  .header-cta {
    display: none;
  }

  .site-header {
    padding: 10px 18px;
  }

  .brand {
    align-items: baseline;
    gap: 8px;
  }

  .brand-name {
    font-size: 27px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .hero.section {
    gap: 14px;
    padding-bottom: 38px;
    padding-top: 12px;
  }

  .hero-media img {
    aspect-ratio: 1 / 0.72;
    max-height: 280px;
  }

  .hero-logo {
    display: none;
  }

  .program-label {
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(25px, 6.8vw, 30px);
    margin-bottom: 14px;
  }

  .lead {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

@media (min-width: 640px) {
  .site-header {
    padding: 14px 28px;
  }

  .header-cta {
    display: inline-flex;
  }

  .section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .result-grid,
  .feature-grid,
  .voice-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-visual {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-bottom: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .results-visual figure {
    flex: initial;
  }

  .results-visual figcaption {
    font-size: 11px;
  }

  .results-visual-note {
    margin-bottom: 22px;
  }

  .voice-grid .voice-card {
    grid-template-columns: 84px 1fr;
  }

  .voice-grid .voice-card img {
    height: 84px;
    width: 84px;
  }

  .voice-card {
    grid-template-columns: auto 1fr;
  }

  .voice-card-piro {
    grid-template-columns: minmax(220px, 280px) 1fr;
  }

  .voice-card-piro .voice-photo-piro {
    height: 100%;
    min-height: 280px;
  }

  .voice-card-piro > div {
    padding: 24px 24px 24px 0;
  }

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

  .cta-button {
    width: auto;
  }

  .hero-actions .cta-button,
  .price-card .cta-button,
  .final-panel .cta-button {
    min-width: 280px;
  }

  .microcopy {
    text-align: left;
  }

  .final-panel .microcopy {
    text-align: left;
  }
}

@media (min-width: 920px) {
  .hero {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    margin: 0 auto;
    max-width: var(--content);
    min-height: auto;
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .hero-media {
    grid-column: 2;
    grid-row: 1;
  }

  .trust-badge-floating {
    border-radius: 50%;
    bottom: -18px;
    height: 148px;
    margin: 0;
    padding: 30px 16px;
    position: absolute;
    right: -14px;
    width: 148px;
  }

  .trust-badge-floating span,
  .trust-badge-floating strong {
    font-size: 11px;
    line-height: 1.55;
    white-space: nowrap;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 16px;
  }

  .section {
    padding-bottom: 104px;
    padding-top: 104px;
  }

  .message {
    background: linear-gradient(90deg, rgba(251, 246, 236, 0.92), rgba(255, 255, 255, 0.78));
  }

  .photo-caption {
    bottom: 14px;
    left: 14px;
    margin: 0;
    position: absolute;
  }

  .message-inner {
    max-width: var(--content);
    padding-right: 0;
  }

  .message-layout {
    align-items: center;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  }

  .message-visual img {
    aspect-ratio: 4 / 4.7;
  }

  .meetup-showcase {
    align-items: center;
    gap: 28px;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.78fr);
    padding: 18px;
  }

  .meetup-gallery {
    gap: 10px;
    grid-template-columns: 1.2fr 0.9fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .meetup-photo-main {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .meetup-photo-main img {
    aspect-ratio: 4 / 5;
    height: 100%;
  }

  .meetup-gallery figure:not(.meetup-photo-main) img {
    aspect-ratio: 4 / 3;
    height: 100%;
  }

  .meetup-copy {
    padding: 18px 18px 18px 0;
  }

  .meetup-copy h3 {
    font-size: 30px;
  }

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

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

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

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

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

  .price-card {
    padding: 34px;
  }

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

  .site-footer {
    padding-bottom: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
