/*
Theme Name: 鶏から屋さとちゃん
Theme URI:
Author:
Description: 鶏から屋さとちゃん公式サイトテーマ
Version: 2.0.0
Text Domain: satochan-karaage
WC Tested Up To: 9.0
*/

/* ===================================================
   0. VARIABLES
   =================================================== */
:root {
  --dark:       #0d0b09;
  --dark-2:     #1a1510;
  --dark-3:     #2e2418;
  --fire:       #ff4500;
  --fire-dk:    #cc3200;
  --orange:     #ff7800;
  --amber:      #ffbb00;
  --amber-lt:   #ffe680;
  --cream:      #fdf8ee;
  --white:      #ffffff;
  --smoke:      #5a5248;
  --border:     #d6cfc2;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===================================================
   1. RESET / BASE
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ===================================================
   2. UTILITIES
   =================================================== */
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* ===================================================
   3. SCROLL REVEAL SYSTEM
   =================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(56px);
  transition:
    opacity  0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}
[data-reveal="left"]  { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="scale"] { transform: scale(0.82) translateY(20px); }
[data-reveal="none"]  { transform: none; }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ===================================================
   4. BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 3px solid transparent;
  border-radius: 4px;
  transition:
    transform   .2s var(--ease-out-back),
    box-shadow  .2s ease,
    background  .15s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}

.btn:hover::after { background: rgba(255,255,255,.08); }

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.btn:active { transform: translateY(0) scale(.98); }

.btn--fire {
  background: var(--fire);
  border-color: var(--fire);
  color: var(--white);
}
.btn--fire:hover { background: var(--fire-dk); border-color: var(--fire-dk); }

.btn--amber {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--dark);
}

.btn--dark {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.btn--outline-w {
  background: transparent;
  border-color: rgba(255,255,255,.65);
  color: var(--white);
}
.btn--outline-w:hover { background: rgba(255,255,255,.12); }

.btn--outline-d {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.btn--outline-d:hover { background: var(--dark); color: var(--white); }

.btn--lg { padding: 20px 40px; font-size: 1.1rem; }

/* ===================================================
   5. LOADING OVERLAY
   =================================================== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity .6s ease, visibility .6s ease;
}

#page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-emoji {
  font-size: 3.5rem;
  animation: loaderSpin 0.8s linear infinite;
}

.loader-text {
  font-size: 1rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: 0.2em;
  animation: loaderPulse 0.9s ease-in-out infinite alternate;
}

@keyframes loaderSpin   { to { transform: rotate(360deg); } }
@keyframes loaderPulse  { from { opacity: .4; } to { opacity: 1; } }

/* ===================================================
   6. SITE HEADER
   =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(13,11,9,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--fire);
  transition: background .3s;
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  flex-shrink: 0;
}
.site-logo__sub  {
  font-size: .68rem;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: .1em;
}
.site-logo__main {
  font-size: clamp(1rem, 2.8vw, 1.4rem);
  font-weight: 900;
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.site-nav a {
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: .88rem;
  padding: 9px 13px;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.site-nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.site-nav a.nav--shop {
  background: var(--fire);
  color: var(--white);
  padding: 9px 16px;
}
.site-nav a.nav--shop:hover { background: var(--fire-dk); }

.header-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 4px;
  color: var(--white);
  font-weight: 900;
  font-size: .88rem;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
}
.header-cart:hover { background: rgba(255,255,255,.18); transform: scale(1.04); }

.header-cart__badge {
  min-width: 22px; height: 22px;
  background: var(--amber); color: var(--dark);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .76rem; font-weight: 900;
}

.menu-toggle {
  display: none;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.22);
  color: var(--white);
  border-radius: 4px;
  padding: 10px 14px;
  font-weight: 700; cursor: pointer; font-size: .88rem;
  flex-shrink: 0;
}

.cart-float {
  display: none;
  position: fixed; bottom: 20px; right: 20px;
  z-index: 400;
  background: var(--dark); color: var(--white);
  padding: 14px 20px; border-radius: 999px;
  font-weight: 900; font-size: .95rem;
  box-shadow: 0 6px 28px rgba(0,0,0,.45);
  align-items: center; gap: 8px;
  border: 3px solid var(--amber);
  animation: floatPulse 2.5s ease-in-out infinite;
}

.cart-float__badge {
  min-width: 22px; height: 22px;
  background: var(--amber); color: var(--dark);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .76rem; font-weight: 900;
}

@keyframes floatPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(0,0,0,.45), 0 0 0 0 rgba(255,187,0,.5); }
  50%      { box-shadow: 0 8px 36px rgba(0,0,0,.55), 0 0 0 10px rgba(255,187,0,0); }
}

/* ===================================================
   7. HERO
   =================================================== */

/* Outer shell — just a stacking context */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
}

/* ── Background layer (carousel + blobs) ── */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* ── Foreground layer (content) ── */
.hero-fg {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;   /* clear fixed header */
  padding-bottom: 60px;
}

/* Animated gradient blobs (live inside .hero-bg) */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}

