/* ==============================================
   DESIGN TOKENS
   ============================================== */
:root {
  --forest:     #5C821A;
  --lime:       #C6D166;
  --earth:      #0F1B07;
  --bark:       #3D4F1C;
  --moss:       #8AA63B;
  --stone:      #6B6555;
  --cream:      #F7F4EE;
  --parchment:  #EDE9DE;
  --mist:       #D4CFC0;
  --leaf:       #EBF0D0;
  --white:      #FFFFFF;
  --gold:       #C8A84B;   /* 受賞・天皇杯用 */
  --gold-light: #F5E9C8;

  --font-d: 'Zen Old Mincho', serif;
  --font-b: 'Noto Serif JP', serif;

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-full: 999px;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==============================================
   RESET
   ============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); background: var(--cream); color: var(--earth); line-height: 1.8; overflow-x: hidden; }
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ==============================================
   LOADER — CSS のみで自動消滅
   ============================================== */
.loader {
  position: fixed; inset: 0;
  background: var(--earth);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.5rem;
  animation: loaderOut 0.7s var(--ease) 1.6s forwards;
}
.loader-text {
  width: clamp(140px, 30vw, 220px);
}
.loader-text img { width: 100%; height: auto; }
.loader-track {
  width: 100px; height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.loader-track::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--lime);
  transform: translateX(-100%);
  animation: loaderBar 1.5s var(--ease) forwards;
}
@keyframes loaderBar { to { transform: translateX(0); } }
@keyframes loaderOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ==============================================
   SCROLL ANIMATIONS
   ============================================== */
.fade-up    { opacity: 0; transform: translateY(36px);  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.fade-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.fade-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.fade-up.in, .fade-left.in, .fade-right.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ==============================================
   NAVIGATION
   ============================================== */

/* ---- ベース ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, border-bottom 0.4s ease;
}
.nav.sc {
  background: rgba(247,244,238,0.94);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--mist);
}

/* ---- ロゴ（img + filterで色切替） ---- */
.nav-logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  width: clamp(9rem, 12vw, 13rem);
  height: auto; display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
}
.nav.sc .nav-logo-img { filter: none; }

/* ---- 受賞タグ ---- */
.nav-tag {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  margin: 0 auto 0 1.2rem;
  white-space: nowrap;
  transition: color 0.4s;
}
.nav.sc .nav-tag { color: var(--stone); }

/* ---- PC ナビリンク ---- */
.nav-links {
  display: flex; align-items: center;
  gap: clamp(0.7rem, 1.2vw, 1.6rem);
  flex-shrink: 0;
}
.nav-links a {
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  transition: color 0.3s;
  position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--forest);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav.sc .nav-links a { color: var(--stone); }
.nav.sc .nav-links a:hover { color: var(--forest); }

.nav-btn {
  background: var(--forest); color: var(--white) !important;
  padding: 0.5rem 1.1rem; border-radius: var(--r-full);
  font-size: clamp(0.7rem, 0.85vw, 0.78rem) !important;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.2s !important;
  white-space: nowrap;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--bark) !important; transform: translateY(-1px); }

.nav-btn-ghost {
  border: 1px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85) !important;
  padding: 0.45rem 1rem; border-radius: var(--r-full);
  font-size: clamp(0.7rem, 0.85vw, 0.78rem) !important;
  transition: border-color 0.3s, background 0.3s !important;
  white-space: nowrap;
}
.nav-btn-ghost::after { display: none !important; }
.nav-btn-ghost:hover { background: rgba(255,255,255,0.1) !important; }
.nav.sc .nav-btn-ghost { border-color: var(--forest); color: var(--forest) !important; }
.nav.sc .nav-btn-ghost:hover { background: var(--leaf) !important; }

/* ================================================
   ハンバーガーボタン — 3本線 → × モーフ
   ================================================ */
.hamburger {
  display: none;               /* PC では非表示 */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  cursor: pointer;
  background: none; border: none;
  position: relative; flex-shrink: 0;
  z-index: 1100;               /* ドロワーより前面 */
}

/* 3本線の共通スタイル */
.bar {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  left: 50%; transform: translateX(-50%);
  transition:
    top       0.3s cubic-bezier(0.16, 1, 0.3, 1),
    bottom    0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
    opacity   0.2s ease,
    background 0.4s ease;
}
.nav.sc .bar { background: var(--earth); }
.hamburger.is-open .bar { background: var(--white) !important; } /* ドロワー中は常に白 */

