:root {
  --bg: oklch(0.98 0.008 85);
  --bg-soft: oklch(0.94 0.02 80);
  --card: rgba(255, 252, 247, 0.92);
  --text: oklch(0.25 0.02 60);
  --muted: oklch(0.5 0.02 60);
  --border: rgba(112, 93, 62, 0.14);
  --primary: oklch(0.55 0.12 65);
  --primary-foreground: oklch(0.98 0.008 85);
  --accent: oklch(0.62 0.16 45);
  --line: #06c755;
  --line-hover: #05b34d;
  --shadow: 0 24px 60px rgba(85, 67, 40, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: clip;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  width: min(960px, calc(100vw - 32px));
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  z-index: 20;
  transform: translateY(-100%);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-visible {
  transform: translateY(0);
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(70, 55, 35, 0.08);
}

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

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

.brand-icon {
  height: 48px;
  width: auto;
}

.brand-wordmark {
  display: block;
  height: auto;
  width: min(180px, 38vw);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: rgba(73, 63, 45, 0.85);
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--primary);
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 0 16px 20px;
  background: rgba(251, 247, 239, 0.98);
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(112, 93, 62, 0.08);
}

.mobile-nav .button {
  display: flex;
  justify-content: center;
  border-bottom: none;
}

.mobile-nav.is-open {
  display: block;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button-with-icon {
  gap: 10px;
}

.button-with-icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: currentColor;
}

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

.button-line {
  background: var(--line);
  color: #fff;
  box-shadow: none;
}

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

.button-outline {
  border-color: color-mix(in oklab, var(--primary) 30%, transparent);
  background: rgba(255, 252, 247, 0.8);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(65, 50, 32, 0.04);
}

.button-small {
  min-height: 2rem;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  box-shadow: none;
}

.button-large {
  min-height: 2.5rem;
  padding: 0.5rem 1.5rem;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
}

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

.hero-bg img,
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(2px);
}

.hero-content,
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content {
  padding: 80px 0 72px;
}

.hero-logo {
  width: min(72vw, 440px);
  margin: 0 auto 32px;
  filter: drop-shadow(0 12px 20px rgba(65, 50, 32, 0.15));
}

