/* ==========================================================
   hair room 灯（akari） — style.css
   配色：夜の墨色 × 生成り、アクセントは灯りの琥珀1色のみ
   フォント：見出し Zen Old Mincho / 本文 Zen Kaku Gothic New
   演出方針：フェード以上の演出はFVのみ。JSライブラリ不使用
   ========================================================== */

:root {
  --sumi: #1a1714;          /* 夜の墨色（純黒禁止） */
  --sumi-deep: #12100d;     /* FV導入の暗がり */
  --kinari: #f0e8d8;        /* 生成りの文字 */
  --kinari-dim: #cfc5b0;    /* 生成りの弱 */
  --akari: #d9a05b;         /* 灯りの琥珀（アクセント唯一色） */
  --jitsumu-bg: #f4eee1;    /* 実務セクション：生成り背景 */
  --jitsumu-text: #2b2520;
  --font-mincho: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  --font-gothic: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
}

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

/* ==========================================================
   灯ライト（全ページ共通の演出）
   画面全体をぼんやり明るくする琥珀の光。
   PC＝カーソル追従／モバイル＝スクロールに合わせて漂う。
   動きはJSがtransformを書き換えるだけ（コンポジタ処理で軽量）
   ========================================================== */

.akari-light {
  position: fixed;
  left: 0; top: 0;
  width: 130vmax; height: 130vmax;
  margin-left: -65vmax; margin-top: -65vmax;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: screen; /* 下にあるものを「照らして」明るくする */
  background: radial-gradient(
    closest-side,
    rgba(224, 170, 100, 0.30) 0%,
    rgba(224, 170, 100, 0.14) 35%,
    rgba(224, 170, 100, 0) 70%
  );
  transform: translate3d(50vw, 40vh, 0);
  will-change: transform;
}

html { scroll-behavior: smooth; }

body {
  background: var(--sumi);
  color: var(--kinari);
  font-family: var(--font-gothic);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

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

/* ==========================================================
   ヘッダー（toone.型：ナビ＋予約ボタン常設）
   FVの上に透過で重ね、点灯後にそっと現れる
   ========================================================== */

.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 22px;
  opacity: 0;
  animation: fv-header 2s ease-out 2.6s forwards;
}

@keyframes fv-header {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.header__logo a {
  font-family: var(--font-mincho);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--kinari);
  text-decoration: none;
}

.header__nav {
  display: flex;
  gap: 22px;
  list-style: none;
  margin-left: auto;
}

.header__nav a {
  color: var(--kinari-dim);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  /* 英・日を同じマスに重ねる。幅は広い方の文字に揃う＝切り替えても隣が動かない */
  display: grid;
  overflow: hidden;
  text-align: center;
}

.header__nav a > span {
  grid-area: 1 / 1;
  white-space: nowrap;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 通常時：英語が見え、日本語は右に控えて透明 */
.header__nav .nav-en { transform: translateX(0); opacity: 1; }
.header__nav .nav-jp { transform: translateX(16px); opacity: 0; }

/* ホバー時：英語が左へ抜け、日本語が横から滑り込む（クロスフェード＋スライド） */
.header__nav a:hover .nav-en,
.header__nav a:focus-visible .nav-en { transform: translateX(-16px); opacity: 0; }

.header__nav a:hover .nav-jp,
.header__nav a:focus-visible .nav-jp { transform: translateX(0); opacity: 1; }

.header__nav a:hover,
.header__nav a:focus-visible { color: var(--akari); }

.header__cta {
  padding: 10px 20px;
  background: rgba(217, 160, 91, 0.16);
  border: 1px solid var(--akari);
  color: var(--kinari);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
}

.header__cta:hover { background: rgba(217, 160, 91, 0.32); }

/* モバイル・タブレット縦：ナビは畳み、ロゴ＋予約だけ（追従CTAが導線を補完）
   840px以下で畳む＝ナビ全表示に必要な約800pxを下回る帯で横あふれを防ぐ */
@media (max-width: 840px) {
  .header__nav { display: none; }
  .header__cta { margin-left: auto; }
}

/* ==========================================================
   たよりティッカー（toone.のNEWS帯の翻訳）
   更新が動いている証拠をFV直下で見せる
   ========================================================== */

.ticker {
  display: flex;
  align-items: center;
  background: #241e17;
  border-top: 1px solid rgba(217, 160, 91, 0.25);
  border-bottom: 1px solid rgba(217, 160, 91, 0.15);
}

.ticker__label {
  flex-shrink: 0;
  padding: 12px 18px;
  font-family: var(--font-mincho);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--akari);
  border-right: 1px solid rgba(217, 160, 91, 0.25);
}

.ticker__window {
  overflow: hidden;
  flex: 1;
}

.ticker__track {
  display: inline-flex;
  gap: 48px;
  padding-left: 24px;
  white-space: nowrap;
  animation: ticker-flow 36s linear infinite;
}

.ticker__track a {
  color: var(--kinari-dim);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.ticker__track a:hover { color: var(--kinari); }

.ticker__track time {
  color: var(--akari);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-right: 12px;
}

@keyframes ticker-flow {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================
   FV（演出：強）
   ・読み込み時：暗がりから灯りがともるフェードイン（約4秒）
   ・背景：20秒かけてわずかにズーム
   ========================================================== */

.fv {
  position: relative;
  /* JSが開いた瞬間の画面高を--fvhに固定する（アドレスバー伸縮でのガクッ防止）。
     JSが動かない環境だけsvhで代用 */
  height: var(--fvh, 100svh);
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景。写真ができたら background-image を有効化して差し替える */
.fv__bg {
  position: absolute;
  inset: 0;
  /* 写真：AI生成（2026-09-11・ChatGPT）。実案件では実写に差し替え。
     上に薄い暗幕を重ねて文字の可読性を確保 */
  background:
    linear-gradient(
      to bottom,
      rgba(18, 16, 13, 0.30) 0%,
      rgba(18, 16, 13, 0.08) 40%,
      rgba(18, 16, 13, 0.50) 100%
    ),
    url("../images/fv_yugure_mise.jpg") center / cover no-repeat #221b14;
  transform: scale(1);
  animation: fv-zoom 20s ease-out forwards;
}

/* 窓の灯り（琥珀のグロー）。「灯りがともる」の主役 */
.fv__glow {
  position: absolute;
  left: 50%; bottom: 24%;
  width: 90vmin; height: 64vmin;
  transform: translateX(-50%);
  background: radial-gradient(
    50% 50% at 50% 60%,
    rgba(224, 170, 100, 0.65) 0%,
    rgba(224, 170, 100, 0.28) 40%,
    rgba(224, 170, 100, 0) 75%
  );
  opacity: 0;
  animation: fv-tomoru 3.6s ease-out 0.5s forwards;
}

/* 全体を暗がりから起こすフェード */
.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sumi-deep);
  opacity: 0.9;
  animation: fv-akeru 2.6s ease-out forwards;
  pointer-events: none;
}

.fv__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 1px 28px rgba(0, 0, 0, 0.55); /* 写真の明部でも文字が読めるように */
}

/* 文字の順番：灯りがともる(〜2.6s) → 店名 → 一拍おいてコピー。
   動きを「見せる」ため、点灯と重ねず超スローで立ち上げる */
.fv__name {
  opacity: 0;
  animation: fv-moji 6.5s cubic-bezier(0.22, 0.61, 0.36, 1) 2s forwards;
}

.fv__copy {
  opacity: 0;
  animation: fv-moji 5.5s cubic-bezier(0.22, 0.61, 0.36, 1) 5s forwards;
}

/* 英字ラベル（toone.のPRIVATE HAIR SALONの位置づけ） */
.fv__eng {
  font-size: clamp(0.68rem, 2vw, 0.8rem);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--akari);
  margin-bottom: 22px;
  opacity: 0;
  animation: fv-moji 4s cubic-bezier(0.22, 0.61, 0.36, 1) 1.6s forwards;
}

.fv__name {
  font-family: var(--font-mincho);
  font-weight: 500;
  color: var(--kinari);
}

.fv__name-main {
  display: block;
  font-size: clamp(2rem, 8vw, 3.4rem);
  letter-spacing: 0.14em;
}

.fv__name-sub {
  display: block;
  margin-top: 10px;
  font-size: clamp(0.8rem, 2.4vw, 1rem);
  letter-spacing: 0.5em;
  text-indent: 0.5em; /* 字間ぶんの中央補正 */
  color: var(--akari);
  font-weight: 500;
  /* 写真の明るい窓と重なっても読めるよう、暗い縁光を重ねる */
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 0 8px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(0, 0, 0, 0.7);
}

.fv__copy {
  margin-top: 28px;
  font-family: var(--font-mincho);
  font-size: clamp(0.95rem, 3.2vw, 1.15rem);
  letter-spacing: 0.12em;
  color: var(--kinari-dim);
}

/* FV内の予約CTA（toone.はFVにも予約ボタンを置く） */
.fv__cta {
  margin-top: 44px;
  opacity: 0;
  animation: fv-moji 3.5s cubic-bezier(0.22, 0.61, 0.36, 1) 8s forwards;
}

/* スクロール誘導（控えめ） */
.fv__scroll {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fv-moji 2.5s ease-out 9.5s forwards;
}

.fv__scroll span {
  display: block;
  width: 1px; height: 48px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--kinari-dim), transparent);
}

.fv__scroll em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: var(--kinari-dim);
}

@keyframes fv-akeru {
  from { opacity: 0.9; }
  to   { opacity: 0; }
}

@keyframes fv-tomoru {
  0%   { opacity: 0; }
  55%  { opacity: 0.85; }
  70%  { opacity: 0.7; }   /* わずかな揺らぎ＝灯りらしさ */
  100% { opacity: 1; }
}

@keyframes fv-moji {
  from { opacity: 0; transform: translateY(96px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fv-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* ==========================================================
   コンセプト（演出：静）
   スクロールで一度だけ緩やかにフェードイン
   ========================================================== */

.concept {
  padding: 110px 24px 130px;
  background: var(--sumi);
}

.concept__inner {
  max-width: 620px;
  margin: 0 auto;
}

.concept__title {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: clamp(1.4rem, 4.6vw, 1.8rem);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 56px;
  color: var(--kinari);
}

.concept__title::after {
  content: "";
  display: block;
  width: 32px; height: 1px;
  margin: 24px auto 0;
  background: var(--akari);
}

.concept__text p {
  margin-bottom: 1.8em;
  font-size: clamp(0.92rem, 2.8vw, 1rem);
  color: var(--kinari);
}

.concept__sign {
  margin-top: 48px;
  text-align: right;
}

/* 手書き風署名（毛筆フォントYuji Syukuを輪郭パス化したSVG画像） */
.concept__sign img {
  display: inline-block;
  width: min(280px, 60vw);
  height: auto;
  opacity: 0.85;
}

/* 文字まとまりごとの画面下からのスクリーンイン（一度だけ） */
.js-fade {
  opacity: 0;
  transform: translateY(96px);
  transition: opacity 2.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 2.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

/* ==========================================================
   写真の差し替え枠（.ph）
   写真が入るまでの代役。images/ に対応ファイルを置いたら
   <img> に置き換える。ラベルは枠の用途表示
   ========================================================== */

.ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(224, 170, 100, 0.14), transparent 70%),
    linear-gradient(160deg, #2c261f 0%, #221d17 100%);
  border: 1px solid rgba(224, 170, 100, 0.18);
}

.ph span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(240, 232, 216, 0.45);
  padding: 8px;
  text-align: center;
}

.section--light .ph {
  background:
    radial-gradient(80% 80% at 50% 30%, rgba(217, 160, 91, 0.18), transparent 70%),
    linear-gradient(160deg, #e6dcc8 0%, #ded2ba 100%);
  border-color: rgba(120, 95, 60, 0.25);
}

.section--light .ph span { color: rgba(43, 37, 32, 0.5); }

.ph--wide     { aspect-ratio: 3 / 2; }
.ph--portrait { aspect-ratio: 3 / 4; width: min(220px, 60vw); }
.ph--thumb    { aspect-ratio: 16 / 10; }

/* 実写真（.phを差し替えたもの）。比率とトリミングを枠と揃える */
.photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.photo--wide     { aspect-ratio: 3 / 2; }
.photo--portrait { width: min(220px, 60vw); aspect-ratio: 3 / 4; }
.photo--menu     { aspect-ratio: 4 / 5; }
.photo--thumb    { aspect-ratio: 16 / 10; }

.tayori-card .photo--thumb { border-radius: 0; }

@media (max-width: 700px) {
  .photo--menu { aspect-ratio: 3 / 2; }
}

.article .photo { margin-bottom: 24px; }

/* ==========================================================
   共通セクションの骨格
   実務セクション＝生成り背景×墨文字に反転（静けさの反転）
   ========================================================== */

.section__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 96px 24px 110px;
}

.section--light {
  background: var(--jitsumu-bg);
  color: var(--jitsumu-text);
}

.section__title {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: clamp(1.3rem, 4.2vw, 1.6rem);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 48px;
}

.section__title::after {
  content: "";
  display: block;
  width: 32px; height: 1px;
  margin: 20px auto 0;
  background: var(--akari);
}

.section__subtitle {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin: 48px 0 16px;
}

.section__lead { margin-bottom: 20px; }

.section--light p,
.section--light li { font-size: clamp(0.92rem, 2.8vw, 1rem); }

/* ---- コンセプト末尾：店主写真＋署名 ---- */

.concept__owner {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

/* ---- 店内ギャラリー ---- */

.gallery { background: var(--sumi); padding: 0 24px 110px; }

.gallery__inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

/* ---- はじめての方へ ---- */

.order-list { list-style: none; margin: 0 0 20px; }

.order-list li {
  margin-bottom: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.55);
  border-left: 3px solid var(--akari);
  border-radius: 0 6px 6px 0;
}

.dont-list { list-style: none; margin: 0 0 16px; }

.dont-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 10px;
}

.dont-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--akari);
}

.dont-note {
  font-family: var(--font-mincho);
  margin-bottom: 40px;
}

/* ---- はじめての方へ（Q&A） ---- */

.qa { margin-bottom: 48px; }

.qa__item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(43, 37, 32, 0.14);
}

.qa__item:first-child { border-top: 1px solid rgba(43, 37, 32, 0.14); }

.qa__item dt {
  position: relative;
  padding-left: 2em;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: clamp(0.98rem, 3vw, 1.08rem);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.qa__item dt::before {
  content: "Q";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-mincho);
  color: var(--akari);
  letter-spacing: 0;
}

.qa__item dd {
  position: relative;
  padding-left: 2em;
}

.qa__item dd::before {
  content: "A";
  position: absolute;
  left: 0.05em; top: 0;
  font-family: var(--font-mincho);
  color: rgba(43, 37, 32, 0.45);
}

.qa__item dd p { margin-bottom: 0.8em; }

.qa__item dd p:last-child { margin-bottom: 0; }

.qa__item .order-list { margin: 14px 0; }

/* ---- メニュー2カラム（文字左・施術中写真右） ---- */

#menu .section__inner { max-width: 960px; }

.menu__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ph--menu { aspect-ratio: 4 / 5; }

@media (max-width: 700px) {
  .menu__row { grid-template-columns: 1fr; }
  .ph--menu { aspect-ratio: 3 / 2; }
}

/* ---- メニュー表 ---- */

.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.menu-table th,
.menu-table td {
  padding: 14px 6px;
  border-bottom: 1px solid rgba(43, 37, 32, 0.18);
  font-weight: 400;
  text-align: left;
  font-size: clamp(0.9rem, 2.7vw, 0.98rem);
}

.menu-table td { text-align: right; white-space: nowrap; }

.menu-note { font-size: 0.85rem; color: rgba(43, 37, 32, 0.75); }

/* ---- 店主紹介（墨） ---- */

.owner { background: var(--sumi); }

.owner__row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

@media (max-width: 640px) {
  .owner__row { flex-direction: column; align-items: center; }
  .owner__bio { text-align: left; }
}

.owner__name {
  font-family: var(--font-mincho);
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.owner__name span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--akari);
  margin-top: 4px;
}

.owner__history { list-style: none; margin-bottom: 20px; }

.owner__history li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.owner__history li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--akari);
}

.owner__word {
  font-family: var(--font-mincho);
  letter-spacing: 0.08em;
}

/* ---- 灯りのたより（墨） ---- */

.tayori { background: var(--sumi); }

.tayori__lead { text-align: center; margin-bottom: 40px; }

.tayori__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

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

.tayori-card {
  display: block;
  text-decoration: none;
  color: var(--kinari);
  border: 1px solid rgba(240, 232, 216, 0.16);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.tayori-card:hover { border-color: var(--akari); }

.tayori-card .ph { border: none; border-radius: 0; }

.tayori-card__date {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--akari);
  padding: 14px 16px 2px;
}

.tayori-card__title {
  font-family: var(--font-mincho);
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 0 16px 16px;
}

.tayori__more { text-align: center; }

.tayori__more a {
  color: var(--kinari-dim);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(240, 232, 216, 0.3);
  padding-bottom: 3px;
}

.tayori__more a:hover { color: var(--akari); border-color: var(--akari); }

/* ---- アクセス ---- */

.access__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.access__address {
  font-family: var(--font-mincho);
  margin-bottom: 18px;
}

.access-list { list-style: none; }

.access-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 14px;
}

.access-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--akari);
}

.access__map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 6px;
  filter: saturate(0.7);
}

/* ---- 予約 ---- */

.reserve .section__inner { text-align: center; }

.reserve__lead { margin-bottom: 32px; }

.btn-main {
  display: inline-block;
  padding: 18px 64px;
  background: var(--akari);
  color: #241a0e;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(120, 80, 30, 0.35);
}

.btn-main:active { transform: translateY(1px); }

.reserve__cta { margin-bottom: 24px; }

.reserve__tel a { color: inherit; }

.reserve__hours {
  font-size: 0.88rem;
  color: rgba(43, 37, 32, 0.75);
  margin-top: 8px;
}

/* ==========================================================
   追従CTA（視認性のみ強く）
   ========================================================== */

.cta-float {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 10;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* FVを過ぎたら現れる（FV内のCTA・ヘッダーと重複させない） */
.cta-float.is-shown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cta-float__btn {
  display: inline-block;
  padding: 14px 26px;
  background: var(--akari);
  color: #241a0e;
  font-family: var(--font-gothic);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.cta-float__btn:active { transform: translateY(1px); }

/* ==========================================================
   たよりページ（tayori.html）
   ========================================================== */

.page-head {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 24px 24px;
}

.page-head__home { margin-bottom: 40px; }

.page-head__home a {
  color: var(--kinari-dim);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.page-head__home a:hover { color: var(--akari); }

.page-head__title {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.page-head__lead { color: var(--kinari-dim); font-size: 0.95rem; }

.articles {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.article {
  padding: 48px 0;
  border-bottom: 1px solid rgba(240, 232, 216, 0.14);
}

.article:last-child { border-bottom: none; }

.article__date {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--akari);
  margin-bottom: 8px;
}

.article__title {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: clamp(1.15rem, 3.8vw, 1.4rem);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.article .ph { margin-bottom: 24px; }

.article__body p {
  margin-bottom: 1.6em;
  font-size: clamp(0.92rem, 2.8vw, 1rem);
}

/* ==========================================================
   Web予約ページ（yoyaku.html）
   演出：静・軽。生成りの実務トーンで、迷わせないことが最優先
   ========================================================== */

.page-yoyaku { background: var(--jitsumu-bg); color: var(--jitsumu-text); }

.page-head--light .page-head__home a { color: rgba(43, 37, 32, 0.6); }
.page-head--light .page-head__home a:hover { color: var(--akari); }
.page-head--light .page-head__lead { color: rgba(43, 37, 32, 0.75); }

.yoyaku {
  max-width: 620px;
  margin: 0 auto;
  padding: 24px 24px 100px;
}

.form-group { margin-bottom: 36px; }

.form-label {
  display: block;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.form-req {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  font-family: var(--font-gothic);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--akari);
  border-radius: 999px;
  vertical-align: 2px;
}

.form-input {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--font-gothic);
  font-size: 1rem;
  color: var(--jitsumu-text);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(43, 37, 32, 0.25);
  border-radius: 8px;
}

.form-input:focus {
  outline: 2px solid var(--akari);
  outline-offset: 1px;
  border-color: transparent;
}

.form-textarea { resize: vertical; line-height: 1.9; }

.form-note {
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(43, 37, 32, 0.65);
  line-height: 1.8;
}

.form-note--center { text-align: center; }

.form-group--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 560px) {
  .form-group--row { grid-template-columns: 1fr; }
}

/* メニュー選択 */
fieldset.form-group { border: none; }

.menu-choice { list-style: none; }

.menu-choice li { margin-bottom: 10px; }

.menu-choice label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(43, 37, 32, 0.2);
  border-radius: 8px;
  cursor: pointer;
}

.menu-choice label:has(input:checked) {
  border-color: var(--akari);
  background: rgba(217, 160, 91, 0.13);
}

.menu-choice input { accent-color: var(--akari); }

.menu-choice span { flex: 1; font-size: 0.95rem; }

.menu-choice em {
  font-style: normal;
  font-size: 0.9rem;
  white-space: nowrap;
  color: rgba(43, 37, 32, 0.75);
}

.radio-row { display: flex; gap: 14px; }

.radio-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(43, 37, 32, 0.2);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.radio-row label:has(input:checked) {
  border-color: var(--akari);
  background: rgba(217, 160, 91, 0.13);
}

.radio-row input { accent-color: var(--akari); }

/* 要望の例文チップ */
.request-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.example-chip {
  padding: 8px 16px;
  font-family: var(--font-gothic);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--jitsumu-text);
  background: transparent;
  border: 1px solid var(--akari);
  border-radius: 999px;
  cursor: pointer;
}

.example-chip:hover, .example-chip:active {
  background: rgba(217, 160, 91, 0.18);
}

.form-submit { text-align: center; margin-top: 44px; }

.form-submit .btn-main { border: none; cursor: pointer; font-family: var(--font-gothic); }

/* 送信完了（デモ） */
.yoyaku__done {
  text-align: center;
  padding: 60px 0 40px;
}

.yoyaku__done-title {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}

.yoyaku__done p { margin-bottom: 16px; }

.yoyaku__done-back a { color: rgba(43, 37, 32, 0.7); }

.footer--light { background: var(--jitsumu-bg); }

.footer--light .footer__note,
.footer--light .footer__copy { color: rgba(43, 37, 32, 0.55); }

/* ==========================================================
   フッター
   ========================================================== */

.footer {
  padding: 40px 24px 90px;
  background: var(--sumi);
  text-align: center;
}

.footer__note {
  font-size: 0.78rem;
  color: var(--kinari-dim);
  letter-spacing: 0.06em;
}

.footer__copy {
  margin-top: 10px;
  font-family: var(--font-mincho);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--kinari-dim);
}

/* ==========================================================
   動きを減らす設定の尊重
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  .fv__bg, .fv__glow, .fv::after, .fv__eng, .fv__name, .fv__copy,
  .fv__cta, .fv__scroll, .header, .ticker__track {
    animation: none;
  }
  .fv::after { opacity: 0; }
  .fv__glow, .fv__eng, .fv__name, .fv__copy, .fv__cta, .fv__scroll, .header { opacity: 1; }
  .js-fade { opacity: 1; transform: none; transition: none; }
  .akari-light { transform: translate3d(50vw, 40vh, 0); } /* 中央固定 */
  .header__nav a > span { transition: none; }
}