.hero-blob--1 {
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(255,69,0,.35) 0%, rgba(255,120,0,.12) 50%, transparent 70%);
  animation: blobDrift1 9s ease-in-out infinite alternate;
}
.hero-blob--2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(255,187,0,.2) 0%, transparent 65%);
  animation: blobDrift2 11s ease-in-out infinite alternate;
}
.hero-blob--3 {
  width: 400px; height: 400px;
  top: 30%; left: 35%;
  background: radial-gradient(circle, rgba(255,69,0,.1) 0%, transparent 60%);
  animation: blobDrift3 7s ease-in-out infinite alternate;
}

@keyframes blobDrift1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-60px, 40px) scale(1.15); }
}
@keyframes blobDrift2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(50px, -60px) scale(1.2); }
}
@keyframes blobDrift3 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 50px) scale(0.85); }
}

/* Floating karaage particles (appended to .hero-bg via JS) */
.hero-particle {
  position: absolute;
  bottom: -20px;
  pointer-events: none;
  animation: particleRise linear forwards;
  z-index: 2;
  user-select: none;
  line-height: 1;
  will-change: transform, opacity;
}

@keyframes particleRise {
  0%   { transform: translateY(0) rotate(0deg)   scale(0.5); opacity: 0; }
  10%  { opacity: 1; transform: translateY(-10vh) rotate(45deg) scale(1); }
  85%  { opacity: .7; }
  100% { transform: translateY(-110vh) rotate(400deg) scale(0.7); opacity: 0; }
}

/* Hero content wrapper (inside .hero-fg)
   ─ .container を使わず独自パディングで余白を確保 ─ */
.hero__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* 左右: 小さい画面でも必ず32px以上の余白を確保 */
  padding-top:    clamp(20px, 3vw, 40px);
  padding-bottom: clamp(20px, 3vw, 40px);
  padding-left:   clamp(32px, 6vw, 120px);
  padding-right:  clamp(32px, 6vw, 120px);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--dark);
  font-weight: 900;
  font-size: .82rem;
  padding: 7px 16px;
  border-radius: 3px;
  letter-spacing: .06em;
  margin-bottom: 32px;
  transform-origin: left center;
  animation: tagPop .6s var(--ease-out-back) .2s both;
}

