/*
Theme Name: YURAGI STYLE
Theme URI: https://yuragi-style.example.com/
Author: re・make Co., Ltd.
Author URI: https://www.re-make.example.com/
Description: 有限会社 re・make が展開するブランド「YURAGI STYLE」の公式テーマ。実生ゆずを軸とした商品・原料提供・OEM・統合医療ウェルネスサロンの世界観を、里山の余白と高級発酵ブランドの佇まいで表現する。Bootstrap 5 をベースに、ボタン・見出し・余白・カード装飾はオリジナルCSSで仕立てている。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
License URI: 
Text Domain: yuragi
Tags: minimal, japanese, editorial, custom-menu, custom-logo, featured-image, translation-ready
*/

/* =========================================================
   YURAGI STYLE — Custom Stylesheet
   Bootstrap 5 のグリッド／レスポンシブを土台にしつつ、
   ボタン・見出し・余白・カード・装飾は本ファイルで上書きする。
   ========================================================= */

/* -------- 1. Design tokens ------------------------------- */
:root {
  /* Color */
  --c-paper:        #FBF8F1;   /* 生成り */
  --c-paper-soft:   #F4EFE3;   /* 淡いベージュ */
  --c-paper-deep:   #EBE2CE;
  --c-white:        #FFFFFF;
  --c-ink:          #1F1B17;   /* 墨色 */
  --c-ink-soft:     #3A332D;
  --c-mute:         #877F73;
  --c-line:         #D9D2C2;
  --c-green:        #21382B;   /* 深いグリーン */
  --c-green-deep:   #142318;
  --c-yuzu:         #D9B23C;   /* 柚子の黄色 */
  --c-gold:         #A88A4A;   /* くすんだゴールド */
  --c-gold-soft:    #C9B07F;

  /* Typography */
  --ff-jp-serif: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --ff-jp-sans:  "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --ff-en-serif: "Cormorant Garamond", "EB Garamond", "Times New Roman", serif;
  --ff-en-sans:  "Cormorant Garamond", "Inter", "Helvetica Neue", sans-serif;

  /* Spacing */
  --s-section: clamp(72px, 9vw, 144px);
  --s-section-sm: clamp(48px, 6vw, 88px);

  /* Misc */
  --radius: 2px;
  --shadow-soft: 0 24px 60px -32px rgba(31, 27, 23, 0.18);
  --transition: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------- 2. Base ---------------------------------------- */
* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-jp-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  background-color: var(--c-paper);
  background-image:
    radial-gradient(1200px 400px at 90% -10%, rgba(217, 178, 60, 0.06), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(33, 56, 43, 0.06), transparent 60%);
  background-attachment: fixed;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.65; }

p { margin: 0 0 1.2em; }

/* -------- 3. Type system --------------------------------- */
.h-en {
  font-family: var(--ff-en-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  text-transform: none;
  font-size: 14px;
  display: inline-block;
}

.h-en::before {
  content: "—";
  margin-right: 0.6em;
  color: var(--c-gold-soft);
  font-style: normal;
}

.h-jp {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-ink);
  line-height: 1.5;
  margin: 0.4em 0 0;
}

.h-jp.lg { font-size: clamp(28px, 3.4vw, 44px); }
.h-jp.md { font-size: clamp(22px, 2.4vw, 30px); }
.h-jp.sm { font-size: clamp(18px, 1.8vw, 22px); }

.lead {
  font-family: var(--ff-jp-serif);
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--c-ink-soft);
}

.eyebrow {
  font-family: var(--ff-en-sans);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--c-gold);
}

.section-head {
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* -------- 4. Layout helpers ------------------------------ */
.section { padding-top: var(--s-section); padding-bottom: var(--s-section); }
.section-sm { padding-top: var(--s-section-sm); padding-bottom: var(--s-section-sm); }

.container-xl, .container-lg, .container { max-width: 1240px; }
.container-narrow { max-width: 880px; margin-inline: auto; }

.divider {
  width: 1px;
  height: 64px;
  background: var(--c-line);
  margin: 0 auto;
}

.rule {
  border: 0;
  height: 1px;
  background: var(--c-line);
  margin: 0;
}

/* -------- 5. Buttons ------------------------------------- */
.btn-yuragi {
  --btn-bg: transparent;
  --btn-fg: var(--c-ink);
  --btn-bd: var(--c-ink);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  font-family: var(--ff-jp-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-yuragi::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width var(--transition);
}

.btn-yuragi:hover {
  --btn-bg: var(--c-yuzu);
  --btn-bd: var(--c-yuzu);
  --btn-fg: var(--c-paper);
  opacity: 1;
}

.btn-yuragi:hover::after { width: 30px; }

.btn-yuragi--ghost {
  --btn-bd: var(--c-line);
  --btn-fg: var(--c-ink-soft);
}
.btn-yuragi--ghost:hover {
  --btn-bg: var(--c-yuzu);
  --btn-fg: var(--c-paper);
  --btn-bd: var(--c-yuzu);
}

.btn-yuragi--gold {
  --btn-bd: var(--c-gold);
  --btn-fg: var(--c-gold);
}
.btn-yuragi--gold:hover {
  --btn-bg: var(--c-yuzu);
  --btn-bd: var(--c-yuzu);
  --btn-fg: var(--c-paper);
}

.btn-yuragi--inverse {
  --btn-bd: rgba(255,255,255,0.6);
  --btn-fg: var(--c-paper);
}
.btn-yuragi--inverse:hover {
  --btn-bg: var(--c-yuzu);
  --btn-bd: var(--c-yuzu);
  --btn-fg: var(--c-paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--c-ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: all var(--transition);
}
.text-link::after {
  content: "→";
  transition: transform var(--transition);
}
.text-link:hover {
  border-color: var(--c-ink-soft);
  opacity: 1;
}
.text-link:hover::after { transform: translateX(4px); }

/* -------- 6. Header / Nav -------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(251, 248, 241, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(217, 210, 194, 0.5);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  height: 48px;
}

.brand__mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Two-tier nav (right side) */
.header-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 8px;
}

.nav-utility a {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  color: var(--c-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-utility a.is-shop {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--c-gold);
}

.nav-utility a.is-shop::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-yuzu);
  display: inline-block;
}

.nav-utility a.is-contact {
  color: var(--c-ink);
}

.nav-utility a:hover { opacity: 0.6; }

.nav-primary {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  padding-top: 4px;
}

.nav-primary a {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--c-ink-soft);
  position: relative;
  padding: 6px 0;
}

.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--c-ink);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--transition);
}

.nav-primary a:hover { opacity: 1; }
.nav-primary a:hover::after { transform: scaleX(1); transform-origin: left center; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 38px; height: 38px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--c-ink);
  margin: 6px auto;
}

@media (max-width: 992px) {
  .header-nav { display: none; }
  .nav-toggle { display: block; }
  .brand__mark { height: 40px; }
}

/* -------- 7. Hero ---------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding-top: 120px;
  overflow: hidden;
  background: var(--c-paper);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

@media (max-width: 767px) {
  .hero__bg-img {
    object-position: 80% center;
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: calc(92vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 48px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--c-gold);
}

.hero__title {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: var(--c-ink);
}

.hero__title .accent { color: var(--c-green); }
.hero__title .yuzu { color: var(--c-yuzu); font-style: italic; padding-inline: 0.05em; }

.hero__lead {
  max-width: 580px;
  margin-top: 32px;
  font-family: var(--ff-jp-serif);
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--c-ink-soft);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

/* テキストブロック全体に半透明白背景 */
.hero__textbox {
  display: inline-block;
  padding: 40px 48px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (max-width: 767px) {
  .hero__textbox {
    padding: 28px 24px;
  }
}

.hero__meta {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-mute);
}

/* -------- 8. Pickup cards -------------------------------- */
.pickup {
  background: var(--c-paper);
  position: relative;
}

.pickup__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.card-pickup {
  background: transparent;
  border: 0;
}

.card-pickup__img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 22px;
}

.card-pickup__img .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transition: transform 1.2s ease;
}

.card-pickup:hover .card-pickup__img .ph { transform: scale(1.05); }

.card-pickup__cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--c-gold);
  font-family: var(--ff-en-serif);
  font-style: italic;
  margin-bottom: 12px;
}

.card-pickup__title {
  font-family: var(--ff-jp-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--c-ink);
}

.card-pickup__date {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-mute);
  font-family: var(--ff-en-serif);
  font-style: italic;
  margin-top: 10px;
}

/* -------- 9. Story / Brand intro ------------------------- */
.story {
  background:
    linear-gradient(180deg, var(--c-paper) 0%, var(--c-paper-soft) 100%);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: "YURAGI";
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 400;
  color: rgba(168, 138, 74, 0.07);
  letter-spacing: 0.04em;
  pointer-events: none;
  line-height: 1;
}

.story__body {
  position: relative;
  z-index: 1;
}

