/* ═══════════════════════════════════════════════════════════════════
   Casa Flor｜Application Form v2
   Spanish tile × Feminine luxury × Rich animation
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* ═══════ 基調カラー：清潔感（純白系）═══════ */
  --white:       #FFFFFF;
  --off-white:   #FDFDFC;
  --cream:       #FAFBFC;   /* 純白に近いオフホワイト */
  --cream-deep:  #F0F4F8;   /* 涼やかなペールグレー */
  --line:        #E5E9F0;   /* すっきりした境界線色 */

  /* ═══════ 差し色：色鮮やか（Vibrant accents）═══════ */
  --coral:       #FF5A5F;   /* ビビッドコーラル（暖色を残しつつ鮮やか） */
  --coral-light: #FF7B7F;
  --coral-soft:  #FFE0E1;
  --coral-deep:  #E63946;

  --aqua:        #06B6D4;   /* 沖縄の海を思わせるアクア */
  --aqua-light:  #22D3EE;
  --aqua-soft:   #CFFAFE;
  --aqua-deep:   #0891B2;

  --rose:        #EC4899;   /* 華やかピンク */
  --rose-soft:   #FCE7F3;
  --rose-deep:   #BE185D;

  --gold:        #D4A94A;   /* ゴールドはラグジュアリー訴求用にキープ */
  --gold-light:  #F1D97F;
  --gold-soft:   #FEF3C7;
  --ochre:       #B8862E;

  /* 旧terraをcoralエイリアスとして残す（既存クラスの後方互換） */
  --terra:       var(--coral);
  --terra-light: var(--coral-light);
  --terra-soft:  var(--coral-soft);

  --teal:        var(--aqua-deep);

  /* ═══════ テキスト：高コントラスト ═══════ */
  --ink:         #0F172A;   /* Slate-900相当 純白背景に映える濃紺 */
  --ink-soft:    #475569;   /* Slate-600 */
  --ink-mute:    #64748B;   /* Slate-500 */

  --serif-en: "Cormorant Garamond", "Playfair Display", serif;
  --serif-jp: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans-jp:  "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --radius: 14px;
  --shadow-lg: 0 30px 80px -30px rgba(15, 23, 42, .18);
  --shadow-md: 0 12px 30px -12px rgba(15, 23, 42, .15);

  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out:    cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans-jp);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.pc-only { display: none; }
.sp-only { display: inline; }
@media (min-width: 720px) {
  .pc-only { display: inline; }
  .sp-only { display: none; }
}

/* ═══════════════ Global animations ═══════════════ */

/* Fade-in reveal (for hero) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-up { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform 1s var(--ease-out); }
.reveal-up.is-in { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .25s; }
.delay-3 { transition-delay: .4s; }
.delay-4 { transition-delay: .55s; }
.delay-5 { transition-delay: .7s; }
.delay-6 { transition-delay: .85s; }
.delay-7 { transition-delay: 1s; }

/* ═══════════════ INTRO MASK（Seiwa風・ロゴ→幕が左右に開く） ═══════════════ */
body.pre-load { overflow: hidden; }
.intro {
  position: fixed; inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.intro__curtain {
  position: absolute;
  top: 0; bottom: 0;
  width: 51%;
  background: linear-gradient(180deg, #3A2820 0%, #5A3A28 50%, #3A2820 100%);
  transition: transform 1.4s cubic-bezier(.76, 0, .24, 1);
}
.intro__curtain--left  { left: 0; transform: translateX(0); }
.intro__curtain--right { right: 0; transform: translateX(0); }
.intro--open .intro__curtain--left  { transform: translateX(-100%); }
.intro--open .intro__curtain--right { transform: translateX(100%); }
.intro__logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--gold-light);
  animation: intro-logo-in 1.2s var(--ease-out) both;
}
.intro--open .intro__logo { animation: intro-logo-out .6s var(--ease-out) both; }
@keyframes intro-logo-in {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.9); letter-spacing: -.05em; }
  50%  { opacity: 1; }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1);   letter-spacing: 0; }
}
@keyframes intro-logo-out {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}
.intro__brand-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(42px, 8vw, 68px);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(235, 208, 138, .5);
}
.intro__brand-line {
  width: 40px; height: 1px;
  background: var(--gold-light);
  margin: 0 auto 20px;
  animation: intro-line 1s var(--ease-out) .3s both;
}
@keyframes intro-line { from { width: 0; } to { width: 40px; } }
.intro__brand-jp {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .3em;
  color: var(--gold-light);
  padding-left: .3em;
  margin-bottom: 14px;
}
.intro__brand-sub {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: .35em;
  color: rgba(235, 208, 138, .7);
  padding-left: .35em;
}

/* Body ロード前は隠す */
body.pre-load .hero__inner,
body.pre-load .hero__visual {
  opacity: 0;
}
body.intro-done .hero__inner,
body.intro-done .hero__visual {
  opacity: 1;
  transition: opacity 1.2s var(--ease-out);
}

/* ═══════════════ HERO（Seiwa風・3層レイヤード＋クロスフェード） ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 100px 24px 80px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #2A1A14;
}

/* 背景ビジュアル（3スライドをクロスフェード） */
.hero__visual {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2.4s var(--ease-out), visibility 2.4s;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}

/* 3層レイヤー：Seiwa風のステージド・リビール（時間差でスケール&フェード） */
.hero__slide__layer {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__slide__layer svg { width: 100%; height: 100%; display: block; }

/* layer-1: ベース背景（大きくゆっくり広がる） */
.hero__slide__layer.layer-1 {
  transform: scale(1.1);
  opacity: 0;
  transition: transform 3s var(--ease-out), opacity 2s var(--ease-out);
}
.hero__slide.is-active .layer-1 {
  transform: scale(1);
  opacity: 1;
}

/* layer-2: 中央模様（少し遅れて回転しながら現れる） */
.hero__slide__layer.layer-2 {
  transform: scale(.7) rotate(-10deg);
  opacity: 0;
  transition: transform 2.5s cubic-bezier(.22, 1, .36, 1) .3s,
              opacity 2s var(--ease-out) .3s;
  animation: layer2-drift 20s ease-in-out infinite alternate;
}
.hero__slide.is-active .layer-2 {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
@keyframes layer2-drift {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.05) rotate(4deg); }
}

/* layer-3: 装飾ドット（最後に細かく散る） */
.hero__slide__layer.layer-3 {
  transform: scale(.5);
  opacity: 0;
  transition: transform 1.8s var(--ease-bounce) .6s,
              opacity 1.4s var(--ease-out) .6s;
}
.hero__slide.is-active .layer-3 {
  transform: scale(1);
  opacity: 1;
}

/* ヴィネット（上下暗くして文字を読みやすく） */
.hero__vignette {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(42, 26, 20, .6) 0%, rgba(42, 26, 20, .2) 30%, rgba(42, 26, 20, .3) 70%, rgba(42, 26, 20, .75) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(42, 26, 20, .5) 100%);
}

/* スライド番号ナビ */
.hero__slide-nav {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .4);
}
.hero__slide-num {
  position: relative;
  padding: 8px 0;
  transition: color .5s;
}
.hero__slide-num.is-active {
  color: var(--gold-light);
}
.hero__slide-num.is-active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-light);
  animation: slide-nav-progress 7s linear;
}
@keyframes slide-nav-progress {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

/* Floating petals */
.petals { position: absolute; inset: 0; overflow: hidden; z-index: -1; pointer-events: none; }
.petal {
  position: absolute;
  width: 14px; height: 20px;
  background: linear-gradient(135deg, rgba(232, 184, 192, .5), rgba(184, 90, 110, .4));
  border-radius: 50% 0 50% 0;
  animation: petal-fall linear infinite;
  filter: blur(.5px);
}
.petal--1 { left: 8%;  top: -10px; animation-duration: 18s; animation-delay:  0s; transform: rotate(15deg);  }
.petal--2 { left: 22%; top: -10px; animation-duration: 24s; animation-delay: -3s; transform: rotate(-25deg); background: linear-gradient(135deg, rgba(244, 197, 168, .5), rgba(200, 90, 51, .35)); }
.petal--3 { left: 38%; top: -10px; animation-duration: 20s; animation-delay: -6s; transform: rotate(45deg);  }
.petal--4 { left: 55%; top: -10px; animation-duration: 26s; animation-delay: -9s; transform: rotate(-15deg); background: linear-gradient(135deg, rgba(235, 208, 138, .5), rgba(212, 169, 74, .35)); }
.petal--5 { left: 68%; top: -10px; animation-duration: 22s; animation-delay: -1s; transform: rotate(30deg);  }
.petal--6 { left: 82%; top: -10px; animation-duration: 28s; animation-delay: -5s; transform: rotate(-40deg); background: linear-gradient(135deg, rgba(244, 197, 168, .5), rgba(200, 90, 51, .35)); }
.petal--7 { left: 92%; top: -10px; animation-duration: 21s; animation-delay: -12s; transform: rotate(10deg); }
.petal--8 { left: 15%; top: -10px; animation-duration: 25s; animation-delay: -15s; transform: rotate(-30deg); background: linear-gradient(135deg, rgba(235, 208, 138, .4), rgba(212, 169, 74, .3)); }
@keyframes petal-fall {
  0%   { transform: translateY(-20px) rotate(0deg);  opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

.hero__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  z-index: 2;
}

/* エディトリアルラベル（Seiwa風） */
.editorial-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--terra);
  margin-bottom: 28px;
}
.editorial-label--light { color: var(--gold-light); margin-bottom: 40px; }
.editorial-label__num {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
}
.editorial-label__sep {
  flex: 0 0 40px;
  height: 1px;
  background: currentColor;
  opacity: .5;
  animation: sep-grow 1.4s var(--ease-out) both;
}
.intro-done .hero__label .editorial-label__sep { animation-delay: .3s; }
@keyframes sep-grow { from { flex-basis: 0; } to { flex-basis: 40px; } }
.editorial-label__name {
  font-style: normal;
  font-weight: 500;
}

