:root {
  --ink: #474345;
  --muted: #777274;
  --soft: #f4e6e7;
  --paper: #faf7f5;
  --mist: #e8e5e6;
  --rose: #d7b4b8;
  --blush: #e8cace;
  --rose-deep: #9b6870;
  --warm-gray: #b8b6b6;
  --stone-gray: #8e8c8c;
  --sage: #8e8c8c;
  --line: #8e5f68;
  --line-hover: #754b54;
  --line-shadow: rgba(142, 95, 104, 0.26);
  --rule: rgba(142, 140, 140, 0.26);
  --hero-progress: 0;
  --reveal-duration: 1700ms;
  --reveal-distance: 64px;
  --scene-progress: 0;
  --content: 1120px;
  --narrow: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scroll-snap-type: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  opacity: 0.16;
  content: "";
}

::selection {
  color: #fff;
  background: rgba(51, 47, 43, 0.72);
}

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

img,
video,
.gallery-photo-link {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  pointer-events: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  pointer-events: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 20px max(22px, calc((100vw - var(--content)) / 2));
  color: #fff;
  transition: padding 240ms ease, color 240ms ease, background 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background-image: var(--kocon-logo-image, url("../img/kocon-photo-logo.png?v=20260805-production6"));
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.site-header:not(.is-scrolled) .brand-logo {
  filter: none;
  opacity: 1;
}

.site-header.is-scrolled .brand-logo {
  filter: none;
  opacity: 1;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.18rem;
  line-height: 1.05;
}

.brand-copy small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
}

.header-nav {
  display: flex;
  gap: clamp(14px, 1.7vw, 22px);
  margin-left: auto;
  color: currentColor;
  font-size: 0.84rem;
}

.header-nav a,
.header-line {
  text-decoration: none;
}

.header-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .header-line {
  border-color: rgba(51, 47, 43, 0.18);
  background: rgba(255, 255, 255, 0.56);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

main {
  counter-reset: scene;
}

main > section {
  position: relative;
  counter-increment: scene;
}

main > section:not(.hero)::before {
  position: absolute;
  top: clamp(24px, 5vw, 62px);
  right: max(18px, calc((100vw - var(--content)) / 2));
  z-index: 1;
  color: rgba(51, 47, 43, 0.055);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(3.4rem, 9vw, 8.2rem);
  line-height: 1;
  pointer-events: none;
  content: counter(scene, decimal-leading-zero);
}

.quiet-copy::before,
.story-section::before,
.wide-moment::before,
.final-cta::before {
  color: rgba(255, 255, 255, 0.11) !important;
}

.wide-moment::before,
.final-cta::before {
  z-index: 2;
}

.quiet-copy-inner,
.story-grid,
.cinema-row,
.single-line,
.wide-moment-copy,
.section-heading,
.peace-grid,
.feature-heading,
.feature-lines,
.gallery-photo,
.consult-copy,
.final-cta-copy {
  position: relative;
  z-index: 2;
}

.scene-rail {
  position: fixed;
  top: 50%;
  right: max(18px, calc((100vw - var(--content)) / 2 - 58px));
  z-index: 34;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: #fff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0.56;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translateY(-50%);
}

.scene-rail-line {
  position: relative;
  display: block;
  width: 1px;
  height: 118px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.scene-rail-line::after {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleY(var(--scene-progress));
  transform-origin: top;
  content: "";
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  overflow: hidden;
  background: #211d1a;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 30%, rgba(207, 167, 160, 0.18), transparent 34%),
    linear-gradient(135deg, #332a25 0%, #211d1a 46%, #151312 100%);
  opacity: 1;
  content: "";
}

.hero-video {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(calc(1 + (var(--hero-progress) * 0.08))) translateY(calc(var(--hero-progress) * -18px));
  transform-origin: 50% 48%;
  filter: sepia(0.14) saturate(0.88) contrast(1.03) brightness(0.99);
  will-change: transform;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 54% 46%, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(90deg, rgba(20, 17, 15, 0.72) 0%, rgba(20, 17, 15, 0.24) 45%, rgba(20, 17, 15, 0.16) 100%),
    linear-gradient(0deg, rgba(20, 17, 15, 0.74) 0%, rgba(20, 17, 15, 0.08) 54%, rgba(20, 17, 15, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(100% - 48px, var(--content));
  height: 100%;
  margin: 0 auto;
  color: #fff;
  transform: translateY(calc(var(--hero-progress) * 48px));
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.34);
  animation: heroTextIn 1500ms 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow,
.section-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

h1,
h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  line-height: 1.42;
}

h1 {
  max-width: 12em;
  margin-top: 18px;
  font-size: 3.25rem;
}

h1::after {
  display: block;
  width: 74px;
  height: 1px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.64);
  content: "";
}

h2 {
  font-size: 2.34rem;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-bottom {
  position: absolute;
  right: max(22px, calc((100vw - var(--content)) / 2));
  bottom: 54px;
  z-index: 2;
  width: min(420px, calc(100% - 44px));
  color: #fff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.34);
  animation: heroTextIn 1500ms 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-bottom p {
  font-size: 0.98rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 184px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.68;
  transform-origin: left;
  transition: transform 220ms ease, opacity 220ms ease;
  content: "";
}

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

.button:hover::after {
  opacity: 0.9;
  transform: scaleX(1.35);
}

.button-line {
  margin-top: 24px;
  color: #fff;
  background: var(--line);
  box-shadow: 0 14px 32px var(--line-shadow);
  text-shadow: none;
}

.button-line:hover {
  background: var(--line-hover);
}

.button-subtle {
  color: var(--ink);
  border-color: rgba(51, 47, 43, 0.18);
  background: rgba(255, 255, 255, 0.76);
}

.cta-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.hero-cta-note,
.final-cta-note {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.34);
}

.hero-bottom .cta-note {
  font-size: 0.82rem;
}

.scroll-cue {
  position: absolute;
  left: max(22px, calc((100vw - var(--content)) / 2));
  bottom: 42px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 54px;
  margin: 12px auto 0;
  background: rgba(255, 255, 255, 0.54);
  content: "";
  animation: scrollLine 1800ms ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.38);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    filter: blur(12px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

.quiet-copy {
  display: grid;
  min-height: 82svh;
  place-items: center;
  padding: 98px 22px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(207, 167, 160, 0.16), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(127, 144, 119, 0.12), transparent 28%),
    linear-gradient(180deg, #211d1a 0%, #161413 100%);
}

.quiet-copy-inner {
  position: relative;
  width: min(100%, var(--narrow));
}

.quiet-copy-inner::before {
  position: absolute;
  top: -92px;
  left: -18px;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(4.6rem, 11vw, 9.5rem);
  line-height: 1;
  white-space: nowrap;
  content: "memory";
}

.floating-word {
  max-width: 15em;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: 2.72rem;
  line-height: 1.72;
}

.story-section {
  padding: 96px 0;
  background:
    linear-gradient(180deg, #161413 0%, #211d1a 52%, #fbf8f2 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
  width: min(100% - 44px, var(--content));
  margin: 0 auto;
}

.story-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.62 / 1;
  border-radius: 8px;
  background: #ded8d2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.story-photo::after,
.cinema-photo::after,
.gallery-photo::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  pointer-events: none;
  content: "";
}

.story-copy {
  display: grid;
  gap: 26px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.45rem;
  line-height: 1.9;
}

.story-last {
  margin-top: 24px;
  color: #fff;
}

.concept-section {
  padding: 92px 0 72px;
  background: var(--paper);
}

.cinema-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: end;
  width: min(100% - 44px, var(--content));
  margin: 0 auto;
}

.cinema-copy {
  padding-bottom: 38px;
}

.section-kicker {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 15px;
  color: var(--sage);
}

.section-kicker::before {
  display: block;
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.44;
  content: "";
}

.cinema-copy p:not(.section-kicker),
.peace-lead,
.consult-copy > p:not(.section-kicker) {
  color: var(--muted);
}

.cinema-copy p:not(.section-kicker) {
  margin-top: 28px;
}

.concept-detail {
  display: grid;
  gap: 5px;
  margin-top: 26px;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.08rem;
  line-height: 1.9;
}

.concept-quote {
  padding-left: 18px;
  border-left: 1px solid rgba(169, 116, 109, 0.36);
  color: var(--ink) !important;
}

.cinema-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.34 / 1;
  border-radius: 8px;
  background: #efe9e4;
  box-shadow: 0 34px 86px rgba(51, 47, 43, 0.14);
}

.single-line {
  width: min(100% - 44px, var(--content));
  margin: 76px auto 0;
  padding-left: min(10vw, 128px);
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.65rem;
}

.wide-moment {
  position: relative;
  height: 78svh;
  min-height: 560px;
  overflow: hidden;
  background: #cfd8cf;
  isolation: isolate;
}

.wide-moment img {
  height: 112%;
  object-fit: cover;
  object-position: center 50%;
  transform: translateY(calc(var(--wide-progress, 0) * -7%)) scale(calc(1.04 + (var(--wide-progress, 0) * 0.08)));
  will-change: transform;
}

.wide-moment::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.62), rgba(20, 18, 16, 0.12) 58%, rgba(20, 18, 16, 0)),
    linear-gradient(0deg, rgba(20, 18, 16, 0.42), transparent 48%);
  content: "";
}

.wide-moment-copy {
  position: absolute;
  left: max(24px, calc((100vw - var(--content)) / 2));
  bottom: 74px;
  z-index: 3;
  color: #fff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2rem;
  line-height: 1.9;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.34);
}

.peace-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, #f5f4ee 0%, #fffdf9 100%);
}

.section-heading,
.peace-grid,
.flow-inner,
.feature-section,
.proof-inner,
.message-copy,
.anxiety-inner,
.faq-inner,
.price-inner,
.consult-copy {
  width: min(100% - 44px, var(--content));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 50px;
  margin-left: max(22px, calc((100vw - var(--content)) / 2));
}

.peace-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 86px);
}

.peace-lead p + p {
  margin-top: 18px;
}

.assurance-list {
  border-top: 1px solid var(--rule);
}

.assurance-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

.assurance-item span,
.feature-line span {
  color: var(--rose-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.02rem;
}

.assurance-item p {
  color: var(--muted);
}

.assurance-item .assurance-note {
  display: block;
  margin-top: 7px;
  color: rgba(71, 67, 69, 0.7);
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.75;
}

.flow-section {
  padding: 90px 0;
  background:
    linear-gradient(180deg, #fffdf9 0%, #f7f1ea 100%);
}

.flow-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.flow-heading {
  position: sticky;
  top: 104px;
}

.flow-heading h2 {
  max-width: 9em;
}

.flow-heading p {
  margin-top: 22px;
  color: var(--muted);
}

.flow-list {
  display: grid;
  gap: 12px;
}

.flow-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(51, 47, 43, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
}

.flow-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--rose-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.06rem;
  line-height: 1.6;
  border: 1px solid rgba(207, 167, 160, 0.46);
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.9);
}

.flow-item h3 {
  color: var(--ink);
}

.flow-item p {
  margin-top: 9px;
  color: var(--muted);
}

.feature-section {
  padding: 86px 0;
  background: var(--paper);
}

.feature-heading {
  max-width: 620px;
}

.feature-lines {
  margin-top: 44px;
  border-top: 1px solid var(--rule);
}

.feature-line {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.78fr) minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.feature-line p {
  color: var(--muted);
}

.proof-section {
  padding: 82px 0;
  background:
    linear-gradient(180deg, #fffdf9 0%, #f7f1ea 100%);
}

.proof-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}

.proof-heading h2 {
  max-width: 10em;
}

.proof-lead {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  color: var(--muted);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(51, 47, 43, 0.14);
  background: rgba(51, 47, 43, 0.14);
}

.proof-card {
  min-height: 190px;
  padding: 28px;
  background: rgba(255, 253, 249, 0.84);
}

.proof-card span {
  color: var(--rose-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1rem;
}

.proof-card h3 {
  margin-top: 18px;
}

.proof-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.proof-sub {
  margin-top: 8px !important;
  color: var(--sage) !important;
  font-size: 0.84rem !important;
}

.proof-value {
  color: var(--ink) !important;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.24rem !important;
  line-height: 1.55;
}

.voice-section {
  padding: 78px 0 86px;
  background: #fffdf9;
}

.voice-inner {
  width: min(100% - 44px, var(--content));
  margin: 0 auto;
}

.voice-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.voice-heading h2 {
  max-width: 8em;
}

.voice-heading p:not(.section-kicker) {
  max-width: 40em;
  color: var(--muted);
}

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

.voice-card {
  position: relative;
  min-height: 218px;
  padding: 28px;
  border: 1px solid rgba(51, 47, 43, 0.14);
  background: rgba(251, 248, 242, 0.78);
}

.voice-card::before {
  position: absolute;
  top: 12px;
  right: 20px;
  color: rgba(207, 167, 160, 0.28);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 4rem;
  line-height: 1;
  content: "\"";
}

.voice-card span {
  color: var(--rose-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1rem;
}

.voice-card p {
  position: relative;
  margin-top: 18px;
  color: var(--ink);
  line-height: 1.95;
}

.message-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, #f7f1ea 0%, #fffdf9 100%);
}

.message-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}

.message-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 502 / 670;
  border-radius: 3px;
  background: #e7ded5;
  box-shadow: 0 34px 86px rgba(51, 47, 43, 0.16);
}

.message-photo::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
  content: "";
}

.message-body h2 {
  max-width: 11em;
}

.message-name {
  color: var(--rose-deep) !important;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.04rem;
}

.message-body p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
}

.profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.profile-list-compact {
  margin-top: 18px;
}

.profile-list li {
  padding: 7px 12px;
  border: 1px solid rgba(51, 47, 43, 0.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 253, 249, 0.7);
  font-size: 0.84rem;
  line-height: 1.45;
}

.anxiety-section {
  padding: 76px 0 96px;
  background: var(--paper);
}

.anxiety-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.54fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.anxiety-heading h2 {
  max-width: 9em;
}

.anxiety-list {
  display: grid;
  gap: 14px;
}

.anxiety-card {
  padding: 24px 26px;
  border: 1px solid rgba(51, 47, 43, 0.14);
  background: rgba(251, 248, 242, 0.72);
}

.anxiety-card h3 {
  color: var(--ink);
  font-size: 1.02rem;
}

.anxiety-card h3::before {
  margin-right: 9px;
  color: var(--rose-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  content: "Q.";
}

.anxiety-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.9;
}