.story__lead {
  font-family: var(--ff-jp-serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 2.3;
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
}

/* -------- 10. Main nav tiles ----------------------------- */
.tiles {
  background: var(--c-paper-soft);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.tile {
  display: block;
  background-color: var(--c-paper);
  padding: 48px 40px;
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: background-color var(--transition), color var(--transition), transform var(--transition), opacity var(--transition);
}

.tile:hover {
  background-color: var(--c-ink);
  color: var(--c-paper);
  opacity: 1;
  transform: translateY(-4px);
}

.tile:hover .tile__num,
.tile:hover .tile__en { color: var(--c-gold-soft); }

.tile:hover .tile__jp,
.tile:hover .tile__desc { color: var(--c-paper); }

.tile__num {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  transition: color var(--transition);
}

.tile__en {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--c-mute);
  margin-top: 18px;
  transition: color var(--transition);
}

.tile__jp {
  font-family: var(--ff-jp-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 6px;
  color: var(--c-ink);
  transition: color var(--transition);
}

.tile__desc {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: var(--c-mute);
  margin-top: 16px;
  transition: color var(--transition);
}

.tile__arrow {
  position: absolute;
  right: 28px; bottom: 28px;
  width: 42px; height: 42px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  transition: all var(--transition);
}

.tile:hover .tile__arrow {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: rotate(-45deg);
}

/* ---- tile--img : 背景画像あり ---- */
.tile--img {
  background-color: transparent !important;
  background-size: cover !important;
  background-position: center !important;
  border: none !important;
  padding: 0 !important;
  aspect-ratio: 4 / 3;
  height: auto !important;
}

.tile--img:hover {
  background-color: transparent !important;
  transform: none !important;
}

/* テキスト可読性のためのオーバーレイ */
.tile__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(31,27,23,0.35) 0%, rgba(31,27,23,0.82) 100%);
  transition: background var(--transition);
}

.tile--img:hover .tile__overlay {
  background:
    linear-gradient(180deg, rgba(31,27,23,0.50) 0%, rgba(31,27,23,0.92) 100%);
}

/* コンテンツを前面に */
.tile__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 72px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* 英語ラベルを上部に固定 */
.tile--img .tile__en {
  color: rgba(251,248,241,0.80) !important;
  position: absolute;
  top: 28px;
  left: 36px;
  margin-top: 0;
}

/* 背景画像ありの場合のテキスト色 */
.tile--img .tile__num { color: var(--c-yuzu) !important; }
.tile--img .tile__jp  { color: #ffffff !important; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.tile--img .tile__desc { color: rgba(251,248,241,0.90) !important; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.tile--img .tile__arrow {
  border-color: rgba(251,248,241,0.50) !important;
  color: var(--c-paper) !important;
  position: absolute;
  right: 24px;
  top: 24px;
  bottom: auto;
}

.tile--img:hover .tile__num  { color: var(--c-yuzu) !important; }
.tile--img:hover .tile__en   { color: var(--c-gold-soft) !important; }
.tile--img:hover .tile__jp   { color: #ffffff !important; }
.tile--img:hover .tile__desc { color: rgba(251,248,241,0.95) !important; }
.tile--img:hover .tile__arrow {
  border-color: var(--c-yuzu) !important;
  color: var(--c-yuzu) !important;
  transform: rotate(-45deg);
}

/* -------- 10b. Online Shop banner ----------------------- */
.shop-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  margin-top: clamp(48px, 6vw, 80px);
  overflow: hidden;
  position: relative;
  color: var(--c-ink);
  transition: all var(--transition);
}

.shop-banner:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-soft);
  opacity: 1;
  transform: translateY(-2px);
}

.shop-banner__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.shop-banner__media .ph { transition: transform 1.4s ease; }
.shop-banner:hover .shop-banner__media .ph { transform: scale(1.05); }

/* 画像使用時 */
.shop-banner__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.4s ease;
}
.shop-banner:hover .shop-banner__img { transform: scale(1.05); }

.shop-banner__body {
  padding: clamp(36px, 4.5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.shop-banner__eyebrow {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--c-gold);
}

.shop-banner__eyebrow::before {
  content: "—";
  margin-right: 8px;
  color: var(--c-gold-soft);
  font-style: normal;
}

.shop-banner__title {
  font-family: var(--ff-jp-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--c-ink);
  margin: 0;
}

.shop-banner__desc {
  font-size: 13.5px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--c-mute);
  margin: 0;
}

.shop-banner__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding: 14px 32px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: var(--c-paper);
  background: var(--c-ink);
  border: 1px solid var(--c-ink);
  transition: all var(--transition);
}

.shop-banner__cta::after {
  content: "→";
  transition: transform var(--transition);
}

.shop-banner:hover .shop-banner__cta {
  background: var(--c-gold);
  border-color: var(--c-gold);
  gap: 22px;
}

@media (max-width: 768px) {
  .shop-banner { grid-template-columns: 1fr; }
  .shop-banner__media { min-height: 220px; }
}

/* -------- 11. Information list --------------------------- */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--c-line);
}

.info-list li {
  border-bottom: 1px solid var(--c-line);
}

.info-list a {
  display: grid;
  grid-template-columns: 130px 130px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 8px;
  transition: background var(--transition);
}

.info-list a:hover {
  background: rgba(217, 210, 194, 0.18);
  opacity: 1;
}

.info-date {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--c-mute);
}

.info-tag {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  padding: 5px 14px;
  border: 1px solid var(--c-line);
  display: inline-block;
  text-align: center;
  color: var(--c-ink-soft);
}
.info-tag.is-news    { background: var(--c-paper); }
.info-tag.is-product { background: var(--c-paper-soft); border-color: var(--c-gold-soft); color: var(--c-gold); }
.info-tag.is-event   { background: var(--c-green); border-color: var(--c-green); color: var(--c-paper); }

.info-title {
  font-family: var(--ff-jp-serif);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--c-ink);
}

.info-list a:hover .info-arrow { transform: translateX(4px); }
.info-arrow { transition: transform var(--transition); color: var(--c-mute); }

@media (max-width: 768px) {
  .info-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .info-arrow { display: none; }
}

/* -------- 12. Journal ------------------------------------ */
.journal {
  background: var(--c-paper);
}

.card-journal {
  display: block;
  height: 100%;
}

.card-journal__img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 24px;
}

.card-journal__img .ph { position: absolute; inset: 0; transition: transform 1.4s ease; }
.card-journal:hover .card-journal__img .ph { transform: scale(1.06); }

.card-journal__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-mute);
  margin-bottom: 10px;
}

.card-journal__meta .cat {
  font-family: var(--ff-en-serif);
  font-style: italic;
  color: var(--c-gold);
  letter-spacing: 0.24em;
}

.card-journal__title {
  font-family: var(--ff-jp-serif);
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: var(--c-ink);
}

.card-journal__excerpt {
  font-size: 13px;
  line-height: 1.95;
  color: var(--c-mute);
  margin-top: 12px;
}

/* -------- 13. BtoB section ------------------------------- */
.btob {
  background: var(--c-green);
  color: var(--c-paper);
  position: relative;
  overflow: hidden;
}

.btob::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.18) 100%),
    radial-gradient(800px 400px at 90% 10%, rgba(217, 178, 60, 0.10), transparent 60%);
  pointer-events: none;
}

.btob__inner { position: relative; z-index: 1; }

.btob .h-en  { color: var(--c-gold-soft); }
.btob .h-jp  { color: var(--c-paper); }
.btob .lead  { color: rgba(251, 248, 241, 0.85); }

.btob .btn-yuragi {
  --btn-bg: transparent;
  --btn-fg: var(--c-paper);
  --btn-bd: rgba(251, 248, 241, 0.5);
}
.btob .btn-yuragi:hover {
  --btn-bg: var(--c-yuzu);
  --btn-fg: var(--c-paper);
  --btn-bd: var(--c-yuzu);
}

.btob__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(251,248,241,0.18);
}
.btob__list li {
  border-bottom: 1px solid rgba(251,248,241,0.18);
}
.btob__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-family: var(--ff-jp-serif);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--c-paper);
  transition: padding var(--transition);
}
.btob__list a:hover { padding-left: 12px; opacity: 1; color: var(--c-yuzu); }
.btob__list .num {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--c-gold-soft);
  margin-right: 16px;
  letter-spacing: 0.18em;
}

/* -------- 14. Footer ------------------------------------- */
.site-footer {
  background: var(--c-ink);
  color: var(--c-paper);
  padding-top: 96px;
  padding-bottom: 32px;
  position: relative;
}

.site-footer .brand__mark img { filter: brightness(0) invert(1); opacity: 0.92; }

.footer-stores {
  margin-top: 32px;
  display: grid;
  gap: 28px;
}

.footer-store {
  border-top: 1px solid rgba(251,248,241,0.18);
  padding-top: 20px;
}

.footer-store__name {
  font-family: var(--ff-jp-serif);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--c-paper);
  margin-bottom: 10px;
}

.footer-store__name .en {
  display: block;
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-gold-soft);
  margin-bottom: 4px;
}

.footer-store__addr {
  font-size: 12.5px;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: rgba(251,248,241,0.72);
}

.footer-store__tel {
  margin-top: 6px;
  font-family: var(--ff-en-serif);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: rgba(251,248,241,0.92);
}

.footer-store__tel span + span { margin-left: 14px; }
.footer-store__tel .label {
  font-family: var(--ff-jp-sans);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--c-gold-soft);
  margin-right: 4px;
}

.footer-nav h6 {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--c-gold-soft);
  margin-bottom: 18px;
}

.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(251,248,241,0.78);
}
.footer-nav a:hover { color: var(--c-yuzu); opacity: 1; }

.footer-bottom {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(251,248,241,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(251,248,241,0.5);
}

.footer-affiliate {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: rgba(251,248,241,0.6);
  margin-top: 12px;
  border-top: 1px dashed rgba(251,248,241,0.2);
  padding-top: 16px;
}

/* -------- 15. Page header (single & page) ---------------- */
.page-hero {
  padding-top: 168px;
  padding-bottom: 56px;
  text-align: center;
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(217,178,60,0.08), transparent 60%),
    var(--c-paper);
  position: relative;
}

.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-mute);
  margin-bottom: 24px;
}
.page-hero .breadcrumb span:not(:last-child)::after { content: "/"; margin-left: 10px; color: var(--c-line); }

.page-hero__cat {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--c-gold);
}