/* 通常時の位置 */
.bar-1 { top: 14px; }
.bar-2 { top: 50%; margin-top: -0.75px; }
.bar-3 { bottom: 14px; top: auto; }

/* 開いた状態 → × */
.hamburger.is-open .bar-1 {
  top: 50%; margin-top: -0.75px;
  transform: translateX(-50%) rotate(45deg);
  transition:
    top       0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.hamburger.is-open .bar-2 {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
.hamburger.is-open .bar-3 {
  bottom: auto; top: 50%; margin-top: -0.75px;
  transform: translateX(-50%) rotate(-45deg);
  transition:
    top       0.3s cubic-bezier(0.16, 1, 0.3, 1),
    bottom    0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

/* ================================================
   オーバーレイ
   ================================================ */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(15,27,7,0.55);
  backdrop-filter: blur(2px);
  z-index: 1040;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
.nav-overlay.is-visible {
  opacity: 1; pointer-events: all;
}

/* ================================================
   ドロワーパネル（.nav 内、右スライド）
   ================================================ */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(340px, 88vw);
  background: var(--earth);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-drawer.is-open {
  transform: translateX(0);
}

/* ドロワー内スクロール可能コンテナ */
.nav-drawer-inner {
  display: flex; flex-direction: column;
  min-height: 100%;
  padding: 2rem 2rem 3rem;
}

/* ドロワーヘッダー */
.nav-drawer-header {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.nav-drawer-logo {
  width: 10rem; height: auto; display: block; margin-bottom: 0.7rem;
}
.nav-drawer-award {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

/* ドロワーリンクリスト */
.nav-drawer-links {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0;
  flex: 1;
}
.nav-drawer-links li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  /* リンクを順番に遅延フェードイン */
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity  0.4s ease calc(var(--i) * 0.05s + 0.1s),
    transform 0.4s cubic-bezier(0.16,1,0.3,1) calc(var(--i) * 0.05s + 0.1s);
}
.nav-drawer.is-open .nav-drawer-links li {
  opacity: 1; transform: translateX(0);
}
.nav-drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-drawer-link:hover { color: var(--lime); }
.nav-drawer-link-ja {
  font-family: var(--font-b);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.nav-drawer-link-en {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-drawer-link:hover .nav-drawer-link-en { color: rgba(198,209,102,0.6); }

/* ドロワーCTAボタン */
.nav-drawer-cta {
  display: flex; flex-direction: column; gap: 0.8rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s var(--ease) 0.5s;
}
.nav-drawer.is-open .nav-drawer-cta {
  opacity: 1; transform: translateY(0);
}
.nav-drawer-btn-main {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--forest); color: var(--white);
  padding: 0.9rem 1.4rem; border-radius: var(--r-full);
  font-family: var(--font-b); font-size: 0.88rem; letter-spacing: 0.06em;
  transition: background 0.3s;
}
.nav-drawer-btn-main:hover { background: var(--bark); }
.nav-drawer-btn-ghost {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 1.4rem; border-radius: var(--r-full);
  font-family: var(--font-b); font-size: 0.88rem; letter-spacing: 0.06em;
  transition: border-color 0.3s, background 0.3s;
}
.nav-drawer-btn-ghost:hover { border-color: var(--lime); background: rgba(198,209,102,0.08); color: var(--lime); }

/* ドロワーフッター */
.nav-drawer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.9;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
}
.nav-drawer.is-open .nav-drawer-footer { opacity: 1; }

/* ==============================================
   HERO
   ============================================== */
.hero {
  min-height: 100vh;
  background: url(./img/hero-bg.jpg) no-repeat center/cover;
  background-blend-mode: multiply;
  display: flex; align-items: center;
  padding: 0 2.5rem 7rem;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: var(--earth); opacity: 0.72; z-index: 0;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(92,130,26,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(198,209,102,0.12) 0%, transparent 50%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

/* ヒーロー受賞バッジ */
.hero-award-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.4);
  color: var(--gold);
  font-size: 0.72rem; letter-spacing: 0.12em;
  padding: 0.4rem 1rem; border-radius: var(--r-full);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: heroFade 1s var(--ease) 1.6s forwards;
}
.hero-award-badge svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }

.hero-eyebrow {
  font-size: 0.72rem; color: var(--lime); letter-spacing: 0.35em;
  text-transform: uppercase; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: heroFade 1s var(--ease) 1.8s forwards;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--lime); }
.hero-eyebrow br{ display: none; }
@media (max-width: 768px) {
  .hero-eyebrow br{ display: block; }
  .hero-eyebrow::before { display: none; }
}
.hero-headline {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.2; letter-spacing: 0.05em; margin-bottom: 1.8rem;
  opacity: 0; animation: heroFade 1s var(--ease) 2s forwards;
}
@media (max-width: 768px) { .hero-headline { font-size: 2.2rem; } }
.hero-headline .ac { color: var(--lime); display: block; }
.hero-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.6);
  line-height: 2; margin-bottom: 2.5rem;
  opacity: 0; animation: heroFade 1s var(--ease) 2.2s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0; animation: heroFade 1s var(--ease) 2.4s forwards;
}
@keyframes heroFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.btn-hero-main {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--forest); color: var(--white);
  padding: 0.95rem 1.8rem; border-radius: var(--r-full);
  font-family: var(--font-b); font-size: 0.88rem; letter-spacing: 0.06em;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-hero-main:hover { background: var(--bark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(92,130,26,0.4); }

.btn-hero-sub {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.7); font-size: 0.84rem; letter-spacing: 0.06em;
  transition: color 0.3s;
}
.btn-hero-sub:hover { color: var(--lime); }
.ico-arr {
  width: 28px; height: 28px; border: 1px solid currentColor; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; transition: transform 0.3s;
}
.btn-hero-sub:hover .ico-arr { transform: rotate(45deg); }