@keyframes tagPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.hero__title {
  /*
   * vw ベースでスケール。各行の文字数は最大7字。
   * white-space: nowrap で行内折り返しを完全に防ぐ。
   * 最小値 1.8rem（≒29px）→ 320px 幅でも 7字 ≈ 203px < 256px(320-64) で収まる。
   */
  font-size: clamp(1.8rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 30px;
}

.hero__title-line {
  display: block;
  overflow: hidden;
  white-space: nowrap; /* ← 各行内での折り返しを禁止 */
}

.hero__title-line-inner {
  display: block;
  animation: titleSlideUp .9s var(--ease-out-expo) both;
}

.hero__title-line:nth-child(1) .hero__title-line-inner { animation-delay: .3s; }
.hero__title-line:nth-child(2) .hero__title-line-inner { animation-delay: .5s; }
.hero__title-line:nth-child(3) .hero__title-line-inner { animation-delay: .7s; }

@keyframes titleSlideUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.hero__title em {
  font-style: normal;
  color: var(--amber);
  -webkit-text-stroke: 1px var(--amber);
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.85;
  animation: fadeInUp .9s var(--ease-out-expo) .9s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp .9s var(--ease-out-expo) 1.1s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: fadeInUp .9s var(--ease-out-expo) 1.6s both;
}

.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  animation: scrollLineDrop 1.5s ease-in-out infinite;
}

@keyframes scrollLineDrop {
  0%,100% { transform: scaleY(0); transform-origin: top; }
  50%      { transform: scaleY(1); transform-origin: top; }
}

/* ===================================================
   8. MARQUEE TICKER
   =================================================== */
.marquee-strip {
  background: var(--amber);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  will-change: transform;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: .04em;
  flex-shrink: 0;
}

.marquee-sep {
  color: var(--fire);
  font-size: 1.2rem;
}

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

/* ===================================================
   9. SECTION BASE
   =================================================== */
.section {
  padding: clamp(64px, 10vw, 128px) 0;
}

.section--dark   { background: var(--dark);   color: var(--white); }
.section--dark-2 { background: var(--dark-2); color: var(--white); }
.section--amber  { background: var(--amber);  color: var(--dark);  }

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

.section-head__en {
  display: block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 12px;
}
.section--dark .section-head__en,
.section--dark-2 .section-head__en { color: var(--amber); }
.section--amber .section-head__en   { color: rgba(0,0,0,.4); }

.section-head__ja {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.section-head__bar {
  display: block;
  width: 0;
  height: 6px;
  border-radius: 3px;
  background: var(--fire);
  margin-top: 18px;
  transition: width 1s var(--ease-out-expo) .3s;
}
.is-visible .section-head__bar { width: 56px; }
.section--dark .section-head__bar,
.section--dark-2 .section-head__bar { background: var(--amber); }
.section--amber .section-head__bar   { background: var(--dark); }

/* ===================================================
   10. STATS
   =================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--dark-3);
  border: 2px solid rgba(255,187,0,.2);
  border-radius: 8px;
  transition: border-color .3s, transform .3s;
}
.stat-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.stat-card__num {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card__label {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  line-height: 1.5;
}

/* ===================================================
   11. CHARACTER / INTRO
   =================================================== */
.char-section {
  background: var(--amber);
  padding: clamp(64px, 9vw, 120px) 0;
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%);
  margin: -3vw 0;
  position: relative;
  z-index: 2;
}

.char-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

.char__tag {
  display: inline-block;
  background: var(--dark);
  color: var(--amber);
  font-weight: 900;
  font-size: .76rem;
  padding: 5px 12px;
  border-radius: 3px;
  letter-spacing: .12em;
  margin-bottom: 20px;
}

.char__title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.22;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.char__body {
  font-size: 1rem;
  color: var(--dark-3);
  line-height: 1.88;
}
.char__body p + p { margin-top: 16px; }
.char__body strong { font-weight: 900; color: var(--dark); }

.char__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 12px 12px 0 var(--dark);
  transition: transform .3s var(--ease-out-expo), box-shadow .3s;
  aspect-ratio: 4/3;
}
.char__image-wrap:hover {
  transform: translate(-4px, -4px);
  box-shadow: 16px 16px 0 var(--dark);
}

.char__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.char__image-wrap:hover img { transform: scale(1.06); }

.char__image-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}