.gallery-section {
  display: grid;
  grid-template-columns: 0.86fr 1.24fr 0.86fr;
  gap: 18px;
  padding: 0 18px 86px;
  background: var(--paper);
}

.gallery-photo {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 8px;
  background: #eee8e1;
  box-shadow: 0 24px 74px rgba(51, 47, 43, 0.12);
}

.gallery-photo:nth-child(1),
.gallery-photo:nth-child(3) {
  margin-top: 70px;
}

.gallery-photo:nth-child(2) {
  min-height: 540px;
  transform: translateY(-20px);
}

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

.gallery-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(31, 26, 23, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.gallery-photo:nth-child(1) img {
  object-position: center 45%;
}

.gallery-photo:nth-child(3) img {
  object-position: center 36%;
}

.consult-section {
  padding: 86px 0;
  background: var(--soft);
}

.consult-copy {
  max-width: 780px;
  padding: 52px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.consult-copy > p:not(.section-kicker) {
  margin-top: 26px;
}

.consult-topics {
  margin-top: 30px;
  padding: 24px 0;
  border-top: 1px solid rgba(51, 47, 43, 0.14);
  border-bottom: 1px solid rgba(51, 47, 43, 0.14);
}

.consult-topics h3 {
  color: var(--ink);
  font-size: 1rem;
}

.consult-topics ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.consult-topics li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.consult-topics li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-deep);
  content: "";
}

.soft-note {
  color: var(--sage) !important;
  font-weight: 700;
}

.consult-intro {
  color: var(--ink) !important;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.button-row .button {
  margin-top: 18px;
}

.site-note {
  font-size: 0.86rem;
}

.consult-copy > p.cta-note {
  margin-top: 12px;
}

.consult-copy > p.site-note {
  margin-top: 18px;
}

.pricing-link {
  margin-top: 12px;
}

.price-section {
  padding: 0 0 78px;
  background: var(--soft);
}

.price-inner {
  max-width: 780px;
  padding-top: 24px;
  border-top: 1px solid rgba(51, 47, 43, 0.12);
  text-align: center;
}

.price-inner p {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-inner .pricing-link {
  margin-top: 14px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 78svh;
  align-items: end;
  justify-items: start;
  overflow: hidden;
  padding: clamp(116px, 18vh, 180px) max(22px, calc((100vw - var(--content)) / 2)) clamp(72px, 11vh, 116px);
  background: #d9d4cd;
  isolation: isolate;
}

.final-cta > .final-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 52%;
  pointer-events: none;
  transform: scale(calc(1.04 + (var(--final-progress, 0) * 0.08)));
  will-change: transform;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(24, 21, 19, 0.08) 0%, rgba(24, 21, 19, 0.04) 36%, rgba(24, 21, 19, 0.62) 72%, rgba(24, 21, 19, 0.86) 100%),
    linear-gradient(90deg, rgba(24, 21, 19, 0.72), rgba(24, 21, 19, 0.22) 46%, rgba(24, 21, 19, 0.02) 72%);
  content: "";
}

.final-cta-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 560px);
  padding: 28px 28px 30px;
  color: #fff;
  border-left: 1px solid rgba(207, 167, 160, 0.58);
  background: linear-gradient(90deg, rgba(22, 19, 17, 0.7), rgba(22, 19, 17, 0.34));
  text-align: left;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
}

.final-cta-copy h2 {
  margin-top: 16px;
}

.site-footer {
  padding: 34px 20px;
  color: var(--muted);
  text-align: center;
  background: var(--paper);
}

.site-footer-brand {
  width: min(118px, 30vw);
  margin: 0 auto;
}

.site-footer-brand img {
  width: 100%;
  filter: none;
  opacity: 1;
}

.site-footer small {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0) scale(0.985);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  animation: revealIn var(--reveal-duration) cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes revealIn {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--reveal-distance), 0) scale(0.985);
  }

  62% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes fadeOnly {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.zoom-frame img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  transition: transform 2600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.zoom-frame.is-visible img {
  transform: scale(1);
}

.floating-line,
.floating-top,
.floating-audio {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 40;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(45, 42, 39, 0.94);
  box-shadow: 0 16px 36px rgba(45, 42, 39, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), background 260ms ease;
  -webkit-tap-highlight-color: transparent;
}

.floating-line {
  right: max(24px, calc((100vw - var(--content)) / 2 - 70px));
  display: grid;
  width: 182px;
  min-height: 58px;
  align-content: center;
  gap: 2px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.floating-line span {
  display: block;
}

.floating-line-sub {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.78;
}

.floating-top {
  left: max(24px, calc((100vw - var(--content)) / 2 - 78px));
  display: flex;
  width: 64px;
  height: 64px;
  min-height: 64px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border-radius: 50%;
  font-size: 0.68rem;
}

.floating-audio {
  left: max(30px, calc((100vw - var(--content)) / 2 - 72px));
  bottom: calc(100px + env(safe-area-inset-bottom));
  display: flex;
  width: 60px;
  height: 60px;
  min-height: 60px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 0;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
}

.floating-line:hover,
.floating-line:focus-visible,
.floating-top:hover,
.floating-top:focus-visible,
.floating-audio:hover,
.floating-audio:focus-visible {
  background: var(--line-hover);
}

.floating-line:focus-visible,
.floating-top:focus-visible,
.floating-audio:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.76);
  outline-offset: 3px;
}

.audio-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 24px;
}