/* タイトル：日本語（分割リビール・keyframe方式） */
.hero__title {
  display: block;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(30px, 7.5vw, 58px);
  letter-spacing: .18em;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(42, 26, 20, .5);
}
.hero__title-part {
  display: inline-block;
  opacity: 0;
}
@keyframes hero-title-in {
  0%   { opacity: 0; transform: translateY(40px); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.intro-done .hero__title-part {
  animation: hero-title-in 1.2s cubic-bezier(.22, 1, .36, 1) both;
}
.intro-done .hero__title-part.part-1 { animation-delay: .3s; }
.intro-done .hero__title-part.part-2 { animation-delay: .5s; }

/* タイトル：英字（単語分割） */
.hero__title-en {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: .12em;
  color: var(--gold-light);
  margin-bottom: 40px;
}
.hero__title-en__part {
  display: inline-block;
  opacity: 0;
}
@keyframes hero-en-in {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.intro-done .hero__title-en__part {
  animation: hero-en-in 1s var(--ease-out) both;
}
.intro-done .hero__title-en__part.part-1 { animation-delay: .8s; }
.intro-done .hero__title-en__part.part-2 { animation-delay: .95s; }
.intro-done .hero__title-en__part.part-3 { animation-delay: 1.1s; }

/* リード文：行ごとにリビール */
.hero__lead {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 15px;
  line-height: 2.4;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 48px;
  letter-spacing: .06em;
}
.hero__lead__line {
  display: block;
  opacity: 0;
}
@keyframes hero-line-in {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero__lead em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 500;
  border-bottom: 1px solid rgba(235, 208, 138, .4);
  padding-bottom: 2px;
}
.intro-done .hero__lead__line {
  animation: hero-line-in 1s var(--ease-out) both;
}
.intro-done .hero__lead__line.line-1 { animation-delay: 1.3s; }
.intro-done .hero__lead__line.line-2 { animation-delay: 1.5s; }
.intro-done .hero__lead__line.line-3 { animation-delay: 1.7s; }
.intro-done .hero__lead__line.line-4 { animation-delay: 1.9s; }

.hero__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 56px;
  opacity: 0;
  animation: cta-in 1s var(--ease-out) 2.2s both;
  background: linear-gradient(135deg, var(--gold), var(--ochre));
  background-size: 200% 100%;
  color: #fff;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .2em;
  border-radius: 40px;
  position: relative;
  box-shadow: 0 20px 40px -10px rgba(212, 169, 74, .5), inset 0 1px 0 rgba(255, 255, 255, .3);
  transition: transform .4s var(--ease-bounce), box-shadow .4s;
  overflow: hidden;
}
.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s;
}
.hero__cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 30px 50px -10px rgba(212, 169, 74, .7);
  background-position: 100% 0;
}
.hero__cta:hover::before { transform: translateX(100%); }
.hero__cta-arrow {
  display: inline-block;
  transition: transform .3s var(--ease-out);
}
.hero__cta:hover .hero__cta-arrow { transform: translateX(6px); }
@keyframes cta-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ Section commons ═══════════════ */

.section-eyebrow {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .4em;
  color: var(--terra);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-title {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(22px, 5vw, 34px);
  letter-spacing: .12em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--ink);
}

.deco-band {
  position: absolute; left: 0; right: 0; height: 40px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' viewBox='0 0 60 40'><g fill='none' stroke='%23C85A33' stroke-opacity='.35' stroke-width='.8'><path d='M30 6 L36 22 L52 30 L36 30 L30 46 L24 30 L8 30 L24 22 Z'/><circle cx='30' cy='24' r='6'/></g></svg>") repeat-x;
  background-size: 60px 40px;
  z-index: 1;
}
.deco-band--top { top: 0; }
.deco-band--bottom { bottom: 0; transform: rotate(180deg); }

/* ═══════════════ CONCEPT ═══════════════ */

.concept {
  padding: 120px 24px 100px;
  background: var(--cream);
  position: relative;
  text-align: center;
}
.concept__frame { max-width: 720px; margin: 0 auto; padding: 40px 20px; }
.concept__title {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(26px, 6vw, 40px);
  letter-spacing: .18em;
  line-height: 1.7;
  margin-bottom: 32px;
  color: var(--ink);
}
.concept__title span { display: block; }
.concept__body {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 14px;
  line-height: 2.2;
  color: var(--ink-soft);
  margin-bottom: 56px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  position: relative;
  padding: 32px 12px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #FFFCFA);
  text-align: center;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .3s;
  overflow: hidden;
}
.pillar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(232, 115, 74, .08));
  opacity: 0;
  transition: opacity .5s;
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -15px rgba(200, 90, 51, .3);
  border-color: var(--terra-soft);
}
.pillar:hover::before { opacity: 1; }
.pillar__flower {
  position: absolute;
  top: 10px; right: 10px;
  opacity: .3;
  transition: transform .8s var(--ease-out), opacity .3s;
}
.pillar:hover .pillar__flower {
  opacity: .7;
  transform: rotate(180deg) scale(1.15);
}
.pillar__num {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 26px;
  color: var(--terra);
  margin-bottom: 8px;
  font-weight: 600;
}
.pillar__text {
  font-family: var(--serif-jp);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .1em;
}

/* ═══════════════ SERVICES ═══════════════ */

.services {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  text-align: center;
  position: relative;
}
.services__inner { max-width: 1100px; margin: 0 auto; }

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 20px;
}
@media (min-width: 720px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }

.s-card {
  position: relative;
  padding: 44px 28px 36px;
  background: #fff;
  border-radius: 20px;
  text-align: left;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s;
  overflow: hidden;
}
.s-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terra), var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.s-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.s-card:hover::after { transform: scaleX(1); }
.s-card__badge {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 40px;
  font-weight: 600;
  color: var(--terra-soft);
  opacity: .6;
}
.s-card__icon {
  width: 96px;
  height: 96px;
  margin: 4px 0 20px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white), var(--cream-deep));
  box-shadow: 0 8px 24px -8px rgba(6, 182, 212, .25), inset 0 0 0 2px var(--white), inset 0 0 0 3px var(--aqua-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s var(--ease-bounce);
}
.s-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: contrast(1.02) saturate(1.05);
}
.s-card:hover .s-card__icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 14px 28px -8px rgba(200, 90, 51, .5), inset 0 0 0 1px var(--gold);
}
.s-card__title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.s-card__text {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 13px;
  line-height: 2;
  color: var(--ink-soft);
}

/* ═══════════════ VOICE ═══════════════ */

.voice {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse at top left, rgba(255, 90, 95, .04), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(6, 182, 212, .05), transparent 50%),
    linear-gradient(135deg, var(--white), var(--cream), var(--white));
  background-size: 200% 200%;
  animation: voice-bg 15s ease-in-out infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@keyframes voice-bg {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.voice::before,
.voice::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200, 90, 51, .12), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.voice::before { top: -50px; left: -50px; animation: float 12s ease-in-out infinite; }
.voice::after  { bottom: -50px; right: -50px; animation: float 15s ease-in-out infinite reverse; }
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(30px, 20px); }
}