.page-hero__title {
  font-family: var(--ff-jp-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.1em;
  margin-top: 14px;
  color: var(--c-ink);
}

.page-hero__date {
  margin-top: 18px;
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--c-mute);
}

/* -------- 16. Article body ------------------------------- */
.article-eyecatch {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}

.article-body {
  font-family: var(--ff-jp-sans);
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
  max-width: 720px;
  margin: 0 auto;
}

.article-body p { margin-bottom: 1.6em; }

.article-body h2 {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.1em;
  color: var(--c-ink);
  margin: 2.4em 0 1em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid var(--c-line);
}

.article-body h3 {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--c-green);
  margin: 2em 0 0.8em;
  padding-left: 14px;
  border-left: 2px solid var(--c-gold);
}

.article-body blockquote {
  border-left: 1px solid var(--c-gold);
  padding: 8px 0 8px 28px;
  margin: 2em 0;
  font-family: var(--ff-jp-serif);
  font-size: 16px;
  color: var(--c-ink);
  letter-spacing: 0.1em;
}

.article-body figure {
  margin: 2.4em 0;
}
.article-body figcaption {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-mute);
  margin-top: 10px;
  text-align: center;
}

.article-body ul, .article-body ol { padding-left: 1.4em; margin-bottom: 1.6em; }
.article-body li { margin-bottom: 0.4em; }

.article-body a { color: var(--c-green); border-bottom: 1px solid var(--c-line); }

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 18px 0;
  margin-top: 56px;
  max-width: 720px;
  margin-inline: auto;
  flex-wrap: wrap;
  gap: 16px;
}

.share { display: flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: 0.22em; color: var(--c-mute); }
.share a {
  width: 32px; height: 32px;
  border: 1px solid var(--c-line);
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 11px;
}
.share a:hover { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink); opacity: 1; }

/* -------- 17. Page (固定ページ) -------------------------- */
.page-section {
  padding-block: var(--s-section-sm);
}

.page-section + .page-section {
  border-top: 1px solid var(--c-line);
}

.page-section__head .h-jp { margin-bottom: 28px; }

.figure-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-paper-soft);
}

.kv-list {
  list-style: none;
  padding: 0; margin: 0;
}
.kv-list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--c-line);
  padding: 18px 0;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.kv-list .key {
  font-family: var(--ff-jp-serif);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--c-green);
}
@media (max-width: 768px) {
  .kv-list li { grid-template-columns: 1fr; gap: 4px; }
}

.product-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card__img {
  aspect-ratio: 1/1;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  background: var(--c-paper-soft);
}

.product-card__cat {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--c-gold);
}

.product-card__name {
  font-family: var(--ff-jp-serif);
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-top: 6px;
  margin-bottom: 12px;
  color: var(--c-ink);
}

.product-card__desc {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--c-mute);
  margin-bottom: 18px;
  flex: 1;
}

/* -------- 18. CTA strip ---------------------------------- */
.cta-strip {
  background: var(--c-paper-soft);
  padding-block: 80px;
  text-align: center;
  border-top: 1px solid var(--c-line);
}

.cta-strip .h-jp { margin-bottom: 30px; }

/* -------- 19. Decorative SVG placeholders ---------------- */
.ph {
  width: 100%; height: 100%;
  background:
    radial-gradient(120% 80% at 70% 30%, rgba(217,178,60,0.18), transparent 55%),
    linear-gradient(135deg, #DDD2B5 0%, #ECE2C7 50%, #C4B58F 100%);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.4);
  pointer-events: none;
}

.ph--green {
  background:
    radial-gradient(120% 80% at 30% 30%, rgba(217,178,60,0.18), transparent 55%),
    linear-gradient(135deg, #2C4A3A 0%, #1A2E22 50%, #3B5C49 100%);
}
.ph--green .ph__label { color: rgba(251,248,241,0.85); }
.ph--green::before { border-color: rgba(255,255,255,0.18); }

.ph--paper {
  background: linear-gradient(135deg, #F4EFE3 0%, #EAE0C7 100%);
}

.ph--ink {
  background: linear-gradient(135deg, #2A2520 0%, #1A1814 100%);
}
.ph--ink .ph__label { color: rgba(251,248,241,0.7); }

.ph__label {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  text-align: center;
}

.ph__label small {
  display: block;
  margin-top: 8px;
  font-family: var(--ff-jp-serif);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(31,27,23,0.55);
}
.ph--green .ph__label small,
.ph--ink   .ph__label small { color: rgba(251,248,241,0.5); }

.ph__icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.15;
  pointer-events: none;
}

/* -------- 20. Utility ------------------------------------ */
.ratio-1x1   { aspect-ratio: 1/1; }
.ratio-4x5   { aspect-ratio: 4/5; }
.ratio-16x9  { aspect-ratio: 16/9; }

.muted { color: var(--c-mute); }

.with-border-top    { border-top: 1px solid var(--c-line); }
.with-border-bottom { border-bottom: 1px solid var(--c-line); }

/* Vertical rhythm tweaks for Bootstrap rows */
.row.gx-large { --bs-gutter-x: 56px; }
.row.gy-large { --bs-gutter-y: 56px; }

@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: 110px; }
  .info-list a { padding: 16px 4px; }
}

/* =========================================================
   21. WordPress-specific overrides
   ========================================================= */

/* Image fill for posted thumbnails */
.yuragi-thumb,
.card-pickup__img img,
.card-journal__img img,
.article-eyecatch img,
.figure-frame img,
.shop-banner__media img,
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card image positioning when using <img> instead of placeholder */
.card-pickup__img img,
.card-journal__img img,
.shop-banner__media img,
.article-eyecatch img,
.product-card__img img {
  position: absolute;
  inset: 0;
  transition: transform 1.4s ease;
}

.card-pickup:hover .card-pickup__img img,
.card-journal:hover .card-journal__img img,
.shop-banner:hover .shop-banner__media img {
  transform: scale(1.05);
}

/* Bootstrap-friendly post pagination */
.post-pagination, .pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links .page-numbers {
  min-width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--c-line);
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--c-ink-soft);
  padding: 0 10px;
  transition: all var(--transition);
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background: var(--c-ink);
  color: var(--c-paper);
  border-color: var(--c-ink);
  opacity: 1;
}

/* Block editor / WP standard classes */
.alignwide  { margin-inline: calc(50% - 50vw); width: 100vw; max-width: none; }
.alignfull  { margin-inline: calc(50% - 50vw); width: 100vw; max-width: none; }
.aligncenter { margin-inline: auto; }
.alignleft  { float: left;  margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.wp-caption-text, .gallery-caption {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-mute);
  text-align: center;
  margin-top: 8px;
}

/* WP standard blocks polish */
.wp-block-quote {
  border-left: 1px solid var(--c-gold);
  padding: 8px 0 8px 28px;
  margin: 2em 0;
  font-family: var(--ff-jp-serif);
}

.wp-block-image figcaption {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-mute);
  margin-top: 10px;
  text-align: center;
}

/* Skip link */
.visually-hidden-focusable {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.visually-hidden-focusable:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: var(--c-ink);
  color: var(--c-paper);
  z-index: 9999;
  letter-spacing: 0.18em;
  font-size: 12px;
}

/* Header scroll state */
.site-header.is-scrolled {
  padding: 10px 0;
  box-shadow: 0 8px 32px -16px rgba(31, 27, 23, 0.12);
  background: rgba(251, 248, 241, 0.94);
}

/* Mobile nav (off-canvas style) */
@media (max-width: 992px) {
  .header-nav.is-open {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--c-paper);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    padding: 80px 32px 32px;
    z-index: 40;
    overflow-y: auto;
  }

  .header-nav.is-open .nav-utility,
  .header-nav.is-open .nav-primary {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border: 0;
    padding: 0;
    width: 100%;
  }

  .header-nav.is-open .nav-utility {
    border-bottom: 1px solid var(--c-line);
    padding-bottom: 24px;
  }

  .header-nav.is-open .nav-primary a,
  .header-nav.is-open .nav-utility a {
    font-family: var(--ff-jp-serif);
    font-size: 18px;
    letter-spacing: 0.12em;
  }

  .header-nav.is-open .nav-utility a.is-shop {
    font-family: var(--ff-en-serif);
    font-style: italic;
    font-size: 16px;
  }

  body.nav-is-open { overflow: hidden; }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-toggle span { transition: transform var(--transition), opacity var(--transition); }
}

/* Comments (light) */
.comments-area, .comment-respond {
  max-width: 720px;
  margin: 60px auto 0;
}

/* Custom logo size override */
.brand .custom-logo {
  height: 100%;
  width: auto;
  max-height: 48px;
}


/* =========================================================
   実生ゆずとは — page-wild-yuzu.php
   ========================================================= */

/* ---- Hero ---- */
.yuzu-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
}

.yuzu-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.yuzu-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.yuzu-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,27,23,0.25) 0%, rgba(31,27,23,0.60) 100%);
  z-index: 1;
}

.yuzu-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 160px;
}

.yuzu-hero__breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(251,248,241,0.7);
  margin-bottom: 20px;
}
.yuzu-hero__breadcrumb a { color: inherit; text-decoration: none; }
.yuzu-hero__breadcrumb span:not(:last-child)::after { content: "/"; margin-left: 10px; }

.yuzu-hero__eyebrow {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--c-yuzu);
  display: block;
  margin-bottom: 16px;
}

.yuzu-hero__title {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: var(--c-paper);
}

/* ---- Chapter ---- */
.yuzu-chapter {
  padding-block: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--c-line);
}

.yuzu-chapter--alt {
  background: var(--c-paper-soft);
}