.audio-speaker {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 8px;
  height: 9px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.audio-speaker::after {
  position: absolute;
  top: -5px;
  left: 6px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 11px solid rgba(255, 255, 255, 0.92);
  content: "";
}

.audio-wave,
.audio-wave::before,
.audio-wave::after {
  position: absolute;
  top: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: translateY(-50%) scaleX(0.72);
  transform-origin: left center;
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.audio-wave {
  left: 15px;
  width: 11px;
  height: 16px;
}

.audio-wave::before {
  left: 2px;
  width: 16px;
  height: 22px;
}

.audio-wave::after {
  left: 5px;
  width: 21px;
  height: 28px;
}

.audio-slash {
  position: absolute;
  top: 0;
  left: 18px;
  width: 3px;
  height: 26px;
  border-radius: 999px;
  background: #f4d1cb;
  box-shadow: 0 0 0 1px rgba(45, 42, 39, 0.14);
  transform: rotate(-38deg);
  transform-origin: center;
  transition: opacity 240ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.audio-state {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.audio-state-on {
  display: none;
}

.floating-audio.is-playing {
  border-color: rgba(207, 167, 160, 0.78);
}

.floating-audio.is-playing .audio-wave,
.floating-audio.is-playing .audio-wave::before,
.floating-audio.is-playing .audio-wave::after {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.floating-audio.is-playing .audio-slash,
.floating-audio.is-playing .audio-state-off {
  display: none;
}

.floating-audio.is-playing .audio-state-on {
  display: block;
  color: #f4d1cb;
}

.floating-audio.is-loading {
  cursor: wait;
}

.top-flower {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
}

.top-flower-stem {
  position: absolute;
  bottom: 2px;
  left: 12px;
  width: 2px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  transform: rotate(-6deg);
  transform-origin: bottom center;
  transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.top-flower-stem::after {
  position: absolute;
  top: 7px;
  left: -6px;
  width: 8px;
  height: 5px;
  border-radius: 8px 0 8px 0;
  background: rgba(127, 144, 119, 0.92);
  content: "";
  transform: rotate(-22deg);
}

.top-flower-bud {
  position: absolute;
  top: 4px;
  left: 8px;
  width: 10px;
  height: 13px;
  border-radius: 9px 9px 7px 7px;
  background: linear-gradient(135deg, #f1cbc5 0%, var(--rose) 56%, var(--rose-deep) 100%);
  box-shadow: 0 2px 8px rgba(169, 116, 109, 0.34);
  transform: rotate(-16deg);
  transition: opacity 1200ms ease, transform 1600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.top-flower-petals {
  position: absolute;
  top: 8px;
  left: 12px;
  width: 1px;
  height: 1px;
  opacity: 0;
  transform: translateY(4px) scale(0.2);
  transform-origin: 50% 100%;
  transition: opacity 900ms ease, transform 1700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.top-flower-petals span {
  position: absolute;
  top: -9px;
  left: -4px;
  width: 8px;
  height: 13px;
  border-radius: 10px 10px 7px 7px;
  background: linear-gradient(135deg, #f5d2cd 0%, var(--rose) 68%, var(--rose-deep) 100%);
  box-shadow: 0 2px 6px rgba(169, 116, 109, 0.26);
  opacity: 0;
  transform: rotate(0deg) translateY(1px) scaleY(0.42);
  transform-origin: 50% 100%;
  transition:
    opacity 900ms ease,
    transform 1700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.top-flower-petals span:nth-child(1) {
  --petal-open: rotate(-58deg) translateY(-4px) scaleY(1);
  transition-delay: 80ms;
}

.top-flower-petals span:nth-child(2) {
  --petal-open: rotate(-20deg) translateY(-7px) scaleY(1);
  transition-delay: 220ms;
}

.top-flower-petals span:nth-child(3) {
  --petal-open: rotate(22deg) translateY(-7px) scaleY(1);
  transition-delay: 360ms;
}

.top-flower-petals span:nth-child(4) {
  --petal-open: rotate(60deg) translateY(-4px) scaleY(1);
  transition-delay: 500ms;
}

.floating-top.is-blooming .top-flower-stem {
  transform: rotate(-2deg);
}

.floating-top.is-blooming .top-flower-bud {
  opacity: 0;
  transform: translateY(-5px) scale(0.34) rotate(-16deg);
}

.floating-top.is-blooming .top-flower-petals {
  opacity: 1;
  transform: translateY(-2px) scale(1);
}

.floating-top.is-blooming .top-flower-petals span {
  opacity: 1;
  transform: var(--petal-open);
}

body.is-final-view .floating-line,
body.is-final-view .floating-top,
body.is-final-view .floating-audio {
  pointer-events: none;
  opacity: 0;
  transform: translateY(84px);
}

.mobile-break {
  display: none;
}

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

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .story-grid,
  .cinema-row,
  .peace-grid,
  .flow-inner,
  .anxiety-inner {
    grid-template-columns: 1fr;
  }

  .flow-heading {
    position: static;
  }

  .cinema-copy {
    padding-bottom: 0;
  }

  .feature-line {
    grid-template-columns: 58px 1fr;
  }

  .feature-line p {
    grid-column: 2;
  }

  .gallery-section {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-photo:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 560px;
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --reveal-duration: 2300ms;
    --reveal-distance: 76px;
  }

  html {
    scroll-snap-type: none;
  }

  .scene-rail {
    display: none;
  }

  main > section:not(.hero)::before {
    top: 18px;
    right: 16px;
    font-size: 3.35rem;
  }

  body {
    padding-bottom: 96px;
  }

  .site-header {
    gap: 12px;
    padding: 16px;
  }

  .site-header.is-scrolled {
    padding: 11px 16px;
  }

  .brand {
    gap: 8px;
    min-width: auto;
  }

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

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
  }

  .header-line {
    display: none;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    position: relative;
    z-index: 90;
    display: inline-grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    place-items: center;
    color: currentColor;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 50%;
    background: rgba(29, 26, 24, 0.3);
    box-shadow: 0 12px 30px rgba(20, 17, 15, 0.18);
    cursor: pointer;
    backdrop-filter: blur(16px);
    transition: color 240ms ease, border-color 240ms ease, background 240ms ease, transform 240ms ease;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle:active {
    transform: scale(0.96);
  }

  .menu-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.82);
    outline-offset: 4px;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: rgba(51, 47, 43, 0.16);
    background: rgba(255, 253, 249, 0.72);
  }

  body.is-menu-open .site-header {
    color: #fff;
    background: transparent;
    backdrop-filter: none;
  }

  body.is-menu-open .site-header .menu-toggle {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(29, 26, 24, 0.28);
  }

  .menu-toggle-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
  }

  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: currentColor;
    content: "";
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
  }

  .menu-toggle-lines::before {
    transform: translateY(-6px);
  }

  .menu-toggle-lines::after {
    transform: translateY(6px);
  }

  body.is-menu-open .menu-toggle-lines {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.is-menu-open .menu-toggle-lines::before {
    transform: translateY(0) rotate(90deg);
  }

  body.is-menu-open .menu-toggle-lines::after {
    opacity: 0;
    transform: translateY(0) scaleX(0.2);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 82;
    display: block;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 420ms ease, visibility 0s linear 420ms;
  }

  .mobile-menu::before {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 86% 10%, rgba(207, 167, 160, 0.22), transparent 30%),
      linear-gradient(180deg, rgba(21, 18, 16, 0.76), rgba(21, 18, 16, 0.62));
    backdrop-filter: blur(18px);
    content: "";
  }

  .mobile-menu-inner {
    position: absolute;
    top: 78px;
    right: 14px;
    left: 14px;
    max-height: calc(100svh - 108px);
    overflow: hidden auto;
    padding: 30px 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(56, 49, 44, 0.96), rgba(25, 22, 20, 0.97)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    opacity: 0.28;
    transform: translate3d(0, -16px, 0) scale(0.98);
    transition: opacity 520ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu-inner::after {
    position: absolute;
    right: -34px;
    bottom: -70px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    opacity: 0.55;
    content: "";
  }

  body.is-menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  body.is-menu-open .mobile-menu-inner {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .mobile-menu-logo {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 58px;
    height: 58px;
    background-image: var(--kocon-logo-image, url("../img/kocon-photo-logo.png?v=20260805-production6"));
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.88;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
  }

  .mobile-menu-kicker,
  .mobile-menu-sub,
  .mobile-menu-nav,
  .mobile-menu-line {
    position: relative;
    z-index: 1;
  }

  .mobile-menu-kicker {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 1.26rem;
    line-height: 1.2;
  }

  .mobile-menu-sub {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
  }

  .mobile-menu-nav {
    display: grid;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-menu-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 56px;
    padding-left: 31px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 1.06rem;
    line-height: 1.35;
    text-decoration: none;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity 520ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu-nav a::before {
    position: absolute;
    top: 50%;
    left: 2px;
    width: 13px;
    height: 13px;
    border-radius: 10px 10px 3px 10px;
    background: linear-gradient(135deg, #f3ccc7 0%, var(--rose) 65%, var(--rose-deep) 100%);
    box-shadow: 6px -2px 0 rgba(207, 167, 160, 0.42);
    transform: translateY(-50%) rotate(45deg);
    content: "";
  }

  body.is-menu-open .mobile-menu-nav a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body.is-menu-open .mobile-menu-nav a:nth-child(1) {
    transition-delay: 90ms;
  }

  body.is-menu-open .mobile-menu-nav a:nth-child(2) {
    transition-delay: 140ms;
  }

  body.is-menu-open .mobile-menu-nav a:nth-child(3) {
    transition-delay: 190ms;
  }

  body.is-menu-open .mobile-menu-nav a:nth-child(4) {
    transition-delay: 240ms;
  }

  body.is-menu-open .mobile-menu-nav a:nth-child(5) {
    transition-delay: 290ms;
  }

  body.is-menu-open .mobile-menu-nav a:nth-child(6) {
    transition-delay: 340ms;
  }

  body.is-menu-open .mobile-menu-nav a:nth-child(7) {
    transition-delay: 390ms;
  }

  .mobile-menu-line {
    width: 100%;
    margin-top: 22px;
    border-color: rgba(255, 255, 255, 0.18);
    background: #24211f;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  }

  .hero {
    min-height: 620px;
  }

  .hero-media {
    display: block;
    padding-top: 0;
  }

  .hero-video {
    width: 100%;
    height: calc(100% - clamp(156px, 20svh, 176px));
    margin: calc(clamp(156px, 20svh, 176px) / 2) 0 0;
    object-fit: cover;
    object-position: 30% center;
    transform: scale(calc(1 + (var(--hero-progress) * 0.05)));
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(31, 25, 22, 0.5) 0%, rgba(31, 25, 22, 0.22) 68%, rgba(31, 25, 22, 0.06) 100%),
      linear-gradient(0deg, rgba(31, 25, 22, 0.72) 0%, rgba(31, 25, 22, 0.3) 62%, rgba(31, 25, 22, 0.08) 100%);
  }

  .hero-content {
    align-content: start;
    width: calc(100% - 32px);
    padding-top: clamp(136px, 17svh, 156px);
  }

  h1 {
    max-width: 9.5em;
    font-size: 1.76rem;
    line-height: 1.58;
    overflow-wrap: anywhere;
  }

  h1::after {
    width: 52px;
    margin-top: 22px;
  }

  h2 {
    font-size: 1.66rem;
  }

  .hero-bottom {
    right: 16px;
    bottom: 106px;
    left: 16px;
    width: auto;
  }

  .hero-bottom p {
    font-size: 0.92rem;
  }

  .mobile-break {
    display: block;
  }

  .hero-bottom .button {
    display: inline-flex;
  }

  .scroll-cue {
    display: none;
  }

  .button,
  .button-row .button {
    width: 100%;
  }

  .quiet-copy {
    min-height: 72svh;
    padding: 72px 18px;
  }

  .quiet-copy-inner::before {
    top: -54px;
    left: -4px;
    font-size: 4.5rem;
  }

  .floating-word {
    font-size: 1.86rem;
  }

  .story-section,
  .concept-section,
  .peace-section,
  .flow-section,
  .feature-section,
  .proof-section,
  .voice-section,
  .message-section,
  .anxiety-section,
  .faq-section,
  .consult-section,
  .price-section {
    padding: 62px 0;
  }

  .story-grid,
  .cinema-row,
  .peace-grid,
  .flow-inner,
  .section-heading,
  .feature-section,
  .proof-inner,
  .voice-inner,
  .message-copy,
  .anxiety-inner,
  .faq-inner,
  .price-inner,
  .consult-copy {
    width: calc(100% - 32px);
  }

  .story-copy {
    gap: 18px;
    font-size: 1.18rem;
    padding: 22px 18px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(90deg, rgba(22, 20, 18, 0.72), rgba(22, 20, 18, 0.32) 72%, rgba(22, 20, 18, 0));
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  }

  .story-section {
    background:
      linear-gradient(180deg, #161413 0%, #211d1a 72%, #fbf8f2 100%);
  }

  .story-last {
    color: #fff;
  }

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

  .cinema-photo {
    aspect-ratio: 4 / 5;
  }

  .single-line {
    width: calc(100% - 32px);
    margin-top: 48px;
    padding-left: 0;
    font-size: 1.24rem;
  }

  .wide-moment {
    min-height: 480px;
    height: 64svh;
  }

  .wide-moment img {
    object-position: 52% 50%;
  }

  .wide-moment-copy {
    right: 20px;
    bottom: 52px;
    left: 20px;
    font-size: 1.48rem;
  }

  .section-heading {
    margin-bottom: 34px;
    margin-left: auto;
  }

  .assurance-item {
    grid-template-columns: 44px 1fr;
    padding: 19px 0;
  }

  .flow-list {
    margin-top: 8px;
  }

  .flow-item {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 18px 16px;
  }

  .feature-lines {
    margin-top: 32px;
  }

  .feature-line {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 19px 0;
  }

  .proof-inner,
  .message-copy,
  .anxiety-inner,
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: auto;
    padding: 22px;
  }

  .message-photo {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .message-body p:not(.section-kicker) {
    margin-top: 18px;
  }

  .anxiety-list {
    gap: 12px;
  }

  .anxiety-card {
    padding: 21px 20px;
  }

  .faq-item {
    padding: 19px 0;
  }

  .gallery-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px 52px;
  }

  .gallery-photo,
  .gallery-photo:nth-child(3) {
    min-height: auto;
    aspect-ratio: 4 / 5;
    margin-top: 0;
  }

  .gallery-photo:nth-child(2) {
    min-height: auto;
    transform: none;
  }

  .gallery-photo figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .gallery-photo:nth-child(1) img,
  .gallery-photo:nth-child(2) img,
  .gallery-photo:nth-child(3) img {
    object-position: center 45%;
  }

  .consult-copy {
    padding: 38px 0;
  }

  .consult-topics {
    margin-top: 24px;
    padding: 20px 0;
  }

  .consult-topics ul {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pricing-link {
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.84rem;
  }

  .price-section {
    padding-top: 0;
  }

  .hero-bottom .cta-note {
    padding-left: 72px;
    font-size: 0.76rem;
  }

  .final-cta {
    min-height: 560px;
    align-items: end;
    padding: 104px 16px 118px;
  }

  .final-cta > .final-cta-video {
    object-position: 70% 42%;
  }

  .final-cta-copy {
    width: min(100%, 360px);
    padding: 22px 18px 24px;
    text-align: left;
  }

  .final-cta-copy .button {
    width: min(100%, 245px);
  }

  .floating-line,
  .floating-top,
  .floating-audio {
    position: fixed;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 40;
    width: 64px;
    height: 64px;
    min-height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    color: #fff;
    background: rgba(45, 42, 39, 0.94);
    box-shadow: 0 16px 36px rgba(45, 42, 39, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    text-decoration: none;
    transition: opacity 520ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), background 260ms ease;
    -webkit-tap-highlight-color: transparent;
  }

  .floating-line {
    right: 16px;
    display: grid;
    align-content: center;
    width: min(176px, calc(100vw - 112px));
    height: 58px;
    min-height: 58px;
    gap: 1px;
    border-radius: 999px;
    font-size: 0.84rem;
  }

  body.is-hero-view .floating-line {
    pointer-events: none;
    opacity: 0;
    transform: translateY(18px);
  }

  .floating-line span {
    display: block;
  }

  .floating-line-sub {
    font-size: 0.66rem;
    font-weight: 500;
    opacity: 0.78;
  }

  .floating-top {
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    font-size: 0.68rem;
  }

  .floating-audio {
    left: 20px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    display: flex;
    width: 56px;
    height: 56px;
    min-height: 56px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 0;
    border-radius: 50%;
    appearance: none;
    cursor: pointer;
  }

  .audio-icon {
    position: relative;
    display: block;
    width: 27px;
    height: 24px;
  }

  .audio-speaker {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 8px;
    height: 9px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.9);
  }

  .audio-speaker::after {
    position: absolute;
    top: -5px;
    left: 6px;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 11px solid rgba(255, 255, 255, 0.9);
    content: "";
  }

  .audio-wave,
  .audio-wave::before,
  .audio-wave::after {
    position: absolute;
    top: 50%;
    border: 1.8px solid rgba(255, 255, 255, 0.8);
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: translateY(-50%) scaleX(0.72);
    transform-origin: left center;
    transition: opacity 260ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .audio-wave {
    left: 15px;
    width: 10px;
    height: 15px;
  }

  .audio-wave::before {
    left: 2px;
    width: 15px;
    height: 21px;
  }

  .audio-wave::after {
    left: 5px;
    width: 20px;
    height: 27px;
  }

  .audio-slash {
    position: absolute;
    top: 0;
    left: 18px;
    width: 3px;
    height: 25px;
    border-radius: 999px;
    background: #f4d1cb;
    box-shadow: 0 0 0 1px rgba(45, 42, 39, 0.14);
    transform: rotate(-38deg);
    transform-origin: center;
    transition: opacity 240ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .audio-state {
    font-size: 0.54rem;
  }

  .floating-line:hover,
  .floating-line:focus-visible,
  .floating-top:hover,
  .floating-top:focus-visible,
  .floating-audio:hover,
  .floating-audio:focus-visible {
    background: var(--line-hover);
  }

  .floating-line:focus-visible,
  .floating-top:focus-visible,
  .floating-audio:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.76);
    outline-offset: 3px;
  }

  .top-flower {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
  }

  .top-flower-stem {
    position: absolute;
    bottom: 2px;
    left: 12px;
    width: 2px;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    transform: rotate(-6deg);
    transform-origin: bottom center;
    transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .top-flower-stem::after {
    position: absolute;
    top: 7px;
    left: -6px;
    width: 8px;
    height: 5px;
    border-radius: 8px 0 8px 0;
    background: rgba(127, 144, 119, 0.92);
    content: "";
    transform: rotate(-22deg);
  }

  .top-flower-bud {
    position: absolute;
    top: 4px;
    left: 8px;
    width: 10px;
    height: 13px;
    border-radius: 9px 9px 7px 7px;
    background: linear-gradient(135deg, #f1cbc5 0%, var(--rose) 56%, var(--rose-deep) 100%);
    box-shadow: 0 2px 8px rgba(169, 116, 109, 0.34);
    transform: rotate(-16deg);
    transition: opacity 1200ms ease, transform 1600ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .top-flower-petals {
    position: absolute;
    top: 8px;
    left: 12px;
    width: 1px;
    height: 1px;
    opacity: 0;
    transform: translateY(4px) scale(0.2);
    transform-origin: 50% 100%;
    transition: opacity 900ms ease, transform 1700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .top-flower-petals span {
    position: absolute;
    top: -9px;
    left: -4px;
    width: 8px;
    height: 13px;
    border-radius: 10px 10px 7px 7px;
    background: linear-gradient(135deg, #f5d2cd 0%, var(--rose) 68%, var(--rose-deep) 100%);
    box-shadow: 0 2px 6px rgba(169, 116, 109, 0.26);
    opacity: 0;
    transform: rotate(0deg) translateY(1px) scaleY(0.42);
    transform-origin: 50% 100%;
    transition:
      opacity 900ms ease,
      transform 1700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .top-flower-petals span:nth-child(1) {
    --petal-open: rotate(-58deg) translateY(-4px) scaleY(1);
    transition-delay: 80ms;
  }

  .top-flower-petals span:nth-child(2) {
    --petal-open: rotate(-20deg) translateY(-7px) scaleY(1);
    transition-delay: 220ms;
  }

  .top-flower-petals span:nth-child(3) {
    --petal-open: rotate(22deg) translateY(-7px) scaleY(1);
    transition-delay: 360ms;
  }

  .top-flower-petals span:nth-child(4) {
    --petal-open: rotate(60deg) translateY(-4px) scaleY(1);
    transition-delay: 500ms;
  }

  .floating-top.is-blooming .top-flower-stem {
    transform: rotate(-2deg);
  }

  .floating-top.is-blooming .top-flower-bud {
    opacity: 0;
    transform: translateY(-5px) scale(0.34) rotate(-16deg);
  }

  .floating-top.is-blooming .top-flower-petals {
    opacity: 1;
    transform: translateY(-2px) scale(1);
  }

  .floating-top.is-blooming .top-flower-petals span {
    opacity: 1;
    transform: var(--petal-open);
  }

  body.is-menu-open .floating-line,
  body.is-menu-open .floating-top,
  body.is-menu-open .floating-audio {
    pointer-events: none;
    opacity: 0;
    transform: translateY(84px);
  }
}

.hero-frame {
  position: absolute;
  inset: 92px max(26px, calc((100vw - var(--content)) / 2)) 34px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border: solid rgba(255, 255, 255, 0.72);
  content: "";
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.hero-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1px 1px 0;
}

.hero-frame span {
  position: absolute;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.76rem;
  line-height: 1;
}

.hero-frame span:first-child {
  left: 18px;
}

.hero-frame span:last-child {
  right: 18px;
}

.hero-flash {
  position: absolute;
  inset: 0;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--flash-x, 50%) var(--flash-y, 50%), rgba(255, 255, 255, 0.98) 0 9%, rgba(255, 255, 255, 0.74) 18%, rgba(255, 255, 255, 0.24) 42%, transparent 72%),
    rgba(255, 255, 255, 0.18);
  mix-blend-mode: screen;
}

.hero.is-flashing .hero-flash {
  animation: cameraFlash 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero.is-flashing .hero-frame {
  animation: frameFlash 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cameraFlash {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  18% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
  }
}

@keyframes frameFlash {
  0% {
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
  }

  12% {
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), inset 0 0 34px rgba(255, 255, 255, 0.18);
  }

  100% {
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: none;
  }
}

.story-section {
  position: relative;
  overflow: hidden;
  padding: 132px 0 148px;
  background:
    linear-gradient(180deg, #171412 0%, #241f1b 58%, #fffdf9 100%);
}

.story-section::after {
  position: absolute;
  right: -0.08em;
  bottom: 12%;
  z-index: 0;
  color: rgba(255, 255, 255, 0.045);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 8rem;
  line-height: 1;
  content: "mother";
  pointer-events: none;
}

.story-grid {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.68fr);
  gap: clamp(48px, 7vw, 106px);
}

.story-gallery {
  position: relative;
  min-height: 650px;
  transform: translate3d(0, var(--story-drift, 0px), 0);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.story-gallery .story-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  aspect-ratio: 1.44 / 1;
  border-radius: 3px;
}

.story-photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 39%;
  overflow: hidden;
  aspect-ratio: 0.72 / 1;
  border: 10px solid rgba(255, 253, 249, 0.92);
  border-radius: 3px;
  background: #161413;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.34);
}

.story-photo-small::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
  content: "";
}

.story-photo-small img {
  height: 100%;
  object-fit: cover;
}

.story-kicker {
  color: rgba(207, 167, 160, 0.86);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.story-note {
  margin-top: 10px;
  padding-left: 18px;
  border-left: 1px solid rgba(207, 167, 160, 0.46);
  color: rgba(255, 255, 255, 0.66);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.94rem;
  line-height: 2;
}

.concept-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  background:
    linear-gradient(180deg, #fffdf9 0%, #f7f1ea 100%);
}

.concept-section::after {
  position: absolute;
  top: 12%;
  right: max(18px, calc((100vw - var(--content)) / 2));
  width: 1px;
  height: 56%;
  background: linear-gradient(180deg, transparent, rgba(51, 47, 43, 0.18), transparent);
  content: "";
}

.cinema-row {
  align-items: center;
}

.cinema-photo {
  border-radius: 3px;
  box-shadow: 0 38px 98px rgba(51, 47, 43, 0.16);
}

.gallery-section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  overflow: hidden;
  padding: 112px 18px 118px;
  color: #fff;
  background:
    linear-gradient(180deg, #181512 0%, #26211d 100%);
}

.gallery-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 12.5% 100%;
  opacity: 0.55;
  content: "";
  pointer-events: none;
}

.gallery-intro {
  position: relative;
  z-index: 2;
  grid-column: 2 / span 4;
  grid-row: 1;
  align-self: end;
  padding: 0 0 42px;
}

.gallery-intro .section-kicker {
  color: rgba(207, 167, 160, 0.9);
}

.gallery-intro h2 {
  max-width: 9em;
}

.gallery-note {
  max-width: 28em;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.9;
}

.gallery-scroll-hint {
  display: none;
}

.gallery-floating-hint {
  display: none;
}

.gallery-section .gallery-photo {
  z-index: 2;
  min-height: auto;
  margin-top: 0;
  border-radius: 3px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  transform: translate3d(0, var(--gallery-drift, 0px), 0);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-section .gallery-photo:nth-of-type(1) {
  grid-column: 7 / -1;
  grid-row: 1 / span 2;
  aspect-ratio: 1.52 / 1;
}

.gallery-section .gallery-photo:nth-of-type(2) {
  grid-column: 2 / span 3;
  grid-row: 2 / span 2;
  aspect-ratio: 0.86 / 1;
}

.gallery-section .gallery-photo:nth-of-type(3) {
  grid-column: 5 / span 4;
  grid-row: 3 / span 2;
  aspect-ratio: 1.16 / 1;
}

.gallery-section .gallery-photo:nth-of-type(4) {
  grid-column: 9 / span 3;
  grid-row: 3 / span 2;
  aspect-ratio: 0.9 / 1;
}

.gallery-section .gallery-photo:nth-of-type(5) {
  grid-column: 2 / span 5;
  grid-row: 5;
  aspect-ratio: 1.05 / 1;
}

.gallery-section .gallery-photo:nth-of-type(6) {
  grid-column: 7 / -2;
  grid-row: 5;
  aspect-ratio: 1.32 / 1;
}

.gallery-section .gallery-photo:nth-child(2),
.gallery-section .gallery-photo:nth-child(3),
.gallery-section .gallery-photo:nth-child(4),
.gallery-section .gallery-photo:nth-child(5),
.gallery-section .gallery-photo:nth-child(6),
.gallery-section .gallery-photo:nth-child(7) {
  margin-top: 0;
}

.gallery-section .gallery-photo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.gallery-photo-wide img {
  object-position: center 46%;
}

.gallery-photo-tall img {
  object-position: center 48%;
}

.gallery-photo-family img {
  object-position: center 34%;
}

.faq-section {
  padding: 84px 0;
  background:
    linear-gradient(180deg, #fffdf9 0%, #fbf8f2 100%);
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.faq-heading h2 {
  max-width: 9em;
}

.faq-line-video {
  width: min(34%, 210px);
  margin: 24px 22px 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-line-video[hidden] {
  display: none;
}

.faq-line-video.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.faq-line-video__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(142, 140, 140, 0.22);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(71, 67, 69, 0.12);
}

.faq-line-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-line-video figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--rule);
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.faq-item h3 {
  color: var(--ink);
}

.faq-item h3::before {
  margin-right: 10px;
  color: var(--rose-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  content: "Q.";
}

.faq-item p {
  margin-top: 10px;
  color: var(--muted);
}

.peace-section {
  background:
    linear-gradient(180deg, #f5f4ee 0%, #fffdf9 64%, #f7f1ea 100%);
}

.assurance-list,
.feature-lines,
.consult-copy {
  border-color: rgba(51, 47, 43, 0.2);
}

.assurance-item,
.feature-line {
  transition: background 240ms ease, padding-left 240ms ease;
}

.assurance-item:hover,
.feature-line:hover {
  padding-left: 12px;
  background: rgba(207, 167, 160, 0.07);
}

.final-cta-copy h2 {
  max-width: 9.5em;
}

@media (max-width: 980px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-gallery {
    min-height: 560px;
  }

  .gallery-intro {
    grid-column: 1 / span 5;
  }
}

@media (max-width: 680px) {
  .hero-frame {
    inset: 96px 16px 96px;
    border-color: rgba(255, 255, 255, 0.16);
  }

  .hero-frame span {
    display: none;
  }

  .story-section {
    padding: 84px 0 136px;
  }

  .story-section::after {
    right: auto;
    bottom: 48px;
    left: 16px;
    font-size: 4.8rem;
  }

  .story-gallery {
    min-height: 360px;
    margin-bottom: 34px;
  }

  .story-gallery .story-photo {
    width: 90%;
    aspect-ratio: 1.12 / 1;
  }

  .story-photo-small {
    width: 38%;
    border-width: 7px;
  }

  .story-copy {
    gap: 15px;
    padding: 0 2px 0 18px;
    border-left: 1px solid rgba(207, 167, 160, 0.44);
    border-radius: 0;
    background: transparent;
    font-size: 1.08rem;
  }

  .story-last {
    margin-top: 8px;
  }

  .story-note {
    padding-left: 0;
    border-left: 0;
    font-size: 0.88rem;
  }

  .story-note br {
    display: none;
  }

  .concept-section {
    padding: 72px 0 66px;
  }

  .concept-section::after {
    display: none;
  }

  .faq-inner {
    display: block;
    width: calc(100% - 32px);
  }

  .faq-heading {
    margin-bottom: 28px;
  }

  .faq-heading h2 {
    max-width: none;
  }

  .faq-line-video {
    width: min(58%, 200px);
    margin: 20px auto 0;
  }

  .faq-line-video figcaption {
    text-align: center;
  }

  .faq-list,
  .faq-item {
    width: 100%;
    min-width: 0;
  }

  .faq-item h3,
  .faq-item p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .gallery-section {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 72px 16px 84px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-floating-hint {
    display: none;
  }

  .gallery-floating-hint::after {
    content: none;
  }

  .gallery-section::after {
    background-size: 42px 100%;
  }

  .gallery-intro,
  .gallery-section .gallery-photo {
    flex: 0 0 76%;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
  }

  .gallery-intro {
    display: flex;
    flex-basis: 66%;
    min-height: 386px;
    flex-direction: column;
    justify-content: center;
    padding: 0 14px 0 0;
  }

  .gallery-scroll-hint {
    position: relative;
    display: inline-grid;
    grid-template-columns: auto minmax(58px, 96px) auto;
    gap: 10px;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }

  .gallery-scroll-hint::before {
    content: none;
  }

  .gallery-scroll-hint span:last-child {
    color: rgba(255, 255, 255, 0.56);
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: none;
  }

  .gallery-scroll-track {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    overflow: visible;
    background: linear-gradient(90deg, rgba(207, 167, 160, 0.92), rgba(255, 255, 255, 0.36));
  }

  .gallery-scroll-track::before {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 7px;
    height: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.62);
    border-right: 1px solid rgba(255, 255, 255, 0.62);
    content: "";
    transform: translateY(-50%) rotate(45deg);
  }

  .gallery-section .gallery-photo,
  .gallery-section .gallery-photo:nth-of-type(1),
  .gallery-section .gallery-photo:nth-of-type(2),
  .gallery-section .gallery-photo:nth-of-type(3),
  .gallery-section .gallery-photo:nth-of-type(4),
  .gallery-section .gallery-photo:nth-of-type(5),
  .gallery-section .gallery-photo:nth-of-type(6) {
    min-height: 406px;
    aspect-ratio: 4 / 5;
    transform: none;
  }

  .gallery-section::-webkit-scrollbar {
    display: none;
  }

  .assurance-item:hover,
  .feature-line:hover {
    padding-left: 0;
    background: transparent;
  }
}

.mini-gallery-section {
  padding: 74px 0 82px;
  background:
    linear-gradient(180deg, #fffdf9 0%, #fbf8f2 100%);
}

.hero-achievements {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 16px 14px;
  border: 1px solid rgba(190, 158, 101, 0.56);
  border-radius: 6px;
  background:
    linear-gradient(118deg, rgba(215, 180, 184, 0.13), transparent 38%),
    linear-gradient(145deg, #4b4648 0%, #383436 54%, #2f2c2e 100%);
  box-shadow:
    0 24px 56px rgba(65, 58, 61, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  isolation: isolate;
  opacity: 0;
  animation-delay: 2850ms;
  animation-duration: 1600ms;
  animation-fill-mode: both;
  animation-name: none;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-achievements::before {
  position: absolute;
  inset: 7px;
  z-index: 0;
  border: 1px solid rgba(236, 216, 178, 0.18);
  border-radius: 3px;
  content: "";
  pointer-events: none;
}

.hero-achievements::after {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  z-index: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(236, 216, 178, 0.42), transparent);
  content: "";
  pointer-events: none;
}

.achievement-medal {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 5px 14px 7px;
  color: #f9f5ef;
  text-align: center;
}

.achievement-medal > * {
  position: relative;
  z-index: 2;
}

.achievement-label,
.achievement-unit,
.achievement-detail {
  display: block;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
}

.achievement-label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(244, 230, 231, 0.84);
  font-size: 0.82rem;
  font-weight: 600;
}

.achievement-label::before,
.achievement-label::after {
  width: 18px;
  height: 1px;
  background: rgba(206, 177, 124, 0.66);
  content: "";
}

.achievement-value {
  display: flex;
  gap: 8px;
  align-items: baseline;
  justify-content: center;
  margin-top: 5px;
}

.achievement-medal strong {
  color: #f1dcae;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1;
}

.achievement-unit {
  color: rgba(249, 245, 239, 0.9);
  font-size: 0.86rem;
  font-weight: 600;
}

.achievement-detail {
  margin-top: 6px;
  color: rgba(249, 245, 239, 0.66);
  font-size: 0.72rem;
}

.mini-gallery-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  width: min(100% - 44px, var(--content));
  margin: 0 auto 28px;
  align-items: end;
}

.mini-gallery-heading h2 {
  max-width: 9em;
}

.mini-gallery-heading p:not(.section-kicker) {
  max-width: 34em;
  color: var(--muted);
}

.mini-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100% - 44px, var(--content));
  margin: 0 auto;
}

.mini-gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 5px;
  background: #eee8e1;
  box-shadow: 0 22px 58px rgba(51, 47, 43, 0.1);
}

.mini-gallery-card:nth-child(2),
.mini-gallery-card:nth-child(4) {
  margin-top: 34px;
}

.mini-gallery-card img,
.peace-photo img,
.flow-photo img {
  height: 100%;
  object-fit: cover;
}

.gallery-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(31, 26, 23, 0.46);
  font-size: 0.76rem;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}

.quiet-copy {
  min-height: auto;
  padding: 92px 18px;
}

.small-thought {
  width: min(100%, 430px);
  margin-top: 44px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  line-height: 2;
}

.small-thought + .small-thought {
  margin-top: 26px;
}

.peace-side {
  display: grid;
  gap: 22px;
}

.peace-photo,
.flow-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.42 / 1;
  border-radius: 5px;
  background: #eee8e1;
  box-shadow: 0 24px 68px rgba(51, 47, 43, 0.12);
}

.flow-photo {
  margin-top: 26px;
}

.flow-item p + p {
  display: none;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid rgba(51, 47, 43, 0.14);
  background: rgba(51, 47, 43, 0.14);
}

.feature-family {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  min-height: 390px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 3px;
  color: #fff;
  background: #2d2926;
  box-shadow: 0 28px 72px rgba(51, 47, 43, 0.14);
}

.feature-family-media {
  min-width: 0;
  min-height: 390px;
  overflow: hidden;
  background: #211d1a;
}

.feature-family-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.feature-family-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
}

.feature-family-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.88rem;
}

.feature-family-copy h3 {
  margin-top: 20px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.42rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.55;
}

.feature-family-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
}

.feature-card {
  min-height: 210px;
  padding: 24px 20px;
  background: rgba(255, 253, 249, 0.86);
}

.feature-card span,
.proof-card span {
  display: block;
  color: var(--rose-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.88rem;
}

.feature-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
}

.feature-card p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.message-section {
  padding-bottom: 72px;
}

.proof-section {
  padding: 78px 0;
}

.proof-inner {
  display: block;
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.proof-lead {
  margin-top: 0;
}

.proof-cards {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 34px;
}

.proof-card {
  min-height: 150px;
  padding: 22px 18px;
}

.proof-card h3 {
  display: none;
}

.proof-value {
  margin-top: 18px !important;
  font-size: 1.12rem !important;
  line-height: 1.45;
}

.anxiety-card p {
  line-height: 1.75;
}

.gallery-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100% - 44px, var(--content));
  margin: 0 auto;
  padding: 92px 0 96px;
}

.gallery-intro {
  grid-column: 1 / -1;
  padding: 0 0 18px;
}

.gallery-section .gallery-photo,
.gallery-section .gallery-photo:nth-of-type(1),
.gallery-section .gallery-photo:nth-of-type(2),
.gallery-section .gallery-photo:nth-of-type(3),
.gallery-section .gallery-photo:nth-of-type(4),
.gallery-section .gallery-photo:nth-of-type(5),
.gallery-section .gallery-photo:nth-of-type(6) {
  grid-column: auto;
  grid-row: auto;
  min-height: auto;
  margin-top: 0;
  aspect-ratio: 4 / 5;
  transform: none;
}

.gallery-section .gallery-photo img {
  height: 100%;
  object-fit: cover;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 18px 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  margin-right: 10px;
  color: var(--rose-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  content: "Q.";
}

.faq-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--rose-deep);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 220ms ease;
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  padding: 0 0 18px 31px;
}

.faq-item a {
  color: var(--rose-deep);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.faq-item a:hover,
.faq-item a:focus-visible {
  color: var(--ink);
}

.faq-item h3,
.faq-item h3::before {
  display: none;
}

.consult-copy > p:not(.section-kicker) {
  margin-top: 18px;
}

.consult-topics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.consult-topics li {
  padding: 7px 12px;
  border: 1px solid rgba(51, 47, 43, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
  font-size: 0.84rem;
  line-height: 1.45;
}

.consult-topics li::before {
  content: none;
}

.concept-section::after {
  display: none;
}

.concept-layout,
.peace-layout {
  width: min(100% - 44px, var(--content));
  margin-right: auto;
  margin-left: auto;
}

.concept-copy-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(44px, 8vw, 116px);
  align-items: end;
}

.concept-copy-grid > *,
.peace-content,
.peace-intro,
.peace-assurance {
  min-width: 0;
}

.concept-intro h2 {
  max-width: 10em;
}

.concept-intro > p:not(.section-kicker) {
  max-width: 34em;
  margin-top: 28px;
  color: var(--muted);
}

.concept-narrative .concept-detail {
  margin-top: 0;
}

.concept-narrative .concept-quote {
  max-width: 28em;
  margin-top: 30px;
  line-height: 1.9;
}

.concept-visuals {
  position: relative;
  width: 83%;
  margin: 58px auto 0;
  padding: 0 0 42px;
}

.concept-photo-main,
.peace-documentary {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #e9e5df;
}

.concept-photo-main {
  width: 94%;
  margin-left: -3%;
  aspect-ratio: 1.48 / 1;
  box-shadow: 0 32px 82px rgba(51, 47, 43, 0.15);
}

.concept-photo-main img,
.peace-documentary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-photo-main img {
  object-position: center 48%;
}

.concept-shoot-video {
  position: absolute;
  right: -2%;
  bottom: 0;
  z-index: 2;
  width: min(18%, 165px);
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.concept-shoot-video[hidden] {
  display: none;
}

.concept-shoot-video.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.concept-shoot-video__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 18 / 25;
  border: 5px solid var(--paper);
  border-radius: 5px;
  background: var(--warm-gray);
  box-shadow: 0 20px 48px rgba(71, 67, 69, 0.16);
}

.concept-shoot-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-shoot-video figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: center;
}

.peace-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  column-gap: clamp(44px, 7vw, 94px);
  align-items: start;
}

.peace-intro h2 {
  max-width: 12em;
}

.peace-intro .peace-lead {
  max-width: 40em;
  margin-top: 30px;
}

.peace-documentary {
  position: sticky;
  top: 104px;
  aspect-ratio: 0.7 / 1;
  box-shadow: 0 30px 76px rgba(51, 47, 43, 0.16);
}

.peace-documentary img {
  object-position: center center;
}

.peace-assurance {
  margin-top: 34px;
}

.peace-assurance .assurance-item {
  grid-template-columns: 50px 1fr;
  padding: 15px 0;
}

.peace-comfort {
  margin-top: 34px;
  padding: 24px 26px;
  border-top: 1px solid rgba(155, 104, 112, 0.34);
  border-bottom: 1px solid rgba(142, 140, 140, 0.24);
  background: rgba(244, 230, 231, 0.38);
}

.peace-comfort h3 {
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.12rem;
  font-weight: 500;
}

.peace-comfort p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.9;
}

.concept-intro h2,
.concept-intro > p,
.concept-narrative p,
.peace-intro h2,
.peace-lead p,
.peace-assurance p {
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .concept-copy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .peace-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .peace-content {
    order: 1;
  }

  .peace-documentary {
    position: relative;
    top: auto;
    order: 2;
    width: min(100%, 620px);
    aspect-ratio: 4 / 5;
  }

  .mini-gallery-heading,
  .proof-heading,
  .voice-heading {
    grid-template-columns: 1fr;
  }

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

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

  .feature-family {
    grid-template-columns: 1fr;
  }

  .feature-family-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 680px) {
  .concept-layout,
  .peace-layout {
    width: calc(100% - 32px);
  }

  .concept-copy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .concept-intro h2,
  .peace-intro h2 {
    max-width: none;
  }

  .concept-narrative .concept-quote {
    margin-top: 24px;
  }

  .concept-visuals {
    width: 100%;
    margin-top: 38px;
    padding: 0 0 34px;
  }

  .concept-photo-main {
    width: 92%;
    margin-left: -2%;
    aspect-ratio: 4 / 3;
  }

  .concept-shoot-video {
    right: -1%;
    width: min(34%, 120px);
  }

  .concept-shoot-video__frame {
    border-width: 3px;
  }

  .concept-shoot-video figcaption {
    margin-top: 5px;
    font-size: 0.66rem;
  }

  .peace-layout {
    gap: 30px;
  }

  .peace-comfort {
    margin-top: 30px;
    padding: 21px 18px;
  }

  .peace-intro .peace-lead {
    margin-top: 24px;
  }

  .peace-documentary {
    width: 100%;
    aspect-ratio: 3 / 4;
  }

  .peace-assurance .assurance-item {
    grid-template-columns: 42px 1fr;
    padding: 16px 0;
  }

  .mini-gallery-section {
    padding: 58px 0 64px;
  }

  .hero-achievements {
    width: 100%;
    margin: 0;
    padding: 13px 6px;
  }

  .achievement-medal {
    padding: 8px 9px 9px;
  }

  .achievement-label {
    gap: 7px;
    font-size: 0.72rem;
  }

  .achievement-label::before,
  .achievement-label::after {
    width: 12px;
  }

  .achievement-medal strong {
    font-size: 1.9rem;
  }

  .achievement-unit {
    font-size: 0.72rem;
  }

  .achievement-detail {
    margin-top: 5px;
    font-size: 0.62rem;
  }

  .mini-gallery-heading {
    width: calc(100% - 32px);
    margin-bottom: 20px;
  }

  .mini-gallery-grid {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    padding: 0 16px 8px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .mini-gallery-card {
    flex: 0 0 74%;
    scroll-snap-align: center;
  }

  .mini-gallery-card:nth-child(2),
  .mini-gallery-card:nth-child(4) {
    margin-top: 0;
  }

  .quiet-copy {
    padding: 66px 18px;
    color: #fff;
    background:
      linear-gradient(180deg, rgba(24, 21, 19, 0.96) 0%, rgba(36, 31, 27, 0.98) 58%, rgba(24, 21, 19, 0.96) 100%);
  }

  .quiet-copy-inner {
    padding: 26px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(20, 18, 16, 0.38);
  }

  .quiet-copy-inner::before {
    color: rgba(255, 255, 255, 0.1);
  }

  .floating-word {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
  }

  .small-thought {
    width: 100%;
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
  }

  .small-thought + .small-thought {
    margin-top: 22px;
  }

  .peace-side {
    gap: 18px;
  }

  .peace-photo,
  .flow-photo {
    aspect-ratio: 4 / 3;
  }

  .feature-cards,
  .proof-cards,
  .voice-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .proof-card,
  .voice-card {
    min-height: auto;
    padding: 20px;
  }

  .feature-family {
    min-height: 0;
    margin-top: 28px;
  }

  .feature-family-copy {
    padding: 26px 20px 30px;
  }

  .proof-heading,
  .voice-heading {
    gap: 18px;
  }

  .gallery-section {
    display: flex;
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    padding: 68px 16px 78px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-intro,
  .gallery-section .gallery-photo,
  .gallery-section .gallery-photo:nth-of-type(1),
  .gallery-section .gallery-photo:nth-of-type(2),
  .gallery-section .gallery-photo:nth-of-type(3),
  .gallery-section .gallery-photo:nth-of-type(4),
  .gallery-section .gallery-photo:nth-of-type(5),
  .gallery-section .gallery-photo:nth-of-type(6) {
    flex: 0 0 78%;
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
    scroll-snap-align: center;
  }

  .gallery-intro {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: center;
    padding-right: 8px;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 16px 0;
  }

  .faq-item p {
    padding-left: 0;
  }
}

.final-cta {
  align-items: end;
}

.final-cta > .final-cta-video {
  object-position: 68% 52%;
}

.final-cta::after {
  background:
    linear-gradient(180deg, rgba(24, 21, 19, 0.04) 0%, rgba(24, 21, 19, 0.04) 34%, rgba(24, 21, 19, 0.58) 72%, rgba(24, 21, 19, 0.9) 100%),
    linear-gradient(90deg, rgba(24, 21, 19, 0.74), rgba(24, 21, 19, 0.2) 48%, rgba(24, 21, 19, 0) 76%);
}

.final-cta-copy {
  max-width: 560px;
  padding: 28px 28px 30px;
  border-left: 1px solid rgba(207, 167, 160, 0.58);
  background: linear-gradient(90deg, rgba(22, 19, 17, 0.72), rgba(22, 19, 17, 0.34));
  backdrop-filter: blur(8px);
}

@media (max-width: 680px) {
  .final-cta {
    align-items: end;
    min-height: 590px;
    padding: 108px 16px 118px;
  }

  .final-cta > .final-cta-video {
    object-position: 72% 38%;
  }

  .final-cta::after {
    background:
      linear-gradient(180deg, rgba(24, 21, 19, 0.02) 0%, rgba(24, 21, 19, 0.02) 30%, rgba(24, 21, 19, 0.54) 66%, rgba(24, 21, 19, 0.92) 100%);
  }

  .final-cta-copy {
    width: 100%;
    max-width: 360px;
    padding: 22px 18px 24px;
    background: linear-gradient(180deg, rgba(22, 19, 17, 0.74), rgba(22, 19, 17, 0.44));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .button::after,
  .zoom-frame img,
  .menu-toggle,
  .menu-toggle-lines,
  .mobile-menu,
  .mobile-menu-inner,
  .mobile-menu-nav a,
  .floating-line,
  .floating-top,
  .floating-audio,
  .audio-wave,
  .audio-wave::before,
  .audio-wave::after,
  .audio-slash,
  .hero-flash,
  .hero-frame,
  .concept-shoot-video,
  .faq-line-video {
    transition: none;
    animation: none;
  }

  .hero-video,
  .story-gallery,
  .wide-moment img,
  .final-cta > .final-cta-video,
  .gallery-section .gallery-photo,
  .zoom-frame img {
    transform: none !important;
  }

  .gallery-floating-hint::after {
    animation: none;
  }

  .hero.is-flashing .hero-flash,
  .hero.is-flashing .hero-frame {
    animation: none;
  }

  .scroll-cue::after {
    animation: none;
  }

  [data-reveal] {
    transform: none;
  }

  [data-reveal].is-visible {
    animation: fadeOnly 650ms ease both;
  }
}

.gallery-photo-link {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  border-radius: inherit;
  cursor: pointer;
}

.gallery-photo-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.96);
  outline-offset: -5px;
}

.gallery-photo--floral img {
  object-position: 50% 47%;
}

.gallery-photo--siblings img {
  object-position: 20% 48%;
}

.gallery-photo--maternity img {
  object-position: 50% 50%;
}

.gallery-photo--twins img {
  object-position: 50% 48%;
}

.gallery-photo--feeding img {
  object-position: 63% 50%;
}

.gallery-photo--detail img {
  object-position: 50% 50%;
}

/* Kocon Photo brand palette: dusty pink, warm gray, and cream. */
::selection {
  background: rgba(155, 104, 112, 0.78);
}

.site-header.is-scrolled {
  background: rgba(250, 247, 245, 0.9);
  box-shadow: 0 1px 0 rgba(142, 140, 140, 0.14);
}

.site-header.is-scrolled .header-line,
.site-header.is-scrolled .menu-toggle {
  border-color: rgba(155, 104, 112, 0.26);
  background: rgba(232, 202, 206, 0.34);
}

.hero {
  background: #302d2f;
}

.hero-media::before {
  background: linear-gradient(135deg, #494447 0%, #302d2f 48%, #211f20 100%);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(48, 45, 47, 0.72) 0%, rgba(48, 45, 47, 0.24) 48%, rgba(48, 45, 47, 0.12) 100%),
    linear-gradient(0deg, rgba(37, 34, 36, 0.76) 0%, rgba(37, 34, 36, 0.08) 58%, rgba(37, 34, 36, 0.08) 100%);
}

.mini-gallery-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--soft) 100%);
}

.concept-section {
  background: linear-gradient(180deg, var(--soft) 0%, var(--paper) 100%);
}

.peace-section {
  background: linear-gradient(180deg, #efeded 0%, var(--paper) 64%, var(--soft) 100%);
}

.flow-section {
  background: linear-gradient(180deg, var(--paper) 0%, #efeded 100%);
}

.feature-section,
.voice-section,
.anxiety-section {
  background: var(--paper);
}

.proof-section {
  background: linear-gradient(180deg, var(--soft) 0%, var(--paper) 100%);
}

.message-section {
  background: linear-gradient(180deg, #eeebec 0%, var(--paper) 100%);
}

.faq-section {
  background: linear-gradient(180deg, #efeded 0%, var(--paper) 100%);
}

.consult-section,
.price-section {
  background: var(--soft);
}

.quiet-copy {
  background: linear-gradient(180deg, #3d393b 0%, #272426 100%);
}

.gallery-section {
  background: linear-gradient(180deg, #393537 0%, #242224 100%);
}

.flow-item,
.proof-card {
  border-color: rgba(142, 140, 140, 0.2);
  background: rgba(250, 247, 245, 0.88);
}

.feature-cards,
.proof-cards {
  border-color: rgba(142, 140, 140, 0.24);
  background: rgba(142, 140, 140, 0.24);
}

.feature-card,
.voice-card,
.anxiety-card {
  border-color: rgba(142, 140, 140, 0.22);
  background: rgba(244, 230, 231, 0.5);
}

.feature-family {
  background: #454143;
}

.feature-family-media {
  background: #302d2f;
}

.concept-photo-main,
.peace-documentary,
.peace-photo,
.flow-photo {
  background: #e8e5e6;
}

.assurance-list,
.feature-lines,
.consult-copy,
.faq-item,
.price-inner {
  border-color: rgba(142, 140, 140, 0.3);
}

.assurance-item:hover,
.feature-line:hover {
  background: rgba(215, 180, 184, 0.12);
}

.button-line {
  background: var(--line);
  box-shadow: 0 14px 32px var(--line-shadow);
}

.button-line:hover,
.button-line:focus-visible {
  background: var(--line-hover);
}

.floating-line {
  background: rgba(142, 95, 104, 0.96);
  box-shadow: 0 16px 36px rgba(142, 95, 104, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.floating-line:hover,
.floating-line:focus-visible {
  background: var(--line-hover);
}

.floating-top,
.floating-audio {
  background: rgba(71, 67, 69, 0.95);
  box-shadow: 0 16px 36px rgba(71, 67, 69, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.floating-top:hover,
.floating-top:focus-visible,
.floating-audio:hover,
.floating-audio:focus-visible {
  background: #373335;
}

.audio-slash {
  background: var(--blush);
}

.floating-audio.is-playing .audio-state-on {
  color: var(--blush);
}

.floating-audio.is-playing {
  border-color: rgba(215, 180, 184, 0.82);
}

.top-flower-stem::after {
  background: var(--warm-gray);
}

.top-flower-bud {
  background: linear-gradient(135deg, var(--soft) 0%, var(--rose) 58%, var(--rose-deep) 100%);
  box-shadow: 0 2px 8px rgba(155, 104, 112, 0.34);
}

.top-flower-petals span {
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose) 68%, var(--rose-deep) 100%);
  box-shadow: 0 2px 6px rgba(155, 104, 112, 0.28);
}

.mobile-menu-inner {
  background:
    linear-gradient(145deg, rgba(71, 65, 68, 0.97), rgba(38, 35, 37, 0.98)),
    linear-gradient(180deg, rgba(215, 180, 184, 0.12), transparent);
}

body.is-menu-open .site-header .menu-toggle {
  background: rgba(71, 65, 68, 0.42);
}

.final-cta {
  background: var(--warm-gray);
}

.final-cta::after {
  background: linear-gradient(180deg, rgba(42, 39, 41, 0.02) 0%, rgba(42, 39, 41, 0.18) 36%, rgba(42, 39, 41, 0.86) 100%);
}

.final-cta-copy {
  background: linear-gradient(180deg, rgba(61, 57, 59, 0.82), rgba(61, 57, 59, 0.5));
}

@media (max-width: 680px) {
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(48, 45, 47, 0.52) 0%, rgba(48, 45, 47, 0.22) 68%, rgba(48, 45, 47, 0.06) 100%),
      linear-gradient(0deg, rgba(37, 34, 36, 0.74) 0%, rgba(37, 34, 36, 0.3) 62%, rgba(37, 34, 36, 0.08) 100%);
  }

  .quiet-copy {
    background: linear-gradient(180deg, #3d393b 0%, #2c292b 58%, #272426 100%);
  }

  .final-cta::after {
    background: linear-gradient(180deg, rgba(42, 39, 41, 0.02) 0%, rgba(42, 39, 41, 0.02) 30%, rgba(42, 39, 41, 0.56) 66%, rgba(42, 39, 41, 0.92) 100%);
  }
}

@media (hover: none) and (pointer: coarse) and (prefers-reduced-motion: no-preference) {
  .top-flower-bud {
    transition: opacity 1250ms ease, transform 1850ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .top-flower-petals {
    transition: opacity 1100ms ease, transform 2000ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .top-flower-petals span {
    transition:
      opacity 1100ms ease,
      transform 2150ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .top-flower-petals span:nth-child(1) {
    transition-delay: 100ms;
  }

  .top-flower-petals span:nth-child(2) {
    transition-delay: 300ms;
  }

  .top-flower-petals span:nth-child(3) {
    transition-delay: 500ms;
  }

  .top-flower-petals span:nth-child(4) {
    transition-delay: 700ms;
  }
}

/* Keep the TOP flower compact and finish the full bloom within 0.5 seconds. */
@media (prefers-reduced-motion: no-preference) {
  .top-flower-stem {
    transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .top-flower-bud,
  .top-flower-petals {
    transition:
      opacity 500ms ease,
      transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .top-flower-petals span {
    transition:
      opacity 440ms ease,
      transform 440ms cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .top-flower-petals span:nth-child(1) {
    --petal-open: rotate(-42deg) translateY(-2px) scaleY(0.9);
    transition-delay: 0ms;
  }

  .top-flower-petals span:nth-child(2) {
    --petal-open: rotate(-14deg) translateY(-4px) scaleY(0.95);
    transition-delay: 20ms;
  }

  .top-flower-petals span:nth-child(3) {
    --petal-open: rotate(14deg) translateY(-4px) scaleY(0.95);
    transition-delay: 40ms;
  }

  .top-flower-petals span:nth-child(4) {
    --petal-open: rotate(42deg) translateY(-2px) scaleY(0.9);
    transition-delay: 60ms;
  }

  .floating-top.is-blooming .top-flower-bud {
    transform: translateY(-2px) scale(0.55) rotate(-16deg);
  }

  .floating-top.is-blooming .top-flower-petals {
    transform: translateY(-1px) scale(0.88);
  }
}

.gallery-instagram-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 26px;
  padding: 10px 18px;
  border: 1px solid rgba(215, 180, 184, 0.72);
  border-radius: 4px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
  transition: border-color 240ms ease, background-color 240ms ease;
}

.gallery-instagram-link:hover,
.gallery-instagram-link:focus-visible {
  border-color: var(--blush);
  background: rgba(215, 180, 184, 0.14);
}

.gallery-instagram-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.gallery-instagram-arrow::before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
}

.gallery-instagram-arrow::after {
  position: absolute;
  top: 9px;
  left: 5px;
  width: 8px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(-45deg);
  transform-origin: left center;
}

@media (max-width: 680px) {
  .gallery-instagram-link {
    min-height: 48px;
    margin-top: 22px;
    padding-inline: 16px;
    font-size: 0.82rem;
  }

  .gallery-scroll-hint {
    margin-top: 24px;
  }
}

.quiet-copy-inner {
  display: flow-root;
  width: min(100%, var(--narrow));
}

.quiet-copy-photo {
  position: relative;
  float: right;
  overflow: hidden;
  width: clamp(180px, 24vw, 280px);
  aspect-ratio: 3 / 2;
  margin: 32px 0 14px 30px;
  border-radius: 5px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.quiet-copy-photo::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2px;
  content: "";
  pointer-events: none;
}

.quiet-copy-photo img,
.quiet-copy-photo video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .quiet-copy-photo {
    width: clamp(104px, 31vw, 132px);
    margin: 30px 0 10px 14px;
    border-radius: 4px;
  }
}

/* Conversion and trust refinements */
.hero-mobile-story {
  display: block;
  max-width: 42em;
  pointer-events: none;
}

.hero-desktop-copy {
  display: none;
}

.hero-bottom {
  width: min(460px, calc(100% - 44px));
}

.hero-line-button {
  width: 100%;
  min-height: 54px;
  padding-inline: 18px;
}

.hero-availability {
  margin-top: 11px;
  padding: 9px 12px 10px;
  border-left: 1px solid rgba(241, 220, 174, 0.78);
  background: rgba(48, 45, 47, 0.42);
  backdrop-filter: blur(8px);
}

.hero-bottom .hero-availability-main,
.hero-bottom .hero-availability-sub {
  margin: 0;
  color: #fff;
  line-height: 1.55;
}

.hero-bottom .hero-availability-main {
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-bottom .hero-availability-sub {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.hero-price-link,
.consult-price-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  text-underline-offset: 5px;
}

.hero-price-link {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
}

.peace-intro .peace-lead {
  max-width: 43em;
}

.peace-assurance {
  margin-top: 38px;
}

.peace-assurance .assurance-item p {
  line-height: 1.75;
}

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

.voice-card {
  min-height: 230px;
}

.voice-card .voice-meta {
  margin: 0;
  padding: 0 34px 12px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(142, 140, 140, 0.22);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.6;
}

.voice-detail {
  margin-top: 18px;
}

.voice-detail span {
  display: block;
  color: var(--rose-deep);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.voice-card .voice-detail p {
  margin-top: 8px;
}

.consult-price-link {
  align-self: end;
  margin-top: 18px;
  color: var(--muted);
}

.faq-inner {
  padding-bottom: 24px;
}

@media (max-width: 680px) {
  .hero-bottom {
    bottom: 82px;
    width: auto;
  }

  .hero-bottom > p:first-child {
    font-size: 0.84rem;
    line-height: 1.68;
  }

  .hero-line-button {
    min-height: 52px;
    margin-top: 15px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  .hero-bottom .hero-cta-note {
    margin-top: 8px;
    padding-left: 0;
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .hero-availability {
    margin-top: 8px;
    padding: 7px 10px 8px;
  }

  .hero-bottom .hero-availability-main {
    font-size: 0.75rem;
  }

  .hero-bottom .hero-availability-sub {
    font-size: 0.66rem;
  }

  .hero-price-link {
    min-height: 34px;
    margin-top: 1px;
    font-size: 0.72rem;
  }

  .peace-assurance {
    margin-top: 28px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .voice-card {
    min-height: auto;
  }

  .button-row {
    align-items: center;
  }

  .consult-price-link {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .faq-inner {
    padding-bottom: 82px;
  }

  body.is-hero-view .floating-top {
    pointer-events: none;
    opacity: 0;
    transform: translateY(18px);
  }

  body.is-hero-view .floating-audio {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* First-view story */
@keyframes heroStoryIn {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(6px);
  }

  45% {
    opacity: 0.28;
    filter: blur(2px);
    transform: translateY(3px);
  }

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

@keyframes heroAchievementIn {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(8px) scale(0.985);
  }

  45% {
    opacity: 0.22;
    filter: blur(2px);
    transform: translateY(4px) scale(0.993);
  }

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

@keyframes heroStoryFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-content {
  animation: none;
}

.hero-mobile-story-main {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.hero-mobile-story-line {
  display: block;
  opacity: 0;
  animation-duration: 1450ms;
  animation-fill-mode: both;
  animation-name: none;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-mobile-story-line-1 {
  animation-delay: 320ms;
}

.hero-mobile-story-line-2 {
  animation-delay: 1050ms;
}

.hero-mobile-story-service {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  opacity: 0;
  animation-delay: 2050ms;
  animation-duration: 1400ms;
  animation-fill-mode: both;
  animation-name: none;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bottom {
  animation: none;
}

.hero-support-copy,
.hero-cta-note,
.hero-availability,
.hero-price-link {
  display: none;
}

.hero-line-button {
  margin-top: 0;
  opacity: 0;
  animation-delay: 2700ms;
  animation-duration: 800ms;
  animation-fill-mode: both;
  animation-name: none;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-hero-view .floating-line,
body.is-hero-view .floating-top {
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
}

.hero-signature-group {
  position: relative;
  display: block;
  width: min(390px, 36vw);
  margin: 10px 0 2px;
  padding-bottom: 16px;
}

.hero-signature {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1086 / 362;
  pointer-events: none;
}

.hero-signature-canvas,
.hero-signature-fallback,
.hero-katakana-signature-canvas,
.hero-katakana-signature-fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-signature-canvas,
.hero-katakana-signature-canvas {
  opacity: 0;
}

.hero-signature-fallback {
  opacity: 0;
  animation-delay: 1100ms;
  animation-duration: 900ms;
  animation-fill-mode: both;
  animation-name: none;
  animation-timing-function: ease;
}

.hero-katakana-signature {
  position: absolute;
  right: -1%;
  bottom: 0;
  display: block;
  width: 46%;
  aspect-ratio: 1000 / 228;
  pointer-events: none;
}

.hero-katakana-signature-fallback {
  opacity: 0;
  animation-delay: 3000ms;
  animation-duration: 1000ms;
  animation-fill-mode: both;
  animation-name: none;
  animation-timing-function: ease;
}

.hero-signature.is-canvas-ready .hero-signature-canvas {
  opacity: 1;
}

.hero-signature.is-canvas-ready .hero-signature-fallback {
  display: none;
}

.hero-katakana-signature.is-canvas-ready .hero-katakana-signature-canvas {
  opacity: 1;
}

.hero-katakana-signature.is-canvas-ready .hero-katakana-signature-fallback {
  display: none;
}

body.is-hero-intro-ready .hero-mobile-story-line,
body.is-hero-intro-ready .hero-mobile-story-service,
body.is-hero-intro-ready .hero-line-button {
  animation-name: heroStoryIn;
}

body.is-hero-intro-ready .hero-achievements {
  animation-name: heroAchievementIn;
}

body.is-hero-intro-ready .hero-signature-fallback,
body.is-hero-intro-ready .hero-katakana-signature-fallback {
  animation-name: signatureFade;
}

@keyframes signatureFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 681px) {
  .hero-mobile-story-line {
    white-space: nowrap;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .hero-mobile-story-main {
    font-size: 2.15rem;
  }
}

@media (max-width: 680px) {
  .hero-video {
    height: 100%;
    margin: 0;
    object-position: 30% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(40, 36, 38, 0.48) 0%, rgba(40, 36, 38, 0.16) 76%, rgba(40, 36, 38, 0.04) 100%),
      linear-gradient(0deg, rgba(35, 32, 34, 0.62) 0%, rgba(35, 32, 34, 0.12) 58%, rgba(35, 32, 34, 0.2) 100%);
  }

  .hero-content {
    align-content: start;
    padding-top: clamp(150px, 24svh, 210px);
    animation: none;
    transform: none;
  }

  .hero-desktop-copy {
    display: none;
  }

  .hero-mobile-story {
    max-width: 22em;
  }

  .hero-mobile-story-main {
    font-size: 1.46rem;
    line-height: 1.72;
  }

  .hero-mobile-story-service {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .hero-signature-group {
    width: min(250px, 72vw);
    margin-top: 7px;
    padding-bottom: 11px;
  }

  .hero-katakana-signature {
    right: 0;
    width: 44%;
  }

  .hero-bottom {
    bottom: 98px;
  }

  .hero-line-button {
    animation-duration: 800ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-hero-intro-ready .hero-mobile-story-line,
  body.is-hero-intro-ready .hero-mobile-story-service,
  body.is-hero-intro-ready .hero-line-button,
  body.is-hero-intro-ready .hero-achievements {
    animation-name: heroStoryFade;
    filter: none;
    transform: none;
  }

  body.is-hero-intro-ready .hero-signature-fallback,
  body.is-hero-intro-ready .hero-katakana-signature-fallback {
    animation-name: signatureFade;
  }
}

/* Bottom utility controls */
.floating-audio {
  left: max(24px, calc((100vw - var(--content)) / 2 - 78px));
  bottom: calc(24px + env(safe-area-inset-bottom));
  width: 60px;
  height: 60px;
  min-height: 60px;
}

.floating-top {
  left: max(92px, calc((100vw - var(--content)) / 2 - 10px));
  bottom: calc(24px + env(safe-area-inset-bottom));
  width: 60px;
  height: 60px;
  min-height: 60px;
}

.audio-icon {
  width: 25px;
  height: 25px;
}

.audio-note {
  position: absolute;
  inset: -2px 0 auto;
  color: rgba(255, 255, 255, 0.94);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
}

.audio-slash {
  top: 0;
  left: 13px;
  height: 27px;
  opacity: 1;
}

.floating-audio.is-playing .audio-slash {
  display: block;
  opacity: 0;
  transform: rotate(-38deg) scaleY(0.55);
}

@media (max-width: 680px) {
  .floating-audio {
    left: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    min-height: 56px;
  }

  .floating-top {
    left: 80px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    min-height: 56px;
  }

  body.is-hero-view .floating-audio {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .audio-note {
    font-size: 1.55rem;
  }
}

/* Customer message bubbles */
.voice-chat {
  width: min(100%, 820px);
  margin: 38px auto 0;
}

.voice-message {
  --voice-bubble: #ecebec;
  width: min(88%, 700px);
}

.voice-message + .voice-message {
  margin-top: 20px;
}

.voice-message:nth-child(2) {
  --voice-bubble: #f3e5e7;
  margin-left: 9%;
}

.voice-message:nth-child(3) {
  width: min(76%, 620px);
  margin-left: 3%;
}

.voice-message:nth-child(4) {
  --voice-bubble: #eee9ea;
  width: min(72%, 590px);
  margin-left: 14%;
}

.voice-sender {
  margin: 0 0 6px 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.voice-bubble {
  position: relative;
  margin: 0;
  padding: 18px 20px;
  color: var(--ink);
  border: 1px solid rgba(142, 140, 140, 0.2);
  border-radius: 8px 8px 8px 2px;
  background: var(--voice-bubble);
  box-shadow: 0 12px 28px rgba(71, 67, 69, 0.07);
}

.voice-bubble::before {
  position: absolute;
  bottom: -1px;
  left: -10px;
  width: 16px;
  height: 17px;
  background: var(--voice-bubble);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
}

.voice-bubble p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.9;
}

@media (max-width: 680px) {
  .voice-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .voice-heading > * {
    min-width: 0;
  }

  .voice-heading h2 {
    max-width: none;
  }

  .voice-chat {
    max-width: 100%;
    margin-top: 28px;
  }

  .voice-message,
  .voice-message:nth-child(3),
  .voice-message:nth-child(4) {
    width: calc(100% - 10px);
    max-width: 100%;
    margin-right: 10px;
  }

  .voice-message:nth-child(2),
  .voice-message:nth-child(4) {
    margin-right: 0;
    margin-left: 10px;
  }

  .voice-message:nth-child(3) {
    margin-left: 0;
  }

  .voice-message + .voice-message {
    margin-top: 17px;
  }

  .voice-bubble {
    max-width: 100%;
    padding: 15px 16px;
    overflow-wrap: anywhere;
  }

  .voice-bubble p {
    font-size: 0.9rem;
    line-height: 1.85;
  }
}

/* Keep the Memory section label together on wide screens. */
@media (min-width: 821px) {
  main > section.quiet-copy::before {
    display: none;
  }

  .quiet-copy-inner::before {
    top: -78px;
    left: 0;
    font-size: clamp(4.2rem, 7.5vw, 7.5rem);
    content: "memory 03";
  }
}

/* Shooting date guide */
.floating-calendar {
  position: fixed;
  left: max(160px, calc((100vw - var(--content)) / 2 + 58px));
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 40;
  display: flex;
  width: 60px;
  height: 60px;
  min-height: 60px;
  flex-direction: column;
  gap: 1px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(71, 67, 69, 0.95);
  box-shadow: 0 16px 36px rgba(71, 67, 69, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  appearance: none;
  cursor: pointer;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), background 260ms ease;
  -webkit-tap-highlight-color: transparent;
}

.floating-calendar:hover,
.floating-calendar:focus-visible {
  background: #373335;
}

.floating-calendar:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.76);
  outline-offset: 3px;
}

.floating-calendar-icon {
  position: relative;
  display: grid;
  width: 23px;
  height: 22px;
  place-items: center;
  padding-top: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

.floating-calendar-icon::before,
.floating-calendar-icon::after {
  position: absolute;
  top: -4px;
  width: 2px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  content: "";
}

.floating-calendar-icon::before {
  left: 5px;
}

.floating-calendar-icon::after {
  right: 5px;
}

.floating-calendar-text {
  font-size: 0.47rem;
  font-weight: 700;
  line-height: 1;
}

body.is-hero-view .floating-calendar,
body.is-final-view .floating-calendar,
body.is-menu-open .floating-calendar {
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
}

.floating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.kocon-date-guide {
  position: relative;
  overflow: hidden;
  padding: 24px 26px;
  margin-top: 24px;
  border: 1px solid rgba(155, 104, 112, 0.24);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(244, 230, 231, 0.72), rgba(255, 253, 249, 0.94));
}

.kocon-date-guide__label {
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
}

.kocon-date-guide h3 {
  margin-top: 7px;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.65;
}

.kocon-date-guide .kocon-date-guide__text {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.kocon-date-guide__button {
  display: inline-flex;
  width: min(100%, 340px);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  margin-top: 16px;
  border: 1px solid rgba(155, 104, 112, 0.48);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 22px rgba(71, 67, 69, 0.07);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.kocon-date-guide__button:hover,
.kocon-date-guide__button:focus-visible {
  border-color: var(--rose-deep);
  background: #fff;
  transform: translateY(-1px);
}

.kocon-date-guide__button:focus-visible {
  outline: 2px solid rgba(155, 104, 112, 0.36);
  outline-offset: 3px;
}

.kocon-date-guide--consult {
  margin-top: 28px;
}

.kocon-date-entry {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.kocon-date-entry__button {
  display: inline-flex;
  width: min(100%, 360px);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(241, 220, 224, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(215, 180, 184, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 240ms ease, border-color 240ms ease;
}

.kocon-date-entry__button:hover,
.kocon-date-entry__button:focus-visible {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(215, 180, 184, 0.3);
}

.kocon-date-entry__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 3px;
}

.final-cta-copy .kocon-date-entry__note {
  max-width: 39em;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  line-height: 1.7;
}

body.is-date-modal-open {
  position: fixed;
  top: var(--kocon-date-modal-scroll, 0);
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.kocon-date-modal[hidden] {
  display: none;
}

.kocon-date-modal {
  position: fixed;
  top: var(--kocon-date-modal-top, 0px);
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 1200;
  display: grid;
  width: 100%;
  height: var(--kocon-date-modal-height, 100vh);
  min-height: 0;
  box-sizing: border-box;
  place-items: center;
  overflow: hidden;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}

.kocon-date-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 35, 37, 0.72);
  backdrop-filter: blur(5px);
  touch-action: none;
  animation: koconModalFadeIn 260ms ease both;
}

.kocon-date-modal__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  width: min(100%, 920px);
  max-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(142, 140, 140, 0.28);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 36px 100px rgba(25, 22, 24, 0.34);
  text-shadow: none;
  animation: koconModalContentIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.kocon-date-modal__scroll {
  width: 100%;
  min-height: 0;
  max-height: 100%;
  flex: 1 1 auto;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(28px, 4vw, 48px);
  scrollbar-gutter: stable;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

@supports (height: 100dvh) {
  .kocon-date-modal {
    height: var(--kocon-date-modal-height, 100dvh);
  }
}

@keyframes koconModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes koconModalContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.kocon-date-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(71, 67, 69, 0.18);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.kocon-date-modal__close:hover,
.kocon-date-modal__close:focus-visible {
  background: var(--soft);
}

.kocon-date-modal__close:focus-visible,
.kocon-date-calculator__submit:focus-visible,
.kocon-date-result__copy:focus-visible,
.kocon-date-result__line:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

.kocon-date-modal__header {
  max-width: 700px;
  padding-right: 48px;
}

.kocon-date-modal__kicker,
.kocon-date-result__eyebrow {
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
}

.kocon-date-modal__header h2 {
  margin-top: 8px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.45;
  text-wrap: balance;
}

.kocon-date-modal__header > p:not(.kocon-date-modal__kicker) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
}

.kocon-date-modal__header .kocon-date-modal__notice {
  padding: 11px 13px;
  border-left: 2px solid var(--rose);
  background: rgba(244, 230, 231, 0.56);
  font-size: 0.78rem;
}

.kocon-date-modal__notice strong {
  display: block;
  margin-bottom: 3px;
  color: var(--rose-deep);
  font-size: 0.9rem;
}

.kocon-date-calculator {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 16px;
  align-items: end;
  width: 100%;
  min-width: 0;
  padding: 24px 0 26px;
  margin-top: 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.kocon-date-calculator__field {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.kocon-date-calculator label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.86rem;
  font-weight: 700;
}

.kocon-date-calculator input {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  inline-size: 100%;
  min-inline-size: 0;
  max-inline-size: 100%;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid rgba(142, 140, 140, 0.46);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  line-height: 1.2;
  color-scheme: light;
}

.kocon-date-calculator input:focus {
  border-color: var(--rose-deep);
  outline: 2px solid rgba(155, 104, 112, 0.18);
  outline-offset: 1px;
}

.kocon-date-calculator input[aria-invalid="true"] {
  border-color: #a94755;
}

.kocon-date-calculator__hint,
.kocon-date-calculator__error {
  margin-top: 5px;
  font-size: 0.72rem;
  line-height: 1.55;
}

.kocon-date-calculator__hint {
  color: var(--muted);
}

.kocon-date-calculator__error {
  min-height: 1.55em;
  color: #9d3545;
  font-weight: 700;
}

.kocon-date-calculator__submit,
.kocon-date-result__copy,
.kocon-date-result__line {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.kocon-date-calculator__submit {
  color: #fff;
  background: var(--ink);
}

.kocon-date-calculator__submit:hover,
.kocon-date-calculator__submit:focus-visible {
  background: #302d2f;
}

.kocon-date-result {
  padding-top: 28px;
  scroll-margin-top: 20px;
}

.kocon-date-result:focus {
  outline: none;
}

.kocon-date-result__due {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  align-items: baseline;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--rule);
}

.kocon-date-result__due span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.kocon-date-result__due time {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.24rem;
  font-weight: 700;
}

.kocon-date-result__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.kocon-date-result__card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(142, 140, 140, 0.24);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(71, 67, 69, 0.07);
}

.kocon-date-result__card--maternity {
  border-top: 3px solid var(--rose);
}

.kocon-date-result__card--newborn {
  border-top: 3px solid var(--stone-gray);
  background: #f7f6f6;
}

.kocon-date-result__card.is-expired {
  border-color: rgba(142, 140, 140, 0.4);
  border-top-color: #8e8c8c;
  background: #ececec;
  box-shadow: none;
}

.kocon-date-result__card.is-expired > :not(.kocon-date-result__expired) {
  opacity: 0.64;
}

.kocon-date-result__card h3 {
  margin-top: 5px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.22rem;
}

.kocon-date-result__card dl {
  margin: 18px 0 0;
}

.kocon-date-result__card dl > div + div {
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--rule);
}

.kocon-date-result__card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.kocon-date-result__card dd {
  margin: 4px 0 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.75;
}

.kocon-date-result__range {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3px;
  align-items: baseline;
}

.kocon-date-result__range time {
  white-space: nowrap;
}

.kocon-date-result__timing {
  margin-top: 18px !important;
  color: var(--rose-deep) !important;
  font-weight: 700;
}

.kocon-date-result__card > p:not(.kocon-date-result__eyebrow) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.8;
}

.kocon-date-result__card > p.kocon-date-result__expired {
  padding: 11px 13px;
  margin-top: 18px;
  border: 1px solid rgba(71, 67, 69, 0.22);
  border-left: 3px solid var(--rose-deep);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  line-height: 1.7;
}

.kocon-date-result__notice {
  padding: 13px 15px;
  margin-top: 16px;
  border-left: 2px solid var(--stone-gray);
  color: var(--muted);
  background: var(--mist);
  font-size: 0.76rem;
  line-height: 1.75;
}

.kocon-date-result__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px 12px;
  width: min(100%, 520px);
  margin: 22px auto 0;
}

.kocon-date-result__copy {
  color: var(--ink);
  border-color: rgba(71, 67, 69, 0.4);
  background: #fff;
}

.kocon-date-result__copy:hover,
.kocon-date-result__copy:focus-visible {
  background: var(--mist);
}

.kocon-date-result__line {
  color: #fff;
  background: var(--line);
}

.kocon-date-result__line:hover,
.kocon-date-result__line:focus-visible {
  background: var(--line-hover);
}

.kocon-date-result__status,
.kocon-date-result__line-note,
.kocon-date-result__fallback {
  grid-column: 1 / -1;
}

.kocon-date-result__status {
  min-height: 1.5em;
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.6;
}

.kocon-date-result__fallback {
  width: 100%;
  min-height: 190px;
  padding: 13px;
  border: 1px solid var(--rose-deep);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.78rem;
  line-height: 1.7;
  resize: vertical;
}

.kocon-date-result__line-note {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 680px) {
  .hero-bottom {
    width: calc(100% - 32px);
  }

  .hero-achievements {
    border-color: rgba(213, 182, 126, 0.62);
  }

  .hero-achievements::after {
    top: 14px;
    bottom: 14px;
  }

  .achievement-label {
    font-size: 0.76rem;
  }

  .achievement-detail {
    font-size: 0.66rem;
  }

  .floating-calendar {
    left: 144px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    min-height: 56px;
  }

  .floating-line {
    width: min(160px, calc(100vw - 224px));
    min-width: 0;
    height: 56px;
    min-height: 56px;
    font-size: 0.78rem;
  }

  .kocon-date-guide {
    padding: 20px 18px;
    margin-top: 20px;
  }

  .kocon-date-guide--consult {
    margin-top: 24px;
  }

  .kocon-date-guide__button {
    width: 100%;
    min-height: 50px;
    padding-inline: 12px;
    font-size: 0.8rem;
  }

  .kocon-date-entry {
    padding-top: 15px;
    margin-top: 15px;
  }

  .kocon-date-entry__button {
    width: 100%;
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.8rem;
  }

  .final-cta-copy .kocon-date-entry__note {
    font-size: 0.68rem;
  }

  .kocon-date-modal {
    padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  }

  .kocon-date-modal__content {
    max-height: 100%;
  }

  .kocon-date-modal__scroll {
    max-height: 100%;
    padding: 28px 18px 24px;
  }

  .kocon-date-modal__close {
    top: 9px;
    right: 9px;
    width: 44px;
    height: 44px;
  }

  .kocon-date-modal__header {
    padding-right: 36px;
  }

  .kocon-date-modal__header h2 {
    font-size: 1.45rem;
  }

  .kocon-date-modal__header > p:not(.kocon-date-modal__kicker) {
    font-size: 0.82rem;
    line-height: 1.75;
  }

  .kocon-date-calculator {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 20px 0 22px;
    margin-top: 20px;
  }

  .kocon-date-calculator input[type="date"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    -webkit-appearance: none;
    appearance: none;
  }

  .kocon-date-calculator__submit {
    width: 100%;
    margin-top: 5px;
  }

  .kocon-date-result__cards,
  .kocon-date-result__actions {
    grid-template-columns: 1fr;
  }

  .kocon-date-result__card {
    padding: 20px 17px;
  }

  .kocon-date-result__card dd {
    font-size: 0.96rem;
  }

  .kocon-date-result__status,
  .kocon-date-result__line-note,
  .kocon-date-result__fallback {
    grid-column: 1;
  }

  .kocon-date-result__status {
    grid-row: 2;
  }

  .kocon-date-result__line {
    margin-top: 5px;
  }
}

@media (max-height: 640px) {
  .kocon-date-modal {
    padding-top: max(8px, env(safe-area-inset-top));
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .kocon-date-modal__scroll {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .kocon-date-modal__header h2 {
    margin-top: 4px;
  }

  .kocon-date-modal__header > p:not(.kocon-date-modal__kicker) {
    margin-top: 8px;
    line-height: 1.65;
  }

  .kocon-date-modal__header .kocon-date-modal__notice {
    padding-block: 8px;
  }

  .kocon-date-calculator {
    padding-block: 16px 18px;
    margin-top: 16px;
  }
}

@media (max-width: 340px) {
  .floating-audio,
  .floating-top,
  .floating-calendar {
    width: 52px;
    height: 52px;
    min-height: 52px;
  }

  .floating-audio {
    left: 12px;
  }

  .floating-top {
    left: 70px;
  }

  .floating-calendar {
    left: 128px;
  }

  .floating-line {
    right: 12px;
    width: calc(100vw - 200px);
    height: 52px;
    min-height: 52px;
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-calendar,
  .kocon-date-modal__overlay,
  .kocon-date-modal__content {
    animation: none;
    transition: none;
  }
}

.faq-line-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid rgba(155, 104, 112, 0.24);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.58);
}

.faq-line-guide p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.faq-line-guide__link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 4px;
  color: #fff;
  background: var(--line);
  box-shadow: 0 12px 28px var(--line-shadow);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-line-guide__link::after {
  width: 18px;
  height: 1px;
  flex: 0 0 18px;
  background: currentColor;
  content: "";
}

.faq-line-guide__link:hover,
.faq-line-guide__link:focus-visible {
  background: var(--line-hover);
  box-shadow: 0 15px 34px rgba(117, 75, 84, 0.28);
  transform: translateY(-1px);
}

@media (max-width: 680px) {
  .faq-line-guide {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
    padding: 19px 18px;
  }

  .faq-line-guide__link {
    width: auto;
    max-width: 100%;
    min-height: 56px;
    padding-inline: 16px;
  }
}

@media (min-width: 681px) {
  .final-cta {
    min-height: max(100svh, 800px);
  }

  .final-cta-copy {
    width: min(100%, 640px);
    max-width: 640px;
  }

  .final-cta-copy h2 {
    max-width: none;
  }
}

@media (min-width: 681px) {
  .achievement-label {
    font-size: 0.94rem;
  }

  .achievement-unit {
    font-size: 0.94rem;
  }

  .achievement-detail {
    font-size: 0.84rem;
  }
}

@media (max-width: 680px) {
  .hero-bottom {
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }

  .hero-achievements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

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

  .achievement-medal {
    min-width: 0;
    min-height: 88px;
    padding: 8px 7px 9px;
    overflow: hidden;
    border: 1px solid rgba(218, 188, 132, 0.72);
    border-radius: 50%;
    background:
      linear-gradient(145deg, rgba(88, 78, 80, 0.94), rgba(45, 41, 43, 0.96));
    box-shadow:
      0 12px 30px rgba(24, 21, 23, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .achievement-medal::before {
    position: absolute;
    inset: 4px;
    z-index: 1;
    border: 1px solid rgba(241, 220, 174, 0.18);
    border-radius: inherit;
    content: "";
    pointer-events: none;
  }

  .achievement-label {
    gap: 6px;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .achievement-label::before,
  .achievement-label::after {
    width: 9px;
  }

  .achievement-value {
    gap: 5px;
    margin-top: 2px;
  }

  .achievement-medal strong {
    font-size: 2rem;
  }

  .achievement-unit {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .achievement-detail {
    margin-top: 2px;
    font-size: 0.7rem;
    line-height: 1.2;
  }
}

/* Desktop section balance and visual hierarchy */
@media (min-width: 681px) {
  .mini-gallery-heading .desktop-break {
    display: block;
  }

  .quiet-copy {
    padding: 88px 22px;
  }

  .quiet-copy-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 230px);
    grid-template-areas:
      "memory-title memory-media"
      "memory-copy-1 memory-media"
      "memory-copy-2 memory-media";
    column-gap: clamp(44px, 5vw, 66px);
    row-gap: 22px;
    align-items: center;
    width: min(100% - 44px, 960px);
  }

  .quiet-copy-inner::before {
    top: -46px;
    right: -8px;
    left: auto;
    color: rgba(255, 255, 255, 0.075);
    font-size: clamp(3.8rem, 6vw, 6.4rem);
    letter-spacing: 0;
  }

  .floating-word {
    grid-area: memory-title;
    max-width: none;
    font-size: clamp(2.25rem, 3.2vw, 2.82rem);
    line-height: 1.62;
  }

  .quiet-copy-photo {
    grid-area: memory-media;
    float: none;
    width: 100%;
    aspect-ratio: 3 / 2;
    margin: 0;
    align-self: center;
  }

  .quiet-copy .small-thought {
    width: 100%;
    max-width: 630px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    line-height: 2.08;
  }

  .quiet-copy .small-thought:nth-of-type(2) {
    grid-area: memory-copy-1;
  }

  .quiet-copy .small-thought:nth-of-type(3) {
    grid-area: memory-copy-2;
  }

  .message-section {
    padding: 82px 0 76px;
    background:
      linear-gradient(90deg, rgba(215, 180, 184, 0.15) 0 28%, transparent 28%),
      linear-gradient(180deg, #f6f1f0 0%, var(--paper) 100%);
  }

  .message-copy {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(48px, 7vw, 88px);
    align-items: center;
  }

  .message-photo {
    width: min(100%, 360px);
    justify-self: center;
    box-shadow: 0 28px 68px rgba(71, 67, 69, 0.16);
  }

  .message-body {
    position: relative;
    padding-left: clamp(28px, 4vw, 52px);
    border-left: 1px solid rgba(155, 104, 112, 0.28);
  }

  .message-body::before {
    position: absolute;
    top: 0;
    left: -3px;
    width: 5px;
    height: 46px;
    background: var(--rose-deep);
    content: "";
  }

  .message-body h2 {
    max-width: 13em;
  }

  .message-name {
    margin-top: 18px !important;
    letter-spacing: 0;
  }

  .message-body .profile-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    max-width: 560px;
    padding: 11px 0;
    margin-top: 18px;
    border-top: 1px solid rgba(142, 140, 140, 0.2);
    border-bottom: 1px solid rgba(142, 140, 140, 0.2);
  }

  .message-body .profile-list li {
    position: relative;
    padding: 5px 0 5px 15px;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 0.8rem;
  }

  .message-body .profile-list li::before {
    position: absolute;
    top: 50%;
    left: 1px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rose-deep);
    content: "";
    transform: translateY(-50%);
  }

  .message-body p:not(.section-kicker):not(.message-name) {
    max-width: 650px;
    margin-top: 17px;
    font-size: 0.92rem;
    line-height: 1.92;
  }

  .peace-section {
    padding: 82px 0;
    border-top: 1px solid rgba(142, 140, 140, 0.2);
    background:
      linear-gradient(90deg, transparent 0 68%, rgba(184, 182, 182, 0.12) 68%),
      linear-gradient(180deg, #eceaeb 0%, #f7f4f3 100%);
  }

  .peace-layout {
    grid-template-columns: minmax(0, 1.24fr) minmax(270px, 0.76fr);
    column-gap: clamp(50px, 7vw, 92px);
  }

  .peace-content {
    grid-column: 1;
    grid-row: 1;
  }

  .peace-documentary {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 4 / 5;
    border: 8px solid rgba(250, 247, 245, 0.78);
    box-shadow: 0 26px 64px rgba(71, 67, 69, 0.15);
  }

  .peace-intro {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    column-gap: 24px;
    align-items: start;
  }

  .peace-intro .section-kicker {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding-top: 7px;
    writing-mode: vertical-rl;
  }

  .peace-intro h2,
  .peace-intro .peace-lead {
    grid-column: 2;
  }

  .peace-intro .peace-lead {
    margin-top: 20px;
  }

  .peace-assurance {
    margin-top: 28px;
    border-top-color: rgba(142, 140, 140, 0.32);
  }

  .peace-assurance .assurance-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 58px;
    padding: 11px 10px 11px 0;
  }

  .peace-assurance .assurance-item:hover {
    padding-left: 0;
    background: rgba(255, 255, 255, 0.32);
  }

  .peace-assurance .assurance-item span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(155, 104, 112, 0.34);
    border-radius: 50%;
    font-size: 0.8rem;
  }

  .peace-assurance .assurance-item p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .peace-comfort {
    margin-top: 28px;
    padding: 22px 24px;
    border-top-color: rgba(155, 104, 112, 0.42);
    background: rgba(255, 255, 255, 0.46);
  }

  .gallery-intro {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 28px 34px;
    text-align: center;
  }

  .gallery-intro h2,
  .gallery-note {
    max-width: none;
  }

  .gallery-note {
    margin: 20px auto 0;
    font-size: 0.96rem;
    line-height: 2;
  }

  .gallery-instagram-link {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  .mini-gallery-heading .desktop-break {
    display: none;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .message-copy,
  .peace-layout {
    grid-template-columns: 1fr;
  }

  .message-photo {
    width: min(100%, 340px);
  }

  .message-body {
    padding-left: 0;
    border-left: 0;
  }

  .message-body::before {
    display: none;
  }

  .peace-content,
  .peace-documentary {
    grid-column: 1;
  }

  .peace-content {
    grid-row: 1;
  }

  .peace-documentary {
    position: relative;
    top: auto;
    grid-row: 2;
    width: min(100%, 620px);
  }
}

@media (min-width: 681px) and (max-width: 820px) {
  .quiet-copy-inner {
    display: flow-root;
    width: min(100%, var(--narrow));
  }

  .quiet-copy-inner::before {
    top: -54px;
    right: auto;
    left: -4px;
    font-size: 4.5rem;
    content: "memory";
  }

  .floating-word {
    max-width: 15em;
    font-size: 1.86rem;
    line-height: 1.72;
  }

  .quiet-copy-photo {
    float: right;
    width: clamp(104px, 31vw, 132px);
    margin: 30px 0 10px 14px;
  }

  .quiet-copy .small-thought {
    width: 100%;
    max-width: none;
    margin-top: 36px;
    font-size: inherit;
    line-height: 2;
  }

  .quiet-copy .small-thought + .small-thought {
    margin-top: 26px;
  }
}

.line-entry-toast {
  position: fixed;
  z-index: 3000;
  right: auto;
  bottom: calc(96px + env(safe-area-inset-bottom));
  left: 50%;
  width: min(calc(100% - 32px), 480px);
  margin: 0;
  padding: 12px 16px;
  transform: translate(-50%, 8px);
  border: 1px solid rgba(232, 202, 206, 0.42);
  border-radius: 6px;
  background: rgba(61, 54, 56, 0.96);
  box-shadow: 0 12px 34px rgba(47, 41, 43, 0.2);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.line-entry-toast[hidden] {
  display: none;
}

.line-entry-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .line-entry-toast {
    transition: none;
  }
}

@media (max-width: 680px) {
  .final-cta {
    grid-template-rows: auto auto;
    min-height: 0;
    align-items: start;
    justify-items: stretch;
    padding: 0 16px calc(118px + env(safe-area-inset-bottom));
    background: #3d393b;
  }

  .final-cta > .final-cta-video {
    position: relative;
    inset: auto;
    grid-row: 1;
    width: calc(100% + 32px);
    height: auto;
    aspect-ratio: 1600 / 934;
    margin-inline: -16px;
    object-fit: contain;
    object-position: center;
    background: #3d393b;
    transform: none;
    will-change: auto;
  }

  .final-cta::after {
    display: none;
  }

  .final-cta-copy {
    grid-row: 2;
    justify-self: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    border-top: 1px solid rgba(207, 167, 160, 0.42);
    border-left: 0;
    background: linear-gradient(180deg, rgba(61, 57, 59, 0.96), rgba(61, 57, 59, 0.76));
    backdrop-filter: none;
  }

}

.final-cta-mobile-break {
  display: none;
}

.final-cta-lead-line,
.final-date-note-line {
  display: inline;
}

.final-cta-lead-line--new {
  display: block;
}

.final-date-note-line--new {
  display: block;
}

@media (max-width: 680px) {
  .final-cta-mobile-break {
    display: inline;
  }

  .final-cta-lead-line,
  .final-date-note-line {
    display: block;
  }
}
