/* =========================================================
   つむぎ仕出し LP  style.css
   ========================================================= */

:root {
  --enji: #8a2b33;          /* メインカラー：えんじ */
  --enji-dark: #6e2129;     /* 深い赤茶 */
  --kincha: #a87b3d;        /* 金茶 */
  --kincha-light: #c2a063;
  --line-green: #06c755;    /* LINE緑 */
  --line-green-dark: #05a648;
  --fukamidori: #335c4a;    /* 深緑 */

  --bg-white: #ffffff;
  --bg-nari: #f7f1e3;       /* 生成り */
  --bg-washi: #faf6ec;      /* 淡い和紙色 */
  --bg-pink: #f8e9e8;       /* 薄ピンク */

  --text: #332b27;          /* 墨色 */
  --text-soft: #5c4f47;     /* 濃い茶 */
  --text-muted: #8a7d72;

  --border: #e3dac8;
  --shadow: 0 6px 22px rgba(70, 50, 30, 0.08);
  --shadow-sm: 0 3px 12px rgba(70, 50, 30, 0.07);

  --maxw: 1200px;
  --radius: 12px;

  --serif: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background-color: var(--bg-washi);
  background-image: url("../public/images/washi-bg.jpg");
  background-repeat: repeat;
  background-size: 420px;
  line-height: 1.95;
  font-size: 16px;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  /* かな・約物を自然に詰めて、ひらがな/漢字の字間ムラを抑える */
  font-feature-settings: "palt" 1;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- レイアウト共通 ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 820px; }

.section { padding-block: 88px; position: relative; }
.section--nari { background-color: rgba(247, 241, 227, 0.72); }

/* ご利用シーン：基本は和紙、上右・下左の角（花のあたり）だけうっすらピンク */
.scene {
  background:
    radial-gradient(ellipse 78% 58% at 100% 0%, rgba(248, 233, 232, 0.85), rgba(248, 233, 232, 0) 70%),
    radial-gradient(ellipse 78% 58% at 0% 100%, rgba(248, 233, 232, 0.85), rgba(248, 233, 232, 0) 70%),
    var(--bg-washi);
}

.section__head { text-align: center; margin-bottom: 52px; }
.section__sub-en {
  font-family: var(--serif);
  color: var(--kincha);
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 1.55;
  letter-spacing: 0.08em;
  color: var(--text);
}
.section__head .section__title { position: relative; padding-bottom: 30px; }
.section__head .section__title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 210px; height: 22px;
  background: url("../public/images/deco/deco-03.png") center / contain no-repeat;
}
.section__lead {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 2;
}

/* 中央寄せ見出し・説明文の改行を自然に（行の長さを均す／泣き別れを防ぐ） */
.section__title,
.lastcta__title,
.fv__title,
.photoband__lead { text-wrap: balance; }
.section__lead,
.fv__sub,
.urgent__body,
.lastcta__body,
.photoband__sub { text-wrap: pretty; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn .ico { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18); }

.btn--tel { background-color: var(--enji); color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18); }
.btn--tel:hover { background-color: var(--enji-dark); }

.btn--line { background-color: var(--line-green); color: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18); }
.btn--line:hover { background-color: var(--line-green-dark); }

.btn--sm { padding: 10px 18px; font-size: 0.86rem; }
.btn--lg { padding: 18px 40px; font-size: 1.08rem; }

/* ---------- お知らせバー ---------- */
.noticebar {
  background-color: var(--enji);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 7px 16px;
}

/* ---------- ヘッダー ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 246, 236, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__logo img { height: 38px; width: auto; }

.gnav { margin-left: auto; }
.gnav__list { display: flex; gap: 16px; }
.gnav__list a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--text-soft);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.18s ease;
}
.gnav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background-color: var(--kincha);
  transition: width 0.22s ease;
}
.gnav__list a:hover { color: var(--enji); }
.gnav__list a:hover::after { width: 100%; }

.header__cta { display: flex; gap: 8px; flex-shrink: 0; }
.header__cta .btn--sm { padding: 9px 14px; font-size: 0.78rem; white-space: nowrap; }

/* ハンバーガー */
.hamburger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  background: none; border: none;
  position: relative;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 9px; right: 9px;
  height: 2px;
  background-color: var(--enji);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ドロワー（クリップ枠で画面外のはみ出しを抑える） */