.scroll-ind {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: heroFade 1s ease 2.8s forwards;
}
.scroll-ind span { font-size: 0.65rem; color: rgba(255,255,255,0.35); letter-spacing: 0.25em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ==============================================
   共通セクション
   ============================================== */
.sec { padding: 6rem 2.5rem; }
.sec-in { max-width: 1200px; margin: 0 auto; }
.sec-tag {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--forest); display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem;
}
.sec-tag::after { content: ''; width: 48px; height: 1px; background: var(--moss); }
.sec-title { font-family: var(--font-d); font-size: clamp(1.8rem, 3.5vw, 2.9rem); font-weight: 700; line-height: 1.35; letter-spacing: 0.04em; color: var(--earth); margin-bottom: 1.3rem; }
.sec-body { font-size: 0.92rem; color: var(--stone); line-height: 2; max-width: 500px; }

.btn-main {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--forest); color: var(--white);
  padding: 0.95rem 1.9rem; border-radius: var(--r-full);
  font-size: 0.88rem; letter-spacing: 0.06em; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-main:hover { background: var(--bark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(92,130,26,0.35); }

.btn-outline-d {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: transparent; color: var(--earth);
  padding: 0.9rem 1.8rem; border-radius: var(--r-full);
  border: 1.5px solid var(--earth); font-size: 0.88rem; letter-spacing: 0.06em;
  transition: background 0.3s, transform 0.2s;
}
.btn-outline-d:hover { background: rgba(15,27,7,0.06); transform: translateY(-2px); }

.btn-lime {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--lime); color: var(--earth);
  padding: 0.95rem 1.9rem; border-radius: var(--r-full);
  font-size: 0.88rem; letter-spacing: 0.06em; border: none; cursor: pointer; font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}
.btn-lime:hover { background: #b8c358; transform: translateY(-2px); }

.ico { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }

/* ==============================================
   ABOUT
   ============================================== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual { position: relative; aspect-ratio: 4/5; }
.about-bg {
  width: 100%; height: 100%;
  border-radius: 4px 56px 4px 56px; overflow: hidden;
  position: relative;
}
.about-bg img { width: 100%; height: 100%; object-fit: cover; }

/* グリーンワールド八女 パートナーバッジ */
.about-partner {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--leaf); border: 1px solid rgba(92,130,26,0.2);
  color: var(--forest); font-size: 0.75rem; letter-spacing: 0.08em;
  padding: 0.45rem 1rem; border-radius: var(--r-full);
  margin-bottom: 1.4rem;
}
.about-partner svg { width: 14px; height: 14px; stroke: var(--forest); fill: none; stroke-width: 1.5; }