/* ===================================================
   12. STORE SECTION
   =================================================== */
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.store-card {
  background: var(--white);
  border: 3px solid var(--dark);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .25s var(--ease-out-expo), box-shadow .25s;
}
.store-card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 10px 10px 0 var(--dark);
}

.store-card__image {
  aspect-ratio: 16/8;
  overflow: hidden;
  background: var(--dark-3);
  position: relative;
}
.store-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.store-card:hover .store-card__image img { transform: scale(1.07); }
.store-card__image-fallback {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
}

.store-card__head {
  background: var(--dark);
  padding: 16px 22px;
}
.store-card__label {
  font-size: .7rem; font-weight: 900;
  letter-spacing: .18em; color: var(--amber);
  text-transform: uppercase; margin-bottom: 5px;
}
.store-card__name {
  font-size: 1.2rem; font-weight: 900; color: var(--white);
}

.store-card__body { padding: 22px; }

.store-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.store-info__row { display: flex; gap: 14px; font-size: .93rem; line-height: 1.6; }
.store-info__key {
  font-weight: 900; min-width: 72px;
  color: var(--smoke); font-size: .82rem;
  padding-top: 2px; flex-shrink: 0;
}

.store-links { display: flex; flex-wrap: wrap; gap: 8px; }

.store-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  border: 2px solid var(--dark);
  border-radius: 4px;
  font-weight: 900; font-size: .82rem;
  transition: background .15s, color .15s, transform .15s;
}
.store-link:hover { background: var(--dark); color: var(--white); transform: scale(1.04); }
.store-link--ig { border-color: #c13584; color: #c13584; }
.store-link--ig:hover { background: #c13584; color: var(--white); border-color: #c13584; }
.store-link--tb { border-color: #e65c1d; color: #e65c1d; }
.store-link--tb:hover { background: #e65c1d; color: var(--white); border-color: #e65c1d; }

/* ===================================================
   13. KITCHEN CAR
   =================================================== */
.kc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

.kc-image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid var(--orange);
  box-shadow: 0 0 60px rgba(255,120,0,.2);
  aspect-ratio: 4/3;
  transition: box-shadow .4s;
}
.kc-image-wrap:hover { box-shadow: 0 0 100px rgba(255,120,0,.4); }
.kc-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.kc-image-wrap:hover img { transform: scale(1.05); }
.kc-image-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  background: var(--dark-3);
  font-size: 4.5rem;
}
.kc-image-fallback span {
  font-size: .8rem; font-weight: 900;
  color: var(--orange); letter-spacing: .1em;
}

.kc-features { display: flex; flex-direction: column; gap: 22px; margin: 28px 0; }

.kc-feature { display: flex; gap: 16px; align-items: flex-start; }

.kc-feature__icon {
  width: 36px; height: 36px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,120,0,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(255,120,0,0); }
}

.kc-feature__text strong {
  display: block; color: var(--white); font-weight: 900;
  margin-bottom: 3px; font-size: 1rem;
}
.kc-feature__text span {
  color: rgba(255,255,255,.72); font-size: .92rem; line-height: 1.65;
}

/* ===================================================
   14. MENU
   =================================================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu-card {
  background: var(--white);
  border: 3px solid var(--dark);
  border-radius: 10px;
  overflow: hidden;
  cursor: default;
  transition: transform .25s var(--ease-out-expo), box-shadow .25s;
}
.menu-card:hover {
  transform: translate(-4px, -6px) rotate(-.5deg);
  box-shadow: 8px 10px 0 var(--dark);
}

.menu-card__thumb {
  background: linear-gradient(135deg, #ffe680 0%, #ffd080 100%);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 3px solid var(--dark);
  position: relative;
  overflow: hidden;
}

.menu-card__thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card__thumb img { transform: scale(1.08); }

.menu-card__emoji {
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.2));
}

.menu-card__body { padding: 18px 20px; }
.menu-card__name { font-size: 1rem; font-weight: 900; margin-bottom: 7px; line-height: 1.4; }
.menu-card__desc { font-size: .84rem; color: var(--smoke); line-height: 1.65; }

/* ===================================================
   15. EC / SHOP
   =================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 3px solid var(--dark);
  border-radius: 10px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease-out-expo), box-shadow .25s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.product-card__thumb {
  background: linear-gradient(135deg, #ffe680 0%, #fdd090 100%);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  border-bottom: 3px solid var(--dark);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.product-card__thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card__thumb img { transform: scale(1.07); }

.product-card__body {
  padding: 18px 20px;
  flex: 1; display: flex; flex-direction: column;
}
.product-card__name { font-size: .98rem; font-weight: 900; margin-bottom: 8px; line-height: 1.45; }
.product-card__price {
  font-size: 1.35rem; font-weight: 900; color: var(--fire);
  margin-bottom: 16px;
}
.product-card__price .woocommerce-Price-currencySymbol { font-size: .88em; }
.product-card__dummy-note { font-size: .82rem; color: var(--smoke); line-height: 1.6; margin-bottom: 14px; }
.product-card__actions { margin-top: auto; }

.btn--add-cart {
  width: 100%;
  background: var(--dark); color: var(--white);
  border: 2px solid var(--dark);
  border-radius: 4px;
  padding: 12px;
  font-weight: 900; font-size: .9rem;
  cursor: pointer;
  transition: background .15s, transform .15s;
  display: block; text-align: center;
}
.btn--add-cart:hover { background: var(--fire); border-color: var(--fire); transform: scale(1.02); }

.ec-cta {
  margin-top: 48px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}

/* ===================================================
   16. SNS SECTION
   =================================================== */
.sns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 44px auto 0;
}