/* Chapter 3 — 背景画像あり */
.yuzu-chapter--bg {
  position: relative;
  overflow: hidden;
}

.yuzu-chapter__bgimg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.yuzu-chapter__bgimg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.yuzu-chapter__bgimg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 23, 0.68);
  z-index: 1;
}

.yuzu-chapter--bg .container {
  position: relative;
  z-index: 2;
}

/* 背景画像上のテキスト色を白系に */
.yuzu-chapter--bg .yuzu-chapter__num { color: var(--c-yuzu); }
.yuzu-chapter--bg .yuzu-chapter__title { color: var(--c-paper); }
.yuzu-chapter--bg .yuzu-research { background: rgba(251,248,241,0.08); border-top-color: var(--c-yuzu); }
.yuzu-chapter--bg .yuzu-research__title { color: var(--c-paper); }
.yuzu-chapter--bg .yuzu-research p { color: rgba(251,248,241,0.82); }
.yuzu-chapter--bg .yuzu-research__ref {
  color: rgba(251,248,241,0.45) !important;
  border-top-color: rgba(251,248,241,0.18);
}

.yuzu-chapter__head {
  margin-bottom: 36px;
}

.yuzu-chapter__num {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.30em;
  color: var(--c-gold);
  display: block;
  margin-bottom: 14px;
}

.yuzu-chapter__title {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--c-ink);
}

.yuzu-chapter__body p {
  font-size: 14.5px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
  margin-bottom: 1.4em;
}

.yuzu-chapter__img {
  overflow: hidden;
  border-radius: 2px;
}

.yuzu-chapter__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}

.yuzu-chapter__img:hover img {
  transform: scale(1.03);
}

/* ---- Parts（成分リスト） ---- */
.yuzu-parts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.yuzu-part {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  padding: 20px 22px;
}

.yuzu-part__name {
  font-family: var(--ff-jp-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--c-green);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-line);
}

.yuzu-part__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.yuzu-part__list li {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--c-ink-soft);
  letter-spacing: 0.04em;
  padding-left: 12px;
  position: relative;
  margin-bottom: 6px;
}

.yuzu-part__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-yuzu);
  font-size: 10px;
  top: 4px;
}

/* ---- Research（3カラム） ---- */
.yuzu-research {
  padding: 36px 32px;
  background: var(--c-paper);
  border-top: 2px solid var(--c-yuzu);
  height: 100%;
}

.yuzu-research__title {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
  letter-spacing: 0.06em;
  color: var(--c-ink);
  margin-bottom: 20px;
}

.yuzu-research p {
  font-size: 13.5px;
  line-height: 2.0;
  letter-spacing: 0.05em;
  color: var(--c-ink-soft);
  margin-bottom: 1.2em;
}

.yuzu-research__ref {
  font-size: 11px !important;
  color: var(--c-mute) !important;
  letter-spacing: 0.08em !important;
  border-top: 1px solid var(--c-line);
  padding-top: 12px;
  margin-top: 16px;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .yuzu-hero { min-height: 50vh; }
  .yuzu-chapter__img img { height: 280px; }
  .yuzu-parts { grid-template-columns: 1fr; }
  .yuzu-research { padding: 28px 22px; }
}


/* =========================================================
   里山との連携 — page-satoyama.php
   ========================================================= */

/* ---- Story Hero ---- */
.story-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.story-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,27,23,0.20) 0%, rgba(31,27,23,0.72) 100%);
  z-index: 1;
}

.story-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 160px;
}

.story-hero__breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(251,248,241,0.65);
  margin-bottom: 20px;
}
.story-hero__breadcrumb a { color: inherit; text-decoration: none; }
.story-hero__breadcrumb span:not(:last-child)::after { content: "/"; margin-left: 10px; }

.story-hero__eyebrow {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--c-yuzu);
  display: block;
  margin-bottom: 16px;
}

.story-hero__title {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: var(--c-paper);
  margin-bottom: 24px;
}

.story-hero__title span {
  font-size: 0.65em;
  letter-spacing: 0.2em;
  opacity: 0.85;
  display: block;
}

.story-hero__lead {
  font-family: var(--ff-jp-serif);
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.08em;
  color: rgba(251,248,241,0.80);
  max-width: 520px;
}

.story-hero__scroll {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: rgba(251,248,241,0.5);
}

/* ---- Chapter Nav ---- */
.story-chapternav {
  background: var(--c-ink);
  padding-block: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.story-chapternav__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.story-chapternav__list::-webkit-scrollbar { display: none; }

.story-chapternav__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(251,248,241,0.55);
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px solid rgba(251,248,241,0.08);
  transition: color 0.2s;
}
.story-chapternav__list li a:hover { color: var(--c-yuzu); }
.story-chapternav__list li a span {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--c-yuzu);
  opacity: 0.7;
}

/* ---- Chapter Section ---- */
.story-chapter {
  padding-block: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--c-line);
}

.story-chapter--alt {
  background: var(--c-paper-soft);
}

.story-chapter__label {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.story-chapter__num {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.30em;
  color: var(--c-gold);
}

.story-chapter__year {
  font-family: var(--ff-en-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-mute);
}

.story-chapter__title {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--c-ink);
  margin-bottom: 40px;
}

.story-chapter__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.story-chapter__img {
  overflow: hidden;
  border-radius: 2px;
}

.story-chapter__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.story-chapter__img:hover img { transform: scale(1.03); }

.story-chapter__img--right { order: 2; }
.story-chapter__img--left  { order: 1; }
.story-chapter__img--right + .story-chapter__text { order: 1; }
.story-chapter__img--left  + .story-chapter__text { order: 2; }

.story-chapter__lead {
  font-family: var(--ff-jp-serif);
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--c-ink);
  margin-bottom: 0;
  border-left: 2px solid var(--c-yuzu);
  padding-left: 20px;
}

/* ---- 続きを読む ---- */
.story-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.story-collapse p {
  font-size: 14.5px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--c-ink-soft);
  margin-top: 1.4em;
  margin-bottom: 0;
}

.story-collapse__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  background: none;
  border: 1px solid var(--c-line);
  padding: 10px 22px;
  font-family: var(--ff-jp-serif);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-ink-soft);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.story-collapse__btn:hover { border-color: var(--c-yuzu); color: var(--c-yuzu); }

.story-collapse__btn-close { display: none; }
.story-collapse__btn[aria-expanded="true"] .story-collapse__btn-open  { display: none; }
.story-collapse__btn[aria-expanded="true"] .story-collapse__btn-close { display: inline; }

/* ---- Chapter 5（背景画像） ---- */
.story-chapter--final {
  position: relative;
  overflow: hidden;
}

.story-chapter__final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-chapter__final-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-chapter__final-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(21, 35, 24, 0.80);
  z-index: 1;
}

.story-chapter--final .container { position: relative; z-index: 2; }
.story-chapter--final .story-chapter__num  { color: var(--c-yuzu); }
.story-chapter--final .story-chapter__year { color: rgba(251,248,241,0.45); }
.story-chapter--final .story-chapter__title { color: var(--c-paper); }
.story-chapter--final .story-chapter__lead { color: var(--c-paper); border-left-color: var(--c-yuzu); }
.story-chapter--final .story-collapse p    { color: rgba(251,248,241,0.80); }
.story-chapter--final .story-collapse__btn { border-color: rgba(251,248,241,0.25); color: rgba(251,248,241,0.65); }
.story-chapter--final .story-collapse__btn:hover { border-color: var(--c-yuzu); color: var(--c-yuzu); }

.story-chapter__text--wide { max-width: 720px; }

/* ---- 締めの引用 ---- */
.story-quote {
  margin-top: 48px;
  padding: 32px 36px;
  border: 1px solid rgba(251,248,241,0.18);
  font-family: var(--ff-jp-serif);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2.1;
  letter-spacing: 0.1em;
  color: rgba(251,248,241,0.88);
  position: relative;
}

.story-quote::before {
  content: '\201C';
  font-family: var(--ff-en-serif);
  font-size: 64px;
  color: var(--c-yuzu);
  opacity: 0.5;
  position: absolute;
  top: 8px; left: 16px;
  line-height: 1;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .story-chapter__content {
    grid-template-columns: 1fr;
  }
  .story-chapter__img--right,
  .story-chapter__img--left,
  .story-chapter__img--right + .story-chapter__text,
  .story-chapter__img--left  + .story-chapter__text {
    order: unset;
  }
  .story-chapter__img img { height: 280px; }
  .story-hero__scroll { display: none; }
}


/* =========================================================
   商品ページ — page-products.php
   ========================================================= */

/* ---- Hero ---- */
.products-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.products-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.products-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.products-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,27,23,0.20) 0%, rgba(31,27,23,0.65) 100%);
  z-index: 1;
}

.products-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 160px;
}

.products-hero__breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(251,248,241,0.65);
  margin-bottom: 20px;
}
.products-hero__breadcrumb a { color: inherit; text-decoration: none; }
.products-hero__breadcrumb span:not(:last-child)::after { content: "/"; margin-left: 10px; }

.products-hero__eyebrow {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--c-yuzu);
  display: block;
  margin-bottom: 16px;
}

.products-hero__title {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--c-paper);
  margin-bottom: 16px;
}

.products-hero__lead {
  font-family: var(--ff-jp-serif);
  font-size: 15px;
  line-height: 2.0;
  letter-spacing: 0.08em;
  color: rgba(251,248,241,0.80);
}

/* ---- Philosophy ---- */
.products-philosophy__img {
  overflow: hidden;
  border-radius: 2px;
}
.products-philosophy__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.products-philosophy__text {
  font-size: 14.5px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--c-ink-soft);
  margin-top: 1.4em;
}