.voice__inner {
  max-width: 680px; margin: 0 auto;
  position: relative;
  z-index: 1;
}
.voice__quote-mark {
  font-family: var(--serif-en);
  font-size: 100px;
  line-height: 1;
  color: var(--terra);
  opacity: .3;
  margin-bottom: -30px;
}
.voice__body {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(15px, 3vw, 19px);
  line-height: 2.4;
  color: var(--ink);
  letter-spacing: .08em;
  margin-bottom: 40px;
}
.voice__body em {
  font-style: normal;
  color: var(--terra);
  font-weight: 500;
  background: linear-gradient(180deg, transparent 65%, rgba(212, 169, 74, .35) 65%);
}
.voice__sign {
  display: inline-block;
  padding: 20px 40px;
  border-top: 1px solid rgba(200, 90, 51, .3);
  border-bottom: 1px solid rgba(200, 90, 51, .3);
  margin-bottom: 48px;
}
.voice__sign-title {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.voice__sign-name {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: .3em;
}

.voice__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}
.trust-item {
  padding: 20px 8px;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(200, 90, 51, .15);
  transition: transform .4s var(--ease-out), background .3s;
}
.trust-item:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .9); }
.trust-item__num {
  font-family: var(--serif-en);
  font-weight: 600;
  font-size: 36px;
  color: var(--terra);
  line-height: 1;
}
.trust-item__unit {
  font-family: var(--serif-jp);
  font-size: 13px;
  color: var(--terra);
  margin-left: 2px;
}
.trust-item__label {
  display: block;
  font-family: var(--serif-jp);
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: .1em;
  line-height: 1.5;
}

/* ═══════════════ FORM ═══════════════ */

