@charset "UTF-8";
/* =========================================================
   DOG LUCK — Front Page (storytelling LP)
   ========================================================= */

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--washi);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 9s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(26,24,22,.55) 0%, rgba(26,24,22,.15) 38%, rgba(26,24,22,.85) 100%);
}
.hero__inner {
  width: min(100% - 2.6rem, var(--maxw-wide));
  margin-inline: auto;
  padding-bottom: clamp(3.5rem, 8vh, 8rem);
  padding-top: 8rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}
.hero__seal {
  position: absolute;
  top: clamp(7rem, 18vh, 12rem);
  right: clamp(1.5rem, 4vw, 4rem);
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.5em;
  color: rgba(245,240,232,.7);
  padding: 1.1em 0.5em;
  border: 1px solid rgba(245,240,232,.3);
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-display);
  line-height: 1.22;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero__title span { display: block; }
.hero__title .accent { color: #f0c9a0; }
.hero__lead {
  margin-top: 1.8rem;
  max-width: 34ch;
  font-size: var(--fs-lead);
  line-height: 2;
  color: rgba(245,240,232,.92);
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__scroll {
  writing-mode: vertical-rl;
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245,240,232,.8);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 64px;
  background: linear-gradient(rgba(245,240,232,.7), transparent);
  animation: scrollPulse 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3; transform:scaleY(.6);} 50%{opacity:1; transform:scaleY(1);} }
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}

/* ---------------- STATEMENT ---------------- */
.statement {
  background: var(--washi);
  padding: var(--section-pad) 0;
  text-align: center;
}
.statement__lead {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-h1);
  line-height: 1.9;
  letter-spacing: 0.06em;
}
.statement__lead .em { color: var(--shika); }
.statement__body {
  margin-top: 2.2rem;
  color: var(--ink-70);
  font-size: var(--fs-lead);
  line-height: 2.1;
}

/* ---------------- Generic editorial split ---------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__num {
  position: absolute;
  bottom: 1rem; right: 1.1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: var(--washi-warm);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
  opacity: .95;
  line-height: 1;
  pointer-events: none;
}
.split__body .section-title { margin-top: 1.4rem; }
.split__body p { margin-top: 1.8rem; color: var(--ink-70); line-height: 2.05; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2.4rem; }
  .split--reverse .split__media { order: 0; }
}

/* ---------------- STORY (dark) ---------------- */
.story {
  background: var(--ink);
  color: var(--washi);
  padding: var(--section-pad) 0;
}
.story .section-title { color: var(--washi); }
.story .split__body p { color: rgba(245,240,232,.78); }
.story .kicker { color: #d99a7a; }

/* ---------------- WHY VENISON (values) ---------------- */
.why { padding: var(--section-pad) 0; background: var(--washi-warm); }
.why__head { text-align: center; max-width: 56ch; margin: 0 auto clamp(3rem,5vw,4.5rem); }
.why__head p { margin-top: 1.6rem; color: var(--ink-70); line-height: 2.05; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); }
.value {
  background: var(--washi);
  border: 1px solid var(--line-soft);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  position: relative;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.value__no {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--shika);
}
.value__title { font-family: var(--font-serif); font-weight: 600; font-size: var(--fs-h3); margin-top: 1rem; line-height: 1.5; }
.value__desc { margin-top: 1rem; color: var(--ink-70); font-size: 0.92rem; line-height: 1.95; }
.value__rule { width: 2.4rem; height: 2px; background: var(--shu); margin-top: 1.5rem; }
@media (max-width: 820px) { .values { grid-template-columns: 1fr; } }

/* ---------------- PROCESS ---------------- */
.process { padding: var(--section-pad) 0; }

/* ---------------- PRODUCTS ---------------- */
/* 既定背景：単調なベタ塗りをやめ、上品な縦グラデ＋上辺に金のヘアライン */
.products {
  padding: var(--section-pad) 0;
  position: relative;
  background: linear-gradient(180deg, var(--washi-warm) 0%, var(--washi-deep) 100%);
}
.products::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}
/* 背景写真レイヤー（動きは products--bg-* で切替） */
.products--has-bg { background: var(--ink); }
.products__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-attachment: scroll; /* 既定（none）。固定/パララックスは下で上書き */
}
.products__bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(26, 24, 22, var(--products-dark, .55));
}
.products--has-bg > .wrap { position: relative; z-index: 1; }