/* ---- Challenge ---- */
.products-challenge {
  background: var(--c-paper-soft);
}

.products-challenge__lead {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 14.5px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--c-ink-soft);
  text-align: center;
}

.products-challenge__tag {
  display: inline-block;
  margin: 32px auto 0;
  padding: 6px 20px;
  border: 1px solid var(--c-yuzu);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--c-yuzu);
  font-family: var(--ff-en-serif);
}

/* SVG フロー図 */
.products-challenge__svg {
  margin: 40px auto 0;
  max-width: 560px;
  text-align: center;
}

.products-challenge__svg img {
  width: 100%;
  height: auto;
}

.products-step {
  padding: 32px 28px;
  background: var(--c-paper);
  border-top: 2px solid var(--c-yuzu);
  height: 100%;
}

.products-step__num {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--c-yuzu);
  opacity: 0.6;
  display: block;
  margin-bottom: 12px;
}

.products-step__title {
  font-family: var(--ff-jp-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--c-ink);
  margin-bottom: 12px;
}

.products-step p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-ink-soft);
}

/* ---- Brands ---- */
.products-brand-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.products-brand-card__img {
  overflow: hidden;
}

.products-brand-card__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.products-brand-card:hover .products-brand-card__img img { transform: scale(1.04); }

.products-brand-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.products-brand-card__name {
  font-family: var(--ff-en-serif);
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--c-ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}

.products-brand-card__body p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-ink-soft);
  flex: 1;
}

/* ---- Lab ---- */
.products-lab {
  background: var(--c-paper-soft);
}

.products-lab__text {
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--c-ink-soft);
}

.products-topics {
  border-top: 1px solid var(--c-line);
}

.products-topics__head {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--c-gold);
  padding-bottom: 16px;
  margin-bottom: 0;
}

.products-topic {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
}

.products-topic__num {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--c-yuzu);
  opacity: 0.7;
  flex-shrink: 0;
  min-width: 36px;
}

.products-topic__title {
  font-family: var(--ff-jp-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  margin-bottom: 10px;
  line-height: 1.7;
}

.products-topic p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-ink-soft);
}

.products-topic__product {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.products-topic__product-name {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-ink-soft);
}

.products-lab__profile {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
}

.products-lab__profile-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.products-lab__profile-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products-lab__profile-name {
  font-family: var(--ff-jp-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-ink);
}

.products-lab__profile-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  line-height: 1.7;
}

.products-lab__profile-text {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--c-ink-soft);
}

/* ---- OEM ---- */
.products-oem__lead {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--c-ink-soft);
  text-align: center;
}

.products-oem__subhead {
  font-family: var(--ff-jp-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-ink);
  padding-top: 40px;
  border-top: 1px solid var(--c-line);
  margin-top: 56px;
}

.products-ingredient__img {
  overflow: hidden;
  margin-bottom: 20px;
}
.products-ingredient__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.products-ingredient:hover .products-ingredient__img img { transform: scale(1.04); }

.products-ingredient__name {
  font-family: var(--ff-jp-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-ink);
  margin-bottom: 10px;
}

.products-ingredient p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-ink-soft);
}

.products-oem-case__img {
  overflow: hidden;
  margin-bottom: 14px;
}
.products-oem-case__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.products-oem-case__caption {
  font-size: 13px;
  line-height: 1.8;
  color: var(--c-ink-soft);
  letter-spacing: 0.06em;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .products-hero { min-height: 50vh; }
  .products-philosophy__img img { height: 280px; }
  .products-brand-card__img img { height: 200px; }
  .products-lab__profile-img img { height: 220px; }
}

/* =========================================================
   お問い合わせフォーム — page-contact.php / page-contact-business.php
   ========================================================= */

/* ---- Hero ---- */
.contact-hero {
  padding: 160px 0 72px;
  background: var(--c-paper-soft);
  border-bottom: 1px solid var(--c-line);
}

.contact-hero--business {
  background:
    linear-gradient(135deg, rgba(33,56,43,0.06) 0%, rgba(217,178,60,0.06) 100%),
    var(--c-paper-soft);
}

.contact-hero__breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--c-mute);
  margin-bottom: 20px;
}
.contact-hero__breadcrumb a { color: inherit; text-decoration: none; }
.contact-hero__breadcrumb a:hover { color: var(--c-gold); }
.contact-hero__breadcrumb span:not(:last-child)::after { content: "/"; margin-left: 10px; }

.contact-hero__eyebrow {
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--c-gold);
  display: block;
  margin-bottom: 16px;
}

.contact-hero__title {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  margin-bottom: 16px;
}

.contact-hero__lead {
  font-family: var(--ff-jp-serif);
  font-size: 14.5px;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
}

/* ---- Form Wrap ---- */
.contact-section {
  background: var(--c-paper);
}

.contact-wrap {
  max-width: 680px;
  margin: 0 auto;
}

/* ---- Alert ---- */
.contact-alert {
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  border-radius: 2px;
}

.contact-alert--error {
  background: #fff5f5;
  border: 1px solid #e57373;
  color: #c62828;
}

/* ---- Field ---- */
.contact-field {
  margin-bottom: 32px;
}

.contact-field.has-error .contact-input,
.contact-field.has-error .contact-textarea {
  border-color: #e57373;
  background: #fff8f8;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-jp-serif);
  font-size: 13.5px;
  letter-spacing: 0.12em;
  color: var(--c-ink);
  margin-bottom: 10px;
}

.contact-required {
  font-size: 10px;
  letter-spacing: 0.14em;
  background: var(--c-yuzu);
  color: var(--c-ink);
  padding: 2px 8px;
  border-radius: 2px;
  font-family: var(--ff-en-serif);
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  font-family: var(--ff-jp-serif);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--c-ink);
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(168,138,74,0.12);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--c-mute);
  font-size: 13px;
}

.contact-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.9;
}

.contact-error {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #c62828;
}

/* ---- Privacy ---- */
.contact-field--privacy {
  padding: 24px;
  background: var(--c-paper-soft);
  border: 1px solid var(--c-line);
}

.contact-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: var(--c-ink-soft);
  line-height: 1.8;
}

.contact-checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 1px solid var(--c-line);
  border-radius: 2px;
  accent-color: var(--c-green);
  cursor: pointer;
}

.contact-privacy-link {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-privacy-link:hover {
  color: var(--c-yuzu);
}

/* ---- Submit ---- */
.contact-submit {
  margin-top: 40px;
  text-align: center;
}

.contact-submit__btn {
  min-width: 240px;
  padding: 16px 48px;
  font-size: 14px;
  letter-spacing: 0.22em;
  cursor: pointer;
  border: none;
}

/* ---- Thanks ---- */
.contact-thanks {
  text-align: center;
  padding: 64px 32px;
}

.contact-thanks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-green);
  color: var(--c-paper);
  font-size: 28px;
  margin-bottom: 28px;
}

.contact-thanks__title {
  font-family: var(--ff-jp-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  margin-bottom: 20px;
}

.contact-thanks__text {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .contact-hero { padding: 120px 0 48px; }
  .contact-field--privacy { padding: 18px; }
  .contact-submit__btn { min-width: 100%; }
}


/* =========================================================
   B Lab — page-blab.php
   ========================================================= */

.blab-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.blab-hero__bg { position: absolute; inset: 0; z-index: 0; }
.blab-hero__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.blab-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,27,23,0.20) 0%, rgba(31,27,23,0.65) 100%);
  z-index: 1;
}
.blab-hero__inner { position: relative; z-index: 2; padding-top: 160px; }
.blab-hero__breadcrumb {
  display: flex; gap: 10px; font-size: 11px;
  letter-spacing: 0.22em; color: rgba(251,248,241,0.65); margin-bottom: 20px;
}
.blab-hero__breadcrumb a { color: inherit; text-decoration: none; }
.blab-hero__breadcrumb span:not(:last-child)::after { content: "/"; margin-left: 10px; }
.blab-hero__eyebrow {
  font-family: var(--ff-en-serif); font-style: italic; font-size: 13px;
  letter-spacing: 0.28em; color: var(--c-yuzu); display: block; margin-bottom: 16px;
}
.blab-hero__title {
  font-family: var(--ff-en-serif); font-weight: 400;
  font-size: clamp(48px, 7vw, 96px); line-height: 1.2;
  letter-spacing: 0.1em; color: var(--c-paper); margin-bottom: 16px;
}
.blab-hero__title-sub {
  font-family: var(--ff-jp-serif); font-size: clamp(16px, 2vw, 24px);
  font-weight: 500; letter-spacing: 0.16em;
  color: rgba(251,248,241,0.85); display: block; margin-top: 8px;
}
.blab-hero__lead {
  font-family: var(--ff-jp-serif); font-size: 15px; line-height: 2.0;
  letter-spacing: 0.08em; color: rgba(251,248,241,0.82);
}

.blab-programs { background: var(--c-paper-soft); }
.blab-programs__lead {
  max-width: 640px; margin: 20px auto 0; font-size: 14px;
  line-height: 2.0; color: var(--c-ink-soft); text-align: center;
}
.blab-program-card {
  display: flex; flex-direction: column; background: var(--c-paper);
  border: 1px solid var(--c-line); text-decoration: none; height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blab-program-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(31,27,23,0.10); }