.about-motto {
  font-family: var(--font-d);
  font-size: 0.88rem; color: var(--forest);
  letter-spacing: 0.06em; line-height: 1.9;
  border-left: 2px solid var(--lime);
  padding-left: 1rem; margin: 1.5rem 0;
}

/* ==============================================
   AWARD — 受賞実績
   ============================================== */
.award { background: var(--earth); position: relative; overflow: hidden; }
.award::before { 
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(./img/award-bg.jpg) no-repeat center/cover;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; white-space: nowrap;
  opacity: 0.2;
}
.award-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.award-hd { margin-bottom: 3.5rem; }
.award .sec-tag { color: var(--gold); }
.award .sec-tag::after { background: rgba(200,168,75,0.35); }
.award .sec-title { color: var(--white); }
.award-lead { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 2; max-width: 560px; }

.award-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.award-card {
  background: rgba(255,255,255,0.05);
  /* border: 1px solid rgba(200,168,75,0.2); */
  border-radius: var(--r-lg);
  padding: 2.4rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.4s, border-color 0.3s, transform 0.4s var(--ease);
}
.award-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.award-card:hover { background: rgba(200,168,75,0.07); border-color: rgba(200,168,75,0.45); transform: translateY(-4px); }
.award-card:hover::before { transform: scaleX(1); }
.award-card.main { background: rgba(200,168,75,0.1); border-color: rgba(200,168,75,0.7); backdrop-filter: blur(4px); border-left: none; border-right: none;}
.award-card.main::before { transform: scaleX(1); }

.award-icon {
  font-size: 2rem; line-height: 1; margin-bottom: 1.2rem;
}
.award-year {
  font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 0.6rem;
}
.award-title {
  font-family: var(--font-d); font-size: 1.15rem; font-weight: 700;
  color: var(--white); line-height: 1.5; margin-bottom: 0.7rem; letter-spacing: 0.04em;
}
.award-desc { font-size: 0.83rem; color: rgba(255,255,255,0.58); line-height: 1.9; }

/* 受賞バナー横断 */
.award-banner {
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.award-banner-text {
  font-family: var(--font-d);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold); font-weight: 700; letter-spacing: 0.06em; line-height: 1.6;
}
.award-banner-sub { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 0.3rem; line-height: 1.8; }

/* ==============================================
   FEATURES
   ============================================== */
.features { background: var(--parchment); }
.features-hd { text-align: center; margin-bottom: 3.5rem; }
.features-hd .sec-tag { justify-content: center; }
.features-hd .sec-title { margin-bottom: 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.f-card {
  background: var(--white); border-radius: var(--r-lg);
  position: relative; overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.f-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--forest); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.f-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(15,27,7,0.1);}
/* .f-card:hover::after { transform: scaleX(1); } */
.f-img { aspect-ratio: 16/9; overflow: hidden; }
.f-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.f-card:hover .f-img img { transform: scale(1.04); }
.f-body { padding: 1.8rem 1.8rem 2rem; }
.f-title { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: var(--earth); margin-bottom: 0.6rem; letter-spacing: 0.03em; }
.f-desc { font-size: 0.84rem; color: var(--stone); line-height: 1.9; }

/* ==============================================
   PRODUCTS
   ============================================== */