/* ① 背景固定：画像はビューポートに固定、前面がスクロール */
.products--bg-fixed .products__bg { background-attachment: fixed; }
@media (max-width: 768px) { .products--bg-fixed .products__bg { background-attachment: scroll; } } /* スマホはジャンク防止 */

/* ② パララックス：JS(data-parallax)でtransform移動。はみ出さないよう上下に余白＋拡大 */
.products--bg-parallax .products__bg {
  background-attachment: scroll;
  top: -16%; bottom: -16%; height: auto; will-change: transform;
}

/* ③ エフェクト無し：そのまま一緒にスクロール（既定の scroll のまま） */
.products__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: clamp(2.5rem,4vw,3.5rem); flex-wrap: wrap; }
/* 「すべて見る」ボタン廃止に伴い見出しを中央寄せ（左右均等） */
.products__head--center { flex-direction: column; align-items: center; text-align: center; gap: .4rem; }
.products__head--center .section-title { text-align: center; }
.products__head--center .section-title::after { margin-left: auto; margin-right: auto; }
/* 全商品を均等配置：最終行も中央寄せで左右バランスを保つ */
.pgrid {
  --pgap: clamp(1.4rem, 2.2vw, 2.4rem);
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--pgap);
}
.pgrid .pcard {
  flex: 0 1 calc((100% - (var(--cols) - 1) * var(--pgap)) / var(--cols));
  max-width: calc((100% - (var(--cols) - 1) * var(--pgap)) / var(--cols));
}
.pcard {
  background: var(--washi-warm);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.pcard__media { overflow: hidden; aspect-ratio: 1 / 1; background: var(--washi); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__body { padding: 1.4rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.pcard__title { font-family: var(--font-serif); font-weight: 500; font-size: 1.02rem; line-height: 1.6; min-height: 3.2em; }
.pcard__price { margin-top: 0.8rem; color: var(--shika); font-weight: 600; font-size: 1.05rem; }
.pcard__price .woocommerce-Price-amount { font-size: 1.05rem; }
.pcard__cta {
  margin-top: 1.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--ink);
}
.pcard:hover .pcard__cta { color: var(--shu); }
.pcard__cta .arrow { transition: transform var(--dur) var(--ease-out); }
.pcard:hover .pcard__cta .arrow { transform: translateX(4px); }
@media (max-width: 900px) { .pgrid { --cols: 2; } }
@media (max-width: 560px) { .pgrid { --cols: 1; } }

/* ---------------- ASSURANCE ---------------- */
.assurance { padding: var(--section-pad) 0; }
.assure-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem,2.5vw,2rem); margin-top: 3rem; }
.assure {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 2px solid var(--shika);
  background: var(--washi-warm);
}
.assure__icon { font-family: var(--font-serif); font-size: 2rem; color: var(--shika); }
.assure__title { font-family: var(--font-serif); font-weight: 600; margin-top: 0.8rem; font-size: 1.05rem; }
.assure__desc { margin-top: 0.6rem; font-size: 0.82rem; color: var(--ink-70); line-height: 1.85; }
@media (max-width: 820px) { .assure-grid { grid-template-columns: 1fr 1fr; } }

/* ---------------- CTA ---------------- */
.cta {
  position: relative;
  color: var(--washi);
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) 0;
  overflow: hidden;
}
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(26,24,22,.74); }
.cta__title { font-family: var(--font-serif); font-weight: 600; font-size: var(--fs-h1); line-height: 1.6; letter-spacing: 0.05em; }
/* .bespoke p{margin:0} に勝たせるため .bespoke を付けて特異度を上げる（中央寄せauto復活） */
.bespoke .cta__lead { margin: 1.6rem auto 2.6rem; max-width: 44ch; color: rgba(245,240,232,.85); line-height: 2; }

/* =========================================================
   Story-driven sections (差別化ストーリー)
   ========================================================= */

/* ---- HOOK（掴み） ---- */
.hook { padding: var(--section-pad) 0; text-align: center; background: var(--washi); }
.hook__q {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--fs-h1);
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.hook__q .mark { color: var(--shu); }
.hook__sub { margin-top: 1.8rem; color: var(--ink-70); font-size: var(--fs-lead); line-height: 2.1; }