.form-section {
  position: relative;
  padding: 80px 20px 100px;
  background:
    radial-gradient(ellipse at top, rgba(6, 182, 212, .05), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.form-wrap {
  max-width: 780px;
  margin: 60px auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 44px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
@media (min-width: 720px) { .form-wrap { padding: 64px 56px; } }

.form-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--line);
}
.form-header__title {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 4vw, 30px);
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.form-header__note {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2;
}
.hl { color: var(--terra); font-weight: 500; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  list-style: none;
  margin-bottom: 44px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 18px; left: 12%; right: 12%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step {
  text-align: center;
  font-size: 11px;
  font-family: var(--serif-jp);
  color: var(--ink-soft);
  padding-top: 46px;
  position: relative;
  line-height: 1.4;
  letter-spacing: .05em;
}
.step span {
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--serif-en);
  font-size: 13px;
  color: var(--ink-soft);
  transition: all .4s var(--ease-bounce);
  z-index: 1;
}
.step--active { color: var(--terra); font-weight: 600; }
.step--active span {
  background: linear-gradient(135deg, var(--terra), var(--terra-light));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(200, 90, 51, .5);
  transform: translateX(-50%) scale(1.1);
}
.step--done span {
  background: var(--terra-soft);
  border-color: var(--terra-soft);
  color: #fff;
}
.step--done span::before { content: '✓'; }
.step--done span > *:not(::before) { display: none; }

/* Step panels */
.step-panel {
  border: none;
  display: none;
}
.step-panel--active {
  display: block;
  animation: panel-in .6s var(--ease-out);
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.step-panel__title {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: .1em;
}
.panel-lead {
  text-align: center;
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 2;
}

/* Customer type cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 560px) { .cards { grid-template-columns: repeat(4, 1fr); } }
.card {
  position: relative;
  padding: 22px 8px 18px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all .4s var(--ease-out);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--terra), var(--rose), var(--gold));
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
}
.card:hover {
  border-color: var(--terra-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card input { display: none; }
.card__icon {
  display: block;
  font-size: 30px;
  margin-bottom: 8px;
  filter: grayscale(.3);
  transition: all .4s var(--ease-bounce);
}
.card__text {
  font-family: var(--serif-jp);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: .05em;
}
.card.is-on {
  border-color: var(--terra);
  background: linear-gradient(135deg, #FDF3ED, #F9E5D9);
  box-shadow: 0 8px 20px -6px rgba(200, 90, 51, .35);
}
.card.is-on .card__icon { filter: none; transform: scale(1.15); }
@keyframes card-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Fields */
.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 620px) { .field-grid { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 24px; }
.field:last-child { margin-bottom: 0; }
.field-label,
.field label,
.upload-block__title {
  display: block;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: .05em;
}
.req {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--rose);
  color: #fff;
  font-family: var(--sans-jp);
  font-size: 10px;
  border-radius: 3px;
  letter-spacing: .05em;
}
.field input[type=text],
.field input[type=tel],
.field input[type=email],
.field input[type=number],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  font-family: var(--sans-jp);
  font-size: 15px;
  color: var(--ink);
  transition: all .3s var(--ease-out);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terra);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 90, 51, .1);
  transform: translateY(-1px);
}
.field textarea { resize: vertical; min-height: 120px; }
.hint {
  display: block;
  font-family: var(--serif-jp);
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.7;
}
.hint--gold {
  text-align: center;
  background: linear-gradient(135deg, #FFF8E8, #FCEAC8);
  padding: 16px;
  border-radius: 10px;
  color: var(--ochre);
  font-weight: 500;
  font-size: 12px;
  margin-top: 20px;
  border: 1px solid rgba(212, 169, 74, .3);
}

.radio-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-chips label { cursor: pointer; font-weight: normal; margin: 0; }
.radio-chips input { display: none; }
.radio-chips span {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--ink-soft);
  transition: all .3s var(--ease-out);
  background: #fff;
}
.radio-chips label:hover span { border-color: var(--terra-soft); color: var(--terra); }
.radio-chips input:checked + span {
  background: linear-gradient(135deg, var(--terra), var(--terra-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px -3px rgba(200, 90, 51, .5);
  transform: scale(1.05);
}

/* Checkbox chips (multi-select) */
.checkbox-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-chips label { cursor: pointer; font-weight: normal; margin: 0; }
.checkbox-chips input { display: none; }
.checkbox-chips span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--ink-soft);
  background: #fff;
  transition: all .3s var(--ease-out);
}
.checkbox-chips label:hover span { border-color: var(--terra-soft); color: var(--terra); }
.checkbox-chips input:checked + span {
  background: linear-gradient(135deg, var(--terra), var(--terra-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px -3px rgba(200, 90, 51, .4);
}

/* Mode-specific block (hotel / restaurant / realty) */
.mode-blocks { margin: 8px 0 22px; }
.mode-block {
  margin-top: 20px;
  padding: 24px 22px 12px;
  border: 1px solid rgba(212, 169, 74, .35);
  border-radius: 14px;
  background: linear-gradient(180deg, #FFFDF9, #FFF);
  box-shadow: 0 6px 24px -18px rgba(200, 90, 51, .25);
  animation: mode-fade .4s var(--ease-out);
}
@keyframes mode-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.mode-block__label {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(212, 169, 74, .35);
}
.mode-block__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light, #EBD08A));
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .05em;
}
.mode-block__title {
  font-family: var(--serif-jp);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .05em;
}

/* Upload — inline hero (STEP2 埋込み型) */
.upload-block--inline {
  margin: 22px 0 26px;
  padding: 22px 22px 18px;
  border: 2px dashed var(--terra, #C85A33);
  border-radius: 14px;
  background: linear-gradient(180deg, #FFF9F2, #FFFDF9);
  box-shadow: 0 10px 30px -24px rgba(200, 90, 51, .35);
  position: relative;
}
.upload-block--inline::before {
  content: '';
  position: absolute; top: -10px; left: 20px;
  width: 20px; height: 20px;
  background: var(--terra, #C85A33);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #FFF9F2;
}
.upload-block__title--hero {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 6px;
  font-family: var(--serif-jp);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink, #0F172A);
  letter-spacing: .04em;
}
.upload-block__icon { font-size: 20px; }
.upload-block__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold, #D4A94A), var(--gold-light, #EBD08A));
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: .05em;
}
.upload-block__lead {
  margin: 0 0 16px;
  font-size: 12.5px;
  color: var(--ink-soft, #64748B);
  line-height: 1.7;
}
.upload-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 620px) { .upload-grid { grid-template-columns: 1fr 1fr; } }
.upload-slot .dropzone { padding: 22px 12px; }
.upload-slot .dropzone__icon { font-size: 28px; }
.upload-slot .dropzone__label { font-weight: 600; }

/* Upload */
.upload-block { margin-bottom: 28px; }
.dropzone {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  padding: 36px 16px;
  border: 2px dashed var(--terra-soft);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #FEFAF6, #FDF3ED);
  cursor: pointer;
  transition: all .4s var(--ease-out);
}
.dropzone:hover {
  border-color: var(--terra);
  background: linear-gradient(135deg, #FDF3ED, #F9E5D9);
  transform: translateY(-2px);
}
.dropzone__icon {
  font-family: var(--serif-en);
  font-size: 40px;
  color: var(--terra);
  line-height: 1;
  transition: transform .4s var(--ease-bounce);
}
.dropzone:hover .dropzone__icon { transform: rotate(90deg) scale(1.15); }
.dropzone__label {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin-top: 8px;
}
.dropzone__hint {
  font-family: var(--serif-jp);
  font-size: 11px;
  color: var(--ink-soft);
}
.filelist { list-style: none; margin-top: 12px; padding: 0; }
.filelist li {
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--terra);
  padding: 6px 12px;
  background: #FDF3ED;
  border-radius: 6px;
  margin-bottom: 4px;
  animation: file-in .4s var(--ease-out);
}
@keyframes file-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }

/* Summary */
.summary {
  margin-top: 30px;
  padding: 26px;
  background: linear-gradient(135deg, var(--cream), var(--cream-deep));
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.summary h3 {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 15px;
  color: var(--terra);
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: .1em;
}
.summary dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 16px;
  font-family: var(--serif-jp);
  font-size: 12px;
}
.summary dt { color: var(--ink-soft); font-weight: 500; }
.summary dd { color: var(--ink); word-break: break-all; }
.summary .dim { color: #B8A899; font-style: italic; }

/* Agree */
.agree {
  display: flex; align-items: center; gap: 10px;
  margin: 24px 0;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 8px;
  font-family: var(--serif-jp);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: background .3s;
}
.agree:hover { background: #FDF3ED; }
.agree input { width: 18px; height: 18px; accent-color: var(--terra); }

/* Buttons */
.step-nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
}
.step-nav .btn { flex: 1; }
.btn {
  position: relative;
  padding: 15px 26px;
  border-radius: 40px;
  border: none;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .1em;
  transition: all .35s var(--ease-out);
  cursor: pointer;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-out);
}
.btn:hover::before { transform: translateX(100%); }
.btn--primary {
  background: linear-gradient(135deg, var(--terra), var(--terra-light));
  color: #fff;
  box-shadow: 0 10px 20px -6px rgba(200, 90, 51, .45);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 26px -6px rgba(200, 90, 51, .6);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--ochre));
  color: #fff;
  box-shadow: 0 10px 20px -6px rgba(212, 169, 74, .5);
  font-weight: 600;
  padding: 17px 30px;
  animation: gold-pulse 3s ease-in-out infinite;
}
@keyframes gold-pulse {
  0%, 100% { box-shadow: 0 10px 20px -6px rgba(212, 169, 74, .5); }
  50%      { box-shadow: 0 14px 28px -6px rgba(212, 169, 74, .7); }
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 32px -6px rgba(212, 169, 74, .75);
}
.btn--gold:disabled { opacity: .6; cursor: wait; animation: none; }
.btn--ghost {
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--terra-soft); color: var(--terra); transform: translateY(-2px); }
.btn__arrow { display: inline-block; margin-left: 6px; transition: transform .3s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.err {
  margin-top: 12px;
  color: var(--rose);
  font-size: 12px;
  text-align: center;
  font-family: var(--serif-jp);
}

/* ═══════════════ DONE ═══════════════ */

.done {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  animation: done-in .8s var(--ease-out);
}
@keyframes done-in {
  from { opacity: 0; transform: scale(.95); }
  to   { opacity: 1; transform: scale(1); }
}
.done__petals {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.done__petals span {
  position: absolute;
  width: 12px; height: 18px;
  background: linear-gradient(135deg, var(--rose-soft), var(--terra-soft));
  border-radius: 50% 0 50% 0;
  animation: done-petal 4s ease-out infinite;
}
.done__petals span:nth-child(1) { left: 10%; animation-delay:  0s; }
.done__petals span:nth-child(2) { left: 25%; animation-delay: .5s; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.done__petals span:nth-child(3) { left: 45%; animation-delay:  1s; }
.done__petals span:nth-child(4) { left: 60%; animation-delay: 1.5s; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.done__petals span:nth-child(5) { left: 75%; animation-delay:  2s; }
.done__petals span:nth-child(6) { left: 90%; animation-delay: 2.5s; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
@keyframes done-petal {
  0%   { top: -20px; opacity: 0; transform: rotate(0deg); }
  20%  { opacity: 1; }
  100% { top: 100%; opacity: 0; transform: rotate(360deg); }
}
.done__flower {
  animation: flower-in .8s var(--ease-bounce) .3s both, spin-slow 20s linear infinite 1s;
}
@keyframes flower-in {
  from { opacity: 0; transform: scale(0) rotate(-180deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}
.done__title {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(30px, 6vw, 46px);
  color: var(--terra);
  font-weight: 600;
  margin: 20px 0;
  line-height: 1.4;
}
.done__title span {
  display: block;
  font-family: var(--serif-jp);
  font-style: normal;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  margin-top: 12px;
  letter-spacing: .15em;
}
.done__id {
  font-family: var(--serif-jp);
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 20px;
}
.done__id b {
  color: var(--terra);
  font-family: var(--serif-en);
  font-size: 20px;
  margin-left: 8px;
  letter-spacing: .1em;
}
.done__msg {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.2;
  margin-bottom: 32px;
}
.done__tel {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--terra), var(--terra-light));
  color: #fff;
  border-radius: 40px;
  font-family: var(--serif-jp);
  font-weight: 500;
  letter-spacing: .1em;
  box-shadow: 0 10px 20px -6px rgba(200, 90, 51, .5);
  transition: transform .3s var(--ease-out);
}
.done__tel:hover { transform: translateY(-2px) scale(1.03); }

/* AI概算ブロック（完了画面内） */
.done-estimate {
  max-width: 480px;
  margin: 24px auto 32px;
  padding: 26px 24px 22px;
  background: linear-gradient(135deg, #FFF8E8, #FDF3ED);
  border: 1px solid rgba(212, 169, 74, .35);
  border-radius: 16px;
  box-shadow: 0 20px 40px -20px rgba(212, 169, 74, .4);
  text-align: center;
  animation: estimate-in .8s var(--ease-out) .6s both;
}
@keyframes estimate-in {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.done-estimate__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--ochre);
  letter-spacing: .12em;
  margin-bottom: 16px;
  font-weight: 500;
}
.done-estimate__ai {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 20px;
  background: linear-gradient(135deg, var(--gold), var(--ochre));
  color: #fff;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: 4px;
  box-shadow: 0 3px 8px -2px rgba(212, 169, 74, .5);
}
.done-estimate__area {
  font-family: var(--serif-jp);
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 12px;
}
.done-estimate__area b {
  font-family: var(--serif-en);
  font-weight: 600;
  font-size: 20px;
  color: var(--terra);
  margin: 0 4px;
  letter-spacing: .05em;
}
.done-estimate__source {
  display: block;
  font-family: var(--serif-jp);
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.done-estimate__price {
  font-family: var(--serif-en);
  font-weight: 600;
  font-size: clamp(22px, 5vw, 30px);
  color: var(--ochre);
  letter-spacing: .04em;
  padding: 12px 0 8px;
  border-top: 1px dashed rgba(212, 169, 74, .4);
}
.done-estimate__tax {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--serif-jp);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-soft);
  vertical-align: middle;
}
.done-estimate__note {
  font-family: var(--serif-jp);
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-top: 12px;
}
.done-estimate__work {
  display: inline-block;
  margin: 6px 0 12px;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold, #D4A94A), var(--gold-light, #EBD08A));
  color: #fff;
  font-family: var(--serif-jp);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .05em;
}
.done-estimate__summary {
  margin-top: 10px;
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--ink);
  line-height: 1.7;
  padding: 10px 14px;
  background: rgba(212, 169, 74, .08);
  border-radius: 8px;
}
.done-estimate__breakdown {
  margin-top: 12px;
  text-align: left;
  border: 1px solid rgba(212, 169, 74, .3);
  border-radius: 8px;
  padding: 6px 10px;
  background: #fff;
}
.done-estimate__breakdown summary {
  cursor: pointer;
  padding: 6px 4px;
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--terra, #C85A33);
  font-weight: 600;
  outline: none;
}
.done-estimate__breakdown[open] summary { border-bottom: 1px dashed rgba(212, 169, 74, .35); margin-bottom: 6px; }
.done-estimate__breakdown ul {
  list-style: none;
  padding: 0 4px 4px;
  margin: 0;
}
.done-estimate__breakdown li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 6px 4px;
  border-bottom: 1px dashed rgba(0,0,0,.06);
  font-size: 11.5px;
  color: var(--ink);
}
.done-estimate__breakdown li:last-child { border-bottom: none; }
.done-estimate__breakdown li b { color: var(--terra, #C85A33); white-space: nowrap; }

/* Detailed inquiry CTA (概算表示後の導線) */
.detailed-cta {
  margin-top: 22px;
  padding: 22px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFF3E6, #FEEFDA);
  border: 2px solid var(--gold, #D4A94A);
  text-align: center;
  box-shadow: 0 10px 30px -18px rgba(212, 169, 74, .45);
}
.detailed-cta__title {
  font-family: var(--serif-jp);
  font-size: 15px;
  color: var(--ink, #0F172A);
  margin-bottom: 10px;
  line-height: 1.7;
}
.detailed-cta__title b {
  display: inline-block;
  padding: 2px 12px;
  margin: 0 4px;
  background: linear-gradient(135deg, var(--terra, #C85A33), var(--terra-light, #E8734A));
  color: #fff;
  border-radius: 999px;
  font-weight: bold;
  font-size: 14px;
}
.detailed-cta__note {
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--ink-soft, #64748B);
  line-height: 1.7;
  margin-bottom: 14px;
}
.detailed-cta textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(212, 169, 74, .4);
  border-radius: 8px;
  font-family: var(--serif-jp);
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  resize: vertical;
  margin-bottom: 14px;
  box-sizing: border-box;
}
.detailed-cta textarea:focus {
  outline: none;
  border-color: var(--terra, #C85A33);
  box-shadow: 0 0 0 3px rgba(200, 90, 51, .1);
}
.detailed-cta__btn {
  width: 100%;
  max-width: 400px;
}
.detailed-cta__result {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--serif-jp);
  font-size: 13px;
  line-height: 1.7;
}
.detailed-cta__result--ok {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.detailed-cta__result--err {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ═══════════════ FOOTER ═══════════════ */

.footer {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: rgba(255, 255, 255, .85);
  padding: 60px 24px 40px;
  text-align: center;
  position: relative;
}
.footer::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--terra), var(--rose), var(--gold), var(--rose), var(--terra));
  position: absolute;
  top: 0; left: 0; right: 0;
}
.footer__inner { max-width: 720px; margin: 0 auto; }
.footer__logo {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 36px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.footer__tag {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 11.5px;
  color: rgba(235, 208, 138, .7);
  letter-spacing: .35em;
  margin-bottom: 24px;
}
.footer__info {
  font-family: var(--serif-jp);
  font-size: 13px;
  line-height: 2;
  margin-bottom: 24px;
}
.footer__info a { color: var(--gold-light); text-decoration: underline; }
.footer__copy {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .5);
}

/* ═══════════════ WOMEN'S TOUCH — 女性ならではの親しみやすさ ═══════════════ */

.womens-touch {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse at top right, rgba(184, 90, 110, .08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(232, 184, 192, .12), transparent 55%),
    linear-gradient(180deg, #FBF6F1 0%, #FDF3EC 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.womens-touch::before {
  content: '';
  position: absolute;
  top: 40px; right: 40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(184, 90, 110, .15), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.womens-touch__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.editorial-label--rose { color: var(--rose); }

.womens-touch__lead {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2.2;
  margin: 24px auto 48px;
  max-width: 640px;
  letter-spacing: .04em;
}
.womens-touch__lead em {
  font-style: normal;
  color: var(--rose);
  font-weight: 500;
  background: linear-gradient(180deg, transparent 65%, rgba(232, 184, 192, .5) 65%);
  padding: 0 4px;
}

.womens-touch__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .womens-touch__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.w-card {
  padding: 32px 26px;
  background: #fff;
  border: 1px solid rgba(184, 90, 110, .15);
  border-radius: 16px;
  text-align: left;
  transition: transform .4s var(--ease-out), box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.w-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-soft), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.w-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(184, 90, 110, .3);
}
.w-card:hover::before { transform: scaleX(1); }
.w-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--white), var(--rose-soft));
  box-shadow: 0 6px 20px -6px rgba(236, 72, 153, .3), inset 0 0 0 2px var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s var(--ease-bounce);
}
.w-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: contrast(1.02) saturate(1.05);
}
.w-card:hover .w-card__icon {
  transform: scale(1.08) rotate(3deg);
}
.w-card__title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: .04em;
  line-height: 1.5;
}
.w-card__text {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 13px;
  line-height: 2;
  color: var(--ink-soft);
}

/* Pillars — 追加の説明文用スタイル */
.pillar__desc {
  display: block;
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 6px;
  line-height: 1.7;
  letter-spacing: .02em;
}
.pillar--highlight {
  border-color: var(--aqua);
  background: linear-gradient(180deg, #fff, var(--aqua-soft));
  box-shadow: 0 8px 20px -6px rgba(6, 182, 212, .3);
}
.pillar--highlight .pillar__num { color: var(--ochre); }

/* SERVICE — 追加パーツ */
.services__lead {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2.2;
  margin: 20px auto 40px;
  max-width: 640px;
  text-align: center;
}
.services__lead em {
  font-style: normal;
  color: var(--terra);
  font-weight: 500;
}
.services__note {
  max-width: 780px;
  margin: 40px auto 0;
  padding: 16px 22px;
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: 10px;
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 2;
  text-align: center;
}
.services__note b { color: var(--terra); font-weight: 500; }

.s-card__subtitle {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  color: var(--gold);
  margin: -6px 0 12px;
  letter-spacing: .1em;
  font-weight: 500;
  padding-left: 2px;
}
.s-card__concern {
  padding: 12px 14px;
  background: linear-gradient(135deg, #FDF3ED, #FCEAC8);
  border-left: 3px solid var(--terra);
  border-radius: 6px;
  margin-bottom: 20px;
}
.s-card__concern-label {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--terra);
  margin-bottom: 4px;
  font-weight: 600;
}
.s-card__concern-text {
  font-family: var(--serif-jp);
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
}
.s-card__concern-text b {
  color: var(--terra);
  font-weight: 600;
}
.s-card__tags {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.s-card__tags li {
  font-family: var(--serif-jp);
  font-size: 10.5px;
  color: var(--terra);
  background: #FFF3E9;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: .05em;
}
.s-card__text b { color: var(--terra); font-weight: 600; }

/* ═══════════════ 簡易お見積のご案内カード ═══════════════ */

.estimate-notice {
  margin: 0 auto 40px;
  max-width: 780px;
  padding: 28px 24px;
  background: linear-gradient(135deg, #FEFAF6, #FDF3ED);
  border: 1px solid var(--terra-soft);
  border-radius: 16px;
  box-shadow: 0 10px 30px -15px rgba(200, 90, 51, .2);
}
@media (min-width: 620px) {
  .estimate-notice { padding: 32px 36px; }
}

.estimate-notice__flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  .estimate-notice__flow {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 8px;
  }
}

.estimate-notice__step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 14px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform .3s;
}
.estimate-notice__step:hover { transform: translateY(-2px); }
.estimate-notice__step--final {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff, #FFF8E8);
}

.estimate-notice__step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--terra), var(--terra-light));
  color: #fff;
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px -3px rgba(200, 90, 51, .5);
}
.estimate-notice__step--final .estimate-notice__step-num {
  background: linear-gradient(135deg, var(--gold), var(--ochre));
  box-shadow: 0 4px 10px -3px rgba(212, 169, 74, .5);
}