.products { background: var(--white); }
.products-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.p-card { cursor: pointer; transition: transform 0.4s var(--ease); }
.p-card:hover { transform: translateY(-4px); }
.p-img {
  aspect-ratio: 1/1; border-radius: var(--r-lg);
  margin-bottom: 0.9rem; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.p-card:hover .p-img img { transform: scale(1.04); }
.p-overlay {
  position: absolute; inset: 0; background: rgba(15,27,7,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.p-card:hover .p-overlay { opacity: 1; }
.p-overlay span { color: var(--white); font-size: 0.82rem; letter-spacing: 0.15em; }
.p-tag { display: inline-block; background: var(--leaf); color: var(--forest); font-size: 0.68rem; letter-spacing: 0.1em; padding: 0.25rem 0.65rem; border-radius: var(--r-full); margin-bottom: 0.45rem; }
.p-name { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: var(--earth); margin-bottom: 0.25rem; letter-spacing: 0.05em; line-height: 1.5; }
.p-desc { font-size: 0.78rem; color: var(--stone); line-height: 1.7; }

.rakuten-banner {
  margin-top: 2.5rem; background: var(--leaf); border-radius: var(--r-lg);
  padding: 1.8rem 2.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.rakuten-banner-label { font-size: 0.72rem; color: var(--forest); letter-spacing: 0.18em; margin-bottom: 0.4rem; }
.rakuten-banner-title { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; color: var(--earth); margin-bottom: 0.3rem; }
.rakuten-banner-sub { font-size: 0.82rem; color: var(--stone); }

/* ==============================================
   CRAFT — 美味しさの秘密（4ステップ）
   ============================================== */
.craft { background: var(--parchment); }
.craft-hd { text-align: center; margin-bottom: 4rem; }
.craft-hd .sec-tag { justify-content: center; }
.craft-lead { font-size: 0.93rem; color: var(--stone); line-height: 2.1; max-width: 640px; margin: 0 auto; }

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-bottom: 3rem;
}
.craft-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem 0.88rem; position: relative; overflow: hidden;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.craft-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--lime); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.craft-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(15,27,7,0.09);}
/* .craft-card:hover::before { transform: scaleX(1); } */
.craft-card.accent { background: var(--forest); border-color: transparent; }
.craft-card.accent::before { background: var(--lime); }

.craft-step {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem;
}
.craft-card:not(.accent) .craft-step { color: var(--moss); }
.craft-card.accent       .craft-step { color: var(--lime); }
.craft-step-num {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; font-family: var(--font-d); flex-shrink: 0;
}
.craft-card:not(.accent) .craft-step-num { background: var(--leaf); color: var(--forest); }
.craft-card.accent       .craft-step-num { background: rgba(198,209,102,0.25); color: var(--lime); }

.craft-img{
  margin-bottom: 1rem;
}
.craft-icon { font-size: 1.5rem; line-height: 1; margin-bottom: 0.8rem; }
.craft-title { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: 0.7rem; letter-spacing: 0.03em; line-height: 1.5; }
.craft-card:not(.accent) .craft-title { color: var(--earth); }
.craft-card.accent       .craft-title { color: var(--white); }
.craft-divider { width: 28px; height: 1px; margin: 1rem 0; }
.craft-card:not(.accent) .craft-divider { background: var(--mist); }
.craft-card.accent       .craft-divider { background: rgba(198,209,102,0.3); }
.craft-body { font-size: 0.81rem; line-height: 1.95; }
.craft-card:not(.accent) .craft-body { color: var(--stone); }
.craft-card.accent       .craft-body { color: rgba(255,255,255,0.72); }
.craft-sub { font-size: 0.76rem; line-height: 1.85; margin-top: 0.7rem; }
.craft-card:not(.accent) .craft-sub { color: var(--stone); }
.craft-card.accent       .craft-sub { color: rgba(255,255,255,0.52); }

.craft-banner {
  background: var(--earth); border-radius: var(--r-lg); padding: 2.4rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.craft-banner-eyebrow { font-size: 0.68rem; color: var(--lime); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 0.5rem; }
.craft-banner-title { font-family: var(--font-d); font-size: 1.25rem; color: var(--white); font-weight: 700; margin-bottom: 0.4rem; line-height: 1.5; }
.craft-banner-body { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.8; }

/* ==============================================
   ENJOY / RECIPE
   ============================================== */
.enjoy { background: var(--white); }
.enjoy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.recipe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.r-card { border-radius: var(--r-lg); padding: 1.6rem 1.4rem; transition: transform 0.3s var(--ease); }
.r-card:hover { transform: translateY(-4px); }
.r-card-1 { background: var(--parchment); }
.r-card-2 { background: var(--leaf); }
.r-card-3 { background: var(--leaf); }
.r-card-4 { background: var(--forest); }
.r-kanji { font-family: var(--font-d); font-size: 1.9rem; margin-bottom: 0.7rem; line-height: 1; }
.r-card-1 .r-kanji, .r-card-2 .r-kanji, .r-card-3 .r-kanji { color: var(--forest); }
.r-card-4 .r-kanji { color: var(--lime); }
.r-name { font-family: var(--font-d); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.45rem; }
.r-card-1 .r-name, .r-card-2 .r-name, .r-card-3 .r-name { color: var(--earth); }
.r-card-4 .r-name { color: var(--white); }
.r-body { font-size: 0.78rem; line-height: 1.8; }
.r-card-1 .r-body, .r-card-2 .r-body, .r-card-3 .r-body { color: var(--stone); }
.r-card-4 .r-body { color: rgba(255,255,255,0.68); }

/* 粉末栄養訴求バナー */
.powder-note {
  margin-top: 2rem;
  background: var(--leaf);
  border-radius: var(--r-md);
  padding: 1rem 1.4rem;
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.8rem; color: var(--bark); line-height: 1.8;
}
.powder-note-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ==============================================
   STORY
   ============================================== */
.story { background: var(--earth); position: relative; overflow: hidden; }
.story::before {
  content: '八女'; font-family: var(--font-d); font-size: 38vw; font-weight: 700;
  color: rgba(255,255,255,0.025);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; white-space: nowrap;
}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; position: relative; z-index: 1; }
.story .sec-tag { color: var(--lime); }
.story .sec-tag::after { background: rgba(198,209,102,0.35); }
.story .sec-title { color: var(--white); }
.story .sec-body { color: rgba(255,255,255,0.58); max-width: 100%; }
.story-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.s-img { border-radius: var(--r-lg); overflow: hidden; }
.s-img img { width: 100%; height: 100%; object-fit: cover; }
.s-img-1 { grid-column: span 2; aspect-ratio: 16/8; }
.s-img-2 { aspect-ratio: 1; }
.s-img-3 { aspect-ratio: 1; }

/* ==============================================
   PROCESSING — 加工受託サービス
   ============================================== */
.processing { background: var(--parchment); }
.processing-hd { margin-bottom: 3.5rem; }
.processing-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.processing-lead { font-size: 0.92rem; color: var(--stone); line-height: 2; margin-top: 1rem; }

.processing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.proc-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.proc-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--forest); transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.proc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(15,27,7,0.09); border-color: var(--leaf); }
.proc-card:hover::after { transform: scaleY(1); }
.proc-icon { font-size: 1.5rem; margin-bottom: 0.7rem; line-height: 1; }
.proc-title { font-family: var(--font-d); font-size: 0.95rem; font-weight: 700; color: var(--earth); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.proc-body { font-size: 0.79rem; color: var(--stone); line-height: 1.85; }

.proc-cta {
  margin-top: 1.5rem;
  background: var(--earth); border-radius: var(--r-lg);
  padding: 1.6rem 2rem;
  grid-column: span 2;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.proc-cta-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
.proc-cta-text strong { display: block; font-family: var(--font-d); font-size: 1.05rem; color: var(--white); margin-bottom: 0.3rem; }

/* ==============================================
   PARALLAX DIVIDER
   ============================================== */
.parallax-div {
  background: var(--forest); padding: 5rem 2.5rem; text-align: center; position: relative; overflow: hidden;
}
.parallax-div::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 49px);
}
.parallax-div-text {
  position: relative; z-index: 1; font-family: var(--font-d);
  font-size: clamp(1.6rem, 4vw, 3.2rem); color: var(--white);
  line-height: 1.6; font-weight: 400; letter-spacing: 0.15em;
}
.parallax-div-text small {
  display: block; font-size: 0.4em; color: var(--lime);
  letter-spacing: 0.45em; margin-bottom: 0.6rem; font-family: var(--font-b);
}