/* ---- COVER（全面背景の物語: 社長の狩猟） ---- */
.cover { position: relative; color: var(--washi); padding: clamp(6rem, 16vw, 11rem) 0; overflow: hidden; }
.cover__media { position: absolute; inset: 0; z-index: -2; }
.cover__media img { width: 100%; height: 100%; object-fit: cover; }
.cover::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(26,24,22,.92) 0%, rgba(26,24,22,.62) 52%, rgba(26,24,22,.28) 100%);
}
.cover .section-title { color: var(--washi); }
.cover .kicker { color: #d99a7a; }
.cover__body { max-width: 48ch; }
.cover__body p { color: rgba(245,240,232,.86); margin-top: 1.7rem; line-height: 2.1; }

/* ---- VOICE（お客様の声） ---- */
.voice { background: var(--washi-deep); padding: var(--section-pad) 0; }
.voice__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.voice__media { position: relative; }
.voice__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.voice__q { font-family: var(--font-serif); font-weight: 500; font-size: var(--fs-h2); line-height: 1.7; letter-spacing: 0.03em; }
.voice__q .mark { color: var(--shika); font-size: 1.5em; line-height: 0; vertical-align: -0.3em; margin-right: 0.1em; }
.voice__name { margin-top: 1.8rem; color: var(--ink-70); font-size: 0.9rem; letter-spacing: 0.04em; }
.voice__name::before { content: "— "; color: var(--shika); }
@media (max-width: 820px) { .voice__inner { grid-template-columns: 1fr; } }

/* ---- BRAND BANNER（プレミアムパッケージ） ---- */
.brandbar { background: var(--ink); color: var(--washi); padding: clamp(3.5rem,6vw,5.5rem) 0; }
.brandbar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.brandbar__media img { width: 100%; max-width: 460px; margin-inline: auto; }
.brandbar .section-title { color: var(--washi); }
.brandbar p { color: rgba(245,240,232,.8); margin-top: 1.6rem; line-height: 2.05; }
@media (max-width: 820px) { .brandbar__inner { grid-template-columns: 1fr; text-align: center; } }

/* =========================================================
   TOKI-inspired sections（詩的コンセプト / ギャラリー / ムービー）
   ========================================================= */

/* ---- CONCEPT（詩・縦書き） ---- */
.concept { padding: clamp(7rem, 14vw, 12rem) 0; background: var(--washi); }
.concept__inner { display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 3rem; }
.concept__mark { font-size: 0.7rem; letter-spacing: 0.4em; color: var(--gold, #b08d57); text-transform: uppercase; }
.concept__poem {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.9;
  letter-spacing: 0.12em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.4em;
}
.concept__poem p { white-space: nowrap; word-break: normal; margin: 0; }
.concept__poem .em { color: var(--shika); }
@media (max-width: 768px) {
  .concept__poem {
    writing-mode: horizontal-tb;
    height: auto;
    flex-direction: column;
    gap: 1.4em;
    text-align: center;
    line-height: 2.2;
    letter-spacing: 0.12em;
  }
}

/* ---- GALLERY（写真グリッド） ---- */
.gallery { padding: var(--section-pad) 0; background: var(--washi-warm); }
.gallery__head { text-align: center; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1vw, 0.9rem);
}
.gallery__item { overflow: hidden; position: relative; background: var(--ink); }
.gallery__item img {
  width: 100%; height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 1.4s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); filter: brightness(1.05); }
@media (max-width: 768px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- MOVIE（ブランド映像） ---- */
.movie {
  position: relative;
  min-height: clamp(56vh, 70vh, 80vh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--washi);
  overflow: hidden;
}
.movie__media { position: absolute; inset: 0; z-index: -2; }
.movie__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6) saturate(.85); }
.movie::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(26,24,22,.45); }
.movie__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1.6rem; padding: 2rem; }
.movie__play {
  width: clamp(78px, 9vw, 104px);
  height: clamp(78px, 9vw, 104px);
  border: 1px solid rgba(245,240,232,.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .6s var(--ease-out), background .6s var(--ease-out), border-color .6s;
  cursor: pointer;
  background: rgba(245,240,232,.04);
}
.movie__play::after {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--washi);
  margin-left: 4px;
  transition: border-color .6s var(--ease-out);
}
.movie__play:hover { transform: scale(1.06); background: var(--washi); border-color: var(--washi); }
.movie__play:hover::after { border-left-color: var(--ink); }
.movie__title { font-family: var(--font-serif); font-weight: 600; font-size: var(--fs-h2); letter-spacing: 0.08em; }
.movie__meta { font-size: 0.66rem; letter-spacing: 0.36em; color: var(--gold-soft, #c8a877); text-transform: uppercase; }

/* ---- パララックス（compositor-only） ---- */
.parallax { will-change: transform; }
@media (prefers-reduced-motion: reduce) { .parallax { transform: none !important; } }

/* =========================================================
   STAGE — ピン留め背景クロスフェード（TOKI式スクロール演出）
   ========================================================= */
.stage { position: relative; background: var(--ink); }
.stage__visual {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  z-index: 1;
}
.stage__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
  will-change: opacity;
}
.stage__layer.is-active { opacity: 1; }
.stage__layer img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  /* カスタマイザーで背景写真の明るさを調整（1=元の明るさ、小さいほど暗い） */
  filter: brightness(var(--stage-bright, 1));
}
.stage__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,24,22,.88) 0%, rgba(26,24,22,.55) 45%, rgba(26,24,22,.2) 100%),
              linear-gradient(0deg, rgba(26,24,22,.6), transparent 40%);
}
.stage__steps { position: relative; z-index: 2; margin-top: -100svh; }
.stage__step { min-height: 100svh; display: flex; align-items: center; }
.stage__panel { color: var(--washi); max-width: 44ch; }
.stage__num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--gold-soft, #c8a877);
  line-height: 1;
  display: block;
  margin-bottom: 1.4rem;
}
.stage__panel .kicker { color: var(--gold-soft, #c8a877); }
.stage__panel .section-title { color: var(--washi); }
.stage__panel .section-title .en { color: var(--gold-soft, #c8a877); }
.stage__panel p { margin-top: 1.8rem; color: rgba(245,240,232,.84); line-height: 2.1; }
.stage__panel em { color: var(--gold-soft, #c8a877); font-style: normal; }

/* スクロール進捗インジケータ（縦・固定） */
.stage__progress {
  position: absolute;
  top: 50%; right: clamp(1.2rem, 3vw, 2.6rem);
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.stage__dot { width: 1px; height: 28px; background: rgba(245,240,232,.3); transition: background .5s, height .5s; }
.stage__dot.is-active { background: var(--gold-soft, #c8a877); height: 44px; }

@media (max-width: 768px) {
  .stage__visual::after { background: linear-gradient(0deg, rgba(26,24,22,.82) 0%, rgba(26,24,22,.45) 60%, rgba(26,24,22,.55) 100%); }
  .stage__progress { display: none; }
}

/* =========================================================
   MOTION — リッチ・スクロールアニメーション（高級・流麗）
   ========================================================= */

/* リビール各種（.is-visible はJSのIntersectionObserverが付与） */
[data-reveal="zoom"] { opacity: 0; transform: scale(1.05); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
[data-reveal="zoom"].is-visible { opacity: 1; transform: none; }
[data-reveal="left"] { opacity: 0; transform: translate3d(-44px,0,0); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
[data-reveal="left"].is-visible { opacity: 1; transform: none; }
[data-reveal="right"] { opacity: 0; transform: translate3d(44px,0,0); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
[data-reveal="right"].is-visible { opacity: 1; transform: none; }

/* 画像リビール（不透明度＋ズーム・確実に表示される方式） */
[data-reveal="img"] {
  opacity: 0;
  transform: none;
  overflow: hidden;
  transition: opacity 1.1s var(--ease-out);
}
[data-reveal="img"].is-visible { opacity: 1; }
[data-reveal="img"] img { transform: scale(1.12); transition: transform 1.8s var(--ease-out); }
[data-reveal="img"].is-visible img { transform: scale(1); }

/* スクロール進捗バー（上部・金） */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--shika), var(--gold, #b08d57) 60%, var(--gold-soft, #c8a877));
  z-index: 200;
  pointer-events: none;
  transition: width .1s linear;
}

/* ヒーロー：下スクロールで静かにフェード上昇（JSが --hp を更新） */
.hero--lux .hero__center { will-change: transform, opacity; }

/* セクション見出しの行リビール（マスクから立ち上がる） */
.line-rise { display: inline-block; overflow: hidden; vertical-align: top; }
.line-rise > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease-out); }
.is-visible .line-rise > span, .line-rise.is-visible > span { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal="img"] { opacity: 1; }
  [data-reveal="img"] img { transform: none; }
  .line-rise > span { transform: none; }
  .scroll-progress { display: none; }
}

/* =========================================================
   FEATURE — お試しパック先出し（ヒーロー直後の購入入口）
   ========================================================= */
.feature { padding: clamp(4.5rem, 8vw, 7.5rem) 0; background: var(--washi); }
.feature__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}
.feature__media { position: relative; }
.feature__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature__media::after {
  content: "";
  position: absolute; inset: 0;
  outline: 1px solid var(--gold-line, rgba(176,141,87,.55));
  outline-offset: -14px;
  pointer-events: none;
}
.feature__badge {
  position: absolute;
  top: -1rem; left: -1rem;
  background: var(--shu);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  padding: 0.7em 1.2em;
  z-index: 1;
}
.feature__body .section-title { margin-top: 1.2rem; }
.feature__lead { margin-top: 1.6rem; color: var(--ink-70); line-height: 2.05; }
/* スマホ：バッジが画面端からはみ出さないよう画像内の左上に収める */
@media (max-width: 768px) {
  .feature__badge { top: .8rem; left: .8rem; font-size: .76rem; padding: .6em 1em; }
}
.feature__price {
  margin-top: 1.8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--shika);
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}
.feature__price .tax { font-size: 0.8rem; color: var(--ink-50); font-weight: 500; }
.feature__actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
@media (max-width: 820px) {
  .feature__inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* =========================================================
   追従ご購入ボタン（常設の購入導線）
   ========================================================= */
.floating-cta {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: var(--shu);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  padding: 1em 1.8em;
  border-radius: 999px;
  box-shadow: 0 18px 40px -18px rgba(26,24,22,.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), background .4s, visibility .5s;
}
.floating-cta.is-visible { opacity: 1; visibility: visible; transform: none; }
.floating-cta:hover { background: var(--ink); color: #fff; }
.floating-cta .cart-ico { display: inline-flex; }
.floating-cta .cart-ico svg { width: 1.15em; height: 1.15em; display: block; }
/* スマホは下部固定バーに役割を譲るため非表示 */
@media (max-width: 768px) { .floating-cta { display: none !important; } }

/* =========================================================
   下層ページ用コンポーネント（工程ステップ / FAQ / シーン）
   ========================================================= */

/* ---- 製造工程ステップ（タイムライン） ---- */
.steps { max-width: var(--maxw-narrow); margin-inline: auto; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 2rem;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line-soft);
}
.step:first-child { border-top: 1px solid var(--line-soft); }
.step__no {
  grid-row: 1 / span 2;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold-soft, #c8a877);
  line-height: 1;
  letter-spacing: 0.05em;
}
.step__title { font-family: var(--font-serif); font-weight: 600; font-size: var(--fs-h3); letter-spacing: 0.03em; }
.step__desc { margin-top: 0.8rem; line-height: 2.05; color: rgba(245,240,232,.78); }
.section--light .step__desc { color: var(--ink-70); }

/* ---- FAQ（アコーディオン） ---- */
.faq { max-width: var(--maxw-narrow); margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; color: var(--gold-soft, #c8a877); font-size: 1.1rem; transition: transform .3s var(--ease-out); }
.faq details[open] summary::after { content: "−"; }
.faq__a { padding: 0 0 1.6rem; line-height: 2.05; color: rgba(245,240,232,.76); }
.section--light .faq__a { color: var(--ink-70); }
.faq__q-mark { color: var(--gold-soft, #c8a877); font-family: var(--font-serif); margin-right: 0.6em; }

/* ---- シーン/想い 帯 ---- */
.statement-band { text-align: center; padding: var(--section-pad) 0; }
.statement-band__text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.9;
  letter-spacing: 0.06em;
}
.statement-band__sub { margin-top: 2rem; color: rgba(245,240,232,.78); line-height: 2.1; }
.section--light .statement-band__sub { color: var(--ink-70); }

/* 作り手の想い（引用調） */
.maker { max-width: var(--maxw-narrow); margin-inline: auto; text-align: center; }
.maker__quote { font-family: var(--font-serif); font-weight: 500; font-size: var(--fs-h3); line-height: 1.9; letter-spacing: 0.04em; }
.maker__quote::before { content: "“"; color: var(--gold-soft, #c8a877); font-size: 1.6em; line-height: 0; vertical-align: -.35em; margin-right: .1em; }
.maker__name { margin-top: 2rem; font-size: .9rem; letter-spacing: .08em; color: rgba(245,240,232,.7); }
.maker__name::before { content: "— "; color: var(--gold-soft, #c8a877); }