.estimate-notice__step-body { flex: 1; min-width: 0; }
.estimate-notice__step-title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.estimate-notice__step-title small {
  display: block;
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 10.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.estimate-notice__step-text {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.estimate-notice__step-text b { color: var(--terra); font-weight: 600; }
.estimate-notice__step--final .estimate-notice__step-text b { color: var(--ochre); }

.estimate-notice__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-en);
  font-size: 22px;
  color: var(--terra);
  font-weight: 300;
  padding: 0 2px;
}
@media (min-width: 720px) {
  .estimate-notice__arrow { display: flex; }
}

.estimate-notice__note {
  padding: 14px 16px;
  background: rgba(255, 255, 255, .7);
  border-radius: 10px;
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 12px;
  line-height: 2;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.estimate-notice__note b { color: var(--terra); font-weight: 600; }
.estimate-notice__note em {
  font-style: normal;
  color: var(--rose);
  background: rgba(232, 184, 192, .25);
  padding: 0 4px;
  border-radius: 3px;
  font-size: 11.5px;
}

/* ═══════════════ CINEMA — 3Dシネマティック・スクロール ═══════════════ */

.cinema {
  position: relative;
  background: linear-gradient(180deg, #0F172A 0%, #0F172A 90%, #1E293B 95%, var(--white) 100%);
  perspective: 1500px;
  perspective-origin: center center;
}

.cinema__scene {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
/* Scene 2 & 3: sticky で「留まって寄っていく」効果のため2倍高 */
.cinema__scene--2, .cinema__scene--3 { height: 200vh; }
.cinema__scene--4 { height: 100vh; }

/* 各シーンの下部フェード — Scene間の切れ目をなくす */
.cinema__scene--1 .cinema__stage::after,
.cinema__scene--2 .cinema__stage::after,
.cinema__scene--3 .cinema__stage::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 25vh;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 15, 10, .5) 55%, rgba(26, 15, 10, .95) 100%);
  z-index: 2;
  pointer-events: none;
}
/* Scene間で次シーン画像への繋がりを演出する上部フェード */
.cinema__scene--2 .cinema__stage::before,
.cinema__scene--3 .cinema__stage::before,
.cinema__scene--4 .cinema__stage::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 18vh;
  background: linear-gradient(180deg, rgba(26, 15, 10, .9) 0%, rgba(26, 15, 10, .4) 40%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* 最終シーン(Scene 4)の下部フェードでクリームに融合 */
.cinema__scene--4 .cinema__stage::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50vh;
  background: linear-gradient(180deg, transparent 0%, rgba(58, 40, 32, .5) 30%, rgba(253, 248, 243, .95) 85%, var(--cream) 100%);
  z-index: 4;
  pointer-events: none;
}

/* split viewの隙間を消す（暗い線が見えないよう） */
.cinema__stage--split {
  gap: 0 !important;
  background: #1a0f0a;
}
.cinema__panel + .cinema__panel {
  border-left: 1px solid rgba(255, 255, 255, .08);
}

/* Scene 2 のテキストが右カラムに入りきるよう調整 */
.cinema__scene-title {
  font-size: clamp(20px, 3.4vw, 34px) !important;
  line-height: 1.6 !important;
  word-break: keep-all;
  overflow-wrap: normal;
}
.cinema__content--right {
  max-width: 620px !important;
}
.cinema__scene-title em {
  white-space: nowrap;
}

.cinema__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  will-change: transform;
}

/* 背景画像レイヤー */
.cinema__bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05) translateZ(0);
  transition: transform .1s linear;
  will-change: transform, filter;
}
/* Scene 1: 初期ロード時ゆっくりズームイン */
.cinema__scene--1 .cinema__bg {
  animation: ken-burns 20s ease-in-out infinite alternate;
}
@keyframes ken-burns {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

/* Scene 2: パララックス（背景がゆっくり動く） */
.cinema__bg--parallax { transform: scale(1.15); }

/* Scene 3: ズームイン（スクロールで拡大） */
.cinema__bg--zoom {
  transform-origin: 50% 50%;
  transform: scale(1) translateZ(0);
}

/* ヴィネット（画像の縁を暗く） */
.cinema__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 15, 10, .5) 0%, transparent 20%, transparent 60%, rgba(26, 15, 10, .85) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(26, 15, 10, .55) 100%);
  pointer-events: none;
}
.cinema__vignette--dark {
  background:
    linear-gradient(180deg, rgba(26, 15, 10, .7) 0%, rgba(26, 15, 10, .3) 30%, rgba(26, 15, 10, .8) 100%);
}
.cinema__vignette--edge {
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(26, 15, 10, .85) 100%);
}

/* コンテンツ */
.cinema__content {
  position: absolute;
  left: 0; right: 0;
  bottom: 12vh;
  z-index: 3;
  padding: 0 8vw;
  max-width: 720px;
  color: #fff;
}
.cinema__content--right {
  left: auto;
  right: 0;
  max-width: 560px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  padding: 0 8vw 0 5vw;
  text-align: right;
}
.cinema__content--center {
  left: 50%; right: auto;
  top: 50%; bottom: auto;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 5vw;
  max-width: 720px;
}

/* エディトリアルラベル（シネマ用） */
.cinema__editorial {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: .35em;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cinema__editorial--dark { color: rgba(255, 255, 255, .9); }
.cinema__editorial--gold { color: var(--gold-light); }
.cinema__editorial-num {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
}
.cinema__editorial-sep {
  flex: 0 0 40px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.cinema__editorial-name {
  font-style: normal;
  font-weight: 500;
}

/* Scene 1 タイトル */
.cinema__title {
  display: flex; flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.cinema__title-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--gold-light);
  line-height: 1;
}
.cinema__title-jp {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 46px);
  letter-spacing: .18em;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .6);
}

.cinema__tagline {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: clamp(13px, 1.8vw, 16px);
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 42px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
  padding: 0 12px;
}
@media (max-width: 720px) {
  .cinema__tagline { font-size: 12.5px; letter-spacing: .1em; padding: 0 20px; }
  .cinema__tagline-sep { display: none; }
}

.cinema__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  background: linear-gradient(135deg, var(--gold), var(--ochre));
  color: #fff;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .2em;
  border-radius: 40px;
  box-shadow: 0 20px 40px -10px rgba(212, 169, 74, .5), inset 0 1px 0 rgba(255, 255, 255, .3);
  transition: transform .4s var(--ease-bounce), box-shadow .4s;
}
.cinema__cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 30px 50px -10px rgba(212, 169, 74, .7);
}
.cinema__cta-arrow {
  display: inline-block;
  transition: transform .3s;
}
.cinema__cta:hover .cinema__cta-arrow { transform: translateX(6px); }

/* Scene 2, 3 タイトル */
.cinema__scene-title {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: .12em;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .6);
}
.cinema__scene-title--white { color: #fff; }
.cinema__scene-title em {
  font-style: normal;
  color: var(--gold-light);
  background: linear-gradient(180deg, transparent 65%, rgba(212, 169, 74, .3) 65%);
  padding: 0 4px;
}
.cinema__scene-body {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 2.2;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .06em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}
.cinema__scene-body--white { color: rgba(255, 255, 255, .95); }

/* スクロールヒント */
.cinema__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  color: rgba(255, 255, 255, .7);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: .4em;
  animation: hint-fade 3s ease-in-out infinite;
}
.cinema__scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold-light));
  margin: 0 auto 10px;
  animation: scroll-hint 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-hint {
  0%, 100% { transform: scaleY(1); opacity: .4; }
  50%      { transform: scaleY(1.3); opacity: 1; }
}
@keyframes hint-fade {
  0%, 100% { opacity: .5; }
  50%      { opacity: 1; }
}