/* ==============================================
   COMPANY
   ============================================== */
.company { background: var(--cream); }
.company-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.co-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.co-table tr { border-bottom: 1px solid var(--mist); }
.co-table td { padding: 1rem 0; font-size: 0.86rem; vertical-align: top; }
.co-table td:first-child { color: var(--stone); width: 32%; font-size: 0.8rem; letter-spacing: 0.05em; }
.co-table td:last-child { color: var(--earth); font-weight: 500; line-height: 1.7; }

/* ==============================================
   CTA
   ============================================== */
.cta-sec {
  background: var(--lime); padding: 6rem 2.5rem; text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 15% 50%, rgba(92,130,26,0.28) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 85% 50%, rgba(15,27,7,0.12) 0%, transparent 55%);
}
.cta-in { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-tag { font-size: 0.7rem; letter-spacing: 0.35em; color: var(--bark); text-transform: uppercase; margin-bottom: 1.3rem; }
.cta-title { font-family: var(--font-d); font-size: clamp(1.7rem, 3.5vw, 2.7rem); color: var(--earth); font-weight: 700; line-height: 1.45; letter-spacing: 0.05em; margin-bottom: 1rem; }
.cta-body { font-size: 0.9rem; color: var(--bark); line-height: 2; margin-bottom: 2.5rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* ==============================================
   CONTACT
   ============================================== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; }
.contact-info { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.ci-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.ci-icon { width: 38px; height: 38px; background: var(--leaf); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 18px; height: 18px; stroke: var(--forest); fill: none; stroke-width: 1.5; }
.ci-label { font-size: 0.72rem; color: var(--stone); letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.ci-val { font-size: 0.9rem; color: var(--earth); font-weight: 500; line-height: 1.6; }

.form-row { margin-bottom: 1.3rem; }
.form-label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--stone); margin-bottom: 0.5rem; }
.form-label .req { color: var(--forest); margin-left: 0.25rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--mist); border-radius: var(--r-md);
  font-family: var(--font-b); font-size: 0.88rem; color: var(--earth); background: var(--cream);
  outline: none; appearance: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--forest); background: var(--white); box-shadow: 0 0 0 3px rgba(92,130,26,0.1);
}
.form-textarea { min-height: 130px; resize: vertical; line-height: 1.8; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-submit {
  width: 100%; padding: 1.05rem;
  background: var(--forest); color: var(--white);
  border: none; border-radius: var(--r-full); font-family: var(--font-d);
  font-size: 1rem; letter-spacing: 0.1em; cursor: pointer; margin-top: 0.3rem;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.form-submit:hover { background: var(--bark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,130,26,0.3); }
.form-note { font-size: 0.72rem; color: var(--stone); text-align: center; margin-top: 0.9rem; line-height: 1.8; }

/* --- ハニーポット（画面外に隠す。display:none は一部botに読まれるため使わない） --- */
.hp-field {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* --- Turnstile --- */
.form-turnstile { margin-top: 0.4rem; margin-bottom: 1rem; }
.form-turnstile .cf-turnstile { min-height: 65px; }
.form-turnstile-error { margin-top: 0.6rem; }

/* --- 確認画面 --- */
.form-confirm-lead { font-size: 0.86rem; color: var(--earth); line-height: 1.9; margin-bottom: 1.4rem; }
.confirm-list {
  display: grid; grid-template-columns: minmax(9rem, auto) 1fr;
  gap: 0; border: 1px solid var(--mist); border-radius: var(--r-md); overflow: hidden;
  background: var(--cream);
}
.confirm-list dt {
  padding: 0.85rem 1rem; font-size: 0.76rem; letter-spacing: 0.08em;
  color: var(--stone); background: var(--white); border-bottom: 1px solid var(--mist);
  display: flex; align-items: center;
}
.confirm-list dd {
  padding: 0.85rem 1rem; font-size: 0.88rem; color: var(--earth);
  border-bottom: 1px solid var(--mist); white-space: pre-wrap; word-break: break-word; line-height: 1.8;
}
.confirm-list dt:last-of-type, .confirm-list dd:last-of-type { border-bottom: none; }
.form-error {
  margin-top: 1.1rem; padding: 0.85rem 1rem; border-radius: var(--r-md);
  background: rgba(190,60,50,0.08); border: 1px solid rgba(190,60,50,0.3);
  color: #a83228; font-size: 0.82rem; line-height: 1.7;
}
.form-confirm-actions { display: grid; grid-template-columns: 1fr 1.6fr; gap: 1rem; margin-top: 1.5rem; }
.form-back {
  width: 100%; padding: 1.05rem; background: transparent; color: var(--earth);
  border: 1px solid var(--mist); border-radius: var(--r-full); font-family: var(--font-d);
  font-size: 0.95rem; letter-spacing: 0.08em; cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.form-back:hover { background: var(--white); border-color: var(--forest); transform: translateY(-2px); }
.form-submit:disabled, .form-back:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

/* --- 完了画面 --- */
.form-complete { text-align: center; padding: 2rem 1rem; }
.form-complete-icon svg {
  width: 68px; height: 68px; margin: 0 auto 1.4rem;
  fill: none; stroke: var(--forest); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round; display: block;
}
.form-complete-title { font-family: var(--font-d); font-size: 1.4rem; color: var(--earth); margin-bottom: 1rem; letter-spacing: 0.06em; }
.form-complete-body { font-size: 0.88rem; color: var(--stone); line-height: 2; margin-bottom: 1.8rem; }
.form-complete .form-back { width: auto; padding: 0.9rem 2.2rem; }

/* ==============================================
   FOOTER
   ============================================== */
.footer { background: var(--earth); padding: 5rem 2.5rem 2rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { font-family: var(--font-d); font-size: 1.9rem; color: var(--white); font-weight: 700; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.42); line-height: 2; margin-bottom: 1.3rem; max-width: 260px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(198,209,102,0.1); border: 1px solid rgba(198,209,102,0.2);
  color: var(--lime); font-size: 0.7rem; letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem; border-radius: var(--r-full);
}
.footer-badge svg { width: 11px; height: 11px; stroke: var(--lime); fill: none; stroke-width: 1.5; }
.footer-col-title { font-size: 0.72rem; color: var(--lime); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; transition: color 0.3s; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.8rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.72rem; color: rgba(255,255,255,0.28); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--lime); }

/* ==============================================
   PRIVACY MODAL
   ============================================== */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
}
.privacy-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}
.privacy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 7, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.privacy-modal.is-open .privacy-modal__overlay { opacity: 1; }
.privacy-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 680px;
  max-height: 85svh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(15, 27, 7, 0.45);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.privacy-modal.is-open .privacy-modal__panel {
  opacity: 1;
  transform: translateY(0);
}
.privacy-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem 1.2rem;
  border-bottom: 1px solid var(--mist);
  flex-shrink: 0;
}
.privacy-modal__title {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--earth);
  letter-spacing: 0.1em;
  margin: 0;
}
.privacy-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--r-sm);
  color: var(--stone);
  transition: background 0.2s, color 0.2s;
}
.privacy-modal__close:hover { background: var(--parchment); color: var(--earth); }
.privacy-modal__close:focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; }
.privacy-modal__close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.privacy-modal__body {
  overflow-y: auto;
  padding: 1.8rem 2rem 2rem;
  overscroll-behavior: contain;
  line-height: 1.9;
  color: var(--stone);
  font-size: 0.82rem;
}
.privacy-modal__body h3 {
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--earth);
  letter-spacing: 0.06em;
  margin: 1.8rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--mist);
}
.privacy-modal__body p { margin-bottom: 0.8rem; }
.privacy-modal__body ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.privacy-modal__body li { list-style: disc; }
.privacy-modal__date {
  margin-top: 2rem;
  font-size: 0.72rem;
  color: var(--mist);
  text-align: right;
}