.blab-program-card__img { overflow: hidden; }
.blab-program-card__img img {
  width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 1.2s ease;
}
.blab-program-card:hover .blab-program-card__img img { transform: scale(1.04); }
.blab-program-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blab-program-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.blab-program-card__label { font-family: var(--ff-en-serif); font-style: italic; font-size: 13px; letter-spacing: 0.22em; color: var(--c-gold); }
.blab-program-card__stores { display: flex; gap: 6px; flex-wrap: wrap; }
.blab-store-tag { font-size: 11px; letter-spacing: 0.12em; padding: 3px 10px; border-radius: 2px; font-family: var(--ff-jp-serif); }
.blab-store-tag--minoh { background: var(--c-green); color: var(--c-paper); }
.blab-store-tag--sone  { background: var(--c-yuzu);  color: var(--c-ink); }
.blab-program-card__title { font-family: var(--ff-jp-serif); font-size: 17px; font-weight: 500; letter-spacing: 0.08em; color: var(--c-ink); line-height: 1.6; }
.blab-program-card__desc  { font-size: 13.5px; line-height: 1.9; color: var(--c-ink-soft); flex: 1; }
.blab-program-card__more  { font-size: 12px; letter-spacing: 0.18em; color: var(--c-gold); font-family: var(--ff-en-serif); margin-top: 4px; }

.blab-stores__note { max-width: 560px; margin: 16px auto 0; font-size: 13px; line-height: 1.9; color: var(--c-mute); text-align: center; }
.blab-store { background: var(--c-paper); border: 1px solid var(--c-line); height: 100%; }
.blab-store__head { padding: 28px 28px 20px; border-bottom: 1px solid var(--c-line); }
.blab-store__en { font-family: var(--ff-en-serif); font-style: italic; font-size: 12px; letter-spacing: 0.26em; color: var(--c-gold); display: block; margin-bottom: 6px; }
.blab-store__name { font-family: var(--ff-jp-serif); font-size: 18px; font-weight: 500; letter-spacing: 0.1em; color: var(--c-ink); }
.blab-store__body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 20px; }
.blab-store__addr { font-size: 13.5px; line-height: 1.9; color: var(--c-ink-soft); }
.blab-store__tel { display: flex; flex-direction: column; gap: 4px; font-size: 13.5px; color: var(--c-ink-soft); }
.blab-store__tel-label { font-size: 10px; letter-spacing: 0.18em; color: var(--c-gold); margin-right: 8px; font-family: var(--ff-en-serif); }
.blab-store__programs { padding: 16px 0; border-top: 1px solid var(--c-line); }
.blab-store__programs-head { font-size: 11px; letter-spacing: 0.20em; color: var(--c-mute); margin-bottom: 10px; font-family: var(--ff-en-serif); }
.blab-store__program-list { display: flex; gap: 8px; flex-wrap: wrap; }
.blab-program-badge { font-family: var(--ff-en-serif); font-style: italic; font-size: 12px; letter-spacing: 0.16em; padding: 5px 14px; border: 1px solid var(--c-yuzu); color: var(--c-gold); }
.blab-store__map { border-radius: 2px; overflow: hidden; }

.blab-matrix { background: var(--c-paper-soft); padding: 36px 40px; border: 1px solid var(--c-line); }
.blab-matrix__head { font-family: var(--ff-jp-serif); font-size: 15px; font-weight: 500; letter-spacing: 0.12em; color: var(--c-ink); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--c-line); }
.blab-matrix__table-wrap { overflow-x: auto; }
.blab-matrix__table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.blab-matrix__table th,
.blab-matrix__table td { padding: 14px 24px; text-align: center; border-bottom: 1px solid var(--c-line); letter-spacing: 0.08em; }
.blab-matrix__table th { font-family: var(--ff-jp-serif); font-weight: 500; font-size: 12px; letter-spacing: 0.16em; color: var(--c-ink); background: var(--c-paper-deep); }
.blab-matrix__table th:first-child,
.blab-matrix__table td:first-child { text-align: left; font-family: var(--ff-en-serif); font-style: italic; color: var(--c-gold); }
.blab-matrix__ok { color: var(--c-green); font-size: 16px; font-weight: 600; }
.blab-matrix__ng { color: var(--c-mute); }
.blab-matrix__note { font-size: 11px; letter-spacing: 0.14em; color: var(--c-mute); margin-top: 14px; }

@media (max-width: 767px) {
  .blab-hero { min-height: 50vh; }
  .blab-matrix { padding: 24px 20px; }
  .blab-matrix__table th,
  .blab-matrix__table td { padding: 12px 14px; }
}


/* =========================================================
   原材料販売・OEM — page-oem.php
   ========================================================= */

.oem-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end; padding-bottom: 80px; overflow: hidden;
}
.oem-hero__bg { position: absolute; inset: 0; z-index: 0; }
.oem-hero__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.oem-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,27,23,0.20) 0%, rgba(31,27,23,0.65) 100%); z-index: 1;
}
.oem-hero__inner { position: relative; z-index: 2; padding-top: 160px; }
.oem-hero__breadcrumb { display: flex; gap: 10px; font-size: 11px; letter-spacing: 0.22em; color: rgba(251,248,241,0.65); margin-bottom: 20px; }
.oem-hero__breadcrumb a { color: inherit; text-decoration: none; }
.oem-hero__breadcrumb span:not(:last-child)::after { content: "/"; margin-left: 10px; }
.oem-hero__eyebrow { font-family: var(--ff-en-serif); font-style: italic; font-size: 13px; letter-spacing: 0.28em; color: var(--c-yuzu); display: block; margin-bottom: 16px; }
.oem-hero__title { font-family: var(--ff-jp-serif); font-weight: 500; font-size: clamp(28px, 4vw, 52px); line-height: 1.5; letter-spacing: 0.08em; color: var(--c-paper); margin-bottom: 16px; }
.oem-hero__lead { font-family: var(--ff-jp-serif); font-size: 15px; line-height: 2.0; letter-spacing: 0.08em; color: rgba(251,248,241,0.82); }
@media (max-width: 767px) { .oem-hero { min-height: 50vh; } }


/* =========================================================
   近藤先生プロフィール画像
   ========================================================= */

.products-lab__profile-img { overflow: hidden; background: #f0ede8; }
.products-lab__profile-img img {
  width: 100%; height: auto; max-height: 420px;
  object-fit: cover; object-position: top center; display: block;
}


/* =========================================================
   YURAGI STYLEについて — page-about.php
   ========================================================= */

.about-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: flex-end; padding-bottom: 80px; overflow: hidden;
}
.about-hero__bg { position: absolute; inset: 0; z-index: 0; }
.about-hero__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,27,23,0.20) 0%, rgba(31,27,23,0.68) 100%); z-index: 1;
}
.about-hero__inner { position: relative; z-index: 2; padding-top: 160px; }
.about-hero__breadcrumb { display: flex; gap: 10px; font-size: 11px; letter-spacing: 0.22em; color: rgba(251,248,241,0.65); margin-bottom: 20px; }
.about-hero__breadcrumb a { color: inherit; text-decoration: none; }
.about-hero__breadcrumb span:not(:last-child)::after { content: "/"; margin-left: 10px; }
.about-hero__eyebrow { font-family: var(--ff-en-serif); font-style: italic; font-size: 13px; letter-spacing: 0.28em; color: var(--c-yuzu); display: block; margin-bottom: 16px; }
.about-hero__title { font-family: var(--ff-jp-serif); font-weight: 500; font-size: clamp(28px, 4.5vw, 56px); line-height: 1.5; letter-spacing: 0.08em; color: var(--c-paper); margin-bottom: 20px; }
.about-hero__lead { font-family: var(--ff-jp-serif); font-size: 14.5px; line-height: 2.0; letter-spacing: 0.06em; color: rgba(251,248,241,0.82); }

.about-vision-intro { background: var(--c-paper-soft); }
.about-vision-intro__text { max-width: 760px; margin: 24px auto 0; font-size: 15px; line-height: 2.2; letter-spacing: 0.06em; color: var(--c-ink-soft); text-align: center; }

.about-vision-item { padding-block: clamp(64px, 8vw, 108px); border-top: 1px solid var(--c-line); }
.about-vision-item--alt { background: var(--c-paper-soft); }
.about-vision-item__img { overflow: hidden; border-radius: 2px; }
.about-vision-item__img img { width: 100%; height: 420px; object-fit: cover; display: block; transition: transform 1.2s ease; }
.about-vision-item__img:hover img { transform: scale(1.03); }
.about-vision-item__body { padding: 8px 0; }
.about-vision-item__num { font-family: var(--ff-en-serif); font-style: italic; font-size: 12px; letter-spacing: 0.30em; color: var(--c-gold); display: block; margin-bottom: 16px; }
.about-vision-item__title { font-family: var(--ff-jp-serif); font-weight: 500; font-size: clamp(20px, 2.4vw, 30px); line-height: 1.65; letter-spacing: 0.06em; color: var(--c-ink); margin-bottom: 24px; }
.about-vision-item__body p { font-size: 14.5px; line-height: 2.1; letter-spacing: 0.05em; color: var(--c-ink-soft); margin-bottom: 1.2em; }

.about-message { background: var(--c-paper-soft); }
.about-message__profile { background: var(--c-paper); border: 1px solid var(--c-line); overflow: hidden; }
.about-message__img img { width: 100%; height: auto; max-height: 400px; object-fit: cover; object-position: top center; display: block; }
.about-message__profile-body { padding: 20px 22px; }
.about-message__name { font-family: var(--ff-jp-serif); font-size: 18px; font-weight: 500; letter-spacing: 0.1em; color: var(--c-ink); margin-bottom: 6px; }
.about-message__title { font-size: 12px; letter-spacing: 0.1em; color: var(--c-gold); line-height: 1.8; }
.about-message__heading { font-family: var(--ff-jp-serif); font-weight: 500; font-size: clamp(16px, 1.8vw, 22px); line-height: 1.7; letter-spacing: 0.06em; color: var(--c-ink); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--c-line); }
.about-message__text p { font-size: 14.5px; line-height: 2.2; letter-spacing: 0.05em; color: var(--c-ink-soft); margin-bottom: 1.4em; }
.about-message__sig { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--c-line); font-size: 13px; letter-spacing: 0.1em; color: var(--c-ink-soft); text-align: right; }