.drawer-clip {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 120;
}
.drawer {
  position: absolute;
  top: 0; right: 0;
  width: 78%; max-width: 320px;
  height: 100%;
  background-color: var(--bg-washi);
  background-image: url("../public/images/washi-bg.jpg");
  background-size: 420px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 88px 28px 32px;
  overflow-y: auto;
  pointer-events: auto;
  box-shadow: -10px 0 30px rgba(0,0,0,0.12);
}
.drawer.is-open { transform: translateX(0); }
.drawer__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}
.drawer__close svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.drawer__nav ul { display: flex; flex-direction: column; }
.drawer__nav li { border-bottom: 1px solid var(--border); }
.drawer__nav ul a {
  display: block;
  padding: 16px 6px;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
}
.drawer__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.drawer__cta .btn { width: 100%; }
.drawer__overlay {
  position: fixed; inset: 0;
  background-color: rgba(40, 30, 20, 0.4);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer__overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- 1. ファーストビュー ---------- */
.fv {
  position: relative;
  background-color: var(--bg-washi);
  background-image: url("../public/images/washi-bg.jpg");
  background-size: 420px;
  overflow: hidden;
  min-height: 540px;
}
/* 右側の全面写真 */
.fv__media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  z-index: 1;
}
.fv__media::before {
  /* 写真左端を和紙色へ自然になじませる */
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 120px;
  z-index: 2;
  background: linear-gradient(90deg, var(--bg-washi), rgba(250, 246, 236, 0));
  pointer-events: none;
}
.fv__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }

/* 金の桜枝のあしらい（テキストと写真の境目）＝薄く・写真寄りに */
.fv__decor {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-22%);
  width: 300px;
  height: 256px;
  z-index: 2;
  pointer-events: none;
  background-image: url("../public/images/deco/deco-12.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  opacity: 0.45;
}
/* トップの薄いあしらい（2か所） */
.fv__accent {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
/* ① 文字の左上：金の飛び散り（小さめ・文字の近く） */
.fv__accent--tl {
  top: 10px;
  left: 5%;
  width: 140px;
  height: 95px;
  background-image: url("../public/images/deco/deco-09.png");
  background-position: left top;
  opacity: 0.45;
  z-index: 0;
}
/* ② 境目の washi 側：金の桜（大胆に大きく） */
.fv__accent--bl {
  left: 35%;
  bottom: 0;
  width: 400px;
  height: 290px;
  background-image: url("../public/images/deco/deco-13.png");
  background-position: left bottom;
  opacity: 0.4;
  z-index: 2;
}

.fv__inner {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 70px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.fv__text { grid-column: 1; max-width: 540px; }

.fv__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.95rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 22px;
}
.fv__sub { font-size: 1.1rem; color: var(--text-soft); margin-bottom: 4px; line-height: 2; letter-spacing: 0.1em; }
.fv__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 30px;
  max-width: 408px;
}
.fv__points li {
  position: relative;
  aspect-ratio: 1 / 1;
  /* 少しアイボリー寄りの円＋細い金の縁。和波は右下に小さく薄く */
  background: rgba(250, 246, 237, 0.9);
  border: 1.5px solid var(--kincha-light);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(70, 50, 30, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.fv__points li:hover { transform: translateY(-3px); box-shadow: 0 7px 18px rgba(70, 50, 30, 0.18); }
/* 和波（青海波）を右下に小さく・薄く（全体が見える形で） */
.fv__points li::after {
  content: "";
  position: absolute;
  right: -4%;
  bottom: -3%;
  width: 96%;
  height: 60%;
  /* 和波を赤み（えんじ寄り）の暖かいローズで大きめに、右下を埋めるように（ごく薄く） */
  background-color: #e0a3a3;
  -webkit-mask: url("../public/images/deco/deco-01.png") right bottom / contain no-repeat;
  mask: url("../public/images/deco/deco-01.png") right bottom / contain no-repeat;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.fv__points li span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--enji);
}
.fv__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.fv__menu-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--kincha);
  border-bottom: 1px solid var(--kincha-light);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.fv__menu-link span { transition: transform 0.2s ease; display: inline-block; }
.fv__menu-link:hover { color: var(--enji); border-color: var(--enji); }
.fv__menu-link:hover span { transform: translateX(4px); }

/* ---------- 2. 悩み共感 ---------- */
.empathy { padding-block: 80px; }
.empathy__head { text-align: center; margin-bottom: 40px; }
/* 明朝のリード文＋左右の細線（見出しの上に置く小見出し）。共通スタイル */
.empathy__lead,
.urgent__lead,
.lastcta__lead {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--kincha);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-wrap: balance;
}
.empathy__lead::before, .empathy__lead::after,
.urgent__lead::before, .urgent__lead::after,
.lastcta__lead::before, .lastcta__lead::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.55;
}
/* 弔事セクションは緑系の色で */
.urgent__lead { color: var(--fukamidori); }
.empathy__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 26px;
  max-width: 800px;
  margin-inline: auto;
}
.empathy__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  position: relative;
  font-size: 0.96rem;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.empathy__list li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
/* 吹き出しのしっぽ */
.empathy__list li::after {
  content: "";
  position: absolute;
  left: 34px; bottom: -7px;
  width: 14px; height: 14px;
  background-color: #fff;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}
.empathy__ico {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: var(--bg-pink);
  color: var(--enji);
}
.empathy__ico svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.empathy__txt { line-height: 1.6; }
/* アイコンの色を3パターンで変化させる */
.empathy__list li:nth-child(3n+2) .empathy__ico { background-color: #e9f1ec; color: var(--fukamidori); }
.empathy__list li:nth-child(3n) .empathy__ico { background-color: var(--bg-washi); color: var(--kincha); }
.empathy__body {
  text-align: center;
  margin-top: 36px;
  color: var(--text-soft);
  font-size: 1rem;
}

/* ---------- 3. ご利用シーン ---------- */
.scene__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.scene-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.scene-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.scene-card__img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.scene-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  color: var(--enji);
  padding: 18px 20px 0;
}
.scene-card__text {
  padding: 10px 20px 22px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.85;
}

/* ---------- 4. メニュー ---------- */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.menu-card__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.menu-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.menu-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.menu-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: 0.06em;
}
.menu-card__price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--enji);
  white-space: nowrap;
}
.menu-card__price span { font-size: 0.74rem; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.menu-card__text { font-size: 0.9rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 14px; }
.menu-card__use {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--kincha);
  background-color: var(--bg-washi);
  border-radius: 6px;
  padding: 9px 12px;
  line-height: 1.7;
}
.menu__foot { text-align: center; margin-top: 44px; color: var(--text-soft); }
.menu__foot p { font-size: 0.95rem; }
.menu__notes { margin-top: 16px; font-size: 0.82rem; color: var(--text-muted); }

/* お品書きカルーセルのスワイプ案内（スマホのみ） */
.menu__swipe { display: none; }
.menu__swipe-ico {
  position: relative;
  width: 26px; height: 14px;
  flex-shrink: 0;
}
.menu__swipe-ico::before,
.menu__swipe-ico::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 9px; height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  animation: swipeHint 1.4s ease-in-out infinite;
}
.menu__swipe-ico::before { left: 4px; }
.menu__swipe-ico::after { left: 12px; animation-delay: 0.18s; }
@keyframes swipeHint {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}

/* ---------- 写真バンド ---------- */
.photoband {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: url("../public/images/scene-prep.jpg");
  background-size: cover;
  background-position: center 45%;
}
.photoband--alt {
  background-image: url("../public/images/area-delivery.jpg");
  background-position: center 40%;
}
.photoband::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 36, 30, 0.55), rgba(74, 43, 33, 0.6));
}
.photoband__inner {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 56px 24px;
  max-width: 760px;
}
.photoband__line {
  display: block;
  width: 54px;
  height: 22px;
  margin: 0 auto;
  background: url("../public/images/deco/mizuhiki-knot.png") center / contain no-repeat;
}
/* 下側の水引は省略（上だけに） */
.photoband__inner .photoband__line:last-child { display: none; }
.photoband__lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 24px 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.photoband__sub {
  font-size: 0.96rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #f3e9df;
  margin-bottom: 24px;
}

/* ---------- 5. 急なご相談 ---------- */
.urgent {
  position: relative;
  overflow: hidden;
  /* 和紙テクスチャを残したまま、弔事らしい淡い緑グレーに着色（乗算ブレンド） */
  background-color: #e9efe4;
  background-image: url("../public/images/washi-bg.jpg");
  background-size: 420px;
  background-repeat: repeat;
  background-blend-mode: multiply;
}
.urgent__box {
  position: relative;
  z-index: 1;
  /* 白菊を白カードの中にうっすら */
  background-color: #fff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.9)),
    url("../public/images/kiku.png");
  background-size: cover;
  background-position: center right;
  border: 1px solid #dde5dd;
  border-radius: 18px;
  padding: 52px 48px;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.urgent__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fukamidori);
  background-color: #e6efe7;
  border-radius: 999px;
  padding: 5px 18px;
  margin-bottom: 18px;
}
.urgent__body { color: var(--text-soft); margin-top: 18px; font-size: 1rem; }
.urgent__quotes {
  margin: 24px auto;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}
.urgent__quotes li {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--text);
  background-color: #fff;
  border: 1px solid #dde5dd;
  border-radius: 8px;
  padding: 10px 22px;
}
.urgent__small { margin-top: 20px; font-size: 0.88rem; color: var(--text-muted); }
.urgent__cta { margin-top: 26px; }

/* ---------- 6. 選ばれる理由 ---------- */
.reason__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reason-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.reason-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.reason-card__ico {
  width: 64px; height: 64px;
  margin: 0 auto 12px;
  color: var(--kincha);
  background-color: var(--bg-washi);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.reason-card__ico svg { width: 36px; height: 36px; }
.reason-card__no {
  font-family: var(--serif);
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  color: var(--kincha);
  margin-bottom: 8px;
}
.reason-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--enji);
  margin-bottom: 12px;
  line-height: 1.6;
}
.reason-card__text { font-size: 0.88rem; color: var(--text-soft); line-height: 1.85; }

/* ---------- 7. ご注文の流れ ---------- */
.flow__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.flow-step {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px; top: 50%;
  width: 18px; height: 18px;
  border-top: 2px solid var(--kincha);
  border-right: 2px solid var(--kincha);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.flow-step__no {
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: var(--kincha);
  border-radius: 999px;
  padding: 4px 16px;
  margin-bottom: 16px;
}
.flow-step__ico {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  color: var(--enji);
  background-color: var(--bg-pink);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.flow-step__ico svg { width: 32px; height: 32px; }
.flow-step__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.6;
}
.flow-step__text { font-size: 0.86rem; color: var(--text-soft); line-height: 1.8; }

/* ---------- 8. 配達エリア ---------- */
.area__table {
  max-width: 760px;
  margin-inline: auto;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.area__row {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.area__row:not(:last-child) { border-bottom: 1px solid var(--border); }
.area__row dt {
  background-color: var(--bg-washi);
  font-family: var(--serif);
  font-weight: 600;
  color: var(--enji);
  padding: 20px 24px;
  font-size: 0.96rem;
  display: flex;
  align-items: center;
}
.area__row dd { padding: 20px 24px; color: var(--text-soft); font-size: 0.96rem; }
.area__note { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- 9. FAQ ---------- */
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 20px 56px 20px 56px;
  position: relative;
  line-height: 1.6;
}
.faq-item__q::before {
  content: "Q";
  position: absolute;
  left: 22px; top: 18px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--enji);
  font-size: 1.1rem;
}
.faq-item__icon {
  position: absolute;
  right: 22px; top: 50%;
  width: 16px; height: 16px;
  transform: translateY(-50%);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background-color: var(--kincha);
  transition: transform 0.25s ease;
}
.faq-item__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-item__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item__a p {
  padding: 0 24px 22px 56px;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.9;
  position: relative;
}
.faq-item__a p::before {
  content: "A";
  position: absolute;
  left: 22px; top: -2px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--kincha);
  font-size: 1.1rem;
}

/* ---------- 10. 最後のCTA ---------- */
.lastcta {
  background: linear-gradient(160deg, var(--bg-nari), var(--bg-pink));
  position: relative;
  overflow: hidden;
}
.lastcta::before,
.lastcta::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  opacity: 0.85;
  pointer-events: none;
}
.lastcta::after {
  bottom: 0; right: 6px;
  width: 260px; height: 185px;
  background-image: url("../public/images/deco/deco-16.png");
  background-size: contain;
  background-position: right bottom;
  transform: scaleX(-1);
}
.lastcta::before {
  top: 0; left: 6px;
  width: 220px; height: 160px;
  background-image: url("../public/images/deco/deco-31.png");
  background-size: contain;
  background-position: left top;
  transform: scaleX(-1);
}
.lastcta__inner { position: relative; z-index: 1; text-align: center; max-width: 800px; margin-inline: auto; }
.lastcta__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.lastcta__body { color: var(--text-soft); font-size: 1rem; margin-bottom: 12px; }
.lastcta__small { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 30px; }
.lastcta__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- 11. フッター ---------- */
.footer {
  background-color: var(--enji-dark);
  color: #f3e9df;
  padding-block: 52px 28px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer__logo {
  height: 44px;
  width: auto;
  background-color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.footer__addr { font-size: 0.9rem; line-height: 1.9; color: #e6d6c9; }
.footer__info { text-align: right; }
.footer__info p { font-size: 0.9rem; line-height: 1.9; color: #e6d6c9; }
.footer__uses { margin-top: 14px; font-size: 0.82rem; color: #cdb6a6; }
.footer__copy { text-align: center; margin-top: 24px; font-size: 0.78rem; color: #cdb6a6; letter-spacing: 0.1em; }

/* ---------- スマホ固定CTA ---------- */
.fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background-color: rgba(250, 246, 236, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  /* 初期は隠し、FVを過ぎてから出す（JSで is-visible 付与） */
  transform: translateY(115%);
  transition: transform 0.32s ease;
}
.fixed-cta.is-visible { transform: translateY(0); }
.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 8px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}
.fixed-cta__btn .ico { width: 1.05em; height: 1.05em; fill: currentColor; }
.fixed-cta__btn--tel { background-color: var(--enji); }
.fixed-cta__btn--line { background-color: var(--line-green); }

/* =========================================================
   和の装飾あしらい（透過素材を要所に配置）
   ========================================================= */
.empathy, .scene, .reason, .flow, .area { overflow: hidden; }
.empathy, .scene, .reason, .flow, .area { position: relative; }

/* FV下部に青海波（淡く） */
.fv::after {
  content: "";
  position: absolute;
  left: -10px; bottom: -8px;
  width: 320px; height: 150px;
  /* 丸の和波と被らないよう、左下は和雲に */
  background: url("../public/images/deco/deco-02.png") left bottom / contain no-repeat;
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

/* 悩み共感：寂しい箇所に桜枝＋金散らし */
.empathy::before {
  content: "";
  position: absolute; top: 24px; right: -8px;
  width: 150px; height: 190px;
  background: url("../public/images/deco/deco-26.png") right top / contain no-repeat;
  opacity: 0.5; pointer-events: none; z-index: 0;
}
.empathy::after {
  content: "";
  position: absolute; bottom: 18px; left: 10px;
  width: 200px; height: 150px;
  background: url("../public/images/deco/deco-09.png") left bottom / contain no-repeat;
  opacity: 0.55; pointer-events: none; z-index: 0;
}

/* ご利用シーン：ピンクの桜あしらい（急ぎセクションから移動） */
.scene::before {
  content: "";
  position: absolute; top: 8px; right: 6px;
  width: 280px; height: 190px;
  background: url("../public/images/deco/deco-16.png") right top / contain no-repeat;
  opacity: 0.85; pointer-events: none; z-index: 0;
}
.scene::after {
  content: "";
  position: absolute; bottom: 10px; left: 8px;
  width: 240px; height: 170px;
  background: url("../public/images/deco/deco-31.png") left bottom / contain no-repeat;
  opacity: 0.85; pointer-events: none; z-index: 0;
}

/* 選ばれる理由：和雲を上部に（淡く） */
.reason::before {
  content: "";
  position: absolute; top: 24px; right: -20px;
  width: 280px; height: 120px;
  background: url("../public/images/deco/deco-02.png") right top / contain no-repeat;
  opacity: 0.4; pointer-events: none; z-index: 0;
}
/* ご注文の流れ：和波を右下に（淡く） */
.flow::after {
  content: "";
  position: absolute; right: -20px; bottom: -6px;
  width: 300px; height: 140px;
  background: url("../public/images/deco/deco-01.png") right bottom / contain no-repeat;
  opacity: 0.18; pointer-events: none; z-index: 0;
}
/* 配達エリア：金の飛び散りを（淡く） */
.area::before {
  content: "";
  position: absolute; top: 28px; left: 6px;
  width: 200px; height: 140px;
  background: url("../public/images/deco/deco-09.png") left top / contain no-repeat;
  opacity: 0.4; pointer-events: none; z-index: 0;
}

/* 装飾の上にコンテンツを重ねる */
.empathy .container, .scene .container, .reason .container,
.flow .container, .area .container { position: relative; z-index: 1; }

.scene-card { position: relative; }
.menu-card__body { position: relative; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 1024px) {
  .header__inner { gap: 12px; }
  .gnav__list { gap: 12px; }
  .gnav__list a { font-size: 0.74rem; }
  .header__cta .btn--sm { padding: 8px 12px; font-size: 0.74rem; }
  .header__cta .btn--sm .ico { display: none; }
  .reason__grid, .flow__list { grid-template-columns: repeat(2, 1fr); }
  .flow-step:nth-child(2)::after { display: none; }
}

@media (max-width: 1024px) {
  /* FV: スマホと同じ没入型（写真いっぱい＋文字オーバーレイ）にタブレットも寄せる */
  .fv { min-height: 88vh; min-height: 88svh; }
  .fv__media {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    height: 72%;
  }
  .fv__media img { object-position: center 48%; }
  .fv__media::before { display: none; }
  .fv__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    /* 写真の上端を和紙になじませ、下は鮮明に */
    background: linear-gradient(180deg,
      var(--bg-washi) 0%,
      rgba(250, 246, 236, 0.82) 16%,
      rgba(250, 246, 236, 0.32) 36%,
      rgba(250, 246, 236, 0.05) 54%,
      rgba(250, 246, 236, 0) 74%);
  }
  .fv__decor, .fv__accent { display: none; }
  .fv__inner {
    position: relative;
    z-index: 3;
    display: block;
    max-width: 560px;
    margin-inline: 0;
    text-align: left;
    padding: 60px 28px 52px;
  }
  .fv__text { max-width: none; }
  .fv__menu-link { display: none; }
  .fv__points { margin-inline: 0; }
  .fv__cta { justify-content: flex-start; }
}

/* タブレット幅：没入型FVのサイズ感を調整（文字・丸・ボタンを画面に合わせて大きく） */
@media (min-width: 601px) and (max-width: 1024px) {
  .fv__title { font-size: clamp(2rem, 4.4vw, 2.6rem); letter-spacing: 0.08em; line-height: 1.55; }
  .fv__sub { font-size: 0.96rem; letter-spacing: 0.06em; line-height: 1.95; }
  .fv__points { max-width: 470px; gap: 16px; margin-top: 30px; margin-bottom: 32px; }
  .fv__points li span { font-size: 0.9rem; }
  .fv__cta {
    max-width: 470px;
    margin-inline: 0;
    margin-top: 26vh;
    gap: 14px;
    flex-wrap: nowrap;
  }
  .fv__cta .btn { flex: 1 1 0; min-width: 0; font-size: 0.95rem; padding: 16px 12px; }
}

@media (max-width: 900px) {
  /* ヘッダーをハンバーガーへ */
  .gnav, .header__cta { display: none; }
  .hamburger { display: block; }

  .scene__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { padding-block: 60px; }
  .section__head { margin-bottom: 36px; }

  .empathy__list { grid-template-columns: 1fr; }

  /* 写真バンド：モバイルは固定背景を解除（iOS対策）し高さを抑える */
  .photoband { min-height: 260px; background-attachment: scroll; }
  .photoband__inner { padding: 44px 24px; }
  .photoband__line { width: 40px; height: 17px; }

  /* スワイプ案内を表示 */
  .menu__swipe {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 0.76rem;
    color: var(--kincha);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
  }

  /* メニューを横スクロールカルーセルに */
  .menu__grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 14px;
    margin-inline: -24px;
    padding-inline: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--kincha) rgba(168, 123, 61, 0.15);
  }
  .menu__grid::-webkit-scrollbar { height: 6px; }
  .menu__grid::-webkit-scrollbar-track {
    background: rgba(168, 123, 61, 0.15);
    border-radius: 999px;
  }
  .menu__grid::-webkit-scrollbar-thumb {
    background: var(--kincha);
    border-radius: 999px;
  }
  /* 次のカードがしっかり覗くように（スクロールできると分かる） */
  .menu-card {
    flex: 0 0 72%;
    max-width: 280px;
    scroll-snap-align: start;
  }
  .menu-card:last-child { margin-right: 24px; }

  /* 選ばれる理由：横並びカード（アイコン左・テキスト右） */
  .reason__grid { grid-template-columns: 1fr; gap: 14px; }
  .reason-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "ico no"
      "ico title"
      "ico text";
    column-gap: 16px;
    row-gap: 3px;
    align-content: center;
    text-align: left;
    padding: 18px 18px;
  }
  .reason-card__ico { grid-area: ico; align-self: center; margin: 0; width: 56px; height: 56px; }
  .reason-card__ico svg { width: 30px; height: 30px; }
  .reason-card__no { grid-area: no; text-align: left; margin: 0; line-height: 1; }
  .reason-card__title { grid-area: title; text-align: left; margin-bottom: 5px; }
  .reason-card__text { grid-area: text; text-align: left; }

  /* ご注文の流れ：番号付き縦タイムライン */
  .flow__list { grid-template-columns: 1fr; gap: 0; }
  .flow-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-areas:
      "ico no"
      "ico title"
      "ico text";
    column-gap: 18px;
    row-gap: 4px;
    text-align: left;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 30px 0;
    position: relative;
  }
  .flow-step:not(:last-child)::after { display: none !important; }
  /* 接続線 */
  .flow-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px; top: 60px; bottom: 2px;
    width: 2px;
    background-color: var(--kincha-light);
  }
  .flow-step__ico {
    grid-area: ico;
    width: 56px; height: 56px;
    margin: 0;
    align-self: start;
    background-color: var(--enji);
    color: #fff;
    z-index: 1;
  }
  .flow-step__ico svg { width: 32px; height: 32px; }
  .flow-step__no { grid-area: no; align-self: center; margin: 0; }
  .flow-step__title { grid-area: title; text-align: left; margin-bottom: 2px; }
  .flow-step__text { grid-area: text; text-align: left; }

  .urgent__box { padding: 36px 22px; }
  .urgent__quotes li { font-size: 0.94rem; padding: 9px 16px; }

  .area__row { grid-template-columns: 1fr; }
  .area__row dt { padding: 14px 18px 6px; background-color: var(--bg-washi); }
  .area__row dd { padding: 6px 18px 16px; }

  .footer__inner { flex-direction: column; }
  .footer__info { text-align: left; }

  /* 固定CTA分の余白 */
  .fixed-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* スマホ（実機幅）：写真を背景にして上部だけ生成り色になじませる（SPカンプ準拠） */
@media (max-width: 600px) {
  /* 画面いっぱいの縦長FV。写真は下寄せに大きく、上は和紙背景 */
  .fv { min-height: 88vh; min-height: 88svh; }
  .fv__media {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    height: 75%;
  }
  .fv__media img { object-position: center 50%; filter: brightness(1.07) saturate(1.03); }
  .fv__media::before { display: none; }
  .fv__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    /* 写真の上端だけ和紙になじませ、もやは浅めに（写真を広く・明るく見せる） */
    background: linear-gradient(180deg,
      var(--bg-washi) 0%,
      rgba(250, 246, 236, 0.8) 11%,
      rgba(250, 246, 236, 0.28) 27%,
      rgba(250, 246, 236, 0.04) 42%,
      rgba(250, 246, 236, 0) 54%);
  }
  .fv__inner {
    position: relative;
    z-index: 3;
    display: block;
    max-width: none;
    text-align: left;
    padding: 30px 22px 40px;
  }
  .fv__title { font-size: clamp(1.95rem, 6.3vw, 2.4rem); letter-spacing: 0.06em; line-height: 1.6; }
  .fv__sub { font-size: 1rem; letter-spacing: 0.06em; line-height: 2; }
  /* 電話・LINEボタンを横並びに。最初の画面内に見えるよう余白は控えめに */
  .fv__cta { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 15vh; }
  .fv__cta .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 13px 4px;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    gap: 4px;
  }
  .fv__cta .btn .ico { width: 0.95em; height: 0.95em; }
  /* 丸を文字群と同じ横幅にして右端を揃えつつ、間隔を広げて円自体は小さめに */
  .fv__points { gap: 14px; margin: 24px 0 26px; max-width: 90%; }
  .fv__points li { padding-bottom: 2%; }
  .fv__points li span { font-size: 0.85rem; line-height: 1.5; letter-spacing: 0.02em; }
  .fv__menu-link { display: none; }

  /* 文字エリア左上に飛び散りを小さく */
  .fv__accent--tl {
    display: block;
    top: 8px;
    left: 4%;
    width: 84px;
    height: 60px;
    opacity: 0.4;
    z-index: 3;
  }
  /* 右上に薄い桜枝を小さく表示 */
  .fv__decor {
    display: block;
    top: 12px;
    left: auto;
    right: -12px;
    transform: none;
    width: 138px;
    height: 116px;
    background-position: right top;
    opacity: 0.5;
  }

  /* スマホ：装飾あしらいを小さく＆片側に寄せる（中央に大きく見せない） */
  .fv::after { width: 150px; height: 78px; left: -14px; opacity: 0.18; }
  .empathy::before { width: 92px; height: 116px; right: -10px; top: 14px; }
  .empathy::after { width: 110px; height: 80px; left: -12px; }
  .scene::before { width: 120px; height: 90px; top: 6px; right: -6px; opacity: 0.8; }
  .scene::after { width: 110px; height: 80px; left: -8px; opacity: 0.8; }
  .reason::before { width: 130px; height: 56px; right: -16px; left: auto; }
  .flow::after { width: 150px; height: 72px; right: -22px; }
  .area::before { width: 120px; height: 84px; left: -12px; right: auto; }

  /* リード小見出しはスマホでも1行に収まるよう少し小さく＆細線を短く */
  .empathy__lead, .urgent__lead, .lastcta__lead {
    font-size: 1.02rem;
    gap: 8px;
    letter-spacing: 0.05em;
  }
  .empathy__lead::before, .empathy__lead::after,
  .urgent__lead::before, .urgent__lead::after,
  .lastcta__lead::before, .lastcta__lead::after { width: 16px; }

  /* 折り返す見出しはスマホで少し大きく＋字間・行間を広げる */
  .urgent .section__title,
  .lastcta__title {
    font-size: 1.5rem;
    letter-spacing: 0.14em;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .section__title { font-size: 1.38rem; letter-spacing: 0.06em; line-height: 1.6; }
}
@media (max-width: 420px) {
  .scene__grid { grid-template-columns: 1fr; }
}

/* スクロールイン演出 */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