@media (max-width: 480px) {
  .privacy-modal { padding: 0; align-items: flex-end; }
  .privacy-modal__panel { max-height: 90svh; border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .privacy-modal__header { padding: 1.2rem 1.2rem 1rem; }
  .privacy-modal__body { padding: 1.2rem; }
}

/* ==============================================
   RESPONSIVE
   ============================================== */

/* ---- 1140px 以下: ハンバーガー表示 ---- */
@media (max-width: 1140px) {
  .nav-links { display: none; }         /* PCメニューを非表示 */
  .nav-tag   { display: none; }         /* 受賞タグも非表示 */
  .hamburger { display: flex; }         /* ハンバーガー表示 */
}

/* ---- 1140px 超: ドロワー関連は非表示 ---- */
@media (min-width: 1141px) {
  .hamburger  { display: none !important; }
  .nav-drawer { display: none !important; }
  .nav-overlay { display: none !important; }
}

@media (max-width: 1024px) {
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .award-grid { grid-template-columns: 1fr; }
  .processing-inner { grid-template-columns: 1fr; gap: 3rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 0 1.5rem 5rem; }
  .about-grid,
  .story-grid,
  .contact-grid,
  .company-grid,
  .enjoy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .features-grid,
  .craft-grid,
  .processing-grid { grid-template-columns: 1fr; }
  .proc-cta { grid-column: span 1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-hd { flex-direction: column; align-items: flex-start; }
  .story-imgs { grid-template-columns: 1fr; }
  .s-img-1 { grid-column: span 1; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .form-2col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sec { padding: 4rem 1.5rem; }
  .recipe-grid { grid-template-columns: 1fr 1fr; }
  .craft-banner { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .recipe-grid { grid-template-columns: 1fr; }
}