:root {
  --bg: #f4f1eb;
  --paper: #ffffff;
  --soft: #f7f3ee;
  --tan: #efe8df;
  --ink: #141414;
  --muted: #5f5b55;
  --line: #e5ddd3;
  --accent: #c74a35;
  --accent-dark: #9d3327;
  --shadow: rgba(20, 20, 20, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.8;
}

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

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

p,
h1,
h2,
h3,
blockquote,
button {
  margin: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.2s ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 24px rgba(199, 74, 53, 0.18);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: #000;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) brightness(0.72);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.66), rgba(21, 20, 18, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1140px);
  padding: 110px 0;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.eyebrow-inline {
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stats-block {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 46px 0;
}

.stat-item {
  text-align: center;
  padding: 20px 14px;
}

.stat-value {
  font-size: clamp(1.8rem, 2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.content-section {
  padding: 116px 0;
}

.bg-tan {
  background: var(--tan);
}

.bg-soft {
  background: var(--soft);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-copy h2,
.section-heading h2,
.issue-header h2,
.feature-copy h2,
.final-cta h2,
.org-copy h2,
.rep-copy h2,
.closing-box h2 {
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  line-height: 1.17;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.split-copy p,
.issue-body,
.feature-copy p,
.section-intro,
.org-copy p,
.rep-copy p,
.closing-box p,
.plan-text,
.program-copy p,
.voice-content p,
.faq-answer p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.95;
}

.split-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 32px var(--shadow);
}

.split-visual img {
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.narrow-container {
  width: min(calc(100% - 40px), 1100px);
}

.issue-header {
  margin: 8px 0 12px;
}

.issue-body {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.issue-card {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(20, 20, 20, 0.06);
  padding: 30px 26px;
  border-radius: 20px;
}

.issue-card h3,
.program-copy h3,
.value-card h3 {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1.28;
}

.issue-card p {
  color: var(--muted);
  line-height: 1.8;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 54px;
  align-items: center;
}

.feature-image-wrap img {
  min-height: 640px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 32px var(--shadow);
}

.value-points {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.value-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.value-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--accent);
  font-weight: 700;
  border: 1px solid var(--line);
}

.value-card h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.value-card p {
  color: var(--muted);
  line-height: 1.75;
}

.quote-section {
  position: relative;
  background: #1f1a17;
  color: #fff;
}

.quote-photo {
  height: 760px;
  background-position: center;
  background-size: cover;
  filter: grayscale(0.2) brightness(0.75);
}

.quote-wrap {
  position: relative;
  margin-top: -260px;
  padding-bottom: 120px;
}

.quote-box {
  max-width: 760px;
  margin-left: auto;
  margin-right: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 52px 54px 46px;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
}

.quote-box blockquote {
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.quote-box p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

.program-header-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading {
  margin-bottom: 12px;
}

.section-intro {
  max-width: 620px;
}

.program-list {
  display: grid;
  gap: 34px;
}

.program-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 12px 0;
}

.program-item.reversed {
  grid-template-columns: 1fr 1.1fr;
}

.program-item.reversed .program-photo {
  order: 2;
}

.program-item.reversed .program-copy {
  order: 1;
}

.program-photo img {
  height: 430px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 32px rgba(20, 20, 20, 0.08);
}

.program-step {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.program-copy h3 {
  margin-bottom: 16px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 28px;
}

.voice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.voice-card img {
  height: 340px;
  object-fit: cover;
}

.voice-content {
  padding: 26px 24px 28px;
}

.voice-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.wide-plan {
  width: min(calc(100% - 40px), 1180px);
}

.centered-heading,
.centered-intro {
  text-align: center;
}

.centered-intro {
  margin: 0 auto 36px;
}

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

.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px 28px;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.04);
}

.plan-amount {
  font-size: clamp(2.2rem, 2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.plan-text {
  margin-bottom: 18px;
}

.plan-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

.plan-button {
  width: 100%;
}

.closing-section {
  background: #f1e4d8;
  padding: 110px 0;
}

.closing-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.org-layout,
.rep-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.org-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

tr + tr {
  border-top: 1px solid var(--line);
}

th,
td {
  text-align: left;
  vertical-align: top;
  padding: 18px 22px;
}

th {
  width: 180px;
  background: var(--soft);
  font-size: 0.92rem;
  color: var(--ink);
}

td {
  color: var(--muted);
  line-height: 1.8;
}

.rep-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 32px rgba(20, 20, 20, 0.08);
}

.rep-role {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-wrap {
  width: min(calc(100% - 40px), 900px);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
}

.faq-plus {
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 26px 24px;
}

.final-cta {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 76px 0 110px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta h2 {
  margin-bottom: 0;
  max-width: 720px;
}

.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.8);
  padding: 44px 0 84px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
}

.brand-footer {
  color: #fff;
  margin-bottom: 12px;
}

.footer-text {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.95rem;
}

.mobile-fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 25;
}

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

  .split-layout,
  .feature-layout,
  .program-header-wrap,
  .org-layout,
  .rep-layout,
  .program-item,
  .program-item.reversed {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .program-item.reversed .program-photo,
  .program-item.reversed .program-copy {
    order: initial;
  }

  .quote-box {
    max-width: 100%;
    padding: 38px 28px 30px;
  }

  .quote-wrap {
    margin-top: -220px;
  }

  .final-cta-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .button {
    min-height: 48px;
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  .stats-grid,
  .issue-grid,
  .plan-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 82px 0;
  }

  .split-copy h2,
  .section-heading h2,
  .issue-header h2,
  .feature-copy h2,
  .final-cta h2,
  .org-copy h2,
  .rep-copy h2,
  .closing-box h2 {
    font-size: 2.2rem;
  }

  .quote-wrap {
    margin-top: -120px;
    padding-bottom: 80px;
  }

  .quote-photo {
    height: 520px;
  }

  .program-photo img,
  .rep-image img,
  .split-visual img,
  .feature-image-wrap img {
    min-height: 320px;
    height: 320px;
  }

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

  body {
    padding-bottom: 74px;
  }
}