/* Scene 4: 2枚split */
.cinema__stage--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: #1a0f0a;
}
.cinema__panel {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .8s var(--ease-out), filter .8s;
}
.cinema__panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 15, 10, .8) 100%);
}
.cinema__panel:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
  z-index: 2;
}
.cinema__panel-label {
  position: absolute;
  bottom: 30px; left: 30px;
  z-index: 3;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .3em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.cinema__split-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  color: #fff;
  padding: 40px 56px;
  background: rgba(26, 15, 10, .55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  width: min(90%, 780px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
}
.cinema__split-content .cinema__scene-title {
  white-space: normal;
  word-break: keep-all;
}

/* スクロール状態別（JS が付与） */
.cinema__scene.is-in-view .cinema__content { animation: cinema-content-in 1.4s var(--ease-out) both; }
.cinema__scene--2.is-active .cinema__bg { transform: scale(1) translateY(-5%); transition: transform 1s var(--ease-out); }
.cinema__scene--3.is-active .cinema__bg { transform: scale(1.4); transition: transform 1s var(--ease-out); }

@keyframes cinema-content-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cinema__content--right.is-in-view,
.cinema__content--right {
  animation-name: cinema-content-in-right;
}
@keyframes cinema-content-in-right {
  from { opacity: 0; transform: translateY(calc(-50% + 30px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}

/* モバイル調整 */
@media (max-width: 720px) {
  .cinema__scene--2, .cinema__scene--3 { height: 130vh; }
  .cinema__scene--4 { height: 100vh; }
  .cinema__stage--split { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .cinema__content { padding: 0 24px; bottom: 8vh; }
  .cinema__content--right { padding: 0 24px; text-align: left; max-width: none; }
  .cinema__content--center { padding: 0 24px; }
  .cinema__split-content { padding: 20px 24px; max-width: 85%; }
}

/* ═══════════════ タイル選択（カード式マルチセレクト） ═══════════════ */

.tile-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 620px) { .tile-picker { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .tile-picker { grid-template-columns: repeat(4, 1fr); } }

.tile-picker__loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px;
  font-family: var(--serif-jp);
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: var(--cream);
}

.tile-picker__badge {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 10px;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--serif-jp);
  font-size: 11px;
  font-weight: 400;
  border-radius: 20px;
  border: 1px solid var(--line);
  letter-spacing: .05em;
  transition: all .3s;
}
.tile-picker__badge.is-single {
  background: linear-gradient(135deg, #FFF8E8, #FCEAC8);
  color: var(--ochre);
  border-color: var(--gold-light);
  font-weight: 600;
}
.tile-picker__badge.is-multi {
  background: linear-gradient(135deg, #FDF3ED, #F9E5D9);
  color: var(--terra);
  border-color: var(--terra-soft);
  font-weight: 600;
}

.tile-picker__hint {
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-top: 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #FFFCF6, #FDF8F0);
  border-radius: 8px;
  border: 1px solid rgba(212, 169, 74, .2);
}
.tile-picker__hint b {
  color: var(--terra);
  font-weight: 600;
}

.tile-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all .3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.tile-card:hover {
  border-color: var(--terra-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -8px rgba(200, 90, 51, .25);
}
.tile-card input { position: absolute; opacity: 0; pointer-events: none; }
.tile-card.is-on {
  border-color: var(--terra);
  box-shadow: 0 10px 22px -6px rgba(200, 90, 51, .45), 0 0 0 3px rgba(200, 90, 51, .12);
}

.tile-card__imgwrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #FDF3ED, #F4C5A8);
}
.tile-card.no-img .tile-card__imgwrap {
  background: linear-gradient(135deg, var(--cream-deep), var(--terra-soft));
}
.tile-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.tile-card:hover .tile-card__img { transform: scale(1.08); }
.tile-card__placeholder {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif-jp);
  font-size: 12px;
  color: rgba(58, 40, 32, .5);
  letter-spacing: .1em;
  text-align: center;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .7);
  border-radius: 20px;
  pointer-events: none;
  display: none;
}
.tile-card.no-img .tile-card__placeholder { display: block; }

.tile-card__check {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, .95);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: transparent;
  transition: all .3s var(--ease-bounce);
  z-index: 2;
}
.tile-card.is-on .tile-card__check {
  background: linear-gradient(135deg, var(--terra), var(--terra-light));
  border-color: transparent;
  color: #fff;
  transform: scale(1.15);
}

.tile-card__body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tile-card__name {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: .02em;
}
.tile-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--serif-jp);
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.tile-card__meta span {
  padding: 1px 8px;
  background: var(--cream);
  border-radius: 12px;
}
.tile-card__price {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  color: var(--terra);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: .03em;
}

/* サマリー内の完成イメージ案内 */
.summary__mockup {
  margin-top: 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #FFF8E8, #FCEAC8);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--ochre);
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
}
.summary__mockup--multi {
  background: linear-gradient(135deg, #FDF3ED, #F9E5D9);
  border-color: var(--terra-soft);
  color: var(--terra);
}

/* 完了画面：完成イメージ生成中 */
.done-mockup {
  max-width: 480px;
  margin: 20px auto 30px;
  padding: 24px 22px;
  background: linear-gradient(135deg, #FFF8E8, #FCEAC8);
  border: 1px solid var(--gold-light);
  border-radius: 14px;
  text-align: center;
  animation: estimate-in .8s var(--ease-out) .9s both;
}
.done-mockup__spinner {
  font-size: 32px;
  animation: mockup-spin 3s linear infinite;
  display: inline-block;
  margin-bottom: 8px;
}
@keyframes mockup-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}
.done-mockup__title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 15px;
  color: var(--ochre);
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.done-mockup__note {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ═══════════════ プライバシーポリシー モーダル ═══════════════ */
.privacy-link {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  cursor: pointer;
  transition: color .2s;
}
.privacy-link:hover { color: var(--terra-light); text-decoration-thickness: 2px; }

.privacy-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.privacy-modal[hidden] { display: none; }
.privacy-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(42, 26, 20, .65);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
.privacy-modal.is-open .privacy-modal__backdrop { opacity: 1; }

.privacy-modal__panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  background: linear-gradient(180deg, #fff, #FFFCFA);
  border-radius: 20px;
  box-shadow: 0 40px 100px -20px rgba(42, 26, 20, .5), 0 0 0 1px var(--line);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition: opacity .35s var(--ease-out), transform .5s var(--ease-bounce);
}
.privacy-modal.is-open .privacy-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.privacy-modal__close {
  position: absolute;
  top: 14px; right: 18px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  color: var(--ink-soft);
  cursor: pointer;
  z-index: 2;
  transition: all .25s var(--ease-out);
}
.privacy-modal__close:hover {
  color: var(--terra);
  border-color: var(--terra-soft);
  transform: rotate(90deg);
}

.privacy-modal__body {
  overflow-y: auto;
  padding: 44px 32px 24px;
  font-family: var(--serif-jp);
  color: var(--ink);
  line-height: 1.95;
}
@media (min-width: 600px) { .privacy-modal__body { padding: 52px 48px 28px; } }

.privacy-modal__label {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--terra);
  margin-bottom: 8px;
  text-align: center;
}
.privacy-modal__title {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(22px, 4vw, 28px);
  color: var(--ink);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: .12em;
  position: relative;
  padding-bottom: 20px;
}
.privacy-modal__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--gold);
}
.privacy-modal__lead {
  font-family: var(--serif-jp);
  font-weight: 300;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 32px;
  line-height: 2;
}
.privacy-modal__body section { margin-bottom: 24px; }
.privacy-modal__body h3 {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 14px;
  color: var(--terra);
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid var(--terra);
  letter-spacing: .05em;
}
.privacy-modal__body p {
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.95;
}
.privacy-modal__body ul {
  list-style: none;
  padding: 8px 0 0 0;
  margin: 0;
}
.privacy-modal__body li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 4px;
}
.privacy-modal__body li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 6px;
}
.privacy-modal__body a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-modal__note {
  font-size: 12px !important;
  color: var(--ink-soft) !important;
  margin-top: 6px !important;
  font-style: italic;
}
.privacy-modal__updated {
  text-align: right;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 11px !important;
  color: var(--ink-soft) !important;
  letter-spacing: .1em;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  margin-top: 32px;
}

.privacy-modal__foot {
  padding: 16px 32px 24px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  border-radius: 0 0 20px 20px;
  text-align: center;
}
@media (min-width: 600px) { .privacy-modal__foot { padding: 20px 48px 28px; } }
.privacy-modal__foot .btn { padding: 12px 40px; }

/* ═══════════════ VOICE 拡張 — 企業理念+社長写真 ═══════════════ */

.voice__label {
  display: inline-flex !important;
  margin-bottom: 40px;
}

.voice__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  text-align: left;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 820px) {
  .voice__layout {
    grid-template-columns: 320px 1fr;
    gap: 60px;
  }
}

.voice__photo {
  text-align: center;
}
.voice__photo-frame {
  width: 260px;
  height: 340px;
  margin: 0 auto 22px;
  overflow: hidden;
  border-radius: 8px;
  background: #F4EBDE;
  box-shadow:
    0 30px 60px -20px rgba(200, 90, 51, .35),
    0 0 0 8px rgba(255, 255, 255, .8),
    0 0 0 9px var(--gold-light);
  position: relative;
  transition: transform .6s var(--ease-out);
}
.voice__photo-frame::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(212, 169, 74, .4);
  border-radius: 8px;
  pointer-events: none;
}
.voice__photo-frame:hover { transform: translateY(-5px); }
.voice__photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.voice__photo-caption { padding: 0 8px; }
.voice__photo-title {
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--terra);
  letter-spacing: .3em;
  margin-bottom: 6px;
  font-weight: 500;
}
.voice__photo-name {
  font-family: var(--serif-jp);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: .25em;
  font-weight: 600;
  margin-bottom: 4px;
}
.voice__photo-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .12em;
  font-weight: 500;
}

.voice__content {
  position: relative;
  padding-left: 20px;
}
@media (min-width: 820px) {
  .voice__content {
    border-left: 1px solid rgba(212, 169, 74, .35);
    padding-left: 40px;
  }
}

.voice__quote-mark {
  font-family: var(--serif-en);
  font-size: 60px !important;
  line-height: 1;
  color: var(--terra);
  opacity: .35;
  margin: 0 !important;
  margin-bottom: -18px !important;
  display: block !important;
}

.voice__body {
  text-align: left !important;
  font-size: clamp(14px, 2vw, 16px) !important;
  margin-bottom: 24px !important;
}

.voice__sub {
  text-align: left !important;
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(12.5px, 1.8vw, 14px);
  color: var(--ink-soft);
  line-height: 2.1;
  margin-bottom: 0;
  letter-spacing: .04em;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255, 248, 232, .8), rgba(253, 243, 237, .8));
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.voice__body em {
  font-style: normal;
  color: var(--terra);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 65%, rgba(212, 169, 74, .35) 65%);
  padding: 0 4px;
}
.voice__sub br { display: inline; }