.hero-copy {
  margin: 0 auto 36px;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-actions .button {
  min-height: 2.5rem;
  padding: 0.5rem 2rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(85, 67, 40, 0.12);
}

.hero-actions .button:hover {
  box-shadow: 0 16px 30px rgba(85, 67, 40, 0.16);
}

.hero-actions .button-outline {
  background: rgba(255, 252, 247, 0.8);
  backdrop-filter: blur(8px);
  border-color: color-mix(in oklab, var(--primary) 30%, transparent);
}

.cta-content .button-large {
  min-height: auto;
  padding: 1.75rem 3rem;
  border-radius: 999px;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 500;
  box-shadow: 0 20px 36px rgba(65, 50, 32, 0.18);
}

.cta-content .button-large:hover {
  box-shadow: 0 24px 42px rgba(65, 50, 32, 0.22);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 42px;
  color: rgba(175, 123, 63, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

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

.reveal-hero {
  transition-duration: 1s;
}

.slide-left {
  transform: translateX(-36px);
}

.slide-left.is-visible {
  transform: translateX(0);
}

.slide-right {
  transform: translateX(36px);
}

.slide-right.is-visible {
  transform: translateX(0);
}

.zoom-in {
  transform: scale(0.92);
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

.delay-4 {
  transition-delay: 0.48s;
}

.stagger-1 {
  transition-delay: 0.04s;
}

.stagger-2 {
  transition-delay: 0.1s;
}

.stagger-3 {
  transition-delay: 0.16s;
}

.stagger-4 {
  transition-delay: 0.22s;
}

.stagger-5 {
  transition-delay: 0.28s;
}

.stagger-6 {
  transition-delay: 0.34s;
}

.stagger-7 {
  transition-delay: 0.4s;
}

.stagger-8 {
  transition-delay: 0.46s;
}

.section {
  padding: 96px 0;
}

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

.section-soft {
  background: rgba(244, 238, 226, 0.5);
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.section-heading h2,
.cta-content h2 {
  margin: 0;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
}

.lead {
  max-width: 700px;
  margin: 14px auto 0;
  color: var(--muted);
}

.split-card,
.recommend-card,
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.split-card {
  margin-bottom: 36px;
}

.paper-card,
.recommend-card,
.profile-card,
.voice-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.paper-card {
  padding: 32px;
}

.paper-card h3,
.recommend-card h3,
.story-copy h3,
.profile-card h3 {
  margin: 0 0 16px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.paper-card p,
.story-copy p,
.profile-copy p {
  margin: 0 0 14px;
  color: var(--muted);
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.media-frame.tall img {
  aspect-ratio: 4 / 5;
}

.recommend-card {
  padding: 28px;
}

.recommend-card .media-frame {
  box-shadow: none;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.story-copy h3 span {
  color: var(--primary);
}

.profile-card {
  padding: 32px;
  text-align: center;
}

.profile-image {
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
  border-radius: 999px;
  object-fit: cover;
  border: 6px solid rgba(255, 252, 247, 0.95);
  box-shadow: 0 18px 38px rgba(85, 67, 40, 0.15);
}

.role {
  margin: -4px 0 18px;
  color: var(--accent);
  font-weight: 700;
}

.profile-copy {
  max-width: 700px;
  margin: 24px auto 0;
  text-align: left;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(73, 63, 45, 0);
  transition: background-color 0.3s ease;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  margin: 0;
  padding: 16px;
  color: #fff8ef;
  font-size: 0.92rem;
  font-weight: 700;
  background: linear-gradient(to top, rgba(44, 36, 27, 0.68), rgba(44, 36, 27, 0));
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-within .gallery-overlay {
  background: rgba(73, 63, 45, 0.18);
}

.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.voice-carousel {
  position: relative;
  /* セクションのコンテナを突き破ってビューポート全幅に広げる */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 38px 0 52px;
  overflow: visible;
}

.voice-viewport {
  overflow: hidden;
  /* shadow(0 24px 60px)が下方向に最大84px伸びるため下は多めに確保 */
  padding: 40px 16px 80px;
  margin: -40px -16px -80px;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.voice-viewport.is-dragging {
  cursor: grabbing;
}

.voice-track {
  display: flex;
  gap: 18px;
  /* コンテナ幅の中央にカードを揃えるためのパディング */
  padding: 0 calc((100vw - min(1120px, 100vw - 32px)) / 2);
  transition: transform 0.45s ease;
  will-change: transform;
}

.voice-slide {
  min-width: 0;
  /* コンテナ幅ベースで3枚ちょうど入るサイズ（隣カードは自然にはみ出す） */
  flex: 0 0 calc((min(1120px, 100vw - 32px) - 36px) / 3);
}

.voice-card {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.voice-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(211, 130, 88, 0.22);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.94);
  color: var(--accent);
  font-size: 1.9rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.voice-nav:hover {
  background: var(--accent);
  color: #fff;
}

.voice-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.voice-prev {
  left: 12px;
}

.voice-next {
  right: 12px;
}

.voice-card::before {
  content: "“";
  display: block;
  margin-bottom: 12px;
  color: rgba(211, 130, 88, 0.3);
  font-size: 3rem;
  line-height: 1;
}

.voice-comment {
  margin: 0 0 18px;
}

.voice-answer {
  margin: 0 0 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(211, 130, 88, 0.08);
  color: var(--muted);
  border: 1px solid color-mix(in oklab, var(--accent) 10%, transparent);
}

.voice-answer p {
  margin: 0;
}

.voice-question {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.voice-meta {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.voice-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.voice-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(211, 130, 88, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, width 0.2s ease;
}

.voice-dot.is-active {
  background: var(--accent);
  width: 24px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-overlay {
  background: linear-gradient(
    135deg,
    color-mix(in oklab, var(--primary) 85%, transparent) 0%,
    color-mix(in oklab, var(--accent) 80%, transparent) 100%
  );
}

.cta-content {
  color: var(--primary-foreground);
}

.cta-content p {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1.05rem;
}

.line-badge {
  display: inline-grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--line);
  box-shadow: 0 16px 36px rgba(6, 199, 85, 0.2);
}

.line-badge svg {
  display: block;
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.cta-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 1.05rem;
}

.cta-list li::before {
  content: "✦ ";
  color: var(--accent);
  font-size: 0.7em;
  vertical-align: middle;
  margin-right: 4px;
}

.cta-note {
  opacity: 0.7;
  font-size: 0.92rem;
}

.site-footer {
  padding: 52px 0 24px;
  background: var(--text);
  color: var(--bg);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-icon {
  height: 64px;
  width: auto;
}

.footer-wordmark {
  height: auto;
  width: auto;
  max-height: 36px;
  max-width: min(280px, 60vw);
  filter: brightness(0) invert(1) opacity(0.88);
}

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

.footer-nav a {
  color: color-mix(in oklab, var(--bg) 70%, transparent);
}

.footer-nav a:hover {
  color: var(--bg);
}

.copyright {
  margin: 26px 0 0;
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklab, var(--bg) 10%, transparent);
  text-align: center;
  color: color-mix(in oklab, var(--bg) 50%, transparent);
  font-size: 0.85rem;
}

.floating-line-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--line);
  color: #fff;
  box-shadow: 0 18px 34px rgba(6, 199, 85, 0.28);
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-line-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-line-button:hover {
  background: var(--line-hover);
  box-shadow: 0 22px 40px rgba(6, 199, 85, 0.34);
}

.floating-line-button svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 960px) {
  .nav-shell {
    min-height: 58px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .brand-icon {
    height: 28px;
  }

  .brand-wordmark {
    width: min(132px, 38vw);
  }

  .split-card,
  .recommend-card,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .voice-slide {
    flex: 0 0 calc((min(960px, 100vw - 32px) - 18px) / 2);
  }
}

@media (max-width: 720px) {
  .hide-sp {
    display: none;
  }

  .section,
  .cta-section {
    padding: 72px 0;
  }

  .hero-content {
    padding-top: 84px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .slide-left,
  .slide-right {
    transform: translateX(16px);
  }

  .slide-left {
    transform: translateX(-16px);
  }

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

  .paper-card,
  .recommend-card,
  .profile-card,
  .voice-card {
    padding: 22px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .voice-carousel {
    padding: 28px 0 40px;
  }

  .voice-slide {
    flex: 0 0 100%;
  }

  .footer-shell {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav {
    justify-content: center;
    gap: 18px;
    font-size: 0.9rem;
  }

  .gallery-item figcaption {
    opacity: 1;
    transform: none;
  }

  .gallery-overlay {
    background: rgba(73, 63, 45, 0.14);
  }

  .floating-line-button {
    display: inline-flex;
  }
}

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

  .reveal,
  .reveal-hero,
  .slide-left,
  .slide-right,
  .zoom-in,
  .floating-line-button {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── story lead ───────────────────────────── */
.story-lead {
  text-align: center;
  margin-bottom: 56px;
}

.story-hero-copy {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 12px;
}

.story-hero-sub {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.story-quote {
  margin: 64px auto 0;
  padding: 36px 32px;
  max-width: 640px;
  text-align: center;
  border-left: none;
  background: color-mix(in oklab, var(--accent) 6%, transparent);
  border-radius: var(--radius-md);
  position: relative;
}

.story-quote::before,
.story-quote::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}

.story-quote::before { top: 18px; }
.story-quote::after { bottom: 18px; }

.story-quote p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text);
  line-height: 2;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.story-quote p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

/* ── profile highlight ────────────────────── */
.profile-highlight {
  margin: 28px 0;
  padding: 24px 0;
  text-align: center;
  background: color-mix(in oklab, var(--accent) 8%, transparent);
  border-radius: var(--radius-md);
  border: 1px solid color-mix(in oklab, var(--accent) 15%, transparent);
}

.profile-highlight-label {
  margin: 0 0 8px !important;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-highlight-text {
  margin: 0 !important;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text) !important;
  white-space: nowrap;
}

/* ── scenes ──────────────────────────────── */
.scenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.scene-group {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.scene-photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.scene-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.scene-group:hover .scene-photo img {
  transform: scale(1.05);
}

.scene-photo--tai img {
  object-position: center 20%;
}

.scene-photo--jibu img {
  object-position: center 40%;
}

.scene-body {
  padding: 28px;
}

.scene-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.scene-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  font-size: 1.5rem;
  flex: 0 0 auto;
}

.scene-group h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
}

.scene-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scene-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.scene-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 40%, transparent);
}

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

/* ── faq ─────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.faq-q {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 15%, transparent);
  color: var(--accent);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

.faq-question {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 26px 24px 76px;
  color: var(--muted);
  animation: faq-slide-down 0.3s ease;
}

.faq-answer p {
  margin: 0 0 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-quote {
  margin: 12px 0 0;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-left: 3px solid color-mix(in oklab, var(--accent) 40%, transparent);
  border-radius: 8px;
  font-size: 0.92rem;
  line-height: 1.8;
}

@keyframes faq-slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .faq-item summary {
    padding: 18px 20px;
    gap: 14px;
  }

  .faq-answer {
    padding: 0 20px 20px 60px;
  }
}
