/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@400;500;600;700&family=M+PLUS+Rounded+1c:wght@400;500;700;800&display=swap');

:root {
  --teal: #81CABF;
  --line-cta: #7CB1A5;
  --pink: #E55477;
  --pink-soft: #EC73A8;
  --yellow: #FFF56B;
  --yellow-pop: #FFF462;
  --cream: #FBF7F1;
  --orange: #E88F00;
  --blue: #2EA7E0;
  --green: #7FBE26;
  --ink: #3E3A39;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

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

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 56px 0; }

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.5;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 253, 247, 0.98) 0 18%, rgba(235, 247, 243, 0.9) 45%, rgba(170, 218, 208, 0.72) 72%, rgba(24, 84, 82, 0.92) 100%),
    #dcefeb;
  color: var(--ink);
  padding: 22px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(112deg, #123f40 0 6.5%, transparent 6.6% 100%),
    linear-gradient(292deg, #e66f67 0 4.8%, transparent 4.9% 100%),
    linear-gradient(112deg, transparent 0 92%, rgba(18, 63, 64, 0.92) 92.1% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.52) 8% 8.12%, transparent 8.12% 91.5%, rgba(255, 255, 255, 0.44) 91.5% 91.62%, transparent 91.62%),
    linear-gradient(0deg, transparent 0 8%, rgba(214, 167, 77, 0.34) 8% 8.1%, transparent 8.1% 91%, rgba(214, 167, 77, 0.3) 91% 91.1%, transparent 91.1%);
}

.circular-gallery {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 1;
  min-height: 610px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-earth {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(96%, 690px);
  height: auto;
  opacity: 0.82;
  transform: translate(-50%, -50%);
  filter: saturate(0.92) contrast(1.04) drop-shadow(0 28px 45px rgba(12, 55, 55, 0.2));
  pointer-events: none;
  user-select: none;
}

.gallery-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.gallery-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(58px, 17vw, 104px);
  aspect-ratio: 1;
  border-radius: 4px;
  perspective: 900px;
  will-change: transform;
  pointer-events: auto;
}

.gallery-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(.2,.72,.2,1), filter 0.25s ease;
  box-shadow: 0 10px 26px rgba(62,58,57,0.16);
}

.gallery-card:hover .gallery-card-inner,
.gallery-card:focus-visible .gallery-card-inner {
  transform: scale(1.16);
  filter: brightness(1.04);
}

.gallery-card.is-expanded .gallery-card-inner {
  transform: scale(1.5);
  filter: brightness(1.04);
}

.gallery-card:hover,
.gallery-card:focus-visible,
.gallery-card.is-expanded {
  z-index: 50 !important;
}

.gallery-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.gallery-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  backface-visibility: hidden;
  border: 0;
  background: var(--white);
}

.gallery-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-back {
  transform: rotateY(180deg);
  display: grid;
  place-items: center;
  padding: 4px;
  background: #f7f3ee;
}

.gallery-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-back .gallery-back-blur {
  object-fit: cover;
  transform: scale(1.16);
  filter: blur(7px) saturate(0.82);
  opacity: 0.38;
}

.gallery-back .gallery-back-image {
  z-index: 1;
  object-fit: contain;
  padding: 3px;
  filter: drop-shadow(0 2px 3px rgba(62,58,57,0.16));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(61%, 410px);
  padding: 38px 14px 30px;
  pointer-events: none;
  border: 1px solid rgba(18, 63, 64, 0.18);
  background: rgba(255, 252, 245, 0.88);
  box-shadow:
    10px 10px 0 rgba(230, 111, 103, 0.74),
    -8px -8px 0 rgba(128, 204, 188, 0.5),
    0 24px 60px rgba(12, 55, 55, 0.18);
}

.hero-content a {
  pointer-events: auto;
}

.hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(19px, 5.2vw, 32px);
  font-weight: 500;
  color: var(--ink);
  text-shadow: none;
  margin-bottom: 19px;
  letter-spacing: 0.075em;
  line-height: 1.65;
}

.hero h1 .accent {
  display: block;
  position: relative;
  width: fit-content;
  margin: 8px auto 0;
  padding-bottom: 8px;
  font-size: 0.78em;
  font-weight: 600;
  color: var(--ink);
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: var(--teal);
}

.mobile-break { display: inline; }

.hero p.sub {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(9px, 2.45vw, 13px);
  font-weight: 400;
  margin: 0 auto 22px;
  max-width: 310px;
  color: #5f5a57;
  letter-spacing: 0.1em;
}

.hero p.sub strong,
.hero p.sub span {
  display: block;
}

.hero p.sub strong {
  color: var(--ink);
  font-weight: 700;
}

.hero p.sub span {
  margin-top: 7px;
  line-height: 1.8;
}

.hero .cta-btn {
  max-width: 350px;
  padding: 14px 12px;
  border-radius: 3px;
  font-size: clamp(11px, 2.8vw, 14px);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(124, 177, 165, 0.24);
}

.hero .line-icon {
  width: 21px;
  height: 21px;
}

.hero .cta-note {
  display: block;
  font-size: clamp(8px, 2.1vw, 11px);
  color: #77716e;
  margin-top: 11px;
  padding: 0;
  background: transparent;
  letter-spacing: 0.06em;
}

/* ===== CTA button ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--line-cta);
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  border-radius: 999px;
  padding: 18px 36px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(124, 177, 165, 0.32);
  transition: transform 0.15s ease;
  width: 100%;
  max-width: 380px;
}

.cta-btn:active { transform: scale(0.97); }

.cta-btn .line-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.cta-wrap { text-align: center; margin-top: 8px; }

.cta-benefits {
  margin-bottom: 10px;
  color: #55736d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.cta-note {
  font-size: 12px;
  margin-top: 12px;
  opacity: 0.85;
}

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

@media (max-width: 759px) {
  .mobile-sticky-cta {
    position: fixed;
    z-index: 100;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    display: block;
    padding: 11px 18px 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 7px;
    background: #7cb1a5;
    box-shadow: 0 10px 28px rgba(51, 91, 84, 0.24);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity 260ms ease, transform 360ms cubic-bezier(.2,.8,.2,1);
  }

  .mobile-sticky-cta span {
    display: block;
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  body.show-mobile-cta .mobile-sticky-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* ===== Proud facts ===== */
.proud-facts {
  position: relative;
  padding: 58px 0 48px;
  overflow: hidden;
  background: #edf5f3;
}

.proud-facts::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(128, 204, 188, 0.42);
  border-radius: 50%;
  pointer-events: none;
}

.proud-facts__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.proud-facts__lead {
  margin-bottom: 34px;
}

.proud-facts__lead > span {
  display: block;
  margin-bottom: 12px;
  color: #4f988d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.proud-facts__lead h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.proud-facts__grid {
  display: grid;
  border-top: 1px solid rgba(62, 58, 57, 0.17);
}

.proud-facts__grid article {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  min-height: 134px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(62, 58, 57, 0.17);
}

.proud-facts__number {
  color: #4f988d;
  font-family: 'Noto Serif JP', serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.proud-facts__number span {
  margin-left: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.proud-facts__grid h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.proud-facts__grid h3 small {
  color: #4f988d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.proud-facts__media {
  margin-top: 24px;
  color: #5f7772;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.proud-facts__note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.9;
}

.empathy,
.promise,
.community {
  position: relative;
  overflow: hidden;
}

.empathy > .container,
.promise > .container,
.community > .community__inner {
  position: relative;
  z-index: 1;
}

/* ===== Section headers ===== */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 24px;
  color: var(--ink);
}

.section-head h2 .mark {
  color: var(--pink);
}

.section-head p {
  font-size: 15px;
  margin-top: 12px;
  color: #6b6663;
}

/* ===== Empathy ===== */
.empathy { background: var(--white); }

.empathy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.empathy-list li {
  background: var(--cream);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.empathy-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-soft);
  margin-top: 8px;
  flex-shrink: 0;
}

.empathy .lead {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1.9;
}

/* ===== Publishing path infographic ===== */
.publishing-path {
  background:
    radial-gradient(circle at 8% 10%, rgba(255,245,107,0.42) 0 74px, transparent 75px),
    radial-gradient(circle at 94% 88%, rgba(129,202,191,0.20) 0 92px, transparent 93px),
    var(--cream);
}

.publishing-path .section-head p {
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

.path-flow {
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.path-step {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-bottom: 28px;
}

.path-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 82px;
  bottom: 2px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--teal), var(--pink-soft));
  opacity: 0.55;
}

.path-visual {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  color: var(--pink);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(62,58,57,0.08);
  border: 2px solid rgba(229,84,119,0.12);
}

.path-visual svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-num {
  position: absolute;
  top: -8px;
  left: -7px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 3px 0 rgba(62,58,57,0.08);
}

.path-copy {
  background: rgba(255,255,255,0.78);
  border-radius: 18px;
  padding: 17px 18px;
  border-left: 4px solid var(--teal);
}

.path-label {
  display: block;
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 2px;
}

.path-copy h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.path-copy p {
  font-size: 13px;
  line-height: 1.75;
  color: #6b6663;
  font-weight: 500;
}