/* trust-item 4カラム対応 */
.voice__trust {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  max-width: 640px !important;
}
@media (min-width: 720px) {
  .voice__trust {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ═══════════════ お客様の声（TESTIMONIAL） ═══════════════ */

.testimonial {
  padding: 100px 24px 120px;
  background:
    radial-gradient(ellipse at center, rgba(236, 72, 153, .06), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial__inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.testimonial__quote {
  margin: 32px auto 24px;
  padding: 40px 24px 32px;
  background: linear-gradient(135deg, #fff, #FFFAEE);
  border-radius: 20px;
  box-shadow: 0 20px 50px -20px rgba(184, 90, 110, .3);
  border: 1px solid rgba(232, 184, 192, .3);
  position: relative;
}
.testimonial__mark {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--rose), var(--rose-soft));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-en);
  font-size: 48px;
  font-weight: 600;
  padding-top: 12px;
  box-shadow: 0 8px 20px -6px rgba(184, 90, 110, .5);
}
.testimonial__text {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: clamp(18px, 3.5vw, 26px);
  color: var(--ink);
  line-height: 1.9;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.testimonial__text em {
  font-style: normal;
  color: var(--rose-deep);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 65%, rgba(232, 184, 192, .5) 65%);
  padding: 0 6px;
}
.testimonial__attr {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .2em;
}
.testimonial__note {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.1;
  padding: 0 20px;
}
.testimonial__note b {
  color: var(--rose);
  font-weight: 600;
}

/* ═══════════════ FOOTER 拡張 — 4カラムグリッド ═══════════════ */

.footer__brand {
  text-align: center;
  margin-bottom: 40px;
}
.footer__concept {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 15px;
  color: var(--gold-light);
  letter-spacing: .22em;
  margin-top: 12px;
  margin-bottom: 6px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: left;
  padding: 32px 0 0;
  border-top: 1px solid rgba(235, 208, 138, .2);
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 920px) {
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
}
.footer__col-title {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold-light);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(235, 208, 138, .3);
}
.footer__col-body {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 12.5px;
  line-height: 2;
  color: rgba(255, 255, 255, .85);
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}
.footer__col-body .nowrap {
  white-space: nowrap;
  display: inline-block;
}
.footer__form-link {
  display: inline-block;
  margin-top: 4px;
  padding: 6px 14px;
  background: rgba(235, 208, 138, .15);
  border: 1px solid rgba(235, 208, 138, .35);
  border-radius: 20px;
  font-size: 11.5px;
  transition: all .3s;
}
.footer__form-link:hover {
  background: rgba(235, 208, 138, .3);
  border-color: var(--gold-light);
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: .08em;
}
.footer__legal a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 8px;
  border-radius: 4px;
}
.footer__legal a:hover {
  color: var(--gold-light);
  background: rgba(235, 208, 138, .1);
}
.footer__legal-sep {
  color: rgba(255, 255, 255, .3);
  font-size: 14px;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}
@media (min-width: 620px) {
  .footer__meta {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.footer__credit {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .5);
}
.footer__credit a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
}
.footer__credit a:hover {
  color: #fff;
  border-bottom-color: var(--gold-light);
}
.footer__col-body b {
  color: var(--gold-light);
  font-weight: 500;
  min-width: 3em;
  display: inline-block;
}
.footer__col-body a {
  color: rgba(255, 255, 255, .95);
  text-decoration: none;
  transition: color .2s;
}
.footer__col-body a:hover { color: var(--gold-light); }
.footer__col-body small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  margin-top: 6px;
  font-family: var(--serif-jp);
}
.footer__tel-note {
  color: var(--gold-light);
  font-size: 12px;
  font-family: var(--serif-jp);
}

.footer__social {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  transition: background .3s, transform .3s;
  font-size: 12px;
  line-height: 1.5;
}
.footer__social:hover {
  background: rgba(235, 208, 138, .15);
  transform: translateY(-2px);
}
.footer__social-icon { font-size: 20px; }

/* ═══════════════ セクション接続 — 継ぎ目を消す ═══════════════ */

/* Cinema終端の追加保険（Scene 4::afterと二重で確実に白へ融合） */
.cinema::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--white));
  z-index: 15;
  pointer-events: none;
}

/* Concept 純白＋アクアの微アクセント */
.concept {
  background:
    radial-gradient(ellipse at top left, rgba(6, 182, 212, .04), transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--white) 60%, var(--cream) 100%);
  padding-top: 120px !important;
  padding-bottom: 140px !important;
}

/* Women's Touch — ローズの淡いアクセント */
.womens-touch {
  background:
    radial-gradient(ellipse at top right, rgba(236, 72, 153, .05), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(6, 182, 212, .04), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%) !important;
  padding-top: 120px !important;
  padding-bottom: 140px !important;
}

/* Services — コーラルの淡いアクセント */
.services {
  background:
    radial-gradient(ellipse at bottom right, rgba(255, 90, 95, .04), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%) !important;
  padding-top: 120px !important;
  padding-bottom: 140px !important;
}

/* Voice 上をservicesに合わせる */
.voice {
  padding-top: 140px !important;
  padding-bottom: 140px !important;
}

/* Form 上をvoiceに合わせる */
.form-section {
  padding-top: 120px !important;
}

/* Footer 上をformに合わせる */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent, #3A2820);
  pointer-events: none;
}

/* 装飾セパレータ — セクション間に散る花のイラスト */
.seam-flower {
  position: relative;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 3;
}
.seam-flower::before {
  content: '❦';
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  font-size: 24px;
  color: var(--gold);
  background: linear-gradient(135deg, #FFF8E8, #FDF3ED);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 16px -6px rgba(212, 169, 74, .35), inset 0 0 0 1px rgba(212, 169, 74, .4);
}

/* 既存のdeco-band 継ぎ目消し用に強化 */
.deco-band {
  opacity: .5;
  z-index: 4;
}

/* ═══════════════ テキスト視認性の全体向上 ═══════════════ */

/* body系テキストのウェイト＆コントラストUP */
.concept__body,
.services__lead,
.womens-touch__lead,
.voice__body {
  font-weight: 400 !important;
  color: var(--ink) !important;
  line-height: 2.1 !important;
}

.pillar__desc,
.w-card__text,
.s-card__text,
.trust-item__label,
.footer__info {
  font-weight: 400 !important;
  color: var(--ink-soft) !important;
}

/* セクション見出しの視認性 */
.section-title,
.concept__title,
.form-header__title,
.cinema__scene-title,
.cinema__title-jp {
  text-shadow: 0 1px 2px rgba(46, 31, 22, .04);
}

/* エディトリアルラベルを見やすく */
.editorial-label {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .32em !important;
}
.editorial-label__num {
  font-size: 14px !important;
}
.editorial-label__name {
  font-weight: 600 !important;
  color: inherit;
}

/* パンくずやサブテキストの視認性 */
.form-header__note,
.hint,
.hint--gold,
.privacy-modal__lead,
.privacy-modal__body p {
  font-weight: 400 !important;
}

/* カード内文字も太く */
.w-card__title,
.s-card__title {
  font-weight: 600 !important;
}

/* シネマ内テキストシャドウを強化 */
.cinema__title-jp,
.cinema__title-en,
.cinema__tagline,
.cinema__scene-title,
.cinema__scene-body {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, .6),
    0 1px 3px rgba(0, 0, 0, .8);
}

.cinema__tagline {
  font-weight: 400 !important;
}

.cinema__scene-body {
  font-weight: 400 !important;
  color: rgba(255, 255, 255, .95) !important;
}

/* ═══════════════ スクロール連動 — パララックス強化 ═══════════════ */

/* scroll-driven parallax for section backgrounds */
@supports (animation-timeline: view()) {
  .concept, .womens-touch, .services, .voice, .form-section {
    animation: bg-shift-flow linear;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes bg-shift-flow {
    from { background-position: 50% 0%; }
    to   { background-position: 50% 100%; }
  }
}

/* IntersectionObserverトリガーで各カードが順にリベール（JSで .is-in-view 付与） */
.s-card, .w-card, .pillar {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.s-card.is-in-view, .w-card.is-in-view, .pillar.is-in-view {
  opacity: 1;
  transform: translateY(0);
}
/* デフォルトのreveal-upより上書きしないよう */
.reveal-up.is-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 各カードにスタガー遅延（JSで--sを付与） */
.s-card { transition-delay: calc(var(--s, 0) * 100ms); }
.w-card { transition-delay: calc(var(--s, 0) * 80ms); }
.pillar { transition-delay: calc(var(--s, 0) * 80ms); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .petal, .done__petals span { display: none; }
}
