/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #15233f;
  --red: #E03A2F;
  --paper: #f3ede1;
  --cream: #faf5e9;
  --sub-light: rgba(243, 237, 225, 0.7);
  --sub-dark: #6a6354;
  --line-light: rgba(243, 237, 225, 0.2);
  --white: #ffffff;
  --max-w: min(75vw, 1400px);
}

/* ===== PAGE WRAP ===== */
.page-wrap {
  width: 100%;
  background: #fff;
}

/* ===== SHARED ===== */
.chapter-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--red);
}

.accent {
  color: var(--red);
}

.section-header-row {
  border-bottom: 1px solid var(--navy);
  padding-bottom: 14px;
  margin-bottom: 32px;
}

.section-title-lg {
  font-family: "Shippori Mincho B1", serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 8px;
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: #fff;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open .mobile-menu-drawer {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6e7ec;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid #e6e7ec;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  border-radius: 2px;
}

.mobile-menu-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: var(--navy);
  top: 50%;
  left: 50%;
}

.mobile-menu-close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.mobile-nav li {
  padding: 16px 0;
  border-bottom: 1px solid #e6e7ec;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  font-family: "Shippori Mincho B1", serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.mobile-menu-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #06C755;
  color: #fff;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* ===== HEADER ===== */
.site-header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #e6e7ec;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  font-family: "Shippori Mincho B1", serif;
  flex-shrink: 0;
}

.header-logo-name {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}

.header-logo-sub {
  font-size: 9px;
  color: #5b6173;
  margin-top: 3px;
  letter-spacing: 0.15em;
}

/* hidden on mobile, shown on desktop */
.header-nav {
  display: none;
}

.header-cta {
  display: none;
}

.line-icon-sm {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #06C755;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  background: #0d1b2e;
  padding: 0;
  overflow: hidden;
}

.hero-deco-text {
  display: none;
  position: absolute;
  top: 0;
  right: -12px;
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(224, 58, 47, 0.18);
  letter-spacing: -0.04em;
  line-height: 0.9;
  pointer-events: none;
  user-select: none;
}

/* Mobile: overlay layout — image full-width, text overlaid at bottom */
.hero-grid {
  position: relative;
  display: block;
}

/* Text becomes absolute overlay at bottom of image */
.hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 18, 35, 0.75) 28%,
    rgba(10, 18, 35, 0.97) 100%
  );
  padding: 88px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* Adjust margins inside overlay */
.hero-text .hero-h1 { margin: 0; color: #fff; }
.hero-text .hero-lead { margin: 0; color: rgba(243, 237, 225, 0.88); }
.hero-text .hero-cta-row { margin-bottom: 0; }
.hero-text .hero-badge {
  background: transparent;
  border-color: rgba(243, 237, 225, 0.45);
  color: var(--paper);
}
.hero-text .hero-badge-dot { background: var(--paper); }
/* Hide in-grid stats on mobile (shown in cream bar below) */
.hero-text .hero-stats { display: none; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.hero-badge-dot {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.4;
  margin: 0 0 10px;
  color: #1b1b1f;
  letter-spacing: 0.02em;
}

.hero-h1 span {
  color: var(--red);
}

.hero-lead {
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 12px;
  color: #3a3f50;
  font-weight: 500;
}

.hero-highlight {
  background: linear-gradient(transparent 65%, #ffe2a8 65%);
  padding: 0 2px;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-cta-btn {
  background: #06C755;
  color: #fff;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.hero-cta-btn .line-badge {
  width: 18px;
  height: 18px;
  background: #fff;
  color: #06C755;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 10px;
  flex-shrink: 0;
}

/* note hidden on mobile to save height */
.hero-cta-note {
  display: none;
}

.hero-stats {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #e6e7ec;
}

.hero-stat-label {
  font-size: 10px;
  color: #5b6173;
  letter-spacing: 0.08em;
}

.hero-stat-val {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1b1b1f;
}

.hero-stat-val span {
  font-size: 12px;
}

.hero-stat-text {
  font-family: "Shippori Mincho B1", serif;
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}

.hero-img-wrap {
  position: relative;
  margin-bottom: 0;
  width: 100%;
}

.hero-img-shadow {
  display: none;
}

.hero-img-inner {
  position: relative;
  background: #e8e1d4;
  padding: 0;
  box-shadow: none;
}

/* Always 1:1, never cropped */
.hero-img-inner img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}

.hero-img-badge {
  display: none;
  position: absolute;
  bottom: -22px;
  left: -10px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Mobile-only cream stats bar */
.hero-stats-bar {
  background: var(--cream);
  padding: 12px 20px;
  border-top: 1px solid rgba(21, 35, 63, 0.1);
}

.hero-stats-bar .hero-stats {
  padding-top: 0;
  border-top: none;
}

/* ===== WORRY ===== */
.worry-section {
  padding: 64px 20px;
  background: linear-gradient(135deg, #0d1b2e 0%, #15233f 60%, #1e3258 100%);
  color: var(--paper);
  border-bottom: 2px solid var(--navy);
}

.worry-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.worry-h2 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 40px;
  font-weight: 800;
  margin: 10px 0 0;
  line-height: 1.35;
}

.worry-sub {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
  color: var(--sub-light);
}

.worry-q-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: baseline;
}

.worry-q-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.1em;
  color: var(--red);
}

.worry-q-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--paper);
}

.worry-q-sub {
  font-size: 12px;
  color: var(--sub-light);
  margin-top: 6px;
}

/* ===== SOLUTION ===== */
.solution-section {
  padding: 64px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #faf5e9 100%);
  border-bottom: 2px solid var(--navy);
}

.solution-grid {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--navy);
}

.solution-card {
  padding: 32px 24px;
  border-bottom: 1px solid var(--navy);
}

.solution-card:last-child {
  border-bottom: none;
}

.solution-card:nth-child(2) {
  background: var(--cream);
}

.solution-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.solution-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  color: var(--red);
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.solution-hl {
  font-size: 10px;
  padding: 4px 10px;
  border: 1px solid var(--navy);
  color: var(--navy);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.solution-card h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px;
  color: var(--navy);
}

.solution-lead {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
}

.solution-body {
  font-size: 13px;
  line-height: 1.95;
  margin: 0;
  color: #3a3f50;
}

/* ===== STRENGTHS ===== */
.strengths-section {
  background: linear-gradient(135deg, #15233f 0%, #0d1b2e 100%);
  color: var(--paper);
  padding: 64px 20px;
}

.strengths-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--paper);
}

.strengths-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 22px;
  font-weight: 800;
}

.strengths-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
}

.strengths-big-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  color: var(--red);
  line-height: 0.85;
  letter-spacing: -0.02em;
  grid-column: 1;
  grid-row: 1;
}

/* 2nd child: en + tag labels */
.strengths-item > div:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 6px;
}

/* 3rd child: h3 + p */
.strengths-item > div:nth-child(3) {
  grid-column: 1 / -1;
  grid-row: 2;
  padding-top: 16px;
}

.strengths-en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 4px;
}

.strengths-tag {
  font-family: "Shippori Mincho B1", serif;
  font-size: 20px;
  font-weight: 700;
}

.strengths-item h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.5;
}

.strengths-item p {
  font-size: 13px;
  line-height: 2;
  margin: 0;
  color: rgba(243, 237, 225, 0.75);
}

.strengths-next {
  display: none;
}

/* ===== WORK ===== */
.work-section {
  padding: 64px 20px;
  background: linear-gradient(160deg, #faf5e9 0%, #ffffff 100%);
  border-bottom: 2px solid var(--navy);
}

.work-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.work-h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.5;
  color: var(--navy);
}

.work-body {
  font-size: 14px;
  line-height: 2;
  margin: 0 0 20px;
  color: #3a3f50;
}

.work-photo-placeholder {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--navy);
  background-image: repeating-linear-gradient(135deg, #efeadc 0 12px, #f6f1e3 12px 24px);
  display: grid;
  place-items: center;
  color: var(--sub-dark);
  font-family: ui-monospace, monospace;
  font-size: 12px;
}

.work-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work-step {
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--navy);
}

.work-step:nth-child(odd) {
  background: var(--cream);
}

.work-step:nth-child(even) {
  background: var(--white);
}

.work-step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  color: var(--red);
  line-height: 1;
}

.work-step-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.work-step-arrow {
  text-align: right;
  font-size: 16px;
  color: var(--navy);
}

/* ===== ONE DAY ===== */
.day-section {
  background: linear-gradient(150deg, #0d1b2e 0%, #15233f 50%, #1e3258 100%);
  color: var(--paper);
  padding: 64px 20px;
}

.day-header {
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 16px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.day-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--paper);
}

.day-title .accent {
  color: var(--red);
}

/* Mobile: vertical timeline */
.day-timeline {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.day-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 16px;
  row-gap: 2px;
  padding: 4px 0;
  text-align: left;
}

.day-icon {
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1d2c4d;
  border: 2px solid var(--red);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.day-time {
  grid-column: 2;
  grid-row: 1;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.day-label {
  grid-column: 2;
  grid-row: 2;
  font-size: 14px;
  font-weight: 700;
  color: var(--paper);
  font-family: "Shippori Mincho B1", serif;
}

.day-note {
  grid-column: 2;
  grid-row: 3;
  font-size: 11px;
  color: var(--sub-light);
}

/* Vertical connector */
.day-connector {
  width: 2px;
  height: 20px;
  margin-left: 27px;
  border-left: 2px dashed var(--line-light);
}

.day-footnote {
  margin-top: 24px;
  font-size: 12px;
  color: var(--sub-light);
  font-style: italic;
}

/* ===== VOICES ===== */
.voices-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5eedf 100%);
  padding: 64px 20px;
  border-bottom: 2px solid var(--navy);
}

.voices-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voice-card {
  background: var(--cream);
  padding: 40px 24px 28px;
  border: 1px solid var(--navy);
  position: relative;
}

.voice-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 5px 10px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.voice-quote-mark {
  font-family: "Shippori Mincho B1", serif;
  font-size: 48px;
  color: var(--red);
  line-height: 0.6;
  margin-top: 8px;
  font-weight: 700;
}

.voice-body {
  font-size: 14px;
  line-height: 2;
  margin: 12px 0 20px;
  color: var(--navy);
}

.voice-footer {
  padding-top: 14px;
  border-top: 1px solid var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.voice-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.voice-age {
  font-size: 11px;
  color: var(--sub-dark);
}

/* FAQ */
.faq-block {
  margin-top: 40px;
  padding: 28px 20px;
  border: 2px solid var(--navy);
  background: #fff;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.faq-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}

.faq-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

.faq-a {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
  color: #3a3f50;
}

/* ===== BENEFITS ===== */
.benefits-section {
  padding: 64px 20px;
  background: linear-gradient(135deg, #10203a 0%, #15233f 50%, #0d1b2e 100%);
  color: var(--paper);
}

.benefits-header {
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefits-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 22px;
  font-weight: 800;
}

.benefits-title .accent {
  color: var(--red);
}

.benefits-table {
  background: #1d2c4d;
  border: 1px solid var(--line-light);
}

.benefits-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-light);
}

.benefits-row:last-child {
  border-bottom: none;
}

.benefits-key {
  font-family: "Shippori Mincho B1", serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
}

.benefits-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
}

.benefits-note {
  font-size: 11px;
  color: var(--sub-light);
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(160deg, #faf5e9 0%, #ffffff 60%, #fff8f0 100%);
  color: var(--navy);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--navy);
}

.cta-deco {
  position: absolute;
  top: 24px;
  right: -16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 130px;
  color: rgba(224, 58, 47, 0.18);
  line-height: 0.85;
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
}

.cta-inner {
  position: relative;
}

.cta-h2 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 24px;
  line-height: 1.3;
  color: var(--navy);
}

.cta-h2 .accent {
  color: var(--red);
}

.cta-body {
  font-size: 14px;
  line-height: 2;
  color: #3a3f50;
  margin: 0 0 32px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #06C755;
  color: #fff;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 0 var(--red);
}

.cta-btn .line-badge-lg {
  width: 28px;
  height: 28px;
  background: #fff;
  color: #06C755;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

.cta-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--sub-dark);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #08090e;
  color: rgba(255, 255, 255, 0.5);
  padding: 32px 20px;
  font-size: 12px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  font-family: "Shippori Mincho B1", serif;
  flex-shrink: 0;
}

.footer-logo-name {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-size: 14px;
}

.footer-logo-sub {
  font-size: 9px;
  letter-spacing: 0.15em;
}

/* ===================================================
   DESKTOP OVERRIDES — min-width: 1024px
   =================================================== */
@media (min-width: 1024px) {

  /* Shared */
  .chapter-label {
    font-size: 16px;
  }

  .section-header-row {
    padding-bottom: 16px;
    margin-bottom: 48px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }

  .section-title-lg {
    font-size: 32px;
    margin-top: 0;
  }

  /* Header */
  .site-header {
    height: 72px;
    padding: 0 48px;
    position: relative;
  }

  .header-logo-mark {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .header-logo-name {
    font-size: 18px;
  }

  .header-logo-sub {
    font-size: 10px;
  }

  .header-nav {
    display: flex;
    gap: 32px;
    font-size: 13px;
    color: #1b1b1f;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header-nav li {
    cursor: pointer;
  }

  .header-cta {
    display: inline-flex;
    background: #06C755;
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    align-items: center;
    gap: 8px;
  }

  .hamburger-btn {
    display: none;
  }

  /* Hero */
  .hero-section {
    background: linear-gradient(150deg, #fefcf8 0%, #ede6d5 100%);
    padding: clamp(48px, 7vh, 110px) 64px clamp(60px, 9vh, 130px);
    min-height: 68vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-deco-text {
    display: block;
    font-size: 220px;
    right: -8px;
    top: 24px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
  }

  /* Restore hero-text to normal left column on desktop */
  .hero-text {
    position: static;
    background: none;
    padding: 0;
    display: block;
  }
  .hero-text .hero-h1 { color: #1b1b1f; margin: 0 0 24px; }
  .hero-text .hero-lead { color: #3a3f50; margin: 0 0 32px; }
  .hero-text .hero-badge {
    background: #fff;
    border-color: var(--red);
    color: var(--red);
  }
  .hero-text .hero-badge-dot { background: var(--red); }
  .hero-text .hero-stats { display: flex; }
  .hero-text .hero-cta-row { margin-bottom: 14px; }

  /* Hide mobile stats bar on desktop */
  .hero-stats-bar { display: none; }

  .hero-badge {
    font-size: 12px;
    margin-bottom: 28px;
  }

  .hero-h1 {
    font-size: 54px;
    margin-bottom: 24px;
  }

  .hero-lead {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .hero-cta-row {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-cta-btn {
    font-size: 16px;
    padding: 18px 28px;
    justify-content: flex-start;
  }

  .hero-cta-btn .line-badge {
    width: 22px;
    height: 22px;
    font-size: 12px;
    border-radius: 6px;
  }

  .hero-cta-note {
    display: block;
    text-align: left;
  }

  .hero-stats {
    gap: 32px;
    padding-top: 24px;
  }

  .hero-stat-val {
    font-size: 32px;
  }

  .hero-stat-val span {
    font-size: 18px;
  }

  .hero-stat-text {
    font-size: 24px;
  }

  .hero-img-wrap {
    position: relative;
    margin-bottom: 0;
    padding-right: 28px;
    padding-bottom: 28px;
  }

  .hero-img-shadow {
    display: block;
    position: absolute;
    background: var(--red);
    z-index: 0;
    top: 20px;
    left: 20px;
    right: 0;
    bottom: 0;
  }

  .hero-img-inner {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  /* Keep 1:1 on desktop too — never crop */
  .hero-img-inner img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .hero-img-badge {
    display: block;
    bottom: -32px;
    left: -20px;
    font-size: 12px;
    padding: 14px 20px;
  }

  /* Worry */
  .worry-section {
    padding: 96px 56px;
  }

  .worry-grid {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 64px;
    align-items: start;
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .worry-h2 {
    font-size: 54px;
  }

  .worry-sub {
    margin-top: 32px;
  }

  .worry-q-item {
    grid-template-columns: 90px 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .worry-q-num {
    font-size: 32px;
  }

  .worry-q-title {
    font-size: 24px;
  }

  /* Solution */
  .solution-section {
    padding: 96px 56px;
  }

  .solution-section > .section-header-row {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
  }

  .solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    flex-direction: unset;
    border-left: 1px solid var(--navy);
    border-right: 1px solid var(--navy);
    border-top: none;
    border-bottom: none;
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .solution-card {
    padding: 40px 32px;
    border-top: 1px solid var(--navy);
    border-bottom: 1px solid var(--navy);
    border-right: none;
    border-left: none;
  }

  .solution-card:last-child {
    border-bottom: 1px solid var(--navy);
  }

  .solution-card:nth-child(1),
  .solution-card:nth-child(2) {
    border-right: 1px solid var(--navy);
  }

  .solution-num {
    font-size: 88px;
  }

  .solution-card h3 {
    font-size: 22px;
  }

  /* Strengths */
  .strengths-section {
    padding: 96px 56px;
  }

  .strengths-header {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 48px;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }

  .strengths-title {
    font-size: 32px;
  }

  .strengths-item {
    display: grid;
    grid-template-columns: 0.3fr 0.4fr 1fr 0.25fr;
    grid-template-rows: auto;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
  }

  .strengths-big-num {
    font-size: 120px;
    grid-column: auto;
    grid-row: auto;
  }

  .strengths-item > div:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .strengths-item > div:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    padding-top: 0;
  }

  .strengths-en {
    font-size: 18px;
  }

  .strengths-tag {
    font-size: 24px;
  }

  .strengths-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .strengths-next {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--paper);
    opacity: 0.4;
    text-align: right;
  }

  /* Work */
  .work-section {
    padding: 96px 56px;
  }

  .work-section > .section-header-row {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
  }

  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .work-h3 {
    font-size: 26px;
  }

  .work-step {
    grid-template-columns: 80px 1fr 60px;
    gap: 24px;
    padding: 20px 24px;
  }

  .work-step-num {
    font-size: 44px;
  }

  .work-step-title {
    font-size: 22px;
  }

  .work-step-arrow {
    font-size: 18px;
  }

  /* Day */
  .day-section {
    padding: 96px 56px;
  }

  .day-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 56px;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
  }

  .day-title {
    font-size: 32px;
  }

  .day-timeline {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .day-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 128px;
    text-align: center;
    grid-template-columns: none;
    grid-template-rows: none;
    padding: 0;
  }

  .day-icon {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    width: 72px;
    height: 72px;
    font-size: 30px;
    margin-bottom: 14px;
  }

  .day-time {
    grid-column: auto;
    grid-row: auto;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 6px;
  }

  .day-label {
    grid-column: auto;
    grid-row: auto;
    font-size: 14px;
    margin-bottom: 4px;
  }

  .day-note {
    grid-column: auto;
    grid-row: auto;
  }

  /* Horizontal connector */
  .day-connector {
    flex: 1;
    margin-top: 35px;
    align-self: flex-start;
    height: 2px;
    width: auto;
    border-bottom: 2px dashed var(--line-light);
    border-left: none;
    margin-left: 0;
  }

  .day-footnote {
    text-align: right;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
  }

  /* Voices */
  .voices-section {
    padding: 96px 56px;
  }

  .voices-section > .section-header-row {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
  }

  .voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    flex-direction: unset;
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .faq-block {
    padding: 40px 48px;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    flex-direction: unset;
  }

  .faq-title {
    font-size: 24px;
  }

  /* Benefits */
  .benefits-section {
    padding: 96px 56px;
  }

  .benefits-header {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }

  .benefits-title {
    font-size: 32px;
  }

  .benefits-table {
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .benefits-row {
    display: grid;
    grid-template-columns: 180px 1fr 240px;
    gap: 24px;
    padding: 22px 32px;
    align-items: center;
  }

  .benefits-key {
    font-size: 16px;
  }

  .benefits-val {
    font-size: 15px;
  }

  .benefits-note {
    font-size: 12px;
    text-align: right;
  }

  /* CTA */
  .cta-section {
    padding: 120px 56px;
  }

  .cta-deco {
    font-size: 280px;
    top: 24px;
    right: -40px;
  }

  .cta-inner {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
  }

  .cta-h2 {
    font-size: 64px;
    margin-bottom: 32px;
  }

  .cta-body {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .cta-btn {
    display: inline-flex;
    justify-content: flex-start;
    padding: 24px 48px;
    font-size: 20px;
    gap: 16px;
    box-shadow: 0 8px 0 var(--red);
  }

  .cta-btn .line-badge-lg {
    width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
  }

  .cta-note {
    margin-top: 24px;
    font-size: 13px;
  }

  /* Footer */
  .site-footer {
    padding: 40px 64px;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .footer-logo-mark {
    width: 32px;
    height: 32px;
  }

  .footer-logo-name {
    font-size: 15px;
  }

  .footer-logo-sub {
    font-size: 10px;
  }
}