.about-profile__body { max-width: 800px; margin: 0 auto 48px; font-size: 14.5px; line-height: 2.1; letter-spacing: 0.05em; color: var(--c-ink-soft); }
.about-book { display: flex; gap: 36px; align-items: flex-start; max-width: 640px; margin: 0 auto; padding: 36px; background: var(--c-paper-soft); border: 1px solid var(--c-line); }
.about-book__img { flex-shrink: 0; width: 120px; }
.about-book__img img { width: 100%; height: auto; display: block; box-shadow: 0 4px 16px rgba(31,27,23,0.15); }
.about-book__label { font-family: var(--ff-en-serif); font-style: italic; font-size: 11px; letter-spacing: 0.24em; color: var(--c-gold); display: block; margin-bottom: 8px; }
.about-book__title { font-family: var(--ff-jp-serif); font-size: 17px; font-weight: 500; letter-spacing: 0.08em; color: var(--c-ink); margin-bottom: 6px; }
.about-book__pub { font-size: 12px; letter-spacing: 0.1em; color: var(--c-mute); margin-bottom: 20px; }

.about-history { background: var(--c-paper-soft); }
.about-history__timeline { max-width: 800px; margin: 48px auto 0; }
.about-history__item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--c-line); align-items: baseline; }
.about-history__item:first-child { border-top: 1px solid var(--c-line); }
.about-history__year { font-family: var(--ff-en-serif); font-style: italic; font-size: 18px; letter-spacing: 0.08em; color: var(--c-yuzu); flex-shrink: 0; }
.about-history__content { font-size: 14px; line-height: 1.9; letter-spacing: 0.05em; color: var(--c-ink-soft); }

.about-company__table-wrap { max-width: 800px; margin: 48px auto 0; overflow-x: auto; }
.about-company__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.about-company__table th,
.about-company__table td { padding: 16px 20px; border-bottom: 1px solid var(--c-line); letter-spacing: 0.06em; line-height: 1.8; text-align: left; }
.about-company__table th { width: 160px; font-family: var(--ff-jp-serif); font-weight: 500; font-size: 12.5px; letter-spacing: 0.14em; color: var(--c-gold); background: var(--c-paper-soft); white-space: nowrap; }
.about-company__table td { color: var(--c-ink-soft); }
.about-company__table tr:first-child th,
.about-company__table tr:first-child td { border-top: 1px solid var(--c-line); }

.about-shop { background: var(--c-paper); border: 1px solid var(--c-line); height: 100%; }
.about-shop__head { padding: 24px 28px 20px; border-bottom: 1px solid var(--c-line); }
.about-shop__en { font-family: var(--ff-en-serif); font-style: italic; font-size: 12px; letter-spacing: 0.26em; color: var(--c-gold); display: block; margin-bottom: 6px; }
.about-shop__name { font-family: var(--ff-jp-serif); font-size: 17px; font-weight: 500; letter-spacing: 0.1em; color: var(--c-ink); }
.about-shop__body { padding: 20px 28px 0; display: flex; flex-direction: column; gap: 16px; }
.about-shop__addr { font-size: 13.5px; line-height: 1.9; color: var(--c-ink-soft); }
.about-shop__tel { display: flex; flex-direction: column; gap: 4px; font-size: 13.5px; color: var(--c-ink-soft); }
.about-shop__tel-label { font-size: 10px; letter-spacing: 0.18em; color: var(--c-gold); margin-right: 8px; font-family: var(--ff-en-serif); }
.about-shop__map { overflow: hidden; }

@media (max-width: 767px) {
  .about-hero { min-height: 55vh; }
  .about-vision-item__img img { height: 260px; }
  .about-book { flex-direction: column; gap: 20px; padding: 24px; }
  .about-book__img { width: 100px; }
  .about-history__item { grid-template-columns: 60px 1fr; gap: 16px; }
  .about-company__table th { width: 100px; }
}


/* =========================================================
   プライバシーポリシー — page-privacy.php
   ========================================================= */

.privacy-section { background: var(--c-paper); }
.privacy-body { max-width: 800px; margin: 0 auto; }
.privacy-body p { font-size: 14.5px; line-height: 2.1; letter-spacing: 0.05em; color: var(--c-ink-soft); margin-bottom: 1.4em; }
.privacy-body h2 { font-family: var(--ff-jp-serif); font-weight: 500; font-size: clamp(16px, 1.6vw, 19px); letter-spacing: 0.1em; color: var(--c-ink); margin: 2.8em 0 0.8em; padding: 14px 20px; background: var(--c-paper-soft); border-left: 3px solid var(--c-yuzu); }
.privacy-body ul { padding-left: 0; margin-bottom: 1.4em; list-style: none; }
.privacy-body ul li { font-size: 14.5px; line-height: 2.0; letter-spacing: 0.05em; color: var(--c-ink-soft); padding-left: 20px; position: relative; margin-bottom: 4px; }
.privacy-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--c-yuzu); font-size: 11px; top: 6px; }
.privacy-contact { margin: 24px 0 32px; border: 1px solid var(--c-line); }
.privacy-contact__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.privacy-contact__table th,
.privacy-contact__table td { padding: 14px 20px; border-bottom: 1px solid var(--c-line); letter-spacing: 0.06em; line-height: 1.8; text-align: left; }
.privacy-contact__table th { width: 140px; font-family: var(--ff-jp-serif); font-weight: 500; font-size: 12.5px; letter-spacing: 0.14em; color: var(--c-gold); background: var(--c-paper-soft); white-space: nowrap; }
.privacy-contact__table td { color: var(--c-ink-soft); }
.privacy-contact__table tr:last-child th,
.privacy-contact__table tr:last-child td { border-bottom: none; }
.privacy-contact__link { color: var(--c-green); text-decoration: underline; text-underline-offset: 3px; font-size: 14px; }
.privacy-contact__link:hover { color: var(--c-yuzu); opacity: 1; }
.privacy-date { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--c-line); font-size: 12px !important; letter-spacing: 0.14em; color: var(--c-mute) !important; text-align: right; line-height: 2.0 !important; }
@media (max-width: 767px) { .privacy-contact__table th { width: 100px; } }

/* =========================================================
   トップへ戻るボタン
   ========================================================= */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--c-ink);
  color: var(--c-paper);
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9980;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--c-yuzu);
}

.back-to-top__arrow {
  font-size: 18px;
  line-height: 1;
  font-family: var(--ff-en-serif);
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}
/* food-post 追加CSS v3 */

.article-body:has(.food-post) {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.food-post {
  width: 100%;
  overflow-x: hidden;
}

.food-post__wide {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.food-post__section {
  padding-block: clamp(56px, 7vw, 112px);
  padding-inline: clamp(16px, 4vw, 48px);
  max-width: 1240px;
  margin-inline: auto;
  box-sizing: border-box;
}

.food-post__section--alt {
  background-color: var(--c-paper-soft);
  max-width: none;
}

.food-post__section--alt > .food-post__grid,
.food-post__section--alt > .food-post__section-head,
.food-post__section--alt > .food-post__narrow {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.food-post__section--soft {
  background-color: var(--c-paper-soft);
  max-width: none;
  padding-inline: clamp(16px, 4vw, 48px);
}

.food-post__section--soft > .shop-banner {
  max-width: 1240px;
  margin-inline: auto;
  display: grid;
}

.food-post__section.food-post__products {
  max-width: 1240px;
}

.food-post h1,
.food-post h2,
.food-post h3 {
  font-family: var(--ff-jp-serif);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  border: none;
  padding: 0;
  background: none;
  border-left: none;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.55;
}

.food-post h1 { font-size: clamp(24px, 3vw, 38px); }
.food-post h2 { font-size: clamp(20px, 2.4vw, 30px); }
.food-post h3 { font-size: clamp(18px, 2vw, 24px); }

.food-post .shop-banner__title {
  font-size: clamp(22px, 2.2vw, 30px);
  border: none;
  padding: 0;
  background: none;
  color: var(--c-ink);
  margin: 0;
}

.food-post p {
  font-family: var(--ff-jp-sans);
  font-size: 14.5px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--c-ink-soft);
  margin-bottom: 1.2em;
}

.food-post__eyebrow {
  display: block;
  font-family: var(--ff-en-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--c-gold);
  margin-bottom: 8px;
}

.food-post__eyebrow--light {
  color: var(--c-gold-soft);
}

.food-post__grid {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.food-post__grid--2col {
  grid-template-columns: 1fr 1fr;
}

.food-post__grid-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.food-post__grid-text p {
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--c-ink-soft);
}

@media (max-width: 768px) {
  .food-post__grid--2col {
    grid-template-columns: 1fr;
  }
}

.food-post__narrow {
  max-width: 800px;
  margin-inline: auto;
}

.food-post__narrow p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--c-ink-soft);
}

.food-post__lead-center {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  display: block;
  font-size: 15px;
  line-height: 2.1;
  color: var(--c-ink-soft);
  margin-bottom: 1.2em;
}

.food-post__section-head {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.food-post__divider-line {
  border: none;
  border-top: 1px solid var(--c-line);
  margin-block: 40px;
  display: block;
}

.food-post__gold-label {
  font-family: var(--ff-en-serif) !important;
  font-style: italic;
  font-size: 13px !important;
  letter-spacing: 0.16em;
  color: var(--c-gold) !important;
  margin-bottom: 8px !important;
}

.food-post__hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.food-post__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31,27,23,0.52);
  z-index: 0;
}