.path-step.is-goal .path-visual {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.path-step.is-goal .path-copy {
  border-left-color: var(--pink);
}

.path-message {
  max-width: 520px;
  margin: 4px auto 0;
  padding: 15px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.path-message b {
  color: var(--yellow);
  font-weight: 800;
}

/* ===== Promise ===== */
.promise { background: var(--teal); color: var(--white); }
.promise .section-head p { color: #eafaf6; }
.promise .section-head h2 { color: var(--white); }

.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.promise-card {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.promise-card .num {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-bottom: 14px;
}

.promise-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.promise-card p {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.95;
}

/* ===== Myths ===== */
.myths { background: var(--white); }

.myth-card {
  display: flex;
  gap: 16px;
  background: var(--cream);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.myth-card .x {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3d9de;
  color: var(--pink);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.myth-card .content h3 {
  font-size: 15px;
  text-decoration: line-through;
  color: #8a8582;
  font-weight: 700;
  margin-bottom: 6px;
}

.myth-card .content .answer {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.myth-card .content .answer .arrow { color: var(--pink); margin-right: 4px; }

.myth-card .content p.detail {
  font-size: 13px;
  margin-top: 6px;
  color: #6b6663;
  font-weight: 500;
}

/* ===== Voices ===== */
.voices { background: var(--yellow); }

.voice-highlight {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 6px 0 rgba(229,84,119,0.15);
}

.voice-highlight .tag {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

.voice-highlight blockquote {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 12px;
}

.voice-highlight .who {
  font-size: 13px;
  color: #6b6663;
  font-weight: 500;
}

.voice-mini-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}

.voice-mini {
  background: rgba(255,255,255,0.7);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
}

.voice-mini .who { font-weight: 700; margin-top: 6px; display: block; font-size: 12px; }

.stat-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat-pill {
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
}

.stat-pill b { font-size: 18px; margin-right: 4px; }

/* ===== Compare table ===== */
.compare { background: var(--white); }

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 2px solid var(--cream);
}

table.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 480px;
}

table.compare-table th, table.compare-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid var(--cream);
}

table.compare-table th {
  background: var(--cream);
  font-weight: 700;
  font-size: 12px;
}

table.compare-table td:first-child, table.compare-table th:first-child {
  text-align: left;
  font-weight: 700;
}

table.compare-table .col-us {
  background: #fdeef2;
  color: var(--pink);
  font-weight: 800;
}

.compare-note {
  font-size: 12px;
  color: #8a8582;
  margin-top: 14px;
  font-weight: 500;
}

/* ===== Offer ===== */
.offer { background: var(--pink); color: var(--white); }
.offer .section-head h2 { color: var(--white); }
.offer .section-head p { color: #ffe4ec; }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.offer-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
}

.offer-card .icon { font-size: 28px; margin-bottom: 8px; }
.offer-card h3 { font-size: 13px; font-weight: 700; line-height: 1.6; }

.offer-badge {
  text-align: center;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 24px;
}

/* ===== FAQ ===== */
.faq { background: var(--cream); }

.faq-item {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.faq-item .q {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  gap: 10px;
  color: var(--pink);
}

.faq-item .a {
  font-size: 13px;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  font-weight: 500;
  color: var(--ink);
}

.faq-item .q .letter, .faq-item .a .letter {
  flex-shrink: 0;
  font-weight: 800;
}

/* ===== Closing ===== */
.closing {
  background: var(--teal);
  color: var(--white);
  text-align: center;
}

.closing-msg {
  display: flex;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 22px;
  margin-bottom: 32px;
  text-align: left;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 54px;
}

.story-gallery__intro {
  grid-column: 1 / -1;
  padding: 36px 28px;
  background: #edf4f3;
}

.story-gallery__intro > span {
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.story-gallery__intro h3 {
  margin: 17px 0 14px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.8;
}

.story-gallery__intro p {
  color: var(--muted);
  font-size: 11px;
  line-height: 2;
}

.story-photo {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  margin: 0;
  background: var(--mist);
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 700ms ease, filter 700ms ease;
}

.story-photo:hover img {
  transform: scale(1.025);
  filter: saturate(1);
}

.story-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 18px 15px;
  background: linear-gradient(transparent, rgba(26, 37, 35, 0.72));
  color: #fff;
  font-size: 12px;
  line-height: 1.7;
}

.story-photo figcaption span {
  display: block;
  margin-bottom: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  letter-spacing: 0.16em;
  opacity: 0.78;
}

.desktop-break {
  display: none;
}

.closing-msg img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
}

.closing-msg p {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.closing-msg .name {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 12px;
}

.closing h2 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
}

footer {
  background: var(--ink);
  color: #cfcbc8;
  text-align: center;
  padding: 24px;
  font-size: 11px;
}

@media (min-width: 640px) {
  .promise-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-grid { grid-template-columns: repeat(4, 1fr); }
  .hero { min-height: 760px; }
  .circular-gallery { min-height: 720px; }
  .hero-content { width: min(56%, 410px); }
  .hero-earth { width: min(96%, 720px); opacity: 0.88; }
  .mobile-break { display: inline; }

  .path-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .path-step {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 0;
  }

  .path-step:not(:last-child)::after {
    left: calc(50% + 44px);
    right: calc(-50% + 44px);
    top: 45px;
    bottom: auto;
    width: auto;
    height: 3px;
  }

  .path-visual {
    margin: 0 auto;
  }

  .path-copy {
    flex: 1;
    padding: 15px 13px;
  }

  .path-copy h3 { font-size: 14px; }
  .path-copy p { font-size: 12px; }
}

/* ===== Editorial brand system =====
 * 公式サイトの余白、明朝体、細い罫線を基準に全セクションを統一。
 */
:root {
  --paper: #fafbf9;
  --mist: #f3f6fa;
  --hairline: rgba(62, 58, 57, 0.16);
  --muted: #716d6a;
}

body {
  font-family: 'Noto Serif JP', serif;
  background: var(--paper);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.container {
  max-width: 960px;
  padding-inline: 26px;
}

section {
  padding: 72px 0;
}

h1,
h2,
h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: left;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--teal);
}

.section-head h2 {
  font-size: clamp(25px, 4.2vw, 38px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.12em;
}

.section-head h2 .mark {
  position: relative;
  color: inherit;
  white-space: nowrap;
}

.section-head h2 .mark::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--teal);
}

.section-head p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.cta-btn {
  min-height: 56px;
  border-radius: 2px;
  box-shadow: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(124, 177, 165, 0.24);
}

.hero-kicker {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 5px 12px;
  border-top: 1px solid rgba(90, 159, 146, 0.7);
  border-bottom: 1px solid rgba(90, 159, 146, 0.7);
  color: #4d8f83;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

/* Empathy: 雑誌の目次のような番号付きリスト */
.empathy {
  background: var(--paper);
}

.empathy-list {
  counter-reset: empathy;
  gap: 0;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--hairline);
}

.empathy-list li {
  counter-increment: empathy;
  position: relative;
  display: block;
  min-height: 92px;
  padding: 25px 0 25px 58px;
  border-top: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

.empathy-list li::before {
  content: "0" counter(empathy);
  position: absolute;
  top: 27px;
  left: 0;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.empathy .lead {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 0 24px 28px;
  border-left: 1px solid var(--teal);
  color: var(--ink);
  font-size: clamp(18px, 3.2vw, 25px);
  font-weight: 400;
  line-height: 2;
  text-align: left;
}

/* Emotional promise */
.feeling {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 245, 107, 0.42), transparent 25%),
    linear-gradient(145deg, #fff8fa 0%, #f9edf2 58%, #edf6f3 100%);
}

.feeling::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(229, 84, 119, 0.2);
  border-radius: 50%;
}

.feeling .container {
  position: relative;
  z-index: 1;
}

.feeling-lead {
  max-width: 740px;
  margin-bottom: 48px;
}

.feeling-lead h2 {
  font-size: clamp(29px, 6vw, 48px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.12em;
}

.feeling-lead > p {
  max-width: 590px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.feeling-lead__scene {
  padding-left: 18px;
  border-left: 3px solid var(--pink);
}

.feeling-lead__scene strong,
.feeling-lead__scene span {
  display: block;
}

.feeling-lead__scene strong {
  color: var(--ink);
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 500;
  line-height: 1.9;
}

.feeling-lead__scene span {
  margin-top: 7px;
}

.feeling-grid {
  display: grid;
  border-top: 1px solid rgba(62, 58, 57, 0.15);
}

.feeling-grid article {
  min-height: 245px;
  padding: 30px 8px;
  border-bottom: 1px solid rgba(62, 58, 57, 0.15);
}

.feeling-grid article > span {
  color: #b74e69;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.feeling-grid h3 {
  margin: 24px 0 14px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
}

.feeling-grid h3 em {
  color: #b74e69;
  font-style: normal;
  font-weight: 500;
}

.feeling-grid p {
  max-width: 340px;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}

.feeling-grid__scene {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.08em;
  font-weight: 600;
}

.path-copy__outcome strong,
.path-copy__outcome span {
  display: block;
}

.path-copy__outcome strong {
  margin-bottom: 7px;
  color: #b74e69;
  font-size: 1.08em;
  font-weight: 600;
}

.path-copy__outcome b {
  color: var(--ink);
  font-weight: 600;
}

.women-publishing {
  display: grid;
  gap: 20px;
  margin-top: 54px;
  padding: 34px 0;
  border-top: 1px solid rgba(90, 159, 146, 0.55);
  border-bottom: 1px solid rgba(90, 159, 146, 0.55);
}

.women-publishing__main {
  font-size: clamp(25px, 6vw, 40px);
  line-height: 1.7;
  letter-spacing: 0.12em;
}

.women-publishing__main b {
  color: #d94d70;
  font-weight: 500;
}

.women-publishing__note {
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}

/* Process */
.publishing-path {
  background: var(--mist);
}

.path-flow {
  max-width: none;
}

.process-visual {
  margin: 0 0 62px;
}

.result-visual a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--paper);
}

.process-visual img,
.result-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.process-visual figcaption,
.result-visual figcaption {
  padding: 15px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}

.process-visual figcaption span,
.result-visual figcaption span {
  margin-right: 14px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  letter-spacing: 0.16em;
}

@media (max-width: 639px) {
  .process-visual figcaption {
    padding-top: 12px;
    font-size: 9px;
    line-height: 1.8;
  }
}

.path-step {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 0;
  border-top: 1px solid var(--hairline);
}

.path-step:last-child {
  border-bottom: 1px solid var(--hairline);
}

.path-step:not(:last-child)::after {
  display: none;
}

.path-visual,
.path-step.is-goal .path-visual {
  width: 62px;
  height: 62px;
  margin: 22px 0;
  border: 1px solid rgba(128, 204, 188, 0.5);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #5a9f92;
}

.path-visual svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.5;
}

.path-num {
  top: -7px;
  left: -7px;
  width: auto;
  height: auto;
  padding: 2px 5px;
  border-radius: 0;
  background: var(--mist);
  box-shadow: none;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.path-copy,
.path-step.is-goal .path-copy {
  padding: 22px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.path-label {
  color: #5a9f92;
  font-size: 9px;
  font-weight: 500;
}

.path-copy h3 {
  margin: 4px 0 8px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.path-copy p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.95;
}

.path-message {
  max-width: 650px;
  margin-top: 48px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
}

.path-message b {
  color: #5a9f92;
  font-weight: 500;
}

/* Book × video */
.book-video {
  display: flex;
  flex-direction: column;
  gap: 42px;
  margin-top: 72px;
  padding: 42px 28px;
  overflow: hidden;
  background: #eaf4f2;
}

.book-video__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
}

.book-video__stage {
  position: relative;
  display: grid;
  gap: 22px;
  width: 100%;
  place-items: center;
  padding: 10px 0 0;
  perspective: 1400px;
}

.book-video__book {
  position: relative;
  display: block;
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  box-shadow: none;
  transform: rotate(-0.4deg) scale(0.96);
  transform-style: preserve-3d;
  transition: transform 2050ms cubic-bezier(.16,.78,.2,1), box-shadow 1600ms ease;
}

.book-video__book::before,
.book-video__book::after {
  position: absolute;
  content: "";
  pointer-events: none;
  transition:
    opacity 280ms ease 1700ms,
    transform 1900ms cubic-bezier(.16,.78,.2,1);
}

.book-video__book::before {
  z-index: 1;
  inset: 0 29%;
  border: 1px solid rgba(58, 112, 103, 0.2);
  background: #fff;
  box-shadow: 12px 18px 0 rgba(90, 159, 146, 0.11), 0 24px 50px rgba(39, 74, 68, 0.14);
}

.book-video__book::after {
  z-index: 3;
  top: 5px;
  right: calc(29% - 7px);
  bottom: 5px;
  width: 8px;
  border: 1px solid rgba(58, 112, 103, 0.18);
  border-left: 0;
  background: repeating-linear-gradient(to bottom, #fff 0 2px, #e6ecea 2px 3px);
}

.book-video__inside,
.book-video__cover {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(58, 112, 103, 0.24);
}

.book-video__inside {
  display: grid;
  overflow: hidden;
  place-items: center;
  background: #f8fbfa;
  clip-path: inset(0 29%);
  opacity: 0.25;
  transform: scaleX(0.42);
  transform-origin: center;
  transition:
    clip-path 1900ms cubic-bezier(.16,.78,.2,1) 180ms,
    opacity 650ms ease 260ms,
    transform 1900ms cubic-bezier(.16,.78,.2,1) 180ms;
}

.book-video__cover {
  inset: 0 auto 0 29%;
  width: 42%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-left: 8px solid rgba(79, 142, 131, 0.42);
  border-radius: 2px 5px 5px 2px;
  background:
    linear-gradient(90deg, rgba(79,142,131,0.12), transparent 18px),
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,255,255,0.58)),
    radial-gradient(circle at 25% 20%, #ffd8e2, transparent 42%),
    #d8eee9;
  backface-visibility: visible;
  color: inherit;
  cursor: pointer;
  transform-origin: left center;
  transition:
    transform 2050ms cubic-bezier(.16,.84,.22,1),
    box-shadow 1450ms ease,
    opacity 200ms ease 1880ms;
}

.book-video__cover i,
.book-video__cover em,
.book-video__cover b,
.book-video__cover small {
  transition: opacity 260ms ease 180ms;
}

.book-video__cover i,
.book-video__cover small,
.book-video__placeholder i,
.book-video__placeholder small {
  color: #4f8e83;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.2em;
}

.book-video__cover b,
.book-video__placeholder b {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 34px 0;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  background: var(--line);
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.25);
  color: #fff;
  font-size: 25px;
}

.book-video__cover em {
  margin-top: 22px;
  color: #3e3a39;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(16px, 3vw, 23px);
  font-style: normal;
  letter-spacing: 0.12em;
}

.book-video__cover b {
  margin: 24px 0;
  padding-left: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
}

.book-video__cover small {
  letter-spacing: 0.08em;
}

.book-video__placeholder {
  display: grid;
  gap: 14px;
  place-items: center;
  padding: 20px;
  text-align: center;
}

.book-video__placeholder b {
  width: 60px;
  height: 60px;
  margin: 0 0 6px;
  background: #74b5a8;
  box-shadow: none;
  font-size: 20px;
}

.book-video__placeholder small {
  max-width: 145px;
  color: #8d8a87;
  font-family: inherit;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.book-video__player {
  position: absolute;
  inset: 10px;
  z-index: 1;
  display: none;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: #17201f;
  object-fit: contain;
}

.book-video__sound {
  position: static;
  z-index: 5;
  display: none;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(25, 32, 31, 0.78);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
  color: #fff;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
  backdrop-filter: blur(5px);
}

.book-video__sound span {
  font-size: 16px;
}

.book-video__sound b {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.book-video__sound[data-audio-state="muted"] {
  border-color: rgba(255, 255, 255, 0.9);
  background: #db527d;
  animation: sound-button-pulse 2.2s ease-in-out infinite;
}

.book-video__stage.is-open.has-video .book-video__sound {
  display: inline-flex;
}

@keyframes sound-button-pulse {
  0%, 100% { box-shadow: 0 7px 18px rgba(219, 82, 125, 0.2); }
  50% { box-shadow: 0 7px 24px rgba(219, 82, 125, 0.5); }
}

.book-video__stage.has-video .book-video__player {
  display: block;
}

.book-video__stage.has-video .book-video__placeholder {
  display: none;
}

.book-video__stage.is-open .book-video__book {
  box-shadow: 10px 16px 0 rgba(90, 159, 146, 0.08), 0 30px 60px rgba(39, 74, 68, 0.16);
  transform: rotate(0deg) scale(1);
}

.book-video__stage.is-open .book-video__book::before,
.book-video__stage.is-open .book-video__book::after {
  opacity: 0;
}

.book-video__stage.is-open .book-video__book::after {
  transform: translateX(25vw);
}

.book-video__stage.is-open .book-video__inside {
  clip-path: inset(0);
  opacity: 1;
  transform: scaleX(1);
}

.book-video__stage.is-open .book-video__cover {
  box-shadow: -8px 12px 24px rgba(39, 74, 68, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: rotateY(-168deg);
}

.book-video__stage.is-open .book-video__cover i,
.book-video__stage.is-open .book-video__cover em,
.book-video__stage.is-open .book-video__cover b,
.book-video__stage.is-open .book-video__cover small {
  opacity: 0;
}

.book-video__signal {
  position: absolute;
  top: 18px;
  right: 8px;
  display: grid;
  gap: 6px;
}

.book-video__signal span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef6f91;
  animation: video-signal 2.4s ease-in-out infinite;
}

.book-video__signal span:nth-child(2) { animation-delay: 0.3s; }
.book-video__signal span:nth-child(3) { animation-delay: 0.6s; }

@keyframes video-signal {
  0%, 55%, 100% { opacity: 0.25; transform: scale(0.72); }
  18% { opacity: 1; transform: scale(1); }
}

.book-video__copy .eyebrow {
  margin-bottom: 24px;
}

.book-video__copy {
  width: min(760px, 100%);
  min-width: 0;
  margin: 0 auto;
  text-align: center;
}

.book-video__copy h3 {
  margin-bottom: 22px;
  font-size: clamp(28px, 8vw, 43px);
  font-weight: 400;
  line-height: 1.55;
}

.book-video__copy p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 2.1;
}

.book-video__copy strong {
  display: block;
  margin-top: 26px;
  color: #4f8e83;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.book-video__copy small {
  display: block;
  margin-top: 18px;
  color: #8d8a87;
  font-size: 9px;
}

.book-video__copy .book-video__audio-note {
  margin-top: 8px;
  max-width: 680px;
  color: #6f7774;
}

@media (max-width: 600px) {
  .book-video__sound {
    min-height: 34px;
    padding: 7px 10px;
  }

  .book-video__sound b {
    font-size: 9px;
  }
}

/* Promise */
.promise {
  background: var(--paper);
  color: var(--ink);
}

.promise .section-head h2,
.promise .section-head p {
  color: inherit;
}

.promise-grid {
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.promise-statement {
  max-width: 760px;
  margin: -12px 0 52px;
  padding: 24px 0 24px 28px;
  border-left: 1px solid var(--teal);
}

.promise-statement__label {
  margin-bottom: 14px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.promise-statement__lead {
  font-size: clamp(22px, 4.2vw, 34px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.promise-statement__body {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(12px, 1.6vw, 14px);
  line-height: 2.15;
}

.promise-statement__body--voice {
  color: var(--ink);
}

.promise-card {
  padding: 34px 24px;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.promise-card:last-child {
  border-bottom: 0;
}

.promise-card .num {
  width: auto;
  height: auto;
  margin-bottom: 20px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.promise-card h3 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 500;
}

.promise-card p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
}

/* All-women professional team */
.team {
  overflow: hidden;
  background: #fff8fa;
}

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

.team .section-head {
  max-width: 850px;
  margin-left: 0;
}

.team-group {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8ded8;
}

.team-group img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.team-group figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 64px 20px 18px;
  background: linear-gradient(transparent, rgba(38, 31, 32, 0.75));
  color: var(--white);
  font-size: 12px;
}

.team-group figcaption span {
  display: block;
  margin-bottom: 4px;
  color: #ffd5df;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.team-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
}

.team-roles span {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid rgba(90, 159, 146, 0.4);
  color: #4f8e83;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.team-portraits {
  display: grid;
  gap: 12px;
  margin-top: 52px;
}

.team-person {
  display: grid;
  grid-template-columns: minmax(116px, 38%) 1fr;
  align-items: end;
  min-height: 250px;
  overflow: hidden;
  background: #eef6f4;
}

.team-person--ceo {
  background: #f5e6eb;
}

.team-person img {
  align-self: end;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  object-position: bottom center;
}

.team-person > div {
  align-self: center;
  padding: 24px 18px 24px 8px;
}

.team-person span {
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.team-person h3 {
  margin: 10px 0 12px;
  font-size: 18px;
  font-weight: 400;
}

.team-person p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.85;
}

/* Author community */
.community {
  overflow: hidden;
  background: #edf5f3;
}

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

.community .section-head {
  max-width: 900px;
  margin-right: 0;
  margin-left: 0;
}

.community-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.community-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #dfe9e6;
}

.community-photo--group,
.community-photo--journey {
  grid-column: 1 / -1;
}

.community-photo--group {
  aspect-ratio: 3 / 2;
}

.community-photo--moment {
  aspect-ratio: 4 / 3;
}

.community-photo--journey {
  aspect-ratio: 3 / 2;
}

.community-photo--award {
  aspect-ratio: 16 / 9;
}

.community-photo--journey img {
  object-position: center 46%;
}

.community-photo--award img {
  object-position: center 42%;
}

.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.community-photo:hover img {
  transform: scale(1.025);
}

.community-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 16px 14px;
  background: linear-gradient(transparent, rgba(25, 38, 35, 0.72));
  color: var(--white);
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.community-photo figcaption span {
  display: block;
  margin-bottom: 2px;
  color: #bfe7df;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  letter-spacing: 0.2em;
}

/* Questions */
.myths {
  counter-reset: myth;
  background: var(--mist);
}

/* Publication stories: 実在する著者の表情で、文章の連続をほどく */
.publication-gallery {
  display: grid;
  gap: 28px;
  padding: 72px 24px;
  background: #dfeeea;
}

.publication-gallery__intro span {
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.publication-gallery__intro p {
  margin-top: 14px;
  font-size: 21px;
  line-height: 1.9;
}

.publication-gallery__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 12px;
}

.publication-gallery figure {
  margin: 0;
  min-width: 0;
}

.publication-gallery__cover {
  overflow: hidden;
  aspect-ratio: 5 / 8;
  background: var(--paper);
  box-shadow: 0 14px 28px rgba(38, 54, 50, 0.09);
}

.publication-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.publication-gallery__cover--wide {
  aspect-ratio: 724 / 1024;
}

.publication-gallery__cover--wide img {
  object-fit: contain;
  object-position: center;
}

.publication-gallery figure:hover img {
  transform: scale(1.035);
}

.publication-gallery figure:hover .publication-gallery__cover--wide img {
  transform: none;
}

.publication-gallery figcaption {
  padding: 13px 4px 0;
  color: var(--ink);
  line-height: 1.45;
}

.publication-gallery figcaption span {
  display: block;
  margin-bottom: 3px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 7px;
  letter-spacing: 0.18em;
}

.publication-gallery figcaption strong {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.myth-card {
  counter-increment: myth;
  gap: 24px;
  margin: 0;
  padding: 30px 0;
  border-top: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
}

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

.myth-card .x {
  display: block;
  width: 38px;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #5a9f92;
  font-size: 0;
  font-weight: 500;
}

.myth-card .x::after {
  content: "0" counter(myth);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
}

.myth-card .content h3 {
  margin-bottom: 15px;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.65;
  text-decoration: none;
}

.myth-card .content .myth-label {
  margin-bottom: 7px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.myth-card .content .answer {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 500;
  line-height: 1.9;
}

.myth-card .content .answer .arrow {
  color: #5a9f92;
}

.myth-card .content p.detail {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}

/* Voice */
.voices {
  background: var(--paper);
}

.voice-story-grid {
  display: grid;
  gap: 38px;
}

.voice-story {
  border-top: 1px solid var(--hairline);
}

.voice-story__portrait {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: #eef4f1;
}

.voice-story__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(62, 58, 57, 0.06);
  pointer-events: none;
}

.voice-story__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.82) contrast(0.96);
}

.voice-story__portrait--airy img {
  object-position: center 58%;
}

.voice-story__portrait--interview img {
  object-position: 58% center;
  filter: none;
}

.voice-story__copy {
  position: relative;
  padding: 25px 0 30px 28px;
  border-bottom: 1px solid var(--hairline);
}

.voice-story__copy::before {
  content: "“";
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.voice-story .tag {
  display: block;
  margin: 0 0 13px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.voice-story blockquote {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

.voice-story__name {
  margin-bottom: 4px;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.voice-story .who {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.7;
}

.stat-row {
  justify-content: flex-start;
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.stat-pill {
  flex: 1;
  min-width: 220px;
  padding: 22px 18px;
  border-right: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.stat-pill:last-child {
  border-right: 0;
}

.stat-pill b {
  color: #5a9f92;
  font-size: 24px;
  font-weight: 400;
}

.result-visual {
  margin: 58px 0 0;
}

.result-visual a {
  max-width: 820px;
  margin: 0 auto;
}

.result-visual img {
  height: auto;
}

.ranking-evidence {
  display: grid;
  gap: 34px;
  margin-top: 82px;
  padding-top: 42px;
  border-top: 1px solid var(--hairline);
}

.ranking-evidence__head h3 {
  margin: 18px 0 20px;
  font-size: clamp(25px, 6.6vw, 36px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05em;
  word-break: keep-all;
}

.ranking-evidence__head p {
  max-width: 540px;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}

.ranking-evidence__gallery {
  display: flex;
  gap: 12px;
  margin-right: calc(50% - 50vw);
  padding-right: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.ranking-evidence__gallery::-webkit-scrollbar {
  display: none;
}

.ranking-evidence__gallery figure {
  flex: 0 0 min(76vw, 290px);
  min-width: 0;
  scroll-snap-align: start;
}

.ranking-evidence__gallery a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: #f7f5ef;
}

.ranking-evidence__gallery img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.88);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.ranking-evidence__gallery a:hover img {
  transform: scale(1.015);
  filter: saturate(1);
}

.ranking-evidence__gallery figcaption {
  padding-top: 13px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.7;
}

.ranking-evidence__gallery figcaption b,
.ranking-evidence__gallery figcaption span {
  display: block;
}

.ranking-evidence__gallery figcaption b {
  color: #9a782d;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.promise-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 0 16px;
  fill: none;
  stroke: #5a9f92;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Press distribution */
.press {
  overflow: hidden;
  background: #f7f3ec;
}

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

.press .section-head {
  margin-left: 0;
}

.press-feature {
  display: grid;
  gap: 34px;
  padding: 20px 0 46px;
  border-bottom: 1px solid var(--hairline);
}

.press-feature__visual {
  position: relative;
  min-height: 340px;
  padding: 0 44px 58px 0;
}

.press-feature__story {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(128, 204, 188, 0.38);
  background: #d8ece9;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.82) contrast(0.96);
}

.press-feature__book {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 126px;
  margin: 0;
}

.press-feature__book img {
  width: 100%;
  aspect-ratio: 5 / 8;
  border: 5px solid #fff;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 20px 42px rgba(56, 74, 70, 0.2);
}

.press-feature__book figcaption {
  margin-top: 9px;
  color: #8c6c29;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: center;
}

.press-feature__copy {
  align-self: center;
}

.press-feature__label {
  display: block;
  margin-bottom: 18px;
  color: #4f988d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.press-feature__copy h3 {
  margin-bottom: 22px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(29px, 8vw, 42px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.press-feature__copy p {
  color: var(--muted);
  font-size: 12px;
  line-height: 2.15;
}

.press-feature__copy .press-feature__title {
  margin-top: 24px;
  padding-left: 16px;
  border-left: 2px solid rgba(128, 204, 188, 0.7);
  color: var(--ink);
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
}

.press-evidence {
  padding: 38px 0 8px;
}

.press-evidence__head {
  margin-bottom: 16px;
}

.press-evidence__head > span {
  display: block;
  margin-bottom: 10px;
  color: #4f988d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.press-evidence__head h3 {
  margin-bottom: 10px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 6.4vw, 34px);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.press-evidence__head p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}

.press-evidence__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 12px;
  max-width: 780px;
}

.press-evidence figure {
  margin: 0;
}

.press-evidence figure a {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(62, 58, 57, 0.12);
  background: #fff;
  box-shadow: 0 9px 22px rgba(56, 74, 70, 0.08);
}

.press-evidence figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms ease;
}

.press-evidence figure a:hover img {
  transform: scale(1.018);
}

.press-evidence figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 7px;
  font-family: 'Noto Sans JP', sans-serif;
}

.press-evidence figcaption b {
  color: var(--ink);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.press-evidence figcaption span {
  flex: 0 0 auto;
  color: #5a9f92;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.press-outlets {
  display: flex;
  gap: 8px;
  margin: 28px -20px 0 0;
  padding-right: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.press-outlets::-webkit-scrollbar {
  display: none;
}

.press-outlets span {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(128, 204, 188, 0.46);
  background: rgba(255, 255, 255, 0.65);
  color: #5d7772;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.press-message {
  display: grid;
  gap: 10px;
  margin-top: 52px;
  padding: 26px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.press-message b {
  width: fit-content;
  justify-self: start;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
}

.press-message span,
.press-note {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}

.press-note {
  margin-top: 12px;
}

/* Compare */
.compare {
  background: var(--mist);
}

.compare .section-head em {
  color: #db527d;
  font-style: normal;
}

.reasons-snapshot {
  display: grid;
  gap: 14px;
  margin-bottom: 70px;
}

.reason-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 25px 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(128, 204, 188, 0.45);
  background: rgba(255, 255, 255, 0.84);
}

.reason-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  background: var(--teal);
}

.reason-card--stock::after,
.reason-card--after::after {
  background: #ef7fa3;
}

.reason-card--movie::after {
  background: #ebd65d;
}

.reason-card__mark {
  color: #65aa9e;
  font-family: 'Noto Sans JP', sans-serif;
}

.reason-card__mark span {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.reason-card__mark svg {
  display: block;
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.reason-card__label {
  margin-bottom: 8px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.reason-card h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 6.2vw, 26px);
  font-weight: 400;
  line-height: 1.55;
}

.reason-card__copy > p:not(.reason-card__label) {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.reason-card strong {
  display: inline-block;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid rgba(128, 204, 188, 0.5);
  color: var(--ink);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.compare-detail-head {
  margin-bottom: 22px;
}

.compare-detail-head span {
  display: block;
  margin-bottom: 10px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.compare-detail-head h3 {
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 400;
}

.compare-detail-head p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}

.publisher-checklist {
  display: grid;
  margin-bottom: 18px;
  border-top: 1px solid var(--hairline);
}

.publisher-checklist article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 5px 12px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--hairline);
}

.publisher-checklist article > span {
  grid-row: 1 / span 2;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.publisher-checklist h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.publisher-checklist p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.compare-table-wrap {
  border: 1px solid var(--hairline);
  border-radius: 0;
  background: var(--paper);
}

table.compare-table th,
table.compare-table td {
  padding: 16px 12px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  font-weight: 400;
}

table.compare-table th {
  background: transparent;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
}

table.compare-table .col-us {
  background: rgba(128, 204, 188, 0.12);
  color: var(--ink);
  font-weight: 500;
}

.compare-note {
  color: var(--muted);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.9;
}

@media (min-width: 720px) {
  .reasons-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-card {
    min-height: 310px;
  }

  .publisher-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--hairline);
  }

  .publisher-checklist article {
    min-height: 136px;
    padding: 24px 22px;
    border-right: 1px solid var(--hairline);
  }
}

@media (min-width: 1100px) {
  .reasons-snapshot {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 86px;
  }

  .reason-card {
    display: block;
    min-height: 430px;
    padding: 30px 24px 28px;
  }

  .reason-card__mark {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 34px;
  }

  .reason-card__mark span {
    margin-bottom: 0;
  }

  .reason-card h3 {
    font-size: 24px;
  }

  .reason-card__copy > p:not(.reason-card__label) {
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .compare-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  table.compare-table {
    min-width: 0;
  }

  table.compare-table thead {
    display: none;
  }

  table.compare-table tbody,
  table.compare-table tr,
  table.compare-table td {
    display: block;
    width: 100%;
  }

  table.compare-table tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 14px;
    border: 1px solid var(--hairline);
    background: var(--paper);
  }

  table.compare-table td,
  table.compare-table td:first-child {
    padding: 12px 7px;
    border-right: 1px solid var(--hairline);
    border-bottom: 0;
    text-align: center;
    font-size: 11px;
    line-height: 1.55;
  }

  table.compare-table td:first-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 13px;
  }

  table.compare-table td:last-child {
    border-right: 0;
  }

  table.compare-table td[data-label]::before {
    content: attr(data-label);
    display: block;
    min-height: 2.8em;
    margin-bottom: 5px;
    color: var(--muted);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.02em;
  }
}

/* LINE benefits */
.offer {
  background: #edf4f3;
  color: var(--ink);
}

.offer .section-head h2,
.offer .section-head p {
  color: inherit;
}

.offer-grid {
  gap: 0;
  margin-bottom: 44px;
  border-top: 1px solid rgba(62, 58, 57, 0.18);
  border-bottom: 1px solid rgba(62, 58, 57, 0.18);
}

.offer-card {
  padding: 30px 18px;
  border-right: 1px solid rgba(62, 58, 57, 0.18);
  border-bottom: 1px solid rgba(62, 58, 57, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.offer-card:nth-child(even) {
  border-right: 0;
}

.offer-card .icon {
  margin-bottom: 22px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.offer-card h3 {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
}

.offer .cta-note {
  color: var(--muted);
}

/* FAQ */
.faq {
  background: var(--paper);
}

.faq-item {
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  border-radius: 0;
  background: transparent;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--hairline);
}

.faq-item .q,
.faq-item .a {
  gap: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
}

.faq-item .q .letter,
.faq-item .a .letter {
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 500;
}

/* Closing */
.closing {
  position: relative;
  overflow: hidden;
  background: var(--mist);
  color: var(--ink);
}

.closing::before {
  content: "";
  position: absolute;
  inset: 8% -20%;
  border: 1px solid rgba(128, 204, 188, 0.28);
  border-radius: 50%;
  transform: rotate(-7deg);
  pointer-events: none;
}

.closing .container {
  position: relative;
}

.closing-msg {
  max-width: 920px;
  margin: 0 auto 58px;
  gap: 42px;
  align-items: flex-end;
  padding: 38px 42px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.76), rgba(244,232,236,0.34));
}

.closing-msg img {
  width: clamp(180px, 23vw, 248px);
  height: auto;
  align-self: flex-end;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 18px 20px rgba(53, 68, 64, 0.12));
}

.closing-msg__copy {
  flex: 1;
  padding-bottom: 34px;
}

.closing-msg--company .closing-msg__copy {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0 38px;
}

.closing-msg__copy > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 2.05;
}

.closing-msg__copy .closing-msg__kicker {
  margin-bottom: 18px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.closing-msg__copy .closing-msg__lead {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.75;
}

.closing-msg .name {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 11px;
}

.closing-msg .name b {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.closing-msg .name span {
  color: var(--muted);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.closing-msg__copy .company-signature {
  margin: 26px 0 0;
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.closing h2 {
  color: var(--ink);
  font-size: clamp(27px, 4.5vw, 40px);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.closing-purpose {
  margin-bottom: 22px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
}

.closing h2.closing-vision {
  max-width: 760px;
  font-size: clamp(31px, 7vw, 56px);
  line-height: 1.65;
  letter-spacing: 0.13em;
}

.closing-vision-copy {
  max-width: 610px;
  margin: 24px 0 64px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2.2;
}

.closing h2.closing-cta-title {
  font-size: clamp(25px, 4.5vw, 36px);
}

@media (max-width: 639px) {
  .closing-msg {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 28px 22px 0;
  }

  .closing-msg img {
    width: 164px;
    align-self: center;
  }

  .closing-msg__copy {
    padding-bottom: 26px;
  }

  .closing-msg--company .closing-msg__copy {
    padding: 0 0 26px;
  }

  .closing-msg__copy > p {
    font-size: 11px;
    line-height: 2;
  }

  .closing-msg .name {
    flex-direction: column;
    gap: 3px;
  }
}

footer {
  background: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
}

@media (prefers-reduced-motion: reduce) {
  .book-video__signal span {
    animation: none;
    opacity: 0.75;
    transform: none;
  }

  .book-video__sound[data-audio-state="muted"] {
    animation: none;
  }

  .book-video__book,
  .book-video__inside,
  .book-video__cover {
    transition-duration: 1ms;
    transition-delay: 0ms;
  }
}

/* ===== LINE limited gift bundle ===== */
.offer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 244, 98, 0.28) 0 7%, transparent 7.2%),
    radial-gradient(circle at 90% 80%, rgba(236, 115, 168, 0.16) 0 10%, transparent 10.2%),
    #e6f3f0;
  color: var(--ink);
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(90, 159, 146, 0.2) 0.8px, transparent 0.8px);
  background-size: 13px 13px;
  opacity: 0.22;
}

.offer .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.offer .section-head {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.offer .section-head .eyebrow {
  margin-inline: auto;
  color: #4f988d;
}

.offer .section-head .eyebrow::before {
  background: #4f988d;
}

.offer .section-head h2,
.offer .section-head p {
  color: var(--ink);
}

.offer .section-head h2 {
  margin-top: 6px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.offer .section-head h2 em {
  display: inline-block;
  position: relative;
  color: #e55477;
  font-style: normal;
}

.offer .section-head h2 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: #ec73a8;
}

.offer .section-head p {
  max-width: 690px;
  margin-inline: auto;
  color: var(--muted);
}

.offer .section-head .offer-kicker {
  margin: 0 0 6px;
  color: #4f988d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.offer-bundle {
  display: grid;
  gap: 42px;
}

.offer-showcase {
  position: relative;
  min-height: 510px;
  padding: 64px 24px 26px;
  border: 1px solid rgba(255,255,255,0.32);
  background: #f9f4e9;
  box-shadow: 0 28px 70px rgba(3, 36, 34, 0.32);
  color: var(--ink);
}

.offer-showcase::before {
  content: "SPECIAL GIFT SET";
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: rgba(90, 159, 146, 0.16);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(30px, 7vw, 66px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.9;
  white-space: nowrap;
}

.offer-showcase__label {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 24px;
  display: grid;
  min-width: 142px;
  padding: 12px 18px 13px;
  background: #ec73a8;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: 7px 7px 0 #fff56b;
}

.offer-showcase__label span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.offer-showcase__label strong {
  font-size: 19px;
  letter-spacing: 0.08em;
}

.offer-visual {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid #fff;
  background: #fff;
  box-shadow: 0 14px 28px rgba(62,58,57,0.2);
}

.offer-visual img,
.offer-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 12px 9px;
  background: linear-gradient(transparent, rgba(20, 62, 59, 0.86));
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.offer-visual figcaption span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 7px;
  border-radius: 50%;
  background: #fff56b;
  color: #3e3a39;
}

.offer-visual--movie {
  z-index: 3;
  top: 78px;
  right: 8%;
  left: 8%;
  aspect-ratio: 16 / 9;
  transform: rotate(-1.2deg);
}

.offer-visual--movie video {
  background: #d9e8e5;
}

.offer-visual--team {
  z-index: 2;
  bottom: 38px;
  left: 3%;
  width: 42%;
  aspect-ratio: 4 / 3;
  transform: rotate(-5deg);
}

.offer-visual--team img {
  object-position: center 35%;
}

.offer-visual--process {
  z-index: 4;
  right: 1%;
  bottom: 23px;
  width: 45%;
  aspect-ratio: 1.42;
  transform: rotate(4deg);
}

.offer-visual--process img {
  object-fit: cover;
}

.offer-showcase__seal {
  position: absolute;
  z-index: 6;
  top: 52%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border: 3px solid #4f988d;
  border-radius: 50%;
  background: #fff56b;
  color: #3e3a39;
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: 0 10px 28px rgba(62,58,57,0.22);
  transform: translate(-50%, -50%) rotate(-7deg);
}

.offer-showcase__seal b {
  font-size: 48px;
  line-height: 1;
}

.offer-showcase__seal span {
  margin-left: 5px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.offer-details {
  padding: 30px 24px 28px;
  background: rgba(250, 251, 249, 0.97);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(3, 36, 34, 0.24);
}

.offer-details__title {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
}

.offer-details__title span {
  display: block;
  margin-bottom: 4px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid rgba(62,58,57,0.18);
  border-bottom: 0;
}

.offer-card,
.offer-card:nth-child(even) {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 2px 16px;
  padding: 20px 2px;
  border-right: 0;
  border-bottom: 1px solid rgba(62,58,57,0.16);
  background: transparent;
}

.offer-card .icon {
  grid-row: 1 / span 2;
  margin: 0;
  color: #ec73a8;
  font-size: 22px;
  font-weight: 700;
}

.offer-card .icon span {
  display: block;
  margin-top: 2px;
  color: #5a9f92;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.offer-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.offer-card > p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.9;
}

.offer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 18px;
  padding: 11px 14px;
  background: #fff8a7;
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}

.offer-note span {
  padding: 3px 7px;
  background: #ec73a8;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
}

.offer-note strong {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.offer .cta-wrap {
  margin-top: 0;
}

.offer .cta-btn {
  width: 100%;
  max-width: none;
}

.offer .cta-note {
  color: var(--muted);
}

@media (min-width: 760px) {
  .offer .section-head {
    margin-bottom: 68px;
  }

  .offer-bundle {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 34px;
  }

  .offer-details {
    padding: 38px 34px 34px;
  }

  .offer-details__title {
    font-size: 20px;
  }
}

@media (max-width: 639px) {
  .offer {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .offer .section-head {
    margin-bottom: 38px;
  }

  .offer .section-head h2 {
    font-size: 31px;
  }

  .offer .section-head p {
    font-size: 12px;
    line-height: 1.9;
  }

  .offer .section-head .offer-kicker {
    font-size: 10px;
  }

  .offer-bundle {
    gap: 22px;
  }

  .offer-showcase {
    min-height: 425px;
    padding-inline: 12px;
  }

  .offer-showcase::before {
    left: 12px;
    bottom: 15px;
    font-size: 31px;
  }

  .offer-showcase__label {
    left: 14px;
    min-width: 126px;
    padding: 9px 13px 10px;
  }

  .offer-showcase__label strong {
    font-size: 17px;
  }

  .offer-visual {
    border-width: 5px;
  }

  .offer-visual--movie {
    top: 72px;
    right: 5%;
    left: 5%;
  }

  .offer-visual--team {
    bottom: 50px;
    left: 2%;
    width: 47%;
  }

  .offer-visual--process {
    right: 0;
    bottom: 41px;
    width: 51%;
  }

  .offer-showcase__seal {
    top: 54%;
    width: 88px;
    height: 88px;
  }

  .offer-showcase__seal b {
    font-size: 38px;
  }

  .offer-showcase__seal span {
    font-size: 7px;
  }

  .offer-details {
    padding: 26px 18px 24px;
  }

  .offer-card,
  .offer-card:nth-child(even) {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 2px 12px;
    padding: 18px 0;
  }

  .offer-card .icon {
    font-size: 20px;
  }

  .offer-card h3 {
    font-size: 14px;
  }

  .offer-card > p {
    font-size: 10px;
  }

  .offer-note {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .offer-note span {
    width: fit-content;
    margin-inline: auto;
  }
}

@media (min-width: 760px) {
  section {
    padding: 104px 0;
  }

  .container {
    padding-inline: 48px;
  }

  .proud-facts {
    padding: 76px 0 64px;
  }

  .proud-facts__inner {
    width: min(1180px, calc(100% - 96px));
    display: grid;
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 2.3fr);
    column-gap: 54px;
  }

  .proud-facts__lead {
    margin: 0;
  }

  .proud-facts__lead h2 {
    font-size: 30px;
  }

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

  .proud-facts__grid article {
    display: block;
    min-height: 190px;
    padding: 32px 28px;
    border-right: 1px solid rgba(62, 58, 57, 0.17);
  }

  .proud-facts__grid article:last-child {
    border-right: 0;
  }

  .proud-facts__number {
    margin-bottom: 24px;
    font-size: 58px;
  }

  .proud-facts__media,
  .proud-facts__note {
    grid-column: 2;
  }

  .empathy .container {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 60px;
    align-items: start;
  }

  .empathy .section-head h2 {
    font-size: 32px;
  }

  .desktop-break {
    display: initial;
  }

  .empathy .section-head {
    position: static;
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .empathy-list {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .empathy .lead {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    margin: 0;
  }

  .feeling-grid {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(62, 58, 57, 0.15);
  }

  .feeling-grid article {
    min-height: 310px;
    padding: 38px 28px;
    border-right: 1px solid rgba(62, 58, 57, 0.15);
    border-bottom: 0;
  }

  .feeling-grid article:last-child {
    border-right: 0;
  }

  .women-publishing {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 70px;
  }

  .women-publishing__note {
    padding-bottom: 8px;
  }

  .story-gallery {
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: repeat(3, 1fr);
    height: 410px;
    margin-top: 82px;
  }

  .story-gallery__intro {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px 28px;
  }

  .story-photo,
  .story-photo img {
    min-height: 0;
    height: 100%;
  }

  .path-flow {
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
  }

  .path-step,
  .path-step:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 22px;
    border: 0;
    border-right: 1px solid var(--hairline);
  }

  .path-step:last-child {
    border-right: 0;
  }

  .path-copy {
    padding: 0 0 28px;
  }

  .book-video {
    gap: 52px;
    padding: 68px clamp(32px, 5vw, 60px);
  }

  .book-video__visual {
    min-height: 0;
  }

  .book-video__book {
    width: min(820px, 100%);
  }

  .book-video__copy h3 {
    font-size: clamp(32px, 3.35vw, 43px);
  }

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

  .promise-card {
    min-height: 330px;
    border-right: 1px solid var(--hairline);
    border-bottom: 0;
  }

  .promise-card:last-child {
    border-right: 0;
  }

  .team__inner,
  .press__inner {
    width: min(1180px, calc(100% - 96px));
  }

  .team .section-head {
    display: grid;
    grid-template-columns: minmax(390px, 1fr) minmax(320px, 0.8fr);
    column-gap: 70px;
    align-items: end;
  }

  .team .section-head .eyebrow,
  .team .section-head h2 {
    grid-column: 1;
  }

  .team .section-head p {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    margin: 0 0 5px;
  }

  .team-group {
    aspect-ratio: 16 / 7.2;
  }

  .team-roles {
    justify-content: center;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .team-portraits {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .team-person {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
    min-height: 500px;
  }

  .team-person img {
    height: 100%;
    max-height: none;
  }

  .team-person > div {
    align-self: start;
    padding: 28px;
  }

  .team-person p {
    font-size: 11px;
  }

  .community__inner {
    width: min(1180px, calc(100% - 96px));
  }

  .community .section-head {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.8fr);
    column-gap: 72px;
    align-items: end;
  }

  .community .section-head .eyebrow,
  .community .section-head h2 {
    grid-column: 1;
  }

  .community .section-head p {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    margin: 0 0 4px;
  }

  .community-gallery {
    grid-template-columns: 1.18fr 0.82fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
  }

  .community-photo--group {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: auto;
  }

  .community-photo--moment {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: auto;
  }

  .community-photo--award {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: auto;
  }

  .community-photo--journey {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: auto;
  }

  .community-photo figcaption {
    padding: 56px 22px 18px;
    font-size: 12px;
  }

  .publication-gallery {
    display: block;
    padding: 80px max(48px, calc((100vw - 1180px) / 2));
  }

  .publication-gallery__intro {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: end;
    gap: 32px;
    margin-bottom: 38px;
  }

  .publication-gallery__intro p {
    margin-top: 0;
    font-size: 25px;
  }

  .publication-gallery__track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
  }

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

  .ranking-evidence {
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 2fr);
    align-items: start;
    gap: 46px;
  }

  .ranking-evidence__head h3 {
    font-size: 28px;
  }

  .ranking-evidence__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-right: 0;
    padding-right: 0;
    overflow: visible;
  }

  .ranking-evidence__gallery figure {
    min-width: 0;
  }

  .press .section-head {
    max-width: 820px;
  }

  .press-feature {
    grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
    align-items: center;
    gap: 60px;
    padding: 26px 0 60px;
  }

  .press-feature__visual {
    min-height: 500px;
    padding: 0 104px 78px 0;
  }

  .press-feature__story {
    height: auto;
  }

  .press-feature__book {
    width: 190px;
  }

  .press-feature__copy h3 {
    font-size: 35px;
    letter-spacing: 0.02em;
  }

  .press-evidence {
    padding-top: 52px;
  }

  .press-evidence__head {
    margin-bottom: 18px;
  }

  .press-evidence__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .press-outlets {
    flex-wrap: wrap;
    margin-right: 0;
    padding-right: 0;
    overflow: visible;
  }

  .press-message {
    grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.4fr);
    align-items: center;
    gap: 60px;
  }

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

  .offer-card,
  .offer-card:nth-child(even) {
    border-right: 1px solid rgba(62, 58, 57, 0.18);
    border-bottom: 0;
  }

  .offer-card:last-child {
    border-right: 0;
  }
}

/* ===== Hero: handcrafted love-earth artwork ===== */
.hero {
  min-height: 890px;
  padding: 70px 0 120px;
  background: #f7f1e8;
}

.hero::before,
.hero::after {
  display: none;
}

.hero .circular-gallery {
  width: min(100%, 1440px);
  min-height: 680px;
  aspect-ratio: 1804 / 872;
  overflow: visible;
  --earth-center-x: 50%;
  --earth-center-y: 50%;
  --art-earth-x: 47.95%;
  --art-earth-y: 52.47%;
}

.hero .gallery-card {
  top: var(--earth-center-y);
  left: var(--earth-center-x);
  width: clamp(128px, 9.5vw, 138px);
}

.hero .hero-earth {
  top: var(--earth-center-y);
  left: var(--earth-center-x);
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: translate(calc(0% - var(--art-earth-x)), calc(0% - var(--art-earth-y)));
}

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

.hero .gallery-stage {
  inset: 0;
}

.hero .hero-content {
  position: absolute;
  top: var(--earth-center-y);
  left: var(--earth-center-x);
  width: min(44vw, 440px);
  padding: 54px 42px 48px;
  transform: translate(-50%, -50%);
  border: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 253, 248, 0.05) 0 18%,
    rgba(255, 253, 248, 0.02) 38%,
    rgba(255, 253, 248, 0.005) 52%,
    transparent 100%
  );
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
}

.hero .hero-content h1,
.hero .hero-content p {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.98),
    0 1px 3px rgba(255, 255, 255, 0.98);
}

.hero .hero-content h1 .accent {
  margin-left: auto;
}

@media (min-width: 640px) {
  .hero {
    min-height: 890px;
  }

  .hero .circular-gallery {
    min-height: 700px;
  }

  .hero .hero-content {
    width: min(44vw, 440px);
  }
}

@media (min-width: 640px) and (max-width: 980px) {
  .hero .hero-earth {
    clip-path: inset(0 30% 0 22%);
  }
}

@media (max-width: 639px) {
  .hero {
    min-height: 0;
    padding: 18px 0 30px;
  }

  .hero .circular-gallery {
    height: 690px;
    min-height: 690px;
    aspect-ratio: auto;
    --earth-center-x: 50%;
    --earth-center-y: 45%;
  }

  .hero .hero-earth {
    top: var(--earth-center-y);
    left: 50%;
    width: auto;
    height: 88vw;
    max-width: none;
    max-height: 344px;
    object-fit: contain;
    clip-path: inset(0 30% 0 24%);
    transform: translate(calc(0% - var(--art-earth-x)), calc(0% - var(--art-earth-y)));
  }

  .hero .hero-fukiko-mobile {
    display: block;
    position: absolute;
    z-index: 3;
    top: 68px;
    left: 73%;
    width: auto;
    height: 110px;
    max-width: none;
    opacity: 1;
    filter: none;
    transform-origin: 50% 50%;
    transform: translate(-50%, -50%) rotate(-58deg);
    pointer-events: none;
    user-select: none;
  }

  .hero .gallery-stage {
    inset: 0;
  }

  .hero .gallery-card {
    width: clamp(58px, 16vw, 64px);
  }

  .hero .hero-content {
    z-index: 4;
    top: calc(var(--earth-center-y) - 84px);
    left: var(--earth-center-x);
    width: calc(100% - 104px);
    max-width: 286px;
    padding: 0;
    transform: translateX(-50%);
    text-align: center;
  }

  .hero .hero-content h1 {
    font-size: clamp(19px, 6.15vw, 24px);
    line-height: 1.58;
    margin-bottom: 12px;
    letter-spacing: 0.045em;
  }

  .hero .hero-content h1 .accent {
    margin-top: 5px;
    padding-bottom: 5px;
  }

  .hero p.sub {
    margin-bottom: 0;
    font-size: clamp(9px, 2.8vw, 11px);
    letter-spacing: 0.055em;
  }

  .hero .cta-wrap {
    position: absolute;
    top: 350px;
    left: 50%;
    width: min(344px, calc(100vw - 32px));
    margin: 0;
    transform: translateX(-50%);
  }

  .hero .cta-btn {
    max-width: none;
    padding: 15px 12px;
    font-size: clamp(13px, 4vw, 16px);
  }

  .hero .cta-note {
    margin-top: 10px;
    font-size: 10px;
  }

  .hero .hero-content h1 .accent {
    margin-left: auto;
  }
}

@media (max-width: 350px) {
  .hero .hero-fukiko-mobile {
    left: 71%;
    height: 100px;
  }

  .hero .gallery-card {
    width: 56px;
  }
}

/* ===== Scroll-led motion and attention cues ===== */
.motion-ready [data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 34px;
  --reveal-scale: 0.985;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 1.35s cubic-bezier(.22, .7, .18, 1) var(--reveal-delay, 0ms),
    transform 1.6s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="left"] {
  --reveal-x: -44px;
  --reveal-y: 8px;
}

.motion-ready [data-reveal="right"] {
  --reveal-x: 44px;
  --reveal-y: 8px;
}

.motion-ready [data-reveal="zoom"] {
  --reveal-y: 18px;
  --reveal-scale: 0.94;
}

.motion-ready [data-reveal].is-in-view {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  will-change: auto;
}

.motion-ready .section-head.is-in-view .eyebrow,
.motion-ready .feeling-lead.is-in-view .eyebrow {
  animation: motion-letter-open 1.6s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

.motion-ready .myth-card.is-in-view .x {
  animation: motion-cross-arrive 1.05s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 140ms);
}

.motion-ready .path-step.is-in-view .path-visual,
.motion-ready .promise-card.is-in-view .num {
  animation: motion-soft-pop 1s cubic-bezier(.16, 1.4, .3, 1) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 320ms);
}

.motion-ready .publication-gallery__cover {
  animation: none;
}

.motion-ready .is-motion-active .community-photo img,
.motion-ready .is-motion-active .team-group img,
.motion-ready .is-motion-active .result-visual img,
.motion-ready .is-motion-active .press-feature__story {
  animation: motion-photo-breathe 8s ease-in-out infinite alternate;
}

.motion-ready .is-motion-active .community-photo:nth-child(2n) img {
  animation-direction: alternate-reverse;
  animation-duration: 9.5s;
}

.motion-ready .cta-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: motion-cta-pulse 4.8s ease-in-out infinite;
}

.motion-ready .cta-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -45%;
  bottom: -45%;
  left: -42%;
  width: 28%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: skewX(-18deg) translateX(0);
  animation: motion-cta-sheen 4.8s ease-in-out infinite;
}

.motion-ready .press-message.is-in-view b,
.motion-ready .path-message.is-in-view b,
.motion-ready .women-publishing.is-in-view b {
  background-image: linear-gradient(transparent 68%, rgba(240, 132, 166, 0.24) 68%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  animation: motion-highlight 1.55s ease-out 0.85s forwards;
}

.motion-ready .compare-table-wrap.is-in-view .col-us {
  animation: motion-column-focus 1.55s ease-out both;
  animation-delay: 0.75s;
}

.motion-ready .section-head h2 .mark::after {
  transform: scaleX(0);
  transform-origin: left center;
}

.motion-ready .section-head.is-in-view h2 .mark::after {
  animation: motion-line-draw 1.35s cubic-bezier(.16, 1, .3, 1) 0.85s forwards;
}

.motion-ready .feeling-lead.is-in-view .motion-word--dance > span {
  animation: motion-character-dance 1.15s cubic-bezier(.2, 1.55, .38, 1) 0.55s both;
}

.motion-ready .feeling-lead.is-in-view .motion-word--dance > span:nth-child(2) {
  animation-delay: 0.75s;
}

.motion-ready .feeling-lead.is-in-view .motion-word--dance > span:nth-child(3) {
  animation-delay: 0.95s;
}

.motion-word--dance {
  display: inline-flex;
  color: #d85e8d;
}

.motion-word--dance > span {
  display: inline-block;
}

.motion-word--move {
  position: relative;
  display: inline-block;
  color: #5a9f92;
}

.motion-word--move::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.03em;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
}

.motion-ready .book-video__copy.is-in-view .motion-word--move,
.motion-ready .future-choice__decision.is-in-view .motion-word--move {
  animation: motion-word-move 1.35s cubic-bezier(.16, 1, .3, 1) 0.65s both;
}

.motion-ready .book-video__copy.is-in-view .motion-word--move::after,
.motion-ready .future-choice__decision.is-in-view .motion-word--move::after {
  animation: motion-line-draw 1.25s cubic-bezier(.16, 1, .3, 1) 1.35s forwards;
}

.motion-ready .future-choice__decision.is-in-view b {
  background-repeat: no-repeat;
  background-size: 0 100%;
  animation: motion-highlight 1.4s ease-out 1.5s forwards;
}

.motion-ready .proud-facts__number,
.motion-ready .stat-pill b {
  min-width: 2.2ch;
  font-variant-numeric: tabular-nums;
}

.motion-ready .proud-facts__number.is-scrambling,
.motion-ready .stat-pill b.is-scrambling {
  color: #d85e8d;
  text-shadow: 0 0 18px rgba(216, 94, 141, 0.24);
}

.motion-ready .proud-facts__number.is-counted,
.motion-ready .stat-pill b.is-counted {
  animation: motion-number-lock 0.7s cubic-bezier(.16, 1.4, .3, 1) both;
}

.motion-ready .faq-item.is-in-view .letter {
  animation: motion-soft-pop 0.85s cubic-bezier(.16, 1.4, .3, 1) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 350ms);
}

@keyframes motion-letter-open {
  from { letter-spacing: 0.32em; opacity: 0.35; }
  to { letter-spacing: 0.18em; opacity: 1; }
}

@keyframes motion-cross-arrive {
  from { opacity: 0; transform: rotate(-18deg) scale(0.7); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes motion-soft-pop {
  from { opacity: 0.25; transform: scale(0.72); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes motion-photo-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@keyframes motion-character-dance {
  0% { opacity: 0.25; transform: translateY(0) rotate(0); }
  38% { opacity: 1; transform: translateY(-0.34em) rotate(-7deg); }
  68% { transform: translateY(0.08em) rotate(4deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes motion-word-move {
  0% { opacity: 0.25; transform: translateX(-0.75em); }
  65% { opacity: 1; transform: translateX(0.12em); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes motion-line-draw {
  to { transform: scaleX(1); }
}

@keyframes motion-number-lock {
  0% { transform: scale(0.86); }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes motion-cta-sheen {
  0%, 68% { transform: skewX(-18deg) translateX(0); opacity: 0; }
  72% { opacity: 1; }
  88%, 100% { transform: skewX(-18deg) translateX(570%); opacity: 0; }
}

@keyframes motion-cta-pulse {
  0%, 64%, 100% { box-shadow: 0 8px 22px rgba(124, 177, 165, 0.24); }
  74% { box-shadow: 0 10px 30px rgba(124, 177, 165, 0.42), 0 0 0 0 rgba(124, 177, 165, 0.22); }
  84% { box-shadow: 0 8px 22px rgba(124, 177, 165, 0.26), 0 0 0 10px rgba(124, 177, 165, 0); }
}

@keyframes motion-highlight {
  to { background-size: 100% 100%; }
}

@keyframes motion-column-focus {
  0% { filter: saturate(0.65); }
  45% { filter: saturate(1.3) brightness(1.06); }
  100% { filter: none; }
}

@media (max-width: 639px) {
  .motion-ready [data-reveal="left"],
  .motion-ready [data-reveal="right"] {
    --reveal-x: 0px;
    --reveal-y: 28px;
  }

  .motion-ready [data-reveal] {
    transition-duration: 1.1s, 1.3s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .motion-ready *,
  .motion-ready *::before,
  .motion-ready *::after {
    animation: none !important;
  }
}

/* Keep the gift detail list readable after the wide-layout legacy grid rules. */
@media (min-width: 760px) {
  .offer-details .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-details .offer-card,
  .offer-details .offer-card:nth-child(even),
  .offer-details .offer-card:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(62,58,57,0.16);
  }
}

/* ===== The two futures: gentle urgency without fear ===== */
.future-choice {
  position: relative;
  overflow: hidden;
  background: #f5f1eb;
}

.future-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(76, 91, 102, 0.07) 0 50%, rgba(255, 213, 118, 0.13) 50% 100%),
    radial-gradient(circle at 78% 23%, rgba(236, 115, 168, 0.15), transparent 27%);
}

.future-choice .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.future-choice__head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.future-choice__head .eyebrow {
  margin-inline: auto;
}

.future-choice__head h2 {
  font-size: clamp(31px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.future-choice__head p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2.1;
}

.future-contrast {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.future-panel {
  position: relative;
  min-height: 430px;
  padding: 44px 34px 38px;
  border: 1px solid rgba(62, 58, 57, 0.15);
}

.future-panel__label {
  margin-bottom: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.future-panel h3 {
  min-height: 104px;
  margin-bottom: 30px;
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.future-panel ul {
  display: grid;
  gap: 17px;
  list-style: none;
}

.future-panel li {
  position: relative;
  padding-left: 22px;
  font-size: 12px;
  line-height: 1.9;
}

.future-panel li::before {
  content: "";
  position: absolute;
  top: 0.84em;
  left: 0;
  width: 10px;
  height: 1px;
  background: currentColor;
  opacity: 0.52;
}

.future-panel--wait {
  background: #e7e8e7;
  color: #666b6c;
}

.future-panel--wait::after {
  content: "あとで";
  position: absolute;
  right: 22px;
  bottom: 8px;
  color: rgba(76, 91, 102, 0.07);
  font-size: 68px;
  letter-spacing: 0;
}

.future-panel--wait .future-panel__label {
  color: #747f83;
}

.future-panel--begin {
  border-color: rgba(218, 151, 18, 0.34);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 245, 107, 0.55), transparent 23%),
    #fffdf5;
  color: var(--ink);
  box-shadow: 0 24px 56px rgba(145, 107, 39, 0.13);
}

.future-panel--begin::after {
  content: "今日";
  position: absolute;
  right: 22px;
  bottom: 8px;
  color: rgba(236, 115, 168, 0.09);
  font-size: 68px;
  letter-spacing: 0;
}

.future-panel--begin .future-panel__label {
  color: #d85e8d;
}

.future-panel--begin h3 {
  color: #b64a73;
}

.future-contrast__today {
  display: none;
}

.future-choice__decision {
  max-width: 760px;
  margin: 46px auto 0;
  text-align: center;
}

.future-choice__decision > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}

.future-choice__decision .future-choice__lead {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.9;
}

.future-choice__lead b {
  color: #d85e8d;
  font-weight: 500;
  background: linear-gradient(transparent 70%, rgba(255, 245, 107, 0.72) 70%);
}

.future-choice__decision .cta-btn {
  width: min(100%, 520px);
  margin: 28px auto 0;
}

.future-choice__decision small {
  display: block;
  margin-top: 10px;
  color: #827d79;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
}

@media (min-width: 760px) {
  .future-contrast {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .future-contrast__today {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(62,58,57,0.2);
    border-radius: 50%;
    background: #f5f1eb;
    color: var(--ink);
    font-size: 12px;
    transform: translate(-50%, -50%);
  }

  .future-panel--wait {
    transform: translateY(12px);
  }

  .future-panel--begin {
    transform: translateY(-12px);
  }
}

@media (max-width: 639px) {
  .future-choice {
    padding-block: 84px;
  }

  .future-choice__head {
    margin-bottom: 38px;
    text-align: left;
  }

  .future-choice__head .eyebrow {
    margin-inline: 0;
  }

  .future-choice__head h2 {
    font-size: 29px;
    letter-spacing: 0.06em;
  }

  .future-choice__head p {
    font-size: 11px;
  }

  .future-contrast {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
  }

  .future-panel {
    min-width: 0;
    min-height: 550px;
    padding: 27px 13px 30px;
  }

  .future-panel__label {
    min-height: 2.8em;
    margin-bottom: 20px;
    font-size: 7px;
    line-height: 1.4;
    letter-spacing: 0.12em;
  }

  .future-panel h3 {
    min-height: 142px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }

  .future-panel__line {
    white-space: nowrap;
  }

  .future-panel ul {
    gap: 14px;
  }

  .future-panel li {
    padding-left: 12px;
    font-size: clamp(9.5px, 2.65vw, 10.5px);
    line-height: 1.85;
  }

  .future-panel li::before {
    width: 6px;
  }

  .future-panel--wait::after,
  .future-panel--begin::after {
    right: 8px;
    bottom: 3px;
    font-size: 38px;
  }

  .future-choice__decision {
    margin-top: 38px;
    text-align: left;
  }

  .future-choice__decision .future-choice__lead {
    font-size: 18px;
  }

  .future-choice__decision .cta-btn,
  .future-choice__decision small {
    text-align: center;
  }
}

@media (max-width: 359px) {
  .future-panel {
    padding-inline: 11px;
  }

  .future-panel h3 {
    font-size: 13px;
    letter-spacing: 0;
  }
}

/* ===== LINE gift: light Tokitsukaze editorial world ===== */
.offer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 12%, rgba(255, 245, 107, 0.72) 0 72px, transparent 73px),
    radial-gradient(circle at 96% 84%, rgba(236, 115, 168, 0.18) 0 170px, transparent 171px),
    linear-gradient(135deg, #f7fbfa 0%, #eef8f6 48%, #fff9ef 100%);
  color: var(--ink);
}

.offer::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(90, 159, 146, 0.34);
  background: none;
  opacity: 1;
  pointer-events: none;
}

.offer::after {
  content: "TOKITSUKAZE  /  LINE LIMITED";
  position: absolute;
  top: 50%;
  right: 6px;
  color: rgba(90, 159, 146, 0.48);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  pointer-events: none;
}

.offer .container {
  max-width: 1160px;
}

.offer .section-head {
  max-width: 760px;
  margin-bottom: 64px;
}

.offer .section-head .eyebrow {
  color: #5a9f92;
}

.offer .section-head .eyebrow::before {
  background: #5a9f92;
}

.offer .section-head h2,
.offer .section-head p,
.offer .section-head .offer-kicker {
  color: var(--ink);
}

.offer .section-head h2 em {
  color: #e26098;
}

.offer .section-head h2 em::after {
  bottom: 0;
  height: 7px;
  background: rgba(255, 245, 107, 0.82);
  z-index: -1;
}

.offer .section-head p {
  color: var(--muted);
}

.offer-bundle {
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 4vw, 56px);
}

.offer-showcase {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(90, 159, 146, 0.42);
  background: #fff;
  box-shadow: 20px 22px 0 rgba(129, 202, 191, 0.2), 0 24px 54px rgba(51, 93, 88, 0.12);
  color: var(--ink);
}

.offer-showcase::before {
  content: none;
}

.offer-showcase__eyebrow {
  margin: 0 0 12px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.offer-showcase__art {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(62, 58, 57, 0.13);
  background: #7fc8bd;
}

.offer-showcase__art img {
  display: block;
  width: 100%;
  height: auto;
}

.offer-showcase__caption {
  display: grid;
  gap: 4px;
  padding: 16px 4px 2px;
}

.offer-showcase__caption span {
  color: #e26098;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.offer-showcase__caption strong {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.offer-showcase__seal {
  top: -25px;
  right: -25px;
  left: auto;
  display: grid;
  width: 92px;
  height: 92px;
  border: 0;
  background: #fff56b;
  color: #3e3a39;
  box-shadow: 0 9px 0 rgba(236, 115, 168, 0.7);
  transform: rotate(7deg);
  text-align: center;
}

.offer-showcase__seal b {
  margin-bottom: -13px;
  font-size: 42px;
  line-height: 1;
}

.offer-showcase__seal span {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.offer-details {
  padding: 38px 36px 34px;
  border: 1px solid rgba(90, 159, 146, 0.34);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 60px rgba(51, 93, 88, 0.1);
}

.offer-details__title {
  margin-bottom: 24px;
  font-size: 20px;
}

.offer-details__title span {
  color: #5a9f92;
}

.offer-details .offer-grid {
  border-top-color: rgba(90, 159, 146, 0.3);
}

.offer-details .offer-card,
.offer-details .offer-card:nth-child(even),
.offer-details .offer-card:last-child {
  position: relative;
  grid-template-columns: 78px minmax(0, 1fr);
  padding: 19px 4px;
  border-bottom-color: rgba(90, 159, 146, 0.22);
}

.offer-details .offer-card::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -1px;
  width: 36px;
  height: 3px;
  background: var(--gift-accent, #ec73a8);
}

.offer-details .offer-card:nth-child(2) { --gift-accent: #fff56b; }
.offer-details .offer-card:nth-child(3) { --gift-accent: #81cabf; }
.offer-details .offer-card:nth-child(4) { --gift-accent: #ec73a8; }

.offer-card .icon {
  color: #e26098;
}

.offer-card .icon span {
  color: #5a9f92;
}

.offer-note {
  border: 1px solid rgba(226, 96, 152, 0.18);
  background: #fff8a7;
  color: #3e3a39;
}

.offer-note span {
  background: #e26098;
}

.offer .cta-note {
  color: var(--muted);
}

@media (max-width: 759px) {
  .offer::before {
    inset: 14px;
  }

  .offer::after {
    content: none;
  }

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

  .offer .section-head .eyebrow {
    margin-inline: 0;
  }

  .offer-bundle {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .offer-showcase {
    min-height: 0;
    padding: 12px;
    box-shadow: 10px 12px 0 rgba(129, 202, 191, 0.2), 0 18px 40px rgba(51, 93, 88, 0.1);
  }

  .offer-showcase__eyebrow {
    margin: 1px 0 9px;
  }

  .offer-showcase__caption {
    padding: 13px 2px 3px;
  }

  .offer-showcase__caption strong {
    font-size: 13px;
  }

  .offer-showcase__seal {
    top: -22px;
    right: -8px;
    width: 72px;
    height: 72px;
    box-shadow: 0 6px 0 rgba(236, 115, 168, 0.68);
  }

  .offer-showcase__seal b {
    margin-bottom: -10px;
    font-size: 33px;
  }

  .offer-showcase__seal span {
    font-size: 8px;
  }

  .offer-details {
    padding: 27px 18px 25px;
  }

  .offer-details__title {
    font-size: 17px;
  }

  .offer-details .offer-card,
  .offer-details .offer-card:nth-child(even),
  .offer-details .offer-card:last-child {
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 18px 0;
  }
}

/* ===== LINE gift: real asset showcase and balanced layout ===== */
.offer-bundle {
  grid-template-columns: minmax(0, 0.96fr) minmax(500px, 1.04fr);
  align-items: start;
  gap: clamp(28px, 3.6vw, 50px);
}

.offer-showcase {
  padding: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 248, 0.96));
}

.offer-showcase__heading {
  display: grid;
  gap: 2px;
  margin: 0 0 16px;
}

.offer-showcase__heading .offer-showcase__eyebrow {
  margin: 0;
}

.offer-showcase__heading > strong {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.offer-showcase__movie {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 2.15 / 1;
  border: 7px solid #fff;
  background: #dbece8;
  box-shadow: 0 16px 34px rgba(51, 93, 88, 0.18);
  transform: rotate(-0.7deg);
}

.offer-showcase__movie img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}

.offer-showcase__movie figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 7px;
  padding: 18px;
  background: linear-gradient(to bottom, transparent 48%, rgba(27, 50, 47, 0.9) 100%);
  color: #fff;
  text-align: left;
}

.offer-showcase__video-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(44, 91, 85, 0.82);
  box-shadow: 0 6px 18px rgba(27, 50, 47, 0.22);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.offer-showcase__video-badge svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.offer-showcase__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 0 8px;
}

.offer-showcase__card {
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1.18 / 1;
  border: 6px solid #fff;
  background: #fff8a7;
  box-shadow: 0 11px 24px rgba(51, 93, 88, 0.14);
}

.offer-showcase__card--consultation {
  align-content: center;
  gap: 3px;
  padding: 12px 8px;
  background: #81cabf;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  transform: rotate(-1.8deg) translateY(4px);
  text-align: center;
}

.offer-showcase__card--consultation svg {
  width: 42px;
  margin-bottom: 4px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.offer-showcase__card--consultation span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.offer-showcase__card--consultation strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.offer-showcase__card--planning {
  transform: rotate(1.8deg);
}

.offer-showcase__card--diagnosis {
  transform: rotate(-2.2deg) translateY(5px);
}

.offer-showcase__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-showcase__caption {
  padding: 24px 6px 3px;
}

.offer-showcase__seal {
  top: -28px;
  right: 18px;
}

.offer-details {
  padding: 34px 34px 30px;
}

.offer-details__title {
  margin-bottom: 20px;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.65;
}

.offer-editor-note {
  max-width: 520px;
  margin: 8px auto 0;
  color: #7d7773;
  font-size: 8px;
  line-height: 1.8;
}

.offer-details .offer-card,
.offer-details .offer-card:nth-child(even),
.offer-details .offer-card:last-child {
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 17px 4px;
}

@media (max-width: 980px) {
  .offer-bundle {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 759px) {
  .offer-bundle {
    gap: 30px;
  }

  .offer-showcase {
    padding: 14px;
  }

  .offer-showcase__heading {
    margin-bottom: 12px;
    padding-right: 60px;
  }

  .offer-showcase__heading > strong {
    font-size: 14px;
  }

  .offer-showcase__movie {
    border-width: 4px;
    transform: none;
  }

  .offer-showcase__movie figcaption {
    padding: 10px;
  }

  .offer-showcase__cards {
    gap: 8px;
    margin-top: 12px;
    padding: 0 2px;
  }

  .offer-showcase__card {
    border-width: 3px;
  }

  .offer-showcase__card--consultation {
    padding: 8px 4px;
  }

  .offer-showcase__card--consultation svg {
    width: 32px;
  }

  .offer-showcase__card--consultation strong {
    font-size: 11px;
  }

  .offer-showcase__caption {
    padding-top: 18px;
  }

  .offer-showcase__caption strong {
    font-size: 12px;
  }

  .offer-details__title br {
    display: none;
  }
}

/* ===== Company introduction ===== */
.proud-facts__identity {
  grid-column: 1 / -1;
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(79, 152, 141, 0.3);
  color: #5f716e;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.proud-facts__identity span {
  margin-right: 18px;
  color: #4f988d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.company-intro {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-bottom: 42px;
  padding: 22px 20px;
  border-top: 1px solid rgba(79, 152, 141, 0.34);
  border-bottom: 1px solid rgba(79, 152, 141, 0.34);
  background: rgba(255, 255, 255, 0.46);
}

.company-intro img {
  display: block;
  width: 100%;
  height: auto;
}

.company-intro__label {
  margin-bottom: 7px;
  color: #4f988d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.company-intro h2 {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.5vw, 31px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.06em;
}

.company-intro h2 br {
  display: none;
}

.company-intro div > p:last-child {
  max-width: 720px;
  margin-top: 10px;
  color: #60716e;
  font-size: 11px;
  line-height: 2;
}

@media (min-width: 760px) {
  .company-intro {
    grid-column: 1 / -1;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 36px;
    margin-bottom: 54px;
    padding: 28px 38px;
  }
}

@media (max-width: 520px) {
  .proud-facts__identity {
    margin-bottom: 26px;
    line-height: 1.9;
  }

  .proud-facts__identity span {
    display: block;
    margin-right: 0;
  }

  .company-intro {
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    margin-bottom: 36px;
    padding: 18px 14px;
  }

  .company-intro h2 {
    font-size: 19px;
    line-height: 1.7;
  }

  .company-intro h2 br {
    display: block;
  }

  .company-intro div > p:last-child {
    font-size: 10px;
    line-height: 1.9;
  }
}

@media (max-width: 639px) {
  .promise-card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    stroke-width: 1.15;
  }
}

/* ===== Social question / words shape the future ===== */
.social-call {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(229, 84, 119, 0.075), transparent 34%),
    linear-gradient(315deg, rgba(129, 202, 191, 0.12), transparent 38%),
    #f8f3ed;
}

.social-call::before {
  position: absolute;
  top: -0.18em;
  right: 2vw;
  color: rgba(229, 84, 119, 0.055);
  content: "?";
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(220px, 38vw, 560px);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.social-call__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.social-call .section-head {
  max-width: 820px;
}

.social-call .section-head .eyebrow {
  background: transparent;
}

.social-call__manifesto {
  max-width: 900px;
  margin: 44px 0 36px;
  padding: 8px 0 8px clamp(22px, 4vw, 46px);
  border-left: 3px solid var(--pink);
}

.social-call__manifesto .social-call__lead {
  margin-bottom: 22px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 4.1vw, 39px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.social-call__manifesto > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2.15;
}

.social-call__questions {
  display: grid;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.social-call__questions article {
  padding: 34px 20px 38px;
  border-bottom: 1px solid var(--hairline);
}

.social-call__questions article:last-child {
  border-bottom: 0;
}

.social-call__questions span,
.social-call__declaration > span {
  display: block;
  margin-bottom: 20px;
  color: #4f988d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.social-call__questions h3 {
  margin-bottom: 18px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 500;
  line-height: 1.7;
}

.social-call__questions p {
  color: var(--muted);
  font-size: 11px;
  line-height: 2.05;
}

.social-call__declaration {
  margin-top: 0;
  padding: clamp(30px, 6vw, 64px);
  border-top: 1px solid rgba(90, 159, 146, 0.38);
  border-bottom: 1px solid rgba(90, 159, 146, 0.38);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 18px 18px 0 rgba(129, 202, 191, 0.15);
}

.social-call__declaration > span {
  color: #4f988d;
}

.social-call__declaration p {
  margin-bottom: 16px;
  color: #d94f76;
  font-size: 13px;
  font-weight: 700;
}

.social-call__declaration strong {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(21px, 3.5vw, 35px);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

@media (min-width: 760px) {
  .social-call__inner {
    width: min(1180px, calc(100% - 96px));
  }

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

  .social-call__questions article {
    min-height: 330px;
    padding: 42px 34px;
    border-right: 1px solid var(--hairline);
    border-bottom: 0;
  }

  .social-call__questions article:last-child {
    border-right: 0;
  }
}

@media (max-width: 520px) {
  .social-call__inner {
    width: calc(100% - 36px);
  }

  .social-call__manifesto {
    margin: 34px 0 28px;
  }

  .social-call__manifesto .social-call__lead {
    font-size: 21px;
  }

  .social-call__manifesto > p:last-child {
    font-size: 11px;
  }

  .social-call__questions article {
    padding-inline: 12px;
  }

  .social-call__declaration {
    margin-top: 0;
    padding: 28px 22px 32px;
    box-shadow: 9px 9px 0 rgba(229, 84, 119, 0.14);
  }

  .social-call__declaration strong br {
    display: none;
  }
}

/* ===== Final reading-flow refinements ===== */
section,
.publication-gallery {
  box-shadow: inset 0 42px 52px -58px rgba(73, 130, 120, 0.2);
}

.hero p.sub {
  width: fit-content;
  max-width: min(360px, calc(100% - 20px));
  padding: 7px 12px 8px;
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.56);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  box-decoration-break: clone;
}

.proud-facts__proof-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(79, 152, 141, 0.55);
  color: #4f988d;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.proud-facts__proof-link span {
  transition: transform 240ms ease;
}

.proud-facts__proof-link:hover span,
.proud-facts__proof-link:focus-visible span {
  transform: translateY(4px);
}

#results-proof {
  scroll-margin-top: 28px;
}

.faq-item {
  padding: 0;
}

.faq-item > summary {
  display: grid;
  grid-template-columns: auto 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 27px 0;
  cursor: pointer;
  list-style: none;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-item > summary i::before,
.faq-item > summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: #5a9f92;
  transform: translate(-50%, -50%);
  transition: transform 260ms ease;
}

.faq-item > summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] > summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item .a {
  padding: 0 42px 28px;
  animation: faq-answer-in 360ms ease both;
}

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 639px) {
  .hero p.sub {
    max-width: 260px;
    padding: 6px 9px;
    background: rgba(255, 253, 248, 0.62);
  }

  .faq-item > summary {
    grid-template-columns: auto 1fr 20px;
    gap: 10px;
    padding: 22px 0;
    line-height: 1.8;
  }

  .faq-item .a {
    padding: 0 30px 24px;
  }
}

/* offer-integrated.css */
.offer-bundle--integrated {
  display: block;
  width: min(1120px, 100%);
  margin-inline: auto;
}

.offer-integrated {
  position: relative;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(90, 159, 146, 0.34);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 14px 18px 0 rgba(129, 202, 191, 0.16), 0 22px 54px rgba(51, 93, 88, 0.1);
}

.offer-integrated__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.offer-integrated__head .offer-showcase__eyebrow {
  margin: 0 0 8px;
}

.offer-integrated__head .offer-details__title {
  margin: 0;
}

.offer-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.offer-benefit {
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  border: 1px solid rgba(90, 159, 146, 0.22);
  background: #fff;
  box-shadow: 0 12px 28px rgba(51, 93, 88, 0.08);
}

.offer-benefit__visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0;
  background: #81cabf;
}

.offer-benefit__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-benefit__visual--movie img {
  object-position: 50% 0;
  transform: scale(1.24);
  transform-origin: 50% 0;
  filter: contrast(1.03) saturate(0.96);
}

.offer-benefit__visual--movie {
  border: 8px solid #fff;
  outline: 1px solid rgba(90, 159, 146, 0.42);
  outline-offset: -1px;
  background: #dcebe8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.offer-benefit__visual--movie::after {
  position: absolute;
  z-index: 1;
  inset: 34% 0 0;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(24, 40, 37, 0.9));
  pointer-events: none;
}

.offer-benefit__movie-title {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 27px;
  left: 16px;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 8px rgba(17, 32, 29, 0.5);
}

.offer-benefit__movie-title small {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 8px;
  background: #e26098;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.offer-benefit__movie-title strong {
  display: block;
  font-size: clamp(13px, 1.7vw, 18px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.offer-benefit__movie-title em {
  color: #fff56b;
  font-style: normal;
}

.offer-benefit__visual--diagnosis img,
.offer-benefit__visual--planning img {
  object-fit: contain;
}

.offer-benefit__visual--planning {
  background: #81cabf;
}

.offer-benefit__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: rgba(90, 159, 146, 0.9);
  box-shadow: 0 10px 30px rgba(27, 50, 47, 0.3);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.offer-benefit__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #fff;
  transform: translate(-50%, -50%);
}

.offer-benefit__scrubber {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 14px;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 1px 5px rgba(27, 50, 47, 0.28);
}

.offer-benefit__scrubber i {
  position: absolute;
  top: 50%;
  left: 18%;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #e26098;
  transform: translate(-50%, -50%);
}

.offer-benefit__visual--consultation {
  border: 8px solid #fff;
  outline: 1px solid rgba(90, 159, 146, 0.34);
  outline-offset: -1px;
  background: #dcefeb;
}

.offer-benefit__visual--consultation img {
  object-fit: contain;
  object-position: center;
}

@media (min-width: 760px) {
  .offer-benefit--diagnosis,
  .offer-benefit--consultation {
    grid-template-rows: auto 1fr;
  }

  .offer-benefit__visual--diagnosis {
    aspect-ratio: 1040 / 941;
  }

  .offer-benefit__visual--consultation {
    aspect-ratio: 4 / 3;
  }
}

.offer-benefit__copy {
  position: relative;
  padding: 22px 24px 25px;
}

.offer-benefit__number {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 10px;
  color: #5a9f92;
  font-family: 'Noto Sans JP', sans-serif;
}

.offer-benefit__number b {
  color: #e26098;
  font-size: 24px;
}

.offer-benefit__number span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.offer-benefit__copy h3 {
  margin: 0 0 9px;
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 500;
  line-height: 1.7;
}

.offer-benefit__copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.95;
}

.offer-integrated__cta {
  max-width: 720px;
  margin: 34px auto 0;
  text-align: center;
}

.offer-integrated__cta > p {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.offer-integrated__cta > p span {
  display: inline-block;
  margin-right: 9px;
  padding: 5px 8px;
  background: #e26098;
  color: #fff;
}

.offer-integrated__seal {
  position: absolute;
  top: -34px;
  right: 34px;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #fff56b;
  box-shadow: 0 8px 0 rgba(236, 115, 168, 0.7);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}

.offer-integrated__seal b,
.offer-integrated__seal span {
  grid-area: 1 / 1;
}

.offer-integrated__seal b {
  margin-top: -23px;
  font-size: 43px;
}

.offer-integrated__seal span {
  margin-top: 45px;
  font-size: 10px;
  font-weight: 700;
}

@media (max-width: 759px) {
  .offer-integrated {
    padding: 24px 14px 28px;
  }

  .offer-integrated__head {
    margin-bottom: 22px;
    padding-right: 54px;
  }

  .offer-integrated__head .offer-details__title {
    font-size: 18px;
  }

  .offer-benefit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer-benefit {
    grid-template-rows: auto 1fr;
  }

  .offer-benefit__visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .offer-benefit__visual--movie {
    aspect-ratio: 16 / 9;
  }

  .offer-benefit__movie-title {
    right: 12px;
    bottom: 24px;
    left: 12px;
  }

  .offer-benefit__movie-title strong {
    font-size: 14px;
  }

  .offer-benefit__visual--diagnosis {
    aspect-ratio: 1040 / 941;
  }

  .offer-benefit__visual--planning {
    aspect-ratio: 40 / 27;
  }

  .offer-benefit__copy {
    padding: 18px 18px 21px;
  }

  .offer-benefit__copy h3 {
    font-size: 17px;
  }

  .offer-benefit__copy > p:last-child {
    font-size: 11px;
  }

  .offer-benefit__play {
    top: 36%;
    width: 60px;
    height: 60px;
  }

  .offer-integrated__seal {
    top: -24px;
    right: -5px;
    width: 76px;
    height: 76px;
  }

  .offer-integrated__seal b {
    margin-top: -17px;
    font-size: 33px;
  }

  .offer-integrated__seal span {
    margin-top: 34px;
    font-size: 8px;
  }

  .offer-integrated__cta {
    margin-top: 26px;
  }

  .offer-integrated__cta > p {
    font-size: 10px;
    line-height: 1.8;
  }
}

/* hero-mobile-copy.css */
/* Keep the supporting message clear of the earth artwork on small screens. */
.hero p.sub em {
  font-style: normal;
}

.hero-ribbon-plane {
  display: none;
}

@media (min-width: 640px) {
  .hero p.sub {
    width: min(330px, 100%);
    max-width: none;
    padding: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero p.sub strong {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .hero p.sub span {
    position: relative;
    margin-top: 15px;
    padding: 8px 12px 15px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #4b4644;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.055em;
    line-height: 1.55;
    text-align: center;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92),
      0 0 14px rgba(255, 255, 255, 0.9);
    transform: none;
  }

  .hero p.sub span em {
    display: inline-block;
    margin-top: 3px;
    padding: 0 5px 2px;
    border-bottom: 0;
    background: linear-gradient(transparent 62%, rgba(255, 244, 154, 0.78) 62%);
    color: #3e3a39;
    font-size: 1.28em;
    font-weight: 700;
    white-space: nowrap;
  }
}

@media (max-width: 639px) {
  .hero .circular-gallery {
    height: 790px;
    min-height: 790px;
    --earth-center-y: 310px;
  }

  .hero .hero-content {
    top: calc(var(--earth-center-y) - 54px);
  }

  .hero p.sub {
    position: static;
    width: 0;
    max-width: none;
    height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    overflow: visible;
    transform: none;
    text-shadow: none;
  }

  .hero p.sub strong {
    position: absolute;
    z-index: 6;
    top: -232px;
    left: 36px;
    width: 218px;
    padding: 11px 22px 12px;
    border: 0;
    border-radius: 0;
    background: #fff49a;
    box-shadow: 4px 5px 0 rgba(226, 96, 152, 0.22);
    clip-path: polygon(7% 0, 100% 0, 94% 50%, 100% 100%, 7% 100%, 0 50%);
    color: #57514f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.65;
    text-align: center;
    transform: rotate(-2deg);
  }

  .hero .hero-ribbon-plane {
    position: absolute;
    z-index: 7;
    top: -221px;
    left: -48px;
    display: block;
    width: 94px;
    height: auto;
    filter: none;
    transform: rotate(-2deg);
    pointer-events: none;
    user-select: none;
  }

  .hero p.sub span {
    position: absolute;
    z-index: 6;
    top: 300px;
    left: 50%;
    width: min(350px, calc(100vw - 40px));
    margin: 0;
    padding: 0 10px 7px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    color: #3e3a39;
    font-size: clamp(15px, 4.25vw, 17px);
    font-weight: 500;
    letter-spacing: 0.045em;
    line-height: 1.65;
    transform: translateX(-50%);
  }

  .hero p.sub span em {
    display: inline-block;
    margin-top: 3px;
    padding: 0 2px 2px;
    background: linear-gradient(transparent 62%, rgba(226, 96, 152, 0.24) 62%);
    font-size: 1.08em;
    font-weight: 700;
  }

  .hero .cta-wrap {
    top: 395px;
  }

  .hero .hero-fukiko-mobile {
    top: 128px;
    left: 88%;
    height: 92px;
    transform: translate(-50%, -50%) rotate(-20deg);
  }
}

@media (max-width: 350px) {
  .hero .circular-gallery {
    height: 770px;
    min-height: 770px;
    --earth-center-y: 290px;
  }

  .hero p.sub strong {
    top: -220px;
    left: 24px;
    width: 196px;
    padding: 10px 20px 11px;
    font-size: 11px;
  }

  .hero .hero-ribbon-plane {
    top: -213px;
    left: -48px;
    width: 80px;
  }

  .hero .hero-fukiko-mobile {
    top: 122px;
    left: 88%;
    height: 86px;
  }

  .hero p.sub span {
    top: 285px;
    width: calc(100vw - 32px);
    font-size: 15px;
  }

  .hero .cta-wrap {
    top: 385px;
  }
}

/* social-call-refinement.css */
/* Keep the social-message section in the same editorial world as the LP. */
.social-call {
  background: #f8f5ef;
}

.social-call::before {
  content: none;
}

.social-call__declaration {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  column-gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(38px, 6vw, 66px) 0;
  border: 0;
  border-top: 1px solid rgba(90, 159, 146, 0.34);
  border-bottom: 1px solid rgba(90, 159, 146, 0.34);
  background: transparent;
  box-shadow: none;
}

.social-call__declaration > span,
.social-call__declaration > p {
  grid-column: 1;
}

.social-call__declaration > span {
  margin-bottom: 12px;
  padding: 0;
  border: 0;
  color: #4f8e83;
}

.social-call__declaration > p {
  margin-bottom: 0;
  color: #716d6a;
  font-weight: 400;
  line-height: 1.9;
}

.social-call__declaration > strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #3e3a39;
}

.social-call__declaration::after {
  content: none;
}

@media (max-width: 520px) {
  .social-call__declaration {
    display: block;
    padding: 30px 0 34px;
  }

  .social-call__declaration > span {
    width: fit-content;
    min-width: 132px;
  }

  .social-call__declaration > p {
    margin-bottom: 22px;
  }

  .social-call__declaration > strong br {
    display: block;
  }
}

/* footer-legal.css */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.footer-legal a {
  color: inherit;
  text-underline-offset: 3px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #4f988d;
}

.footer-legal span {
  opacity: 0.42;
}

@media (max-width: 420px) {
  .footer-legal {
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
  }

  .footer-legal span {
    display: none;
  }
}

/* number-motion-refinement.css */
/* Let proof numbers grow into their final value without shrinking back. */
.motion-ready .proud-facts__number.is-scrambling {
  transform-origin: left center;
  animation: proud-number-grow var(--number-duration, 1600ms) cubic-bezier(.22, .8, .3, 1) both;
}

.motion-ready .proud-facts__number.is-counted {
  transform: scale(1);
  animation: none;
}

@keyframes proud-number-grow {
  from {
    opacity: 0.48;
    transform: scale(0.58);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* organic-accent-refinement.css */
/* Remove repeated mechanical vertical rules without adding extra decoration. */
.empathy .lead,
.feeling-lead__scene,
.promise-statement,
.social-call__manifesto {
  border-left: 0;
  padding-left: 0;
}

.path-copy,
.path-step.is-goal .path-copy,
.press-feature__copy .press-feature__title {
  border-left: 0;
}

.press-feature__copy .press-feature__title {
  padding-left: 0;
}

/* Remove the repeated oversized outline circles used as background decoration. */
.proud-facts::after,
.feeling::after,
.closing::before {
  content: none;
}

/* Remove the short colored bars attached to card edges. */
.reason-card::after {
  content: none;
}

/* community-photo-refinement.css */
/* Preserve the Publishing Award sign and a hint of the red carpet on desktop. */
@media (min-width: 760px) {
  .community-gallery {
    grid-template-rows: 280px clamp(300px, 32vw, 410px);
  }

  .community-photo--award img {
    object-position: center 12%;
  }
}

/* closing-mascot.css */
.closing-mascot {
  position: absolute;
  right: -18px;
  bottom: -74px;
  z-index: 1;
  width: clamp(132px, 14vw, 158px);
  margin: 0;
  text-align: center;
  pointer-events: none;
}

.closing-mascot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(53, 68, 64, 0.12));
}

.closing-mascot figcaption {
  margin-top: 4px;
  color: #716d6a;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

@media (max-width: 759px) {
  .closing-mascot {
    position: static;
    width: 126px;
    margin: 28px auto -34px;
  }

  .closing-mascot figcaption {
    margin-right: -36px;
    margin-left: -36px;
    white-space: normal;
  }
}

/* hero-desktop-fullbleed.css */
/* Carry the artwork's pale paper background across the full viewport. */
.hero {
  width: 100%;
  background: #f7f5f3;
}

.hero .circular-gallery {
  width: 100%;
  max-width: none;
}

/* video-controls.css */
.book-video__controls {
  position: relative;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}

.book-video__stage.is-open.has-video .book-video__controls {
  display: flex;
}

.book-video__controls .book-video__sound,
.book-video__speed {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(25, 32, 31, 0.78);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
  color: #fff;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
  backdrop-filter: blur(5px);
}

.book-video__speed span {
  font-size: 16px;
  line-height: 1;
}

.book-video__speed b {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.book-video__speed[data-speed="1.5"],
.book-video__speed[data-speed="2"] {
  border-color: rgba(128, 204, 188, 0.92);
  background: #4f8e83;
}

@media (max-width: 600px) {
  .book-video__controls {
    gap: 7px;
  }

  .book-video__controls .book-video__sound,
  .book-video__speed {
    min-height: 34px;
    padding: 7px 10px;
  }

  .book-video__speed b {
    font-size: 9px;
  }
}
