/* ============================================
   ご蜂美 -GOHŌBI- / style.css
   design: 88honey.jp を参考にした明朝・和の上品設計
   ============================================ */

:root {
  --c-bg: #ffffff;
  --c-cream: #f5f1e8;
  --c-beige: #e8e3d5;
  --c-text: #2a241c;
  --c-sub:  #6b5f4f;
  --c-gold: #b49531;
  --c-gold-dk: #8a7024;
  --c-line: #d9cfb8;

  --f-serif: "Shippori Mincho B1", "Shippori Mincho", "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
  --f-en:    "Cormorant Garamond", "Shippori Mincho B1", serif;

  --pad-x: clamp(24px, 6vw, 96px);
  --pad-y: clamp(80px, 12vw, 180px);
  --max:   1420px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-serif);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-size: 16px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .6s ease, color .6s ease; }
a:hover { opacity: .65; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* --- utility --- */
.eyebrow {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-block;
  margin-bottom: 1.4em;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--c-gold);
  vertical-align: middle;
  margin-right: 1em;
  transform: translateY(-3px);
}
.heading-jp {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.6;
  margin-bottom: 1.2em;
}
.lead {
  font-size: 16px;
  line-height: 2.2;
  color: var(--c-sub);
  max-width: 34em;
}
.btn {
  display: inline-block;
  padding: 18px 46px;
  border: 1px solid var(--c-gold);
  color: var(--c-gold-dk);
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: color .6s ease;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--c-gold);
  transform: translateX(-101%);
  transition: transform .7s cubic-bezier(.77,0,.18,1);
  z-index: -1;
}
.btn:hover { color: #fff; opacity: 1; }
.btn:hover::before { transform: translateX(0); }

/* --- header (center stacked / 88honey 寄せ) --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--pad-x) 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background .5s ease, padding .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--c-line);
  padding-top: 12px; padding-bottom: 8px;
}
.header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: var(--max);
}
.header.scrolled .header__inner { gap: 8px; }
.header .logo {
  font-family: var(--f-serif);
  color: #fff;
  line-height: 1.3;
  display: block;
  text-align: center;
}
.header.scrolled .logo { color: var(--c-text); }
.logo__main {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.42em;
  font-weight: 500;
  text-indent: 0.42em;
  transition: font-size .5s ease;
}
.header.scrolled .logo__main {
  font-size: clamp(18px, 1.8vw, 22px);
}
.nav { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.nav ul { list-style: none; display: flex; gap: clamp(20px, 3vw, 44px); justify-content: center; }
.nav__main a {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.22em;
  color: #fff;
  line-height: 1.6;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease, color .4s ease;
}
.nav__main a:hover { border-bottom-color: var(--c-gold); }
.nav__sub { gap: clamp(14px, 2vw, 28px); margin-top: 2px; align-items: center; }
.nav__sub a {
  display: block;
  font-family: var(--f-serif);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
}
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.22em;
}
.nav__lang-current {
  color: var(--c-gold);
  font-weight: 500;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 2px;
}
.nav__lang-sep { color: rgba(255,255,255,.55); }
.nav__lang-en {
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid transparent !important;
  cursor: pointer;
}
.nav__lang-en:hover { color: #fff; }
.header.scrolled .nav__lang-current { color: var(--c-gold); }
.header.scrolled .nav__lang-sep { color: rgba(42,36,28,.4); }
.header.scrolled .nav__lang-en { color: rgba(42,36,28,.6); }
.header.scrolled .nav__lang-en:hover { color: var(--c-text); }
.header.scrolled .nav__main a,
.header.scrolled .nav__sub a { color: var(--c-text); }
.header.scrolled .nav__sub a { border-bottom-color: var(--c-gold); }

.nav-toggle { display: none; width: 28px; height: 20px; position: absolute; right: var(--pad-x); top: 22px; }
.nav-toggle span { position: absolute; left: 0; right: 0; height: 1px; background: #fff; transition: .4s; }
.nav-toggle span:nth-child(1){ top: 0; }
.nav-toggle span:nth-child(2){ top: 50%; }
.nav-toggle span:nth-child(3){ bottom: 0; }
.header.scrolled .nav-toggle span { background: var(--c-text); }

/* --- hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: #1a1610 url("../images/hero.webp") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: saturate(1.1) contrast(1.04);
}
.hero { justify-content: flex-end; align-items: flex-start; padding-bottom: clamp(60px, 12vh, 140px); }
.hero__inner { position: relative; z-index: 2; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(20,15,8,.20) 0%, rgba(20,15,8,.10) 40%, rgba(20,15,8,.65) 100%);
}
@media (prefers-reduced-motion: reduce){
  .hero__video { display: none; }
}
.hero__inner {
  position: relative;
  text-align: left;
  padding: 0 var(--pad-x);
  max-width: 980px;
}
.hero h1 {
  font-size: clamp(28px, 4.6vw, 56px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.hero__sub {
  font-family: var(--f-en);
  font-style: italic;
  font-size: clamp(13px, 1.3vw, 17px);
  letter-spacing: 0.28em;
  color: #e8d9a8;
}

/* --- section base --- */
.section { padding: var(--pad-y) var(--pad-x); max-width: var(--max); margin: 0 auto; }
.section--cream { background: var(--c-cream); max-width: none; }
.section--cream > .inner { max-width: var(--max); margin: 0 auto; }

/* --- intro (brand statement) --- */
.intro { text-align: center; padding: var(--pad-y) var(--pad-x); }
.intro__num {
  font-family: var(--f-en);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--c-gold);
}
.intro__num::before {
  content: "";
  display: block;
  width: 1px; height: 60px;
  background: var(--c-gold);
  margin: 0 auto 24px;
}
.intro h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 2;
  margin: 40px 0 48px;
}
.intro p {
  max-width: 36em;
  margin: 0 auto;
  line-height: 2.4;
  color: var(--c-sub);
}
.intro__cta { margin-top: 56px; }

/* honey-button: ご蜂美(ほうび) はちみつへ */
.btn-honey {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6em;
  background: var(--c-gold);
  color: #fff;
  padding: 22px 56px 20px;
  font-family: var(--f-serif);
  letter-spacing: 0.18em;
  box-shadow: 0 12px 32px rgba(138,112,36,.22);
  transition: background .5s ease, transform .5s ease;
  line-height: 1.3;
}
.btn-honey:hover { background: var(--c-gold-dk); opacity: 1; transform: translateY(-2px); }
.btn-honey ruby { ruby-position: over; ruby-align: center; }
.btn-honey rt {
  font-family: var(--f-serif);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #fff;
  opacity: .85;
  font-weight: 400;
  margin-bottom: 2px;
}
.btn-honey__lead {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  letter-spacing: 0.24em;
}
.btn-honey__tail {
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: 0.18em;
  font-weight: 400;
  opacity: .92;
}

/* --- story (asymmetric two-col) --- */
.story {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
}
.story__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.story__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s ease; }
.story__img:hover img { transform: scale(1.04); }
.story__img::after {
  content: "";
  position: absolute;
  right: -20px; bottom: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--c-gold);
  z-index: -1;
  display: none;
}
.story__text { padding: 0 10px; }
.story__caption {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--c-gold);
  margin-top: 16px;
  text-align: right;
}

/* --- commitment (4 items) --- */
.commitment { background: var(--c-cream); padding: var(--pad-y) var(--pad-x); }
.commitment__header { text-align: center; margin-bottom: clamp(60px, 9vw, 140px); }
.commitment__list {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(70px, 10vw, 160px);
}
.commitment__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
}
.commitment__item:nth-child(even) { direction: rtl; }
.commitment__item:nth-child(even) > * { direction: ltr; }
.commitment__item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.commitment__num {
  font-family: var(--f-en);
  font-style: italic;
  font-size: clamp(80px, 10vw, 140px);
  color: var(--c-gold);
  line-height: 1;
  opacity: .35;
  margin-bottom: 20px;
  display: block;
}
.commitment__item h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.7;
  margin-bottom: 28px;
}
.commitment__item p {
  color: var(--c-sub);
  line-height: 2.2;
  max-width: 30em;
}

/* --- products (新レイアウト: 名前→説明→画像→サイズ→Buy) --- */
.products__header { text-align: center; margin-bottom: clamp(60px, 8vw, 120px); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 64px);
}
.product {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.product__header { margin-bottom: 18px; }
.product__en {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 10px;
}
.product__name {
  font-size: 20px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.product__desc {
  font-size: 13px;
  color: var(--c-sub);
  line-height: 1.95;
  margin-bottom: 14px;
}

/* 画像エリア: 透過商品画像のみ。装飾なし、瓶を主役に。説明と瓶の余白を詰める */
.product__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 12px;
  background: transparent;
}
.product__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0 10%;
  opacity: 0;
  transition: opacity .55s ease;
  filter: drop-shadow(0 12px 28px rgba(60, 45, 20, 0.18));
}
.product__img.is-active { opacity: 1; }

/* サイズ切替UI（C案の価格表のスタイルを継承しつつ"選択中"表現を追加） */
.product__sizes {
  list-style: none;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 6px 0;
  margin: 0 0 24px;
  display: flex;
  gap: 16px;
}
.product__sizes li {
  flex: 1;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-sub);
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  transition: color .4s ease;
}
.product__sizes li b {
  display: block;
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--c-text);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.product__sizes li::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -1px;
  width: 0; height: 2px;
  background: var(--c-gold);
  transform: translateX(-50%);
  transition: width .35s ease;
}
.product__sizes li.is-active { color: var(--c-gold-dk); }
.product__sizes li.is-active b { color: var(--c-gold-dk); }
.product__sizes li.is-active::after { width: 70%; }
.product__sizes li:hover { color: var(--c-gold-dk); }

.products__cta { text-align: center; margin-top: clamp(50px, 6vw, 90px); }

/* --- 旧price-listクラス保持（他ページ参照用） --- */
.product__prices {
  list-style: none;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 14px 0;
  margin: 0 0 24px;
  display: flex;
  gap: 16px;
}
.product__prices li {
  flex: 1;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-sub);
}
.product__prices li b {
  display: block;
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--c-text);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* --- per-product buy button (BASEウィジェット埋め込み予定地) --- */
.product__buy {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 36px;
  border: 1px solid var(--c-gold);
  color: var(--c-gold-dk);
  font-family: var(--f-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  transition: background .5s ease, color .5s ease;
}
.product__buy:hover {
  background: var(--c-gold);
  color: #fff;
  opacity: 1;
}

/* --- variant switcher (A-a / A-b 比較用。最終公開時は外す) --- */
.variant-switcher {
  position: fixed;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: rgba(42,36,28,.88);
  color: #f5f1e8;
  padding: 8px 18px;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  display: flex;
  gap: 16px;
  align-items: center;
  backdrop-filter: blur(6px);
}
.variant-switcher span { opacity: .6; }
.variant-switcher a { color: #f5f1e8; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.variant-switcher a.current { color: var(--c-gold); border-bottom-color: var(--c-gold); }

/* --- iframe products (A案-a) --- */
.products__iframes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(30px, 4vw, 64px);
}
.product-iframe {
  max-width: 320px;
  text-align: center;
  margin: 0;
}
.product-iframe__frame {
  width: 320px;
  height: 480px;
  background: var(--c-cream);
  margin: 0 auto 28px;
  overflow: hidden;
}
.product-iframe iframe {
  display: block;
  border: 0;
  width: 320px;
  height: 480px;
}
.product-iframe figcaption { padding: 0 10px; }
.iframe-note {
  text-align: center;
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--c-sub);
  line-height: 2;
}

/* --- price table --- */
.price-table {
  max-width: 720px;
  margin: clamp(70px, 9vw, 130px) auto 0;
  text-align: center;
}
.price-table__title {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--c-gold);
  margin-bottom: 36px;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
}
.price-table thead th {
  font-family: var(--f-en);
  font-style: italic;
  color: var(--c-gold);
  font-size: 13px;
  letter-spacing: 0.28em;
  font-weight: 500;
  padding: 14px 8px;
  border-bottom: 1px solid var(--c-gold);
}
.price-table tbody th {
  font-family: var(--f-serif);
  text-align: left;
  letter-spacing: 0.22em;
  font-weight: 500;
  font-size: 15px;
  padding: 22px 8px;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-line);
}
.price-table tbody td {
  font-family: var(--f-en);
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--c-text);
  padding: 22px 8px;
  border-bottom: 1px solid var(--c-line);
  text-align: right;
}
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table__note {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-sub);
}

/* --- place link (The Place → 詳細ページ誘導) --- */
.place__cta { margin-top: 52px; }
.place .btn {
  background: var(--c-gold);
  color: #fff;
  border-color: var(--c-gold);
  padding: 24px 60px;
  font-size: 13px;
  letter-spacing: 0.32em;
  font-weight: 500;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.place .btn::before { background: #fff; }
.place .btn:hover { color: var(--c-gold-dk); opacity: 1; }

/* --- subhero (詳細ページ用ヒーロー: e.htmlのhero相当よりも控えめ) --- */
.subhero {
  position: relative;
  height: 62vh;
  min-height: 440px;
  background: #1a1610 center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-bottom: 10vh;
}
.subhero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,15,8,.40) 0%, rgba(20,15,8,.20) 45%, rgba(20,15,8,.55) 100%);
}
.subhero__inner {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}
.subhero__eyebrow {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #e8d9a8;
  margin-bottom: 28px;
  display: inline-block;
}
.subhero__eyebrow::before,
.subhero__eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: #e8d9a8;
  vertical-align: middle;
  margin: 0 1em;
  transform: translateY(-3px);
}
.subhero h1 {
  font-size: clamp(30px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.subhero__sub {
  font-family: var(--f-en);
  font-style: italic;
  font-size: clamp(13px, 1.2vw, 16px);
  letter-spacing: 0.22em;
  color: #e8d9a8;
}

/* --- detail back link (詳細ページ下部 → 本体へ戻る) --- */
.detail-back {
  text-align: center;
  padding: clamp(70px, 9vw, 130px) var(--pad-x);
}

/* --- place (parallax) --- */
.place {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/scenery/sakura-uenohara.webp") center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
  padding: var(--pad-y) var(--pad-x);
}
.place::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(20,15,8,.48);
}
.place__inner { position: relative; max-width: 640px; }
.place .eyebrow { color: #e8d9a8; }
.place .eyebrow::before { background: #e8d9a8; }
.place h2 {
  font-size: clamp(26px, 3.6vw, 46px);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-bottom: 36px;
}
.place p {
  line-height: 2.3;
  font-size: 15px;
  opacity: .92;
}

/* --- footer --- */
.footer {
  background: var(--c-text);
  color: #d9cfb8;
  padding: clamp(70px, 9vw, 130px) var(--pad-x) 40px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(217,207,184,.18);
}
.footer__brand h3 {
  font-size: 22px;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
  color: #fff;
}
.footer__brand small {
  font-family: var(--f-en);
  font-style: italic;
  letter-spacing: 0.3em;
  color: var(--c-gold);
  font-size: 11px;
}
.footer__brand p { margin-top: 24px; font-size: 13px; line-height: 2; color: #b8ae97; }
.footer h4 {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 22px;
  font-weight: 500;
  font-style: italic;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; font-size: 13px; letter-spacing: 0.12em; }
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #8a8070;
}

/* --- reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* --- responsive --- */
@media (max-width: 900px) {
  .header { padding: 16px var(--pad-x) 14px; flex-direction: row; justify-content: flex-start; }
  .header__inner { flex-direction: row; justify-content: flex-start; gap: 0; }
  .logo__main { font-size: 18px; letter-spacing: 0.32em; text-indent: 0.32em; }

  .nav {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 78%;
    background: #fff;
    padding: 100px 36px 40px;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav ul { flex-direction: column; gap: 22px; align-items: flex-start; }
  .nav__main a, .nav__sub a {
    color: var(--c-text) !important;
    font-size: 16px;
    border-bottom: none !important;
    padding: 0;
  }
  .nav__sub a { font-size: 13px; opacity: .8; }
  .nav-toggle { display: block; z-index: 110; }
  .header.open .nav-toggle span { background: var(--c-text); }
  .header.open .nav-toggle span:nth-child(1) { top: 9px; transform: rotate(45deg); }
  .header.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .header.open .nav-toggle span:nth-child(3) { bottom: 9px; transform: rotate(-45deg); }

  .story, .commitment__item { grid-template-columns: 1fr; gap: 40px; }
  .commitment__item:nth-child(even) { direction: ltr; }
  .products__grid { grid-template-columns: 1fr; gap: 60px; }
  .product__desc { min-height: 0; }
  .place { background-attachment: scroll; min-height: 70vh; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
  .hero h1 { letter-spacing: 0.12em; line-height: 1.45; }
  .hero__inner { padding: 0 24px; }
}

/* ============================================
   HP修正2（2026-05-27）
   ナビ拡大 / ご蜂美見出し / 写真高さ揃え / 蜂ボタン / Q&A
   ============================================ */

/* ナビ文字を約2pt大きく */
.nav__main a { font-size: clamp(16px, 1.3vw, 18px); }

/* hero h1 ルビ（ほうび） */
.hero h1 ruby { ruby-position: over; ruby-align: center; }
.hero h1 rt {
  font-family: var(--f-serif);
  font-size: 0.3em;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #fff;
  opacity: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,.75), 0 0 3px rgba(0,0,0,.6);
}

/* Story 導入見出し「ご蜂美というご褒美」 */
.story-lead { text-align: center; margin-bottom: clamp(50px, 7vw, 100px); }
.story-lead__title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.9;
}
.story-lead__title ruby { ruby-position: over; ruby-align: center; }
.story-lead__title rt {
  font-family: var(--f-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: var(--c-gold);
}

/* Story 写真の高さを「ミツバチが作り出す」見出し〜ボタンに揃える（e/index 限定: .story--fill）
   eyebrow を row1 に逃がし、写真は row2（見出し〜ボタン）に揃える＝少し下へ */
.story--fill {
  align-items: stretch;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: clamp(40px, 7vw, 120px);
  row-gap: 0;
}
.story--fill .story__eyebrow { grid-column: 2; grid-row: 1; align-self: start; padding-left: 10px; }
.story--fill .story__media   { grid-column: 1; grid-row: 2; display: flex; }
.story--fill .story__text    { grid-column: 2; grid-row: 2; }
.story--fill .story__img {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 360px;
  aspect-ratio: auto;
  overflow: hidden;
}
.story--fill .story__img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 26%;
}
.story__cta { margin-top: 44px; }

/* こだわりの写真も Our Story（.story--fill）と同じ「文字ブロック高にピッタリ合わせる」方式
   （e/index 限定: .commitment--stretch）。画像は縦長素材(1108×1477)なので、文字高にcoverで縦に伸ばすと自然。
   item を align-items:stretch にして media を文字高に伸ばし、img を絶対配置でそれを満たす（固定aspect-ratioは使わない） */
.commitment--stretch .commitment__item { align-items: stretch; }
.commitment--stretch .commitment__media {
  position: relative;
  overflow: hidden;
}
.commitment--stretch .commitment__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 「01」斜体数字はフォント上部に余白があり、画像上端より下から始まる→こだわり限定で上の余白を詰めて画像上端に揃える
   line-height を詰めてグリフを行ボックス上端に寄せ、負マージンで画像上端に合わせる（後続のh3/pも一緒に上がるので間隔は不変） */
.commitment--stretch .commitment__num { transform: translateY(-0.42em); }

/* 商品ボタン内の蜂イラスト（蜂を含むボタンのみ flex 化＝旧案に影響なし） */
.product__buy:has(.product__buy-bee) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-indent: 0;
}
.product__buy-bee {
  height: 30px;
  width: auto;
  flex: 0 0 auto;
  transition: transform .6s ease;
}
.product__buy:hover .product__buy-bee { transform: translateX(3px) rotate(-4deg); }

/* Q&A */
.faq { background: var(--c-cream); padding: var(--pad-y) var(--pad-x); }
.faq__inner { max-width: 880px; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: clamp(46px, 7vw, 84px); }
.faq__list { border-top: 1px solid var(--c-line); }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  padding: 26px 48px 26px 0;
  position: relative;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.75;
  color: var(--c-text);
  transition: color .4s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 1.2em;
  color: var(--c-gold);
  flex: 0 0 auto;
  line-height: 1.4;
}
.faq__item summary:hover { color: var(--c-gold-dk); }
.faq__item summary::before,
.faq__item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  background: var(--c-gold);
  transition: transform .35s ease, opacity .35s ease;
}
.faq__item summary::before { right: 4px;  width: 15px; height: 1px; margin-top: -0.5px; }
.faq__item summary::after  { right: 11px; width: 1px; height: 15px; margin-top: -7.5px; }
.faq__item[open] summary::after { transform: scaleY(0); opacity: 0; }
.faq__a { padding: 0 48px 30px 1.8em; }
.faq__a p {
  color: var(--c-sub);
  line-height: 2.1;
  font-size: 14.5px;
  letter-spacing: 0.04em;
}
.faq__a a { color: var(--c-gold-dk); border-bottom: 1px solid var(--c-line); }
.faq__a a:hover { opacity: .65; }

/* HP修正2 — モバイル調整 */
@media (max-width: 900px) {
  /* 指示4: トップ(ヒーロー)を画面の約3/4に＝下にコンテンツがあると示す（ホーム限定） */
  .hero--home { height: 75vh; min-height: 420px; }
  .story--fill {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 24px;
  }
  .story--fill .story__eyebrow,
  .story--fill .story__media,
  .story--fill .story__text { grid-column: 1; grid-row: auto; }
  .story--fill .story__eyebrow { padding-left: 0; }
  .story--fill .story__img { min-height: 300px; }
  /* 指示6: Story写真でオーナーの顔が切れる→表示位置を上へ寄せる */
  .story--fill .story__img img { object-position: center 12%; }
  /* 指示5: 「ご蜂美はちみつへ」ボタンを中央へ */
  .story__cta { text-align: center; }
  /* SP/タブレット: 画像は横矩形にして大きさを抑える（縦長4:5はデカすぎ）。被写体は中央なのでcoverで残る */
  .commitment--stretch .commitment__media { aspect-ratio: 3 / 2; }
  /* 「画像→数字→文章」を1セットに見せる：画像と数字を近接。
     数字はフォント上余白(0.42em)を持つので、SP(縦並び＝通常フロー)では負マージンで詰めて画像のすぐ下に置く。PC用のtransformはここで無効化 */
  .commitment--stretch .commitment__item { gap: 10px; }
  .commitment--stretch .commitment__num { transform: none; margin-top: -0.42em; }
  /* セット同士は大きく離して区切る */
  .commitment--stretch .commitment__list { gap: 90px; }
  .faq__inner { max-width: 100%; }
  .faq__item summary { padding-right: 40px; font-size: 15px; }
  .faq__a { padding-left: 1.4em; padding-right: 0; }
}

/* =================================================================
   PREVIEW3 差分（B案のデザインから「写真の左下背景ブロック / 番号丸バッジ /
   番号下の細線 / 商品3瓶横並びの動き / FAQ開時の背景＋紙テクスチャ」だけを移植）
   HTMLは preview2 をそのまま使い、CSSは末尾上書き方式
   ================================================================= */

/* --- (1) Story 写真：左下の背景ブロック ---
   既存の .story--fill .story__media は写真を文字高に揃えるflex/grid設計。
   そこに左下のクリーム地パネルを敷くため、media に padding を持たせて
   ::before で奥にブロックを描く。写真の高さ＝文字ブロック高は維持。 */
.story--fill .story__media {
  position: relative;
  padding-left: 28px;
  padding-bottom: 28px;
}
.story--fill .story__media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  height: 62%;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  z-index: 0;
  pointer-events: none;
}
.story--fill .story__img { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .story--fill .story__media { padding-left: 18px; padding-bottom: 18px; }
  .story--fill .story__media::before { width: 62%; height: 58%; }
}

/* --- (2) こだわり 写真に丸バッジ「01」---
   B案ライクに「本文側の右下隅」に大きめのクリーム円を浮かべる。
   .commitment__item が grid 2カラム / nth-child(even) で direction:rtl になるので、
   PC では絶対配置で常に "テキストカラム側の右下" に来るよう座標を切り替える。 */
.commitment--stretch .commitment__item { position: relative; }
.commitment__badge {
  position: absolute;
  width: clamp(78px, 9vw, 118px);
  height: clamp(78px, 9vw, 118px);
  border-radius: 50%;
  background: var(--c-cream);
  box-shadow: 0 18px 36px -14px rgba(60, 40, 18, 0.35), 0 1px 0 rgba(60, 40, 18, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 50px);
  color: var(--c-text);
  letter-spacing: 0.02em;
  line-height: 1;
  z-index: 3;
  pointer-events: none;
}
/* 奇数行（写真:左 / テキスト:右）→ テキストカラム＝右側の下端
   偶数行（direction:rtl のため写真:右 / テキスト:左）→ テキストカラム＝左側の下端 */
.commitment__item:nth-child(odd)  .commitment__badge { right: 12px; bottom: -28px; }
.commitment__item:nth-child(even) .commitment__badge { left:  12px; bottom: -28px; }
@media (max-width: 900px) {
  /* SP では item が縦並び＝本文の右下隅。写真より外には出さない */
  .commitment__item:nth-child(odd)  .commitment__badge,
  .commitment__item:nth-child(even) .commitment__badge {
    right: 8px; left: auto; bottom: -20px;
  }
}

/* --- (3) こだわり 番号「01」の下に細い金線（英語テキストは入れない）---
   かつ、改行で縦に伸びた分を line-height と段落間で詰める */
.commitment--stretch .commitment__num {
  position: relative;
  margin-bottom: 22px;
}
.commitment--stretch .commitment__num::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.65;
  margin: 12px 0 0;
}
.commitment--stretch .commitment__item h3 { margin-bottom: 22px; }
.commitment--stretch .commitment__item p {
  line-height: 1.95;
  letter-spacing: 0.05em;
}

/* --- (4) 商品セクション：3瓶を同時表示＋選択中をスケールアップ＋蜂浮遊＋影 ---
   PCは3フレーバー横並び（preview2 のまま）。瓶は控えめに収め、ヘッダ・蜂・影で構成。
   選択中の `.is-active` は奥→手前に出てきて拡大する。 */
.product__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2%;
  aspect-ratio: 1 / 1;
  padding: 22% 10% 22%;
  background:
    radial-gradient(58% 56% at 50% 80%, rgba(212, 170, 80, 0.10), transparent 70%);
  overflow: visible;
}
.products__grid .product .product__img {
  position: relative;
  inset: auto;
  width: auto;
  padding: 0;
  opacity: 0.92;
  transition: transform .8s cubic-bezier(.16,.84,.3,1),
              opacity .55s ease,
              filter .55s ease,
              height .8s cubic-bezier(.16,.84,.3,1);
  filter: drop-shadow(0 10px 18px rgba(60, 45, 20, 0.18));
  cursor: pointer;
  z-index: 1;
}
.products__grid .product .product__img[data-size="100"] { height: 46%; transform: translateY(8%); }
.products__grid .product .product__img[data-size="180"] { height: 62%; transform: translateY(2%);  z-index: 2; }
.products__grid .product .product__img[data-size="600"] { height: 80%; transform: translateY(-2%); }
.products__grid .product .product__img.is-active {
  opacity: 1;
  filter: drop-shadow(0 18px 26px rgba(60, 45, 20, 0.30));
  z-index: 3;
}
.products__grid .product .product__img[data-size="100"].is-active { transform: translateY(0%)  scale(1.10); }
.products__grid .product .product__img[data-size="180"].is-active { transform: translateY(-4%) scale(1.08); }
.products__grid .product .product__img[data-size="600"].is-active { transform: translateY(-6%) scale(1.05); }
/* hoverで瓶が少し動く演出 */
.product:hover .product__img[data-size="100"] { transform: translateY(4%)  rotate(-2deg); }
.product:hover .product__img[data-size="180"] { transform: translateY(-2%); }
.product:hover .product__img[data-size="600"] { transform: translateY(-5%) rotate(2deg); }
.product:hover .product__img[data-size="100"].is-active { transform: translateY(-2%) scale(1.10) rotate(-2deg); }
.product:hover .product__img[data-size="180"].is-active { transform: translateY(-6%) scale(1.08); }
.product:hover .product__img[data-size="600"].is-active { transform: translateY(-8%) scale(1.05) rotate(2deg); }

/* SP: フレーバーを縦並びに（9個横並びは無理なので） */
@media (max-width: 900px) {
  .products__grid {
    grid-template-columns: 1fr !important;
    gap: clamp(50px, 9vw, 90px) !important;
  }
  .product__visual {
    aspect-ratio: 16 / 10;
    padding: 16% 8% 14%;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* 接地面の影（B案 surface-shadow を CSS で再現） */
.product__visual::after {
  content: "";
  position: absolute;
  left: 18%; right: 18%; bottom: 10%;
  height: 14px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(60, 40, 18, 0.25), transparent 70%);
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}

/* 商品エリアに浮遊する蜂イラスト（HTML側で `<img class="product__bee">` を追加） */
.product__bee {
  position: absolute;
  width: clamp(56px, 7vw, 92px);
  height: auto;
  opacity: 0.78;
  pointer-events: none;
  z-index: 4;
  transition: transform .9s cubic-bezier(.16, .84, .3, 1);
}
.products__grid .product:nth-child(1) .product__bee { top: 6%;  right: 4%;  transform: rotate(-12deg); }
.products__grid .product:nth-child(2) .product__bee { top: 12%; left:  4%;  transform: rotate(8deg); }
.products__grid .product:nth-child(3) .product__bee { top: 4%;  right: 8%;  transform: rotate(-6deg); }
.products__grid .product:nth-child(1):hover .product__bee { transform: translate(-4px, -4px) rotate(-18deg); }
.products__grid .product:nth-child(2):hover .product__bee { transform: translate(4px,  -4px) rotate(2deg); }
.products__grid .product:nth-child(3):hover .product__bee { transform: translate(-6px, -6px) rotate(-12deg); }

/* --- (5) FAQ：開いた時に背景色＋紙テクスチャ（fractalNoise SVG）が乗る --- */
.faq__item {
  transition: background-color .5s ease;
}
.faq__item[open] {
  background-color: #f0e8d2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' seed='4'/><feColorMatrix values='0 0 0 0 0.20  0 0 0 0 0.14  0 0 0 0 0.07  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-blend-mode: multiply;
}
.faq__item[open] summary,
.faq__item[open] .faq__a { background: transparent; }
.faq__item summary,
.faq__item .faq__a { transition: padding .3s ease; }
.faq__item[open] summary { padding-left: 18px; }
.faq__item[open] .faq__a { padding-left: calc(18px + 1.8em); }
@media (max-width: 900px) {
  .faq__item[open] summary { padding-left: 12px; }
  .faq__item[open] .faq__a { padding-left: calc(12px + 1.4em); }
}