.sns-card {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
  border-radius: 10px;
  border: 3px solid rgba(255,255,255,.12);
  transition: border-color .25s, background .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.sns-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(225,48,108,.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.sns-card:hover { border-color: #e1306c; transform: translateY(-4px); }
.sns-card:hover::before { opacity: 1; }

.sns-card__icon { font-size: 2.4rem; position: relative; z-index: 1; }
.sns-card__info { position: relative; z-index: 1; }
.sns-card__label { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .14em; margin-bottom: 5px; }
.sns-card__name  { font-weight: 900; font-size: .96rem; color: var(--white); line-height: 1.5; }

/* ===================================================
   17. FOOTER
   =================================================== */
.site-footer {
  background: var(--dark);
  border-top: 4px solid var(--fire);
  padding: clamp(56px, 8vw, 108px) 0 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}

.footer-brand__name { font-size: 1.35rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.footer-brand__sub  { font-size: .84rem; color: rgba(255,255,255,.45); margin-bottom: 24px; line-height: 1.75; }

.footer-sns { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-sns a {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.72); font-weight: 700; font-size: .83rem;
  padding: 9px 13px;
  border: 2px solid rgba(255,255,255,.14);
  border-radius: 4px;
  transition: border-color .15s, color .15s, transform .15s;
}
.footer-sns a:hover { border-color: #e1306c; color: var(--white); transform: scale(1.05); }

.footer-nav__head { color: rgba(255,255,255,.36); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 900; margin-bottom: 16px; }
.footer-nav__list { display: flex; flex-direction: column; gap: 10px; }
.footer-nav__list a { color: rgba(255,255,255,.72); font-size: .9rem; font-weight: 700; transition: color .15s, transform .15s; display: inline-block; }
.footer-nav__list a:hover { color: var(--amber); transform: translateX(4px); }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  text-align: center;
  color: rgba(255,255,255,.32);
  font-size: .82rem;
}

/* ===================================================
   18. PAGE / WOOCOMMERCE
   =================================================== */
.page-wrap {
  padding: clamp(56px, 8vw, 108px) 0;
  min-height: 60vh;
  padding-top: calc(clamp(56px, 8vw, 108px) + 80px);
}

/* ===================================================
   19. 特商法
   =================================================== */
.tokusho-wrap {
  padding: clamp(56px, 8vw, 108px) 0;
  padding-top: calc(clamp(56px, 8vw, 108px) + 80px);
}
.tokusho-head {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 3px solid var(--dark);
}
.tokusho-head h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 900; margin-bottom: 14px; line-height: 1.25; }
.tokusho-head p  { color: var(--smoke); line-height: 1.8; font-size: .95rem; }

.tokusho-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.tokusho-table th, .tokusho-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.75; }
.tokusho-table th { width: 230px; font-weight: 900; background: #f2ede2; white-space: nowrap; font-size: .9rem; }
.tokusho-table tr:first-child th, .tokusho-table tr:first-child td { border-top: 2px solid var(--dark); }
.tokusho-table tr:last-child  th, .tokusho-table tr:last-child  td { border-bottom: 2px solid var(--dark); }

/* ===================================================
   19b. HERO CAROUSEL  (inside .hero-bg)
   =================================================== */

/* Carousel fills .hero-bg completely */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Each slide fills the carousel */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
  overflow: hidden;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient overlay — left heavy so text on left stays readable */
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    linear-gradient(to right, rgba(13,11,9,.88) 30%, rgba(13,11,9,.5) 70%, rgba(13,11,9,.35) 100%),
    linear-gradient(to bottom, rgba(13,11,9,.25) 0%, transparent 50%, rgba(13,11,9,.5) 100%);
}

/* Carousel progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.12);
  z-index: 3;
  overflow: hidden;
}

.hero-progress__bar {
  height: 100%;
  background: var(--amber);
  width: 0%;
  transition: width linear;
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 120px;
  right: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  cursor: pointer;
  transition: background .3s, transform .3s, border-color .3s;
  padding: 0;
}

.hero-dot.is-active {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.4);
}

/* Award badge */
.hero-award {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #b8920f 0%, #f0cf50 48%, #b8920f 100%);
  color: #2a1f00;
  font-weight: 900;
  font-size: .84rem;
  padding: 10px 20px;
  border-radius: 4px;
  margin-bottom: 32px;
  box-shadow: 0 4px 24px rgba(197,162,39,.5), inset 0 1px 0 rgba(255,255,255,.3);
  letter-spacing: .04em;
  transform-origin: left center;
  animation: tagPop .6s var(--ease-out-back) .2s both;
}

.hero-award__icon { font-size: 1.4rem; }

/* ===================================================
   20. RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .char-grid,
  .kc-grid,
  .store-grid { grid-template-columns: 1fr; }

  .menu-grid,
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .sns-grid { grid-template-columns: 1fr; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer__grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .hero-dots { right: 16px; bottom: 90px; }

  .container { width: calc(100% - 24px); }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(13,11,9,.96);
    flex-direction: column;
    padding: 12px 20px 24px;
    border-top: 2px solid rgba(255,255,255,.08);
    z-index: 300;
    gap: 4px;
    backdrop-filter: blur(12px);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { display: block; padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; }
  .site-nav a.nav--shop { border-radius: 4px; margin-top: 8px; }

  .menu-toggle { display: inline-flex; }
  .header-cart  { display: none; }
  .cart-float   { display: inline-flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .menu-grid,
  .product-grid { grid-template-columns: 1fr; }

  .char-section { clip-path: none; margin: 0; }

  /* モバイルはvwベースのみ（最小値を下げて7字でも折り返さない） */
  .hero__title { font-size: clamp(1.6rem, 8.5vw, 2.6rem); }

  .hero__actions .btn { width: 100%; justify-content: center; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .tokusho-table th, .tokusho-table td { display: block; width: 100%; }
  .tokusho-table th { border-bottom: none; padding-bottom: 4px; white-space: normal; }
  .tokusho-table td { padding-top: 4px; }
}
