/* ==========================================================================
   EIGHT-OU front page (front-page.php 専用) — 雑誌風レイアウト
   デザインルール:
   - 本文は 1rem 以上・#f2efe8、補足でも 0.9rem 以上・#c9c3b6 より暗くしない
   - 意味を持つボタンは日本語。英字はラベル・雑誌的な装飾として使う
   - 赤は単色ベタで大面積に使わない。必ず濃淡のグラデーションにする
   - 日の丸を想起させる赤い円・「八」の一文字装飾は使わない
   ========================================================================== */

:root {
  --fp-black: #0a0a0a;
  --fp-surface: #141414;
  --fp-white: #f2efe8;
  --fp-kinari: #ddd5c2;
  --fp-soft: #cdc7ba;
  /* 赤は「濃い深紅」基調。明るい赤の大面積使用・ベタ単色は禁止 */
  --fp-red: #a01420;
  --fp-red-bright: #cf2430;
  --fp-red-deep: #56090f;
  --fp-cta-red-top: #a1131d;
  --fp-cta-red-mid: #7e0c12;
  --fp-cta-red-bottom: #5b0006;
  --fp-grad-red: linear-gradient(120deg, #3f070c 0%, #6e0d14 45%, #a01420 100%);
  --fp-grad-red-soft: linear-gradient(120deg, rgba(63, 7, 12, .92), rgba(160, 20, 32, .85));
  --fp-line: #2e2e2e;
  --fp-mono: "Space Mono", "Courier New", monospace;
  --fp-mincho: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --fp-gothic: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --fp-header-h: 76px;
  --fp-btn-radius: 4px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--fp-header-h) + 16px);
}

/* 帯(scale/rotate)やKV透かしロゴのはみ出しで横スクロールが出ないように。
   htmlに付けるとiOSでposition:fixedのヘッダーがずれるためmain側でクリップする */
#fp-main {
  overflow-x: clip;
}

body.fp {
  margin: 0;
  background: var(--fp-black);
  color: var(--fp-white);
  font-family: var(--fp-gothic);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .04em;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.fp::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* 全面に森のテクスチャを敷く（セクションの継ぎ目を消す・スクロールで常に見える） */
body.fp::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("../images/bg-forest.webp") 42% 50% / cover no-repeat;
  opacity: .3;
  filter: grayscale(.15) brightness(.95);
}

main { position: relative; z-index: 2; }
.fp-header, .fp-footer { z-index: 100; }

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

::selection { background: var(--fp-red); color: var(--fp-white); }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--fp-red-bright);
  outline-offset: 3px;
}

.fp-red { color: var(--fp-red-bright); }

.fp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--fp-red);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--fp-btn-radius);
}

.fp-skip:focus { left: 0; }

.fp-container {
  width: min(1520px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ==========================================================================
   共通要素
   ========================================================================== */

.fp-label {
  font-family: var(--fp-mono);
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fp-kinari);
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 0 0 .5em;
}

.fp-label::after {
  content: "";
  width: 64px;
  height: 2px;
  background: var(--fp-grad-red);
}

.fp-h2 {
  font-family: var(--fp-mincho);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.4;
  letter-spacing: .06em;
  margin: 0 0 .9em;
  word-break: auto-phrase;
  text-wrap: balance;
}

/* 見出し内の赤: グラデーション文字 */
.fp-h2 .fp-red {
  background: linear-gradient(115deg, #ff4a55 0%, #e02937 45%, #b0121e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fp-body {
  font-size: 1.02rem;
  max-width: 40em;
  margin: 0 0 1.2em;
  word-break: auto-phrase;
  text-wrap: pretty;
}

.fp-section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}

.fp-sechead { margin-bottom: clamp(2rem, 4vw, 3.4rem); }

/* 雑誌風: 巨大なセクション番号 */
.fp-secnum {
  display: none;
  position: absolute;
  top: clamp(1rem, 3vw, 2.5rem);
  right: clamp(.5rem, 2vw, 2rem);
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: clamp(6rem, 14vw, 12rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 239, 232, .1);
  pointer-events: none;
  user-select: none;
}

/* 雑誌風: 回転した背表紙ラベル */
.fp-rotlabel {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: left top;
  font-family: var(--fp-mono);
  font-size: .72rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, .38);
  white-space: nowrap;
  margin: 0;
  pointer-events: none;
}

/* トンボ（裁ち落とし線） */
.fp-crop {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 5;
  pointer-events: none;
}

.fp-crop--tl {
  left: 18px;
  top: calc(var(--fp-header-h) + 14px);
  border-left: 1px solid rgba(242, 239, 232, .45);
  border-top: 1px solid rgba(242, 239, 232, .45);
}

.fp-crop--bl {
  left: 18px;
  bottom: 18px;
  border-left: 1px solid rgba(242, 239, 232, .45);
  border-bottom: 1px solid rgba(242, 239, 232, .45);
}

/* ボタン */
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--fp-gothic);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .12em;
  text-decoration: none;
  padding: .9em 1.8em;
  border: 2px solid transparent;
  border-radius: var(--fp-btn-radius);
  transition: filter .25s ease, background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.fp-btn--lg { font-size: 1.05rem; padding: 1em 2.2em; }

/* ボタンのグラデは縦方向（横グラデは端が線に見えるためNG） */
.fp-btn--red {
  border: 0;
  background: linear-gradient(
    180deg,
    var(--fp-cta-red-top) 0%,
    var(--fp-cta-red-mid) 50%,
    var(--fp-cta-red-bottom) 100%
  );
  color: #fff;
  box-shadow: none;
}

.fp-btn--red:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: none;
}

.fp-btn--ghost {
  border-color: var(--fp-white);
  color: var(--fp-white);
  background: rgba(10, 10, 10, .4);
}

.fp-btn--ghost:hover { background: var(--fp-white); color: var(--fp-black); }

/* 印章 */
.fp-seal {
  writing-mode: vertical-rl;
  font-family: var(--fp-mincho);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fp-red-bright);
  border: 2px solid var(--fp-red-bright);
  padding: .55em .3em;
  line-height: 1.1;
  letter-spacing: .18em;
  border-radius: 2px;
  margin: 0;
  background: rgba(10, 10, 10, .65);
}

.fp-seal--tengu {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  line-height: 1;
  letter-spacing: .18em;
  padding: .52em .3em;
  border: 0;
  border-radius: 0;
  color: #fffaf0;
  background: linear-gradient(180deg, #ad2427 0%, #851119 100%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, .4),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
  text-shadow: none;
}

/* ==========================================================================
   ヘッダー（英字ナビ）
   ========================================================================== */

.fp-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--fp-header-h);
  display: flex;
  align-items: center;
  background: var(--fp-black);
  border-bottom: 1px solid transparent;
  transition: border-color .35s ease;
}

.fp-header.is-scrolled {
  border-bottom-color: var(--fp-line);
}

.fp-header-inner {
  height: 100%;
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.fp-header-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.fp-header-logo img {
  width: 88px;
  height: auto;
  margin-top: -4px; /* 下端をヘッダー境界から離す */
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .8));
  transition: transform .3s ease;
}
.fp-header-logo:hover img { transform: scale(1.05) rotate(-2deg); }

.fp-header-wordmark {
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .3em;
  color: var(--fp-white);
}

.fp-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}

.fp-nav > a {
  font-family: var(--fp-mono);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
  color: var(--fp-white);
  position: relative;
  padding-block: .4em;
}

.fp-nav > a:not(.fp-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--fp-grad-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.fp-nav > a:not(.fp-btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.fp-nav-store {
  height: 100%;
  font-family: var(--fp-gothic);
  font-size: .92rem;
  letter-spacing: .1em;
  padding: 0 1.6em;
  border-radius: 0;
}

.fp-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  background: none;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-btn-radius);
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.fp-menu-btn span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--fp-white);
  transition: transform .3s ease, top .3s ease;
}

.fp-menu-btn span:nth-child(1) { top: 14px; }
.fp-menu-btn span:nth-child(2) { top: 22px; }

/* アイコン下の小さな MENU ラベル（開いたら CLOSE） */
.fp-menu-btn::after {
  content: "MENU";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  font-family: var(--fp-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--fp-white);
  text-align: center;
}

.fp-menu-btn[aria-expanded="true"] span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.fp-menu-btn[aria-expanded="true"] span:nth-child(2) { top: 18px; transform: rotate(-45deg); }
.fp-menu-btn[aria-expanded="true"]::after { content: "CLOSE"; }

/* ==========================================================================
   KV — 雑誌の表紙
   ========================================================================== */

.fp-kv {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--fp-black);
}

/* 背景: 鳥居の石段 */
.fp-kv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fp-kv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: brightness(.72) saturate(.9);
}

/* 写真と文字が読みやすくなるよう、背景の上に暗幕を重ねる */
.fp-kv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(95deg, rgba(10, 10, 10, .88) 0%, rgba(10, 10, 10, .5) 40%, rgba(10, 10, 10, .25) 70%),
    linear-gradient(to top, rgba(10, 10, 10, .85) 0%, rgba(10, 10, 10, .1) 30%),
    linear-gradient(to bottom, rgba(10, 10, 10, .6) 0%, rgba(10, 10, 10, 0) 22%);
}

/* 写真/動画: 大きく大胆に（右・ほぼ全高ブリード） */
.fp-kv-photo {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: min(44vw, 700px);
  height: 96%;
  overflow: hidden; /* パララックスのずれをクリップ */
}

/* パララックス(yPercent±6)で隙間が出ないよう上下にオーバーハングさせる */
.fp-kv-photo img,
.fp-kv-photo video {
  position: relative;
  top: -6%;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 50% 12%;
  filter: saturate(.94) contrast(1.05);
}

/* 動画の低解像度感の緩和:
   微ブラーで圧縮ノイズのエッジをならし、コントラストで締め、
   上に動くフィルムグレインを重ねてディテール感を演出する */
.fp-kv-photo video {
  filter: saturate(.98) contrast(1.1) brightness(.97) blur(.45px);
}

.fp-kv-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23g)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 240px;
  mix-blend-mode: overlay;
  opacity: .5;
  animation: fp-grain .9s steps(3) infinite;
}

@keyframes fp-grain {
  0%   { background-position: 0 0; }
  33%  { background-position: 90px -60px; }
  66%  { background-position: -70px 40px; }
  100% { background-position: 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .fp-kv-photo::after { animation: none; }
}

.fp-kv-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(95deg, rgba(10, 10, 10, .55) 0%, rgba(10, 10, 10, .12) 22%, rgba(10, 10, 10, 0) 45%),
    linear-gradient(to top, rgba(10, 10, 10, .55) 0%, rgba(10, 10, 10, 0) 18%);
}

/* 写真キャプション（雑誌のクレジット風） */
.fp-kv-photocap {
  position: absolute;
  z-index: 3;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--fp-mono);
  font-size: .7rem;
  letter-spacing: .34em;
  color: rgba(242, 239, 232, .85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .8);
}

/* 背景にうっすら特大の刺繍ロゴ（ゴースト） */
.fp-kv-ghost {
  position: absolute;
  z-index: 2;
  left: -8%;
  top: 0;
  width: min(76vw, 1080px);
  opacity: .12;
  pointer-events: none;
  user-select: none;
}

.fp-kv-content {
  position: relative;
  z-index: 4;
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  padding-left: clamp(6.5rem, 8vw, 8.5rem);
  padding-top: calc(var(--fp-header-h) + 2vh);
  padding-bottom: 10vh;
}

.fp-kv-issue {
  font-family: var(--fp-mono);
  font-size: .82rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fp-white);
  border-bottom: 1px solid rgba(242, 239, 232, .4);
  display: inline-block;
  padding-bottom: .6em;
  margin: 0 0 1.6em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
}

.fp-kv-title {
  margin: 0 0 .5em;
}

/* ブランド名（英字メガタイポの上） */
.fp-kv-brand {
  display: block;
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: .42em;
  color: var(--fp-white);
  margin-bottom: .5em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .8);
}

.fp-kv-brand-dot {
  color: var(--fp-red-bright);
  font-size: .55em;
  vertical-align: .25em;
  margin-left: .5em;
}

/* 英字メガタイポ（ジャンプ率高く） */
.fp-kv-title-en {
  display: block;
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: clamp(3.2rem, 7.6vw, 6.6rem);
  line-height: .98;
  letter-spacing: .01em;
  color: var(--fp-white);
  text-shadow: 0 8px 50px rgba(0, 0, 0, .85);
}

.fp-kv-title-jp {
  display: block;
  font-family: var(--fp-mincho);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  letter-spacing: .08em;
  line-height: 1.8;
  margin-top: .9em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .8);
}

/* KV見出しの赤: 深紅グラデのマーカー帯（傾けない） */
.fp-kv-title .fp-red {
  display: inline-block;
  background: var(--fp-grad-red);
  color: #fff;
  padding: .02em .14em;
  box-shadow: 0 10px 34px rgba(63, 7, 12, .6);
}

.fp-nw { white-space: nowrap; }

.fp-kv-sub {
  font-family: var(--fp-mono);
  font-size: .95rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fp-white);
  margin: 0 0 2em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
}

.fp-kv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* 目次（雑誌のコンテンツリスト風・下端に横並び） */
.fp-kv-toc {
  position: absolute;
  z-index: 4;
  left: calc(clamp(1.25rem, 4vw, 3rem) + 170px);
  bottom: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.9rem;
}

.fp-kv-toc a {
  font-family: var(--fp-mono);
  font-size: .78rem;
  letter-spacing: .22em;
  text-decoration: none;
  color: var(--fp-soft);
  display: flex;
  align-items: baseline;
  gap: .9em;
  transition: color .25s ease, transform .25s ease;
}

.fp-kv-toc a:hover { color: var(--fp-red-bright); transform: translateX(4px); }

.fp-kv-toc span { color: var(--fp-red-bright); font-size: .68rem; }

/* 縦書き */
.fp-kv-vertical {
  position: absolute;
  z-index: 4;
  left: clamp(12px, 1.8vw, 32px);
  top: 46%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--fp-mincho);
  font-size: .95rem;
  letter-spacing: .34em;
  color: var(--fp-kinari);
  margin: 0;
}

/* バーコード（雑誌の裏表紙的ディテール） */
.fp-kv-barcode {
  position: absolute;
  z-index: 4;
  right: clamp(1.25rem, 3vw, 2.5rem);
  bottom: 26px;
  display: grid;
  gap: 6px;
  justify-items: center;
  background: rgba(10, 10, 10, .55);
  padding: 10px 12px;
  backdrop-filter: blur(4px);
}

.fp-kv-barcode-lines {
  width: 128px;
  height: 34px;
  background: repeating-linear-gradient(90deg,
    var(--fp-white) 0 2px, transparent 2px 5px,
    var(--fp-white) 5px 6px, transparent 6px 11px,
    var(--fp-white) 11px 14px, transparent 14px 17px);
}

.fp-kv-barcode-text {
  font-family: var(--fp-mono);
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--fp-kinari);
}

.fp-scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: clamp(1.25rem, 4vw, 3rem);
  font-family: var(--fp-mono);
  font-size: .78rem;
  letter-spacing: .4em;
  color: var(--fp-kinari);
  margin: 0;
  padding-bottom: 46px;
}

.fp-scroll-cue::after {
  content: "";
  position: absolute;
  left: 1em;
  bottom: 0;
  width: 2px;
  height: 38px;
  background: linear-gradient(to bottom, var(--fp-red-bright), transparent);
  animation: fp-drip 2s ease-in-out infinite;
}

@keyframes fp-drip {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   マーキー
   ========================================================================== */

.fp-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: var(--fp-surface);
  border-block: 1px solid var(--fp-line);
  padding-block: 16px;
  transform: rotate(-1.2deg) scale(1.02);
  margin-block: -1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

.fp-marquee-track {
  display: flex;
  width: max-content;
  margin: 0;
  font-family: var(--fp-mincho);
  font-size: 1.05rem;
  letter-spacing: .28em;
  color: var(--fp-kinari);
  white-space: nowrap;
  will-change: transform;
}

/* ==========================================================================
   商品 — カタログ見開き風（不均等グリッド）
   ========================================================================== */

.fp-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
}

.fp-card-link { text-decoration: none; color: inherit; display: block; }

/* グリッド下のリンク行 */
.fp-products-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  gap: .9rem 1.2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--fp-line);
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
}

.fp-products-foot p {
  margin: 0;
  font-size: 1.02rem;
  word-break: auto-phrase;
  text-wrap: pretty;
}

.fp-card-num {
  font-family: var(--fp-mono);
  font-size: .82rem;
  letter-spacing: .3em;
  color: var(--fp-white);
  margin: 0 0 .7em;
}

.fp-card-media {
  position: relative;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  border: 1px solid var(--fp-line);
  background: radial-gradient(120% 120% at 50% 20%, #1b1b1b 0%, #101010 60%);
  transition: border-color .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease;
}

.fp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.fp-card-media::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--fp-grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.fp-card:hover .fp-card-media {
  border-color: rgba(224, 41, 55, .7);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}

.fp-card:hover .fp-card-media img { transform: scale(1.07); }
.fp-card:hover .fp-card-media::after { transform: scaleX(1); }

.fp-card-name {
  font-family: var(--fp-mono);
  font-size: .92rem;
  letter-spacing: .12em;
  margin: 1.1em 0 .3em;
}

.fp-card-price {
  font-family: var(--fp-mono);
  font-size: .92rem;
  color: var(--fp-red-bright);
  letter-spacing: .1em;
  margin: 0;
}

/* ==========================================================================
   赤帯（グラデーション）
   ========================================================================== */

.fp-band {
  position: relative;
  z-index: 3;
  background: var(--fp-grad-red);
  transform: rotate(-1.6deg) scale(1.04);
  overflow: hidden;
  padding-block: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: 0 24px 70px rgba(143, 17, 25, .55);
}

.fp-band-track {
  display: flex;
  width: max-content;
  margin: 0;
  font-family: var(--fp-mincho);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: .12em;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .3);
  will-change: transform;
}

/* ==========================================================================
   こだわり / ブランド
   ========================================================================== */

.fp-craft { background: rgba(16, 16, 16, .62); }

/* --- 画面端に吸着する大型ブリードレイアウト --- */

.fp-bleed {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
}

.fp-bleed--right { grid-template-columns: minmax(340px, 42%) 1fr; }
.fp-bleed--left  { grid-template-columns: 1fr minmax(340px, 42%); }

/* テキスト側はコンテナ相当の余白を確保 */
.fp-bleed--right .fp-bleed-text { padding-left: max(clamp(1.25rem, 4vw, 3rem), calc((100vw - 1280px) / 2)); }
.fp-bleed--left  .fp-bleed-text { padding-right: max(clamp(1.25rem, 4vw, 3rem), calc((100vw - 1280px) / 2)); }

.fp-bleed-media { position: relative; }

/* ブリード見出しは改行事故防止のため一回り小さく */
.fp-bleed-text .fp-h2 { font-size: clamp(1.9rem, 3vw, 2.75rem); }

.fp-bleed-main { overflow: hidden; }

.fp-bleed-main img {
  display: block;
  width: 100%;
  height: min(76vh, 760px);
  object-fit: cover;
}

.fp-bleed-over {
  position: absolute;
  z-index: 2;
  left: -6%;
  bottom: -7%;
  width: 32%;
  border: 6px solid #060606;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .6);
}

.fp-bleed--left .fp-bleed-over { left: auto; right: -6%; }

.fp-bleed-media .fp-seal {
  position: absolute;
  z-index: 3;
  top: 6%;
  transform: rotate(-6deg);
}

.fp-bleed--right .fp-bleed-media .fp-seal { left: -14px; }
.fp-bleed--left  .fp-bleed-media .fp-seal { right: 6%; top: auto; bottom: 7%; transform: rotate(5deg); }

/* ==========================================================================
   牛頭天王・天狗・烏の神仏画（イメージブレイク）
   ========================================================================== */

/* 一枚の古版画を中央に据え、境界線を作らず背景へ溶かす */
.fp-karasu {
  position: relative;
  min-height: clamp(620px, 56vw, 860px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: #080808;
}

.fp-karasu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 5, 5, .62) 0%, rgba(5, 5, 5, .36) 31%, rgba(5, 5, 5, .16) 68%, rgba(5, 5, 5, .3) 100%);
}

/* 三者を切らず中央に大きく見せる。上下方向には黒フェードを掛けない */
.fp-karasu-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  aspect-ratio: 3 / 2;
  transform: translate(-50%, -50%);
  opacity: .92;
}

.fp-karasu-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(1.05) brightness(.9);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.fp-karasu-inner {
  position: relative;
  z-index: 2;
  width: min(1360px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .9rem;
}

.fp-karasu-en {
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: clamp(.9rem, 1.25vw, 1.05rem);
  line-height: 1;
  letter-spacing: .28em;
  color: #d8d2c7;
  margin: 0;
  text-shadow: 0 8px 40px rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  gap: .9rem;
}

.fp-karasu-en::before {
  content: "";
  width: clamp(2.4rem, 5vw, 4.5rem);
  height: 2px;
  flex: 0 0 auto;
  background: var(--fp-grad-red);
}

.fp-karasu-jp {
  font-family: var(--fp-mincho);
  color: var(--fp-white);
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .9);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .65rem;
}

.fp-karasu-motifs {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  letter-spacing: .22em;
  color: #d8d2c7;
}

.fp-karasu-copy {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: .06em;
  text-wrap: balance;
}

/* ==========================================================================
   ルックブック
   ========================================================================== */

.fp-look { position: relative; }

/* 全6枚を、右列だけ少し下げた2列で展開 */
.fp-look--expanded {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
}

.fp-look-column {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.4vw, 2.2rem);
  min-width: 0;
}

.fp-look-column--offset {
  padding-top: clamp(2.5rem, 7vw, 6rem);
}

.fp-look-item {
  position: relative;
  overflow: hidden;
}

.fp-look--expanded .fp-look-item img {
  width: 100%;
  height: clamp(520px, 56vw, 760px);
  object-fit: cover;
  object-position: 50% 14%;
}

.fp-look--expanded .fp-look-item--kid img {
  object-position: center 10%;
}

.fp-look-caption {
  position: absolute;
  z-index: 3;
  left: calc(50% - 1.6em);
  top: clamp(15rem, 28vw, 24rem);
  writing-mode: vertical-rl;
  font-family: var(--fp-mincho);
  font-size: 1.1rem;
  letter-spacing: .4em;
  margin: 0;
  background: rgba(10, 10, 10, .75);
  padding: 1em .55em;
  border-left: 3px solid var(--fp-red-bright);
}

.fp-look-kid-cap {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  padding: .55em .75em;
  background: rgba(8, 8, 8, .78);
  color: var(--fp-white);
  font-family: var(--fp-mono);
  max-width: calc(100% - 2rem);
  font-size: .9rem;
  line-height: 1.45;
  letter-spacing: .1em;
}

/* ==========================================================================
   八人の王子
   ========================================================================== */

.fp-kings { background: rgba(16, 16, 16, .55); }

/* 巨大アイコン×2列のダイナミックグリッド。アイコンはスクロールで線描画される */
.fp-kings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 3.4vw, 3.4rem) clamp(2rem, 4vw, 4rem);
}

@media (min-width: 900px) {
  .fp-king:nth-child(even) { transform: translateY(3rem) rotate(.6deg); }
  .fp-king:nth-child(odd)  { transform: rotate(-.6deg); }
  .fp-kings-grid { padding-bottom: 3.5rem; }
}

.fp-king {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  overflow: hidden;
}

/* アイコン背面の深紅グロー */
.fp-king::before {
  content: "";
  position: absolute;
  left: clamp(.4rem, 1.4vw, 1.4rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(150px, 13vw, 190px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 20, 32, .3) 0%, transparent 68%);
  pointer-events: none;
}

.fp-king-icon {
  position: relative;
  width: clamp(100px, 10vw, 140px);
  height: clamp(100px, 10vw, 140px);
  stroke: #e8323e;
  fill: rgba(160, 20, 32, .16);
  /* viewBox 52 基準。表示サイズに比例して太くなるため細めに設定する */
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(232, 50, 62, .8)) drop-shadow(0 0 44px rgba(160, 20, 32, .55));
}

/* JS有効時: 線描画アニメーションの初期状態 */
html.eo-js:not(.fp-noanim) .fp-king-icon path,
html.eo-js:not(.fp-noanim) .fp-king-icon circle {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

html.fp-noanim .fp-king-icon path,
html.fp-noanim .fp-king-icon circle {
  stroke-dasharray: none !important;
  stroke-dashoffset: 0 !important;
}

.fp-king h3 {
  font-family: var(--fp-mincho);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: .12em;
  margin: 0 0 .4em;
}

.fp-king p {
  font-size: 1rem;
  color: var(--fp-soft);
  margin: 0;
}

/* ==========================================================================
   お問い合わせ（森の写真背景 + 赤グラデの縁）
   ========================================================================== */

.fp-contact {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.fp-contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  filter: saturate(1) brightness(1.15);
}

.fp-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(10, 10, 10, .78) 0%, rgba(10, 10, 10, .38) 46%, rgba(10, 10, 10, .08) 100%),
    linear-gradient(to top, rgba(63, 7, 12, .3) 0%, transparent 30%);
}

.fp-contact-inner {
  position: relative;
  z-index: 2;
  width: min(1360px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.fp-contact-title {
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}

.fp-contact-body {
  color: var(--fp-white);
  font-size: 1.08rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
}

.fp-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

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

.fp-footer {
  background: #070707;
  border-top: 1px solid var(--fp-line);
  padding-top: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 2;
}

.fp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.fp-footer-mark {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
}

.fp-footer-mark img { width: 72px; }

.fp-footer-wordmark {
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .3em;
  color: var(--fp-white);
}

.fp-footer-brand p {
  font-family: var(--fp-mincho);
  font-size: 1.02rem;
  color: var(--fp-kinari);
  line-height: 2;
  margin: 0;
}

.fp-footer-nav a {
  display: block;
  width: fit-content; /* 当たり判定をテキスト幅に限定 */
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .16em;
  color: var(--fp-white);
  text-decoration: none;
  padding-block: .3em;
  line-height: 1.8;
  transition: color .25s ease, transform .25s ease;
}

.fp-footer-nav a:hover {
  color: var(--fp-red-bright);
  transform: translateX(4px);
}

.fp-footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--fp-line);
  padding-top: 1.4rem;
  /* 右下固定の「TOPへ」ボタンと重ならないよう下に余白を確保 */
  padding-bottom: 7rem;
}

.fp-footer-copy p {
  font-family: var(--fp-mono);
  font-size: .88rem;
  letter-spacing: .14em;
  color: var(--fp-kinari);
  margin: 0;
}

/* ==========================================================================
   TOPへ戻るボタン
   ========================================================================== */

.fp-totop {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 200;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: var(--fp-btn-radius);
  background: linear-gradient(180deg, #a01420 0%, #6e0d14 65%, #56090f 100%);
  color: #fff;
  font-family: var(--fp-gothic);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .08em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, filter .25s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
}

.fp-totop svg { width: 14px; height: 8px; }

.fp-totop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.fp-totop:hover { filter: brightness(1.2); transform: translateY(-3px); }

/* ==========================================================================
   アニメーション初期状態（JS有効時のみ・GSAPが最終状態へ）
   ========================================================================== */

html.eo-js:not(.fp-noanim) .fp-reveal { opacity: 0; }
html.eo-js:not(.fp-noanim) .fp-kv-in { opacity: 0; }
html.eo-js:not(.fp-noanim) .fp-kv-photo { clip-path: inset(0 0 0 100%); }
html.eo-js:not(.fp-noanim) .fp-kv-bg img { transform: scale(1.06); }
html.eo-js:not(.fp-noanim) .fp-kv-ghost { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html.eo-js .fp-reveal,
  html.eo-js .fp-kv-in { opacity: 1 !important; transform: none !important; }
  html.eo-js .fp-kv-photo { clip-path: none !important; }
  html.eo-js .fp-kv-bg img { transform: none !important; }
  .fp-scroll-cue::after { animation: none; }
}

html.fp-noanim .fp-kv-photo { clip-path: none !important; }
html.fp-noanim .fp-kv-bg img { transform: none !important; }

/* ==========================================================================
   レスポンシブ
   ========================================================================== */

@media (max-width: 1080px) {
  .fp-kv-vertical, .fp-kv-toc { display: none; }
  .fp-bleed--right, .fp-bleed--left { grid-template-columns: 1fr; }
  /* 1カラム時は画像を先頭に。オーバーレイ写真は画面内に収める */
  .fp-bleed--right .fp-bleed-media { order: -1; }
  .fp-bleed-over { left: 4%; bottom: -5%; }
  .fp-bleed--left .fp-bleed-over { left: auto; right: 4%; }
  .fp-bleed--right .fp-bleed-media .fp-seal { left: 12px; }
  .fp-bleed--right .fp-bleed-text { padding-right: clamp(1.25rem, 4vw, 3rem); }
  .fp-bleed--left .fp-bleed-text { padding-left: clamp(1.25rem, 4vw, 3rem); }
  .fp-bleed-main img { height: min(56vh, 520px); }

  .fp-secnum { font-size: clamp(4rem, 10vw, 7rem); }
}

@media (max-width: 820px) {
  :root { --fp-header-h: 64px; }

  .fp-menu-btn { display: block; }

  /* ロゴはヘッダー内に収まるサイズへ */
  .fp-header-logo { gap: .7rem; }
  .fp-header-logo img { width: 58px; margin-top: -3px; }
  .fp-header-wordmark { font-size: 1rem; }

  .fp-nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding-right: clamp(1.75rem, 8vw, 3rem);
    padding-bottom: clamp(4rem, 10vh, 5rem);
    gap: 1.05rem;
    background: rgba(8, 8, 8, .97);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }

  .fp-nav.is-open { opacity: 1; visibility: visible; }

  .fp-nav > a { font-size: 1.3rem; }
  .fp-nav-store {
    height: auto;
    margin-top: 1rem;
    padding: .7em 1.4em;
    font-size: 1.05rem;
  }

  .fp-rotlabel, .fp-crop { display: none; }

  /* KV: 石段背景の上に、写真を上半分へ大きくブリード */
  .fp-kv { min-height: 100svh; align-items: flex-end; }

  .fp-kv-photo {
    width: 100%;
    height: 88vh;
    height: 88svh;
    /* 固定ヘッダーの下から動画が始まるように */
    top: var(--fp-header-h);
    bottom: auto;
    /* svhの端数で下端に背景が透けて線になるのを黒でカバー */
    box-shadow: 0 2px 0 var(--fp-black);
  }

  .fp-kv-photo img { object-position: 50% 8%; }

  .fp-kv-photo::before {
    /* テキストが重なる下部1/3を濃いめに落とす */
    background:
      linear-gradient(to bottom, rgba(10, 10, 10, .45) 0%, rgba(10, 10, 10, 0) 26%, rgba(10, 10, 10, .3) 58%, rgba(10, 10, 10, .82) 82%, var(--fp-black) 96%);
  }

  .fp-kv-photocap { display: none; }

  .fp-kv-ghost {
    left: auto;
    right: -8%;
    top: 44%;
    width: 62vw;
    opacity: .1;
  }

  .fp-kv-content {
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-top: 0;
    padding-bottom: 6vh;
    /* テキストは動画下部1/3に重ねてファーストビュー内に見せる。溢れる分はセクションが伸びる */
    margin-top: calc(58vh + var(--fp-header-h));
    margin-top: calc(58svh + var(--fp-header-h));
  }

  .fp-kv-title-en { font-size: clamp(2.6rem, 12.4vw, 3.6rem); }

  .fp-kv-title-jp { font-size: clamp(1.05rem, 4.6vw, 1.3rem); }

  .fp-kv-issue { margin-bottom: 1.2em; }

  .fp-kv-actions .fp-btn { width: 100%; }

  .fp-kv-barcode { display: none; }

  .fp-scroll-cue { display: none; }

  .fp-band { padding-block: 1rem; }
  .fp-band-track { font-size: 1.3rem; letter-spacing: .1em; }

  /* スマホは商品を1カラムで大きく縦積み */
  .fp-catalog { grid-template-columns: 1fr; gap: 1.8rem; }
  .fp-products-foot {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    text-align: right;
    gap: 1rem;
  }
  .fp-products-foot p {
    flex: none;
    width: 100%;
    font-size: 1rem;
    line-height: 1.8;
  }
  .fp-products-foot .fp-btn {
    flex: none;
    max-width: 100%;
  }

  .fp-look--expanded { gap: .9rem; }
  .fp-look-column { gap: .9rem; }
  .fp-look-column--offset { padding-top: clamp(1.5rem, 8vw, 2.5rem); }
  .fp-look--expanded .fp-look-item img { height: min(52vh, 460px); }
  /* キャプションは左右列の中央に小さく重ねる */
  .fp-look-caption {
    left: calc(50% - .95em);
    top: clamp(7.5rem, 38vw, 10rem);
    font-size: .78rem;
    letter-spacing: .3em;
    padding: .8em .45em;
    border-left-width: 2px;
  }

  .fp-kings-grid { grid-template-columns: 1fr; }
  .fp-king { padding: 1.2rem .6rem; }
  .fp-king-icon { width: 84px; height: 84px; }

  .fp-karasu { min-height: clamp(440px, 112vw, 620px); }
  .fp-karasu::before {
    background: linear-gradient(90deg, rgba(5, 5, 5, .54), rgba(5, 5, 5, .2) 58%, rgba(5, 5, 5, .3));
  }
  .fp-karasu-wrap {
    width: clamp(112%, calc(87% + 12.8rem), 128%);
    height: auto;
    opacity: .9;
  }
  .fp-karasu-img {
    width: 100%;
    height: 100%;
  }
  .fp-karasu-inner { padding-bottom: 2.4rem; }
  .fp-karasu-en { font-size: .9rem; letter-spacing: .2em; }
  .fp-karasu-motifs { font-size: .9rem; letter-spacing: .16em; }
  .fp-karasu-copy {
    max-width: none;
    font-size: clamp(1.55rem, 7.8vw, 2.7rem);
    letter-spacing: .03em;
    white-space: nowrap;
  }

  .fp-totop { width: 54px; height: 54px; font-size: .7rem; right: 18px; bottom: calc(20px + env(safe-area-inset-bottom)); }

  .fp-contact { min-height: 64vh; }

  .fp-contact-actions .fp-btn { width: 100%; }

  .fp-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) and (max-height: 640px) {
  .fp-nav {
    padding-bottom: 1.5rem;
    gap: .8rem;
  }

  .fp-nav-store { margin-top: .5rem; }
}

/* ==========================================================================
   下層ページ共通（PRODUCTS / LOOKBOOK / ABOUT / CONTACT）
   ========================================================================== */

/* 下層は全面の森テクスチャを弱めて視認性を確保（トップはセクション背景で制御済み）。
   ヒーロー画像や刺繍写真は各要素側で表示するため、mainに近黒のスクリムを敷く */
body.fp-sub #fp-main { background: rgba(9, 9, 9, .88); }

/* --- ページヒーロー（固定ヘッダーの下から始める） --- */
.fp-page-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--fp-header-h) + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--fp-line);
}

.fp-page-hero--tall { padding-bottom: clamp(2rem, 4vw, 3rem); }

.fp-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
  filter: grayscale(.15) contrast(1.05);
}

.fp-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, .5) 0%, rgba(10, 10, 10, .78) 100%);
}

/* 見出し右側の余白に、ロゴを薄く大きく透かしとして表示 */
.fp-page-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  /* コンテナ（最大1520px）の右端に合わせる。ワイド画面でも画面端に貼り付かない */
  right: calc((100% - min(1520px, 100%)) / 2);
  transform: translateY(-50%);
  width: min(46vw, 560px);
  height: 150%;
  background: url("../images/logo.webp") right center / contain no-repeat;
  opacity: .06;
  pointer-events: none;
}

.fp-page-hero > .fp-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: max-content minmax(340px, 1fr);
  align-items: start;
  column-gap: clamp(1.5rem, 3vw, 3rem);
}

.fp-page-hero-en {
  grid-column: 1 / -1;
  font-family: var(--fp-mono);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fp-kinari);
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 0 0 1.1em;
}

.fp-page-hero-en::after {
  content: "";
  width: 64px;
  height: 2px;
  background: var(--fp-grad-red);
}

.fp-page-hero-title {
  grid-column: 1;
  font-family: var(--fp-mincho);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.22;
  letter-spacing: .05em;
  margin: 0;
  white-space: nowrap;
  word-break: auto-phrase;
  text-wrap: balance;
}

.fp-page-hero-sub {
  grid-column: 2;
  align-self: start;
  font-size: 1.04rem;
  line-height: 2;
  color: var(--fp-soft);
  margin: .15em 0 0;
  word-break: auto-phrase;
  text-wrap: pretty;
}

/* 大見出しの直後は、次のコンテンツまで間延びさせない */
body.fp-sub .fp-page-hero + .fp-section {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.fp-section--narrow { padding-block: clamp(3.5rem, 7vw, 6.5rem); }

.fp-sechead--center { text-align: center; }
.fp-sechead--center .fp-label { justify-content: center; }

.fp-inline-cta { margin-top: 1.6rem; }

/* --- PRODUCTS 一覧 --- */
.fp-plist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.fp-pcard-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.fp-pcard-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--fp-surface);
}

.fp-pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.fp-pcard-link:hover .fp-pcard-media img { transform: scale(1.05); }

.fp-pcard-num {
  position: absolute;
  top: .55rem;
  left: .7rem;
  z-index: 2;
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: .8rem;
  color: var(--fp-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .8);
}

.fp-pcard-body {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-top: 1rem;
}

.fp-pcard-name {
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  margin: 0;
  position: relative;
}

.fp-pcard-link:hover .fp-pcard-name { color: var(--fp-kinari); }

.fp-pcard-price {
  font-family: var(--fp-mono);
  color: var(--fp-kinari);
  margin: 0;
  white-space: nowrap;
}

/* --- PRODUCT 詳細 --- */
.fp-product-detail {
  padding-top: calc(var(--fp-header-h) + clamp(2rem, 5vw, 4rem));
  overflow: hidden;
}

.fp-product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
  font-family: var(--fp-mono);
  font-size: .9rem;
  letter-spacing: .08em;
  color: var(--fp-soft);
}

.fp-product-breadcrumb a {
  color: var(--fp-kinari);
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 207, 184, .5);
}

.fp-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.fp-product-gallery {
  min-width: 0;
}

.fp-product-media {
  position: relative;
  margin: 0;
  min-width: 0;
  background: var(--fp-surface);
}

.fp-product-media::before {
  content: "";
  position: absolute;
  inset: -13px 13px 13px -13px;
  border-top: 1px solid rgba(255, 255, 255, .26);
  border-left: 1px solid rgba(255, 255, 255, .26);
  pointer-events: none;
}

.fp-product-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity .28s ease;
}

.fp-product-media img.is-swapping {
  opacity: 0;
}

/* 商品画像サムネイル（クリックでメイン画像を切り替え） */
.fp-product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
  margin-top: 1.6rem;
}

.fp-product-thumb {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  opacity: .55;
  transition: opacity .25s ease;
}

.fp-product-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--fp-white);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.fp-product-thumb.is-active,
.fp-product-thumb:hover,
.fp-product-thumb:focus-visible {
  opacity: 1;
}

.fp-product-thumb.is-active::after {
  transform: scaleX(1);
}

.fp-product-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.fp-product-media-label {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  padding: .55rem .75rem;
  background: rgba(8, 8, 8, .86);
  font-family: var(--fp-mono);
  font-size: .78rem;
  letter-spacing: .16em;
  color: var(--fp-white);
}

.fp-product-info {
  position: relative;
  padding: 0 0 1rem;
}

.fp-product-title {
  margin: .55rem 0 .45rem;
  font-family: var(--fp-mono);
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  overflow-wrap: anywhere;
}

.fp-product-price {
  margin: 0 0 clamp(1.7rem, 3vw, 2.5rem);
  font-family: var(--fp-mono);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--fp-kinari);
}

.fp-product-price small {
  margin-left: .65rem;
  font-family: var(--fp-gothic);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--fp-soft);
}

.fp-product-lead {
  margin: 0 0 1.25rem;
  font-family: var(--fp-mincho);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: .045em;
  word-break: auto-phrase;
  text-wrap: balance;
}

.fp-product-lead > span { white-space: nowrap; }
.fp-nowrap { white-space: nowrap; }

.fp-product-copy {
  color: var(--fp-soft);
  font-size: 1rem;
  line-height: 2;
  word-break: auto-phrase;
  text-wrap: pretty;
}

.fp-product-copy > :first-child { margin-top: 0; }
.fp-product-copy > :last-child { margin-bottom: 0; }

.fp-product-spec {
  margin: clamp(1.8rem, 3vw, 2.5rem) 0 0;
  border-top: 1px solid var(--fp-line);
}

.fp-product-spec > div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--fp-line);
}

.fp-product-spec dt,
.fp-product-spec dd {
  margin: 0;
  font-size: .9rem;
}

.fp-product-spec dt {
  font-family: var(--fp-mono);
  letter-spacing: .14em;
  color: var(--fp-kinari);
}

.fp-product-spec dd { color: var(--fp-soft); }

.fp-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: .7rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.fp-product-actions .fp-btn { justify-content: center; }

.fp-product-note {
  margin: .9rem 0 0;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--fp-soft);
}

.fp-product-story {
  position: relative;
  padding-block: clamp(4rem, 9vw, 8rem);
  border-top: 1px solid var(--fp-line);
  background:
    linear-gradient(100deg, rgba(9, 9, 9, .96) 30%, rgba(68, 4, 9, .78) 100%),
    url("../images/bg-forest.webp") center 58% / cover no-repeat;
}

.fp-product-story-inner {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 8rem);
}

.fp-product-story-mark {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-product-story-mark img {
  width: clamp(260px, 38vw, 480px);
  height: auto;
  opacity: 1;
  filter: none;
}

.fp-product-story-copy { max-width: 710px; }
.fp-product-story-copy .fp-h2 { margin-bottom: .75em; }

.fp-product-back {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(2.4rem, 5vw, 4.5rem);
  padding-top: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid var(--fp-line);
}

/* --- 商品詳細: ほかの商品 --- */
.fp-related { border-top: 1px solid var(--fp-line); }

/* 1〜3点のいずれでも間延びしないよう、カード幅を上限付きで中央に寄せる */
.fp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  justify-content: center;
  gap: clamp(1.2rem, 2.6vw, 2.2rem);
}

/* --- LOOKBOOK ギャラリー --- */
.fp-lookgrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(220px, 26vw, 320px);
  grid-auto-flow: dense;
  gap: clamp(.8rem, 1.8vw, 1.4rem);
}

.fp-lookshot {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  margin: 0;
  background: var(--fp-surface);
}

.fp-lookshot.is-tall { grid-row: span 2; }
.fp-lookshot.is-wide { grid-column: span 4; }

.fp-lookshot-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.fp-lookshot-trigger:focus-visible {
  outline: 2px solid var(--fp-red-bright);
  outline-offset: -4px;
}

.fp-lookshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}

.fp-lookshot-trigger:hover img,
.fp-lookshot-trigger:focus-visible img {
  transform: scale(1.025);
  filter: brightness(.9);
}

.fp-lookshot-cap {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  font-family: var(--fp-mono);
  max-width: calc(100% - .6rem);
  font-size: .9rem;
  line-height: 1.45;
  letter-spacing: .12em;
  color: var(--fp-white);
  background: rgba(10, 10, 10, .62);
  padding: .5em .9em;
  pointer-events: none;
}

/* --- LOOKBOOK 拡大モーダル --- */
body.fp-lookbook-open { overflow: hidden; }
body.fp-lookbook-open #fp-main { z-index: 1000; }

.fp-lookbook-modal[hidden] { display: none; }

.fp-lookbook-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 0;
}

.fp-lookbook-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.fp-lookbook-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 0;
}

.fp-lookbook-modal-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: .5rem clamp(4.25rem, 6vw, 6rem);
}

.fp-lookbook-modal-media {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
}

.fp-lookbook-modal-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 1rem);
  max-height: calc(100svh - 1rem);
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .65);
}

.fp-lookbook-modal-meta {
  position: absolute;
  z-index: 2;
  left: clamp(4.25rem, 6vw, 6rem);
  right: clamp(4.25rem, 6vw, 6rem);
  bottom: .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--fp-white);
  font-family: var(--fp-mono);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.5;
  text-shadow: 0 2px 10px #000, 0 2px 20px #000;
  pointer-events: none;
}

#fp-lookbook-modal-counter { color: var(--fp-soft); }

.fp-lookbook-modal-close,
.fp-lookbook-modal-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(242, 239, 232, .48);
  border-radius: var(--fp-btn-radius);
  background: rgba(10, 10, 10, .72);
  color: var(--fp-white);
  font-family: var(--fp-gothic);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.fp-lookbook-modal-close:hover,
.fp-lookbook-modal-nav:hover {
  border-color: var(--fp-white);
  background: var(--fp-grad-red);
}

.fp-lookbook-modal-close {
  top: .75rem;
  right: .75rem;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  line-height: 1;
}

.fp-lookbook-modal-nav {
  top: 50%;
  width: 54px;
  height: 58px;
  font-size: 1.45rem;
  transform: translateY(-50%);
}

.fp-lookbook-modal-nav:hover { transform: translateY(-50%) scale(1.04); }
.fp-lookbook-modal-prev { left: .75rem; }
.fp-lookbook-modal-next { right: .75rem; }

@media (prefers-reduced-motion: reduce) {
  .fp-lookshot img,
  .fp-lookbook-modal-close,
  .fp-lookbook-modal-nav { transition: none; }
}

/* --- ABOUT: 八人の王子 詳細リスト --- */
.fp-kings-lead {
  max-width: 46em;
  margin-inline: auto;
  color: var(--fp-soft);
}

.fp-kings-detail {
  list-style: none;
  margin: clamp(2.4rem, 5vw, 3.8rem) auto 0;
  padding: 0;
  max-width: 900px;
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}

.fp-kingrow {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: rgba(20, 20, 20, .5);
  border: 1px solid var(--fp-line);
}

.fp-kingrow-num {
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  color: var(--fp-red-bright);
  line-height: 1;
}

.fp-kingrow-icon .fp-king-icon { width: 62px; height: 62px; }

.fp-kingrow-text h3 {
  font-family: var(--fp-mincho);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 .4em;
}

.fp-kingrow-text p {
  margin: 0;
  color: var(--fp-soft);
  font-size: 1rem;
  line-height: 1.9;
}

/* --- ABOUT: 地名・街・暮らしを展開する誌面ブロック --- */
.fp-about-section {
  padding-block: clamp(3rem, 5.5vw, 5.5rem);
}

.fp-about-origin { background: rgba(13, 13, 13, .72); }

.fp-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: clamp(2.2rem, 5vw, 5.5rem);
  align-items: center;
}

.fp-about-story-text .fp-body + .fp-body,
.fp-about-card .fp-body + .fp-body {
  margin-top: 1.25em;
}

.fp-about-story-media,
.fp-about-city {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.fp-about-story-media img {
  display: block;
  width: 100%;
  height: clamp(480px, 50vw, 720px);
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(1.06) brightness(.84);
}

.fp-about-story-media::after,
.fp-about-city::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 5, 5, .78) 100%);
}

.fp-about-story-media figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  font-family: var(--fp-mono);
  font-size: .76rem;
  letter-spacing: .16em;
  color: var(--fp-white);
}

.fp-about-note {
  margin: 1.8rem 0 0;
  padding-left: 1em;
  border-left: 2px solid var(--fp-red-bright);
  color: #cfc8bc;
  font-size: .9rem;
  line-height: 1.8;
}

.fp-about-takao {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(132, 15, 24, .18), transparent 34%),
    linear-gradient(135deg, rgba(17, 17, 17, .98), rgba(6, 6, 6, .98));
}

.fp-about-takao::before {
  content: "MT. TAKAO";
  position: absolute;
  top: .06em;
  right: -.03em;
  color: rgba(255, 255, 255, .025);
  font-family: var(--fp-mono);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.fp-about-takao-head {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--fp-line);
}

.fp-about-takao-head .fp-h2 { margin-bottom: 0; }

.fp-about-takao-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.fp-about-takao-copy {
  max-width: 760px;
}

.fp-about-takao-copy .fp-body { max-width: none; }

.fp-about-takao-copy .fp-body + .fp-body {
  margin-top: 1.4em;
}

.fp-about-takao-intro {
  color: var(--fp-kinari);
  font-family: var(--fp-mincho);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 2;
}

.fp-about-takao-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.fp-about-takao-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.fp-about-textile {
  background:
    linear-gradient(90deg, rgba(79, 8, 14, .18), transparent 42%),
    rgba(8, 8, 8, .5);
}

.fp-about-widecopy { max-width: 1180px; }

.fp-about-widecopy .fp-h2 {
  max-width: 18em;
  text-wrap: balance;
}

.fp-about-copycols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(1.6rem, 3vw, 2.5rem);
}

.fp-about-copycols .fp-body { margin: 0; }

.fp-about-city {
  width: 100%;
  height: clamp(460px, 58vw, 780px);
  background: #111;
}

.fp-about-city--home {
  margin-bottom: clamp(5rem, 10vw, 10rem);
}

.fp-about-city img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 全幅スライドショー: 3枚を重ねてフェードで切り替える */
.fp-about-city-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.fp-about-city-slide.is-active { opacity: 1; }

/* 薬王院参道は下端を基準にして、人物の足元と参道を広く見せる */
.fp-about-city-slide:nth-of-type(2) {
  object-position: 54% bottom;
}

@media (prefers-reduced-motion: reduce) {
  .fp-about-city-slide { transition: none; }
}

.fp-about-city::after {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, .18) 0%, transparent 48%, rgba(5, 5, 5, .82) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, .35), transparent 42%);
}

.fp-about-city figcaption {
  position: absolute;
  z-index: 2;
  left: max(clamp(1.25rem, 4vw, 3rem), calc((100vw - 1280px) / 2));
  bottom: clamp(1.4rem, 4vw, 3.5rem);
  max-width: 24em;
  font-family: var(--fp-mincho);
  font-size: clamp(1.25rem, 2.8vw, 2.2rem);
  line-height: 1.55;
  color: var(--fp-white);
  text-shadow: 0 3px 24px rgba(0, 0, 0, .9);
  word-break: auto-phrase;
  text-wrap: balance;
}

.fp-about-city figcaption span {
  display: block;
  margin-bottom: .7em;
  font-family: var(--fp-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--fp-kinari);
}

.fp-about-life { background: rgba(13, 13, 13, .64); }

.fp-about-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.8vw, 2.2rem);
}

.fp-about-duo--single {
  grid-template-columns: minmax(0, 1fr);
}

.fp-about-card {
  padding: clamp(1.6rem, 4vw, 3.6rem);
  border: 1px solid var(--fp-line);
  background: rgba(20, 20, 20, .7);
}

.fp-about-card .fp-h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }

.fp-about-card--wide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 3vw, 3rem);
  align-items: start;
  border: 0;
  background: transparent;
}

.fp-about-card--wide .fp-h2 {
  margin-bottom: 0;
}

.fp-about-card-copy .fp-body {
  max-width: none;
}

.fp-about-closing {
  max-width: 820px;
  margin: clamp(1.3rem, 3vw, 2.4rem) auto 0;
  padding: clamp(.8rem, 2vw, 1.5rem);
  text-align: center;
}

.fp-about-closing .fp-label { justify-content: center; }
.fp-about-closing .fp-body { margin-inline: auto; }

.fp-products-foot.fp-about-cta {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.fp-products-foot.fp-about-cta p {
  flex: 0 1 auto;
}

.fp-products-foot.fp-about-cta .fp-btn {
  width: min(100%, 320px);
  min-height: 72px;
  padding: 1.1em 2.3em;
  font-size: 1.05rem;
}

.fp-about-sources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem 1.2rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--fp-line);
  color: #bdb7ac;
  font-size: .9rem;
  line-height: 1.7;
  text-align: center;
}

.fp-about-sources p {
  flex-basis: 100%;
  margin: 0;
}

.fp-about-sources a {
  color: var(--fp-kinari);
  text-underline-offset: .25em;
}

/* --- 404 --- */
.fp-404 { border-bottom: 0; }

.fp-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* --- オンラインストア（準備中）のお知らせ --- */
/* 枠線・ベタ面で囲わず、背景に溶け込ませる */
.fp-store-notice {
  width: min(960px, 100%);
  margin-inline: auto;
  padding: clamp(2.2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.fp-store-notice .fp-label { justify-content: center; }

.fp-store-notice-body {
  color: var(--fp-soft);
  font-size: 1.02rem;
  line-height: 2;
}

.fp-store-notice-body p {
  margin: 0 0 1.2em;
  word-break: auto-phrase;
  text-wrap: pretty;
}

.fp-store-notice-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

/* --- プライバシーポリシー等の規約系本文 --- */
.fp-legal {
  width: min(860px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  color: var(--fp-soft);
  font-size: 1rem;
  line-height: 2;
}

.fp-legal h2 {
  font-family: var(--fp-mincho);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: .05em;
  color: var(--fp-white);
  margin: 2.2em 0 .7em;
  padding-bottom: .45em;
  border-bottom: 1px solid var(--fp-line);
}

.fp-legal p { margin: 0 0 1.2em; }

.fp-legal a { color: var(--fp-kinari); text-underline-offset: .25em; }

/* --- ABOUT: FAQ --- */
.fp-faq-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.fp-faq-item {
  border: 1px solid var(--fp-line);
  background: rgba(20, 20, 20, .5);
  padding: clamp(1.3rem, 2.6vw, 1.8rem) clamp(1.3rem, 3vw, 2rem);
}

.fp-faq-q,
.fp-faq-a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
  margin: 0;
}

.fp-faq-q {
  font-family: var(--fp-gothic);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--fp-white);
}

.fp-faq-a {
  margin-top: .8em;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--fp-soft);
}

.fp-faq-q > span,
.fp-faq-a > span {
  font-family: var(--fp-mono);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
}

.fp-faq-q > span { color: var(--fp-red-bright); }
.fp-faq-a > span { color: var(--fp-kinari); }

/* ==========================================================================
   お問い合わせフォーム（Snow Monkey Forms を雑誌風ダークテーマに）
   ========================================================================== */

.fp-formwrap {
  width: min(780px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.fp-form-lead {
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fp-soft);
  font-size: 1.05rem;
  line-height: 2;
}

.fp-form-note {
  margin-top: 2.2rem;
  text-align: center;
  color: var(--fp-soft);
  font-size: .95rem;
}

.fp-form-note a { color: var(--fp-red-bright); text-underline-offset: .2em; }

.fp-contact-complete-note {
  margin-top: 1.5rem;
  color: var(--fp-soft);
  font-size: .92rem;
}

.fp-contact-complete-home {
  margin-top: 2rem;
  text-align: center;
}

/* 必須・任意チップ */
.eo-req,
.eo-any {
  font-family: var(--fp-mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .3em .6em;
  line-height: 1;
  border-radius: 2px;
}

.eo-req { background: var(--fp-grad-red); color: #fff; }
.eo-any { background: #2a2a2a; color: var(--fp-soft); }

/* 行レイアウト */
.smf-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: .8rem 1.6rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--fp-line);
}

.smf-item:first-child { padding-top: 0; }

.smf-item__col--label { padding-top: .55em; }

.smf-item__label__text {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-family: var(--fp-gothic);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--fp-white);
}

.smf-item__description { color: var(--fp-soft); font-size: .85rem; margin-top: .3em; }

/* 入力欄（要素セレクタで確実に当てる） */
.fp-form input[type="text"],
.fp-form input[type="email"],
.fp-form input[type="tel"],
.fp-form input[type="url"],
.fp-form input[type="number"],
.fp-form textarea,
.fp-form select {
  width: 100%;
  background: #f0ede6;
  border: 1px solid #c7c0b4;
  border-radius: 0;
  color: #151515;
  font-family: var(--fp-gothic);
  font-size: 1rem;
  line-height: 1.7;
  padding: .8em 1em;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.fp-form textarea { min-height: 9em; resize: vertical; }

/* SnowMonkey側CSS（.smf-form .smf-*__control=白背景, 詳細度0,2,0）を上書き。
   text/email/telは[type]付きセレクタで既に勝つが、textarea/selectはSMFクラスを明示して上書きする */
.fp-form textarea.smf-textarea-control__control,
.fp-form select.smf-select-control__control,
.fp-form input.smf-text-control__control {
  background: #f0ede6;
  color: #151515;
  border: 1px solid #c7c0b4;
}

.fp-form input::placeholder,
.fp-form textarea::placeholder {
  color: #676158;
  opacity: 1;
}

.fp-form input:focus,
.fp-form textarea:focus,
.fp-form select:focus {
  outline: none;
  border-color: #8f1720;
  box-shadow: 0 0 0 3px rgba(160, 20, 32, .22);
}

/* ラジオボタン（縦並び） */
.smf-radio-buttons-control__control,
.fp-form .smf-radio-buttons-control {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.fp-form .smf-label { margin: 0; }

.fp-form .smf-radio-button-control,
.fp-form .smf-form .smf-radio-button-control {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  cursor: pointer;
  font-size: 1rem;
}

.fp-form input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #555;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  transition: border-color .2s ease;
}

.fp-form input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  background: var(--fp-grad-red);
  transition: transform .15s ease;
}

.fp-form input[type="radio"]:checked { border-color: var(--fp-red-bright); }
.fp-form input[type="radio"]:checked::before { transform: scale(1); }

/* Snow Monkey Forms の青い checked 背景・疑似要素の配置を完全に上書きする */
.fp-form input.smf-radio-button-control__control[type="radio"] {
  margin: 0;
  position: relative;
  background: transparent;
  box-shadow: none;
}

.fp-form input.smf-radio-button-control__control[type="radio"]::before {
  display: block;
  position: static;
  inset: auto;
  margin: 0 !important;
  visibility: visible;
  background: var(--fp-red-bright);
}

.fp-form input.smf-radio-button-control__control[type="radio"]:checked {
  background: transparent;
  border-color: var(--fp-red-bright);
  box-shadow: none;
}

.fp-form input.smf-radio-button-control__control[type="radio"]:focus {
  outline: none;
  box-shadow: none;
}

.fp-form input.smf-radio-button-control__control[type="radio"]:focus-visible {
  outline: 2px solid var(--fp-white);
  outline-offset: 3px;
}

/* Cloudflare Turnstile */
.fp-form .snow-monkey-form {
  display: flex !important;
  flex-direction: column !important;
}

.fp-form .snow-monkey-forms-turnstile {
  order: 1 !important;
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
}

.fp-form .snow-monkey-forms-turnstile > div {
  margin-inline: auto !important;
}

.fp-form .snow-monkey-form[data-screen="confirm"] .snow-monkey-forms-turnstile,
.fp-form .snow-monkey-form[data-screen="complete"] .snow-monkey-forms-turnstile,
.fp-form .snow-monkey-form[data-screen="systemerror"] .snow-monkey-forms-turnstile {
  display: none !important;
}

/* ボタン（送信・確認・戻る） */
.fp-form .smf-action {
  order: 2 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.2rem;
}

.fp-form .smf-action .smf-button-control__control,
.fp-form .smf-action button,
.fp-form .smf-action input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fp-gothic);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .08em;
  padding: 1em 2.6em;
  appearance: none;
  border: 0;
  border-bottom: 0;
  border-radius: var(--fp-btn-radius);
  color: #fff;
  background: linear-gradient(
    180deg,
    var(--fp-cta-red-top) 0%,
    var(--fp-cta-red-mid) 50%,
    var(--fp-cta-red-bottom) 100%
  );
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter .25s ease, transform .25s ease;
}

.fp-form .smf-action .smf-button-control__control:hover,
.fp-form .smf-action button:hover,
.fp-form .smf-action input[type="submit"]:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}

/* 複数ボタン時（確認画面）の先頭＝「修正する（戻る）」はゴースト調に */
.fp-form .smf-action .smf-button-control:first-child:not(:last-child) .smf-button-control__control {
  background: transparent;
  border-color: rgba(242, 239, 232, .45);
  color: var(--fp-white);
}

/* バリデーション・エラー */
.fp-form .smf-item__controls .error,
.fp-form .smf-error-messages,
.fp-form [role="alert"] {
  color: #ff6a72;
  font-size: .9rem;
  margin-top: .5em;
}

.smf-item.smf-item--invalid .smf-item__label__text { color: #ff6a72; }

/* 確認画面の表示値 */
.fp-form .smf-item__col--controls .smf-text,
.fp-form .smf-item .smf-value { color: var(--fp-white); }

/* ==========================================================================
   下層ページ レスポンシブ
   ========================================================================== */
@media (max-width: 1160px) {
  .fp-about-card--wide {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

@media (max-width: 1024px) {
  .fp-page-hero > .fp-container { grid-template-columns: 1fr; }
  .fp-page-hero-title,
  .fp-page-hero-sub { grid-column: 1; }
  .fp-page-hero-title { margin-bottom: .5em; white-space: normal; }
  .fp-page-hero-sub { margin-bottom: 0; }
}

@media (max-width: 900px) {
  .fp-plist { grid-template-columns: repeat(2, 1fr); }

  .fp-product-hero {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .fp-product-gallery { max-width: 720px; }

  .fp-product-story-inner { grid-template-columns: 1fr; }
  .fp-product-story-mark { justify-content: flex-start; }
  .fp-product-story-mark img { width: clamp(220px, 64vw, 360px); }

  .fp-about-story { grid-template-columns: 1fr; }

  .fp-about-story-media { order: -1; }
  .fp-about-story-media img { height: clamp(420px, 78vw, 620px); }
}

@media (max-width: 820px) {
  .fp-page-hero { padding-top: calc(var(--fp-header-h) + 2.4rem); }
  /* スマホは透かしロゴを小さめ・下寄せにして本文の可読性を確保 */
  .fp-page-hero::after { width: 68vw; height: 70%; top: auto; bottom: -6%; right: -12%; transform: none; opacity: .05; }

  .fp-lookgrid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(200px, 42vw, 300px); }
  .fp-lookshot { grid-column: span 1; }
  .fp-lookshot.is-wide { grid-column: span 2; }

  .fp-lookbook-modal-dialog {
    width: 100%;
    height: 100vh;
    height: 100svh;
  }
  .fp-lookbook-modal-stage { padding: .25rem; }
  .fp-lookbook-modal-media img {
    max-height: calc(100vh - .5rem);
    max-height: calc(100svh - .5rem);
  }
  .fp-lookbook-modal-meta { left: .75rem; right: .75rem; bottom: .6rem; }
  .fp-lookbook-modal-close { top: .15rem; right: .15rem; width: 42px; height: 42px; }
  .fp-lookbook-modal-nav { width: 44px; height: 54px; background: rgba(10, 10, 10, .82); }
  .fp-lookbook-modal-prev { left: .15rem; }
  .fp-lookbook-modal-next { right: .15rem; }

  .fp-about-copycols,
  .fp-about-duo,
  .fp-about-takao-layout { grid-template-columns: 1fr; }

  .fp-about-takao-layout { gap: 2rem; }
  .fp-about-takao-media {
    aspect-ratio: 3 / 2;
  }
  .fp-about-takao-media img { object-position: center; }

  .fp-about-section { padding-block: clamp(2.4rem, 10vw, 3.8rem); }
  .fp-about-widecopy .fp-h2 { max-width: none; }
  .fp-about-card .fp-h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    letter-spacing: .03em;
    text-wrap: balance;
  }
  .fp-about-card--wide { padding-inline: 0; }
  .fp-bleed--left .fp-bleed-media .fp-seal--tengu {
    right: clamp(2.5rem, 12vw, 3.5rem);
  }
  .fp-about-city { height: clamp(420px, 112vw, 620px); }
  .fp-about-city img { object-position: 54% center; }
  .fp-about-sources { flex-direction: column; align-items: center; }

  .fp-kingrow { grid-template-columns: auto 1fr; row-gap: .4rem; }
  .fp-kingrow-icon { grid-row: 1 / 3; }

  /* フォーム: ラベルと入力を縦積み */
  .smf-item { grid-template-columns: 1fr; gap: .6rem; padding: 1.2rem 0; }
  .smf-item__col--label { padding-top: 0; }
}

@media (max-width: 480px) {
  .fp-plist { grid-template-columns: 1fr; }
  .fp-product-detail { padding-top: calc(var(--fp-header-h) + 1.7rem); }
  .fp-product-title { font-size: clamp(2rem, 11vw, 3rem); }
  .fp-product-spec > div { grid-template-columns: 1fr; gap: .3rem; }
  .fp-product-actions { flex-direction: column; }
  .fp-product-actions .fp-btn { width: 100%; }
  .fp-product-back { justify-content: stretch; }
  .fp-product-back .fp-btn { width: 100%; }
  .fp-lookbook-modal-meta { font-size: .82rem; }
}