.food-post__hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px clamp(16px, 4vw, 80px);
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  box-sizing: border-box;
}

.food-post__hero-copy {
  font-family: var(--ff-jp-serif);
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.6;
  color: var(--c-paper);
  margin: 0 !important;
}

@media (max-width: 767px) {
  .food-post__hero { min-height: 40vh; }
}

.food-post__divider-bg {
  position: relative;
  padding-block: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.food-post__divider-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31,27,23,0.62);
  z-index: 0;
}

.food-post__divider-bg-inner {
  position: relative;
  z-index: 1;
  padding-inline: clamp(16px, 4vw, 48px);
}

.food-post__divider-title {
  color: var(--c-paper) !important;
  font-size: clamp(24px, 3.5vw, 44px) !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  margin-top: 8px;
}

.food-post__divider-lead {
  color: rgba(251,248,241,0.85) !important;
  font-family: var(--ff-jp-serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  margin-top: 16px;
}

.food-post__ingredients-grid {
  margin-top: clamp(32px, 4vw, 56px);
  align-items: start;
}

.food-post__ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.food-post__ingredient {
  padding: 20px 22px;
  border-top: 2px solid var(--c-yuzu);
  background: var(--c-paper);
}

.food-post__ingredient-part {
  font-family: var(--ff-jp-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--c-green);
  margin-bottom: 6px !important;
}

.food-post__ingredient-component {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--c-ink-soft);
  margin-bottom: 4px !important;
}

.food-post__ingredient-effect {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--c-mute);
  margin-bottom: 0 !important;
}

.food-post__product {
  padding-block: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--c-line);
}

.food-post__product:last-child {
  border-bottom: none;
}

.food-post__grid--product {
  grid-template-columns: 2fr 3fr;
  align-items: start;
}

@media (max-width: 768px) {
  .food-post__grid--product {
    grid-template-columns: 1fr;
  }
}

.food-post__product-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.food-post__product-imgs img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  height: auto;
}

.food-post__product-body h2 {
  font-size: clamp(18px, 2vw, 24px) !important;
  margin-bottom: 4px;
}

.food-post__product-price {
  font-family: var(--ff-en-serif) !important;
  font-style: italic;
  font-size: 17px !important;
  letter-spacing: 0.12em;
  color: var(--c-gold) !important;
  margin-bottom: 16px !important;
}

.food-post__product-ingredients {
  font-size: 12px !important;
  letter-spacing: 0.1em;
  color: var(--c-mute) !important;
  padding-top: 12px;
  border-top: 1px solid var(--c-line);
  margin-top: 4px;
  margin-bottom: 20px !important;
}

.food-post__btn {
  margin-top: 8px;
  display: inline-flex;
}
/* food-post v4 差分CSS */

/* 1. タイトルヒーロー（背景画像） */
.is-journal .page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  padding-top: 0;
  background: none;
  text-align: left;
  overflow: hidden;
}
.is-journal .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/themes/yuragi-style/assets/img/food_1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.is-journal .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,27,23,0.20) 0%, rgba(31,27,23,0.65) 100%);
  z-index: 1;
}
.is-journal .page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 160px;
}
.is-journal .page-hero .breadcrumb {
  justify-content: flex-start;
  color: rgba(251,248,241,0.65);
}
.is-journal .page-hero .breadcrumb a { color: rgba(251,248,241,0.65); }
.is-journal .page-hero .breadcrumb span:not(:last-child)::after { color: rgba(251,248,241,0.4); }
.is-journal .page-hero__cat { color: var(--c-yuzu); }
.is-journal .page-hero__title { color: var(--c-paper); }
.is-journal .page-hero__date { color: rgba(251,248,241,0.65); }

/* 2. EYECATCH非表示 */
.is-journal .article-eyecatch { display: none; }

/* 4. ボタン下線を4辺統一 */
.food-post .btn-yuragi { border-bottom-width: 1px; }

/* 5. セクション2：ボタン中央 */
.food-post__btn-center {
  text-align: center;
  margin-top: 40px;
}

/* 5. セクション2グリッドの修正
   v3 CSSの .food-post__section--alt > .food-post__grid が
   直接子セレクタのため効かない場合の補完 */
.food-post__section--alt .food-post__grid {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  box-sizing: border-box;
}

/* 7. 成分リスト v2 */
.food-post__ingredients-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(32px, 4vw, 56px);
}
.food-post__ingredients-v2-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.food-post__ingredient-v2 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.food-post__ingredient-v2-label {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-paper-soft);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--ff-jp-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-green);
  line-height: 1.4;
}
.food-post__ingredient-v2-body { flex: 1; padding-top: 4px; }
.food-post__ingredient-v2-body .food-post__ingredient-component {
  font-size: 11px;
  color: var(--c-mute);
  letter-spacing: 0.08em;
  margin-bottom: 4px !important;
  display: block;
}
.food-post__ingredient-v2-body .food-post__ingredient-effect {
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 0 !important;
  display: block;
}
.food-post__ingredients-v2-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .food-post__ingredients-v2 { grid-template-columns: 1fr; }
}

/* 8. 商品一覧 v2 */
.food-post__product-v2 {
  padding-block: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--c-line);
}
.food-post__product-v2:last-child { border-bottom: none; }
.food-post__product-v2-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 28px;
}
.food-post__product-v2-imgs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  height: auto;
}
.food-post__product-v2-body h2 {
  font-size: clamp(17px, 1.8vw, 22px) !important;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}
.food-post__product-v2-body .food-post__product-price { font-size: 15px !important; }
.food-post__product-v2-body p {
  font-size: 14px;
  line-height: 2.0;
  color: var(--c-ink-soft);
}
.food-post__product-v2-body .food-post__product-ingredients {
  font-size: 12px !important;
  color: var(--c-mute) !important;
  border-top: 1px solid var(--c-line);
  padding-top: 10px;
  margin-top: 8px;
  margin-bottom: 20px !important;
}

/* 10. shop-banner レイアウト修正
   既存の .shop-banner { margin-top: clamp(...) } を上書き */
.food-post__section--soft {
  padding-block: clamp(48px, 6vw, 80px);
}
.food-post__section--soft .shop-banner {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;
  margin-top: 0 !important;
  max-width: 1240px;
  margin-inline: auto;
  width: 100%;
}
@media (max-width: 768px) {
  .food-post__section--soft .shop-banner {
    grid-template-columns: 1fr !important;
  }
}

/* food-post 自動整形 <br> 無効化 */
.food-post__product-v2-imgs br { display: none; }
.food-post__grid-text br + * { margin-top: 0; }


/* =========================================================
   Be Lab — ImmunoPower セクション（追加）
   ========================================================= */

/* Research テキストエリア（full width） */
.blab-research-text {
  max-width: 800px;
  margin-inline: auto;
}
.blab-research-text .products-lab__text {
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
  margin-bottom: 1.4em;
}

/* ImmunoPower レイアウト */
.blab-immunopower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.blab-immunopower__img {
  overflow: hidden;
  border-radius: 2px;
  position: sticky;
  top: 80px;
}
.blab-immunopower__img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.blab-immunopower__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.blab-immunopower__title {
  font-family: var(--ff-jp-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  line-height: 1.5;
}
.blab-immunopower__lead {
  font-size: 15px;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
}
.blab-immunopower__subtitle {
  font-family: var(--ff-jp-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: var(--c-ink);
  padding-left: 12px;
  border-left: 2px solid var(--c-yuzu);
  line-height: 1.7;
  margin-bottom: 10px;
}
.blab-immunopower__body p {
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.05em;
  color: var(--c-ink-soft);
}
.blab-immunopower__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blab-immunopower__list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-ink-soft);
  padding-left: 20px;
  position: relative;
}
.blab-immunopower__list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--c-gold);
}
.blab-immunopower__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--c-paper-soft);
  padding: 24px 28px;
  border: 1px solid var(--c-line);
}
.blab-immunopower__feature-title {
  font-family: var(--ff-jp-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: var(--c-green);
  margin-bottom: 8px;
}
.blab-immunopower__feature p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-ink-soft);
}
.blab-immunopower__voices {
  border-top: 1px solid var(--c-line);
  padding-top: 24px;
}
.blab-immunopower__voice-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blab-immunopower__voice-list li {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-ink-soft);
  padding: 14px 18px;
  background: var(--c-paper);
  border-left: 2px solid var(--c-gold-soft);
  font-family: var(--ff-jp-serif);
}

/* 料金テーブル */
.blab-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.blab-price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ink-soft);
  line-height: 1.7;
}
.blab-price-table td:first-child {
  font-family: var(--ff-jp-serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-mute);
  width: 40%;
}

/* 禁忌事項 */
.blab-immunopower__caution {
  background: var(--c-paper-deep);
  padding: 20px 24px;
  border: 1px solid var(--c-line);
  font-size: 13px;
  line-height: 2.0;
  color: var(--c-ink-soft);
}
.blab-immunopower__caution-head {
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.blab-immunopower__caution ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blab-immunopower__caution li::before {
  content: '・';
  color: var(--c-mute);
}

/* レスポンシブ */
@media (max-width: 991px) {
  .blab-immunopower {
    grid-template-columns: 1fr;
  }
  .blab-immunopower__img {
    position: static;
  }
  .blab-immunopower__img img {
    height: 360px;
  }
}
@media (max-width: 767px) {
  .blab-immunopower__img img {
    height: 260px;
  }
  .blab-immunopower__features {
    padding: 18px 20px;
  }
}