/* =======================================
   TABESHUN - メインスタイルシート
   =======================================
   構成：
   - リセット・変数
   - ヘッダー・ナビ
   - ヒーロースライダー
   - ティッカー
   - 今週の旬
   - 旬カレンダー
   - 人気の商品
   - 定期サービス
   - カテゴリ
   - バナー
   - 送料・支払い・FAQ
   - フッター
   - ドロワーメニュー
   - スクロールリビール
   - レスポンシブ（1024px / 768px / 480px）
   ======================================= */

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #FBFAF8;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --navy: #0D1E3D;
  --navy-deep: #0A1830;
  --gold: #D4A94A;
  --gold-mid: #C8A84A;
  --gold-light: #C8B888;
  --vermillion: #C85A14;
  --orange-tag: #C85A14;
  --cream: #FBFAF8;
  --cream-dark: #EEE8D8;
  --white: #FFFFFF;
  --text-sub: #888888;
  --border: #D8CCAA;
}

/* ===== HEADER ===== */
.header {
  /* background: var(--navy); */
  /* background: #EEE8D8; */
  background: #fdfcfa;
  border-bottom: 1px solid rgb(232, 224, 208);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  padding: 0 32px;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-logo {
  display: flex;
  justify-content: center;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.hdr-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
}

.hdr-btn svg {
  width: 22px;
  height: 22px;
  /* stroke: rgba(255, 255, 255, 0.85); */
  color: var(--navy);
  fill: none;
}

.hdr-btn span {
  font-size: 10px;
  /* color: rgba(255, 255, 255, 0.75); */
  color: var(--navy);
  letter-spacing: 0.08em;
}

.hdr-menu-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hdr-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  /* background: rgba(255, 255, 255, 0.85); */
  background: var(--navy);
  border-radius: 2px;
}

/* ===== SUB NAV ===== */
.sub-nav {
  /* background: #fff; */
  background: var(--navy);
  border-bottom: 1px solid #e8e0d0;
}

.sub-nav-inner {
  font-family: 'Zen Old Mincho', serif;
  display: flex;
  align-items: stretch;
}

.sub-nav-item {
  flex: 0 0 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  font-size: 14px;
  /* color: #333; */
  color: #fff;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-right: 1px solid #e0d8c8;
  transition: color 0.2s;
}

.sub-nav-item:last-child {
  border-right: none;
}

/* .sub-nav-item.active {
  color: var(--gold);
  font-weight: 500;
} */

.sub-nav-item:hover {
  color: var(--gold);
}

/* ===== HERO SLIDER ===== */
.hero-wrap {
  /* background: #eee8e0; */
  background: #fff;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.hero-track-outer {
  overflow: hidden;
}

.hero-track {
  display: flex;
  align-items: center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  flex-shrink: 0;
  width: 78%;
  margin: 0 1%;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.7;
  transition: opacity 0.55s;
  cursor: pointer;
}

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

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-arrow-prev {
  left: 12px;
}

.hero-arrow-next {
  right: 12px;
}

.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 20;
}

.hero-dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.hero-dot.active {
  background: var(--gold);
  width: 40px;
}

/* ===== TICKER ===== */
.ticker {
  background: var(--navy);
  padding: 9px 0;
  overflow: hidden;
  border-top: 0.5px solid #1A3050;
}

.ticker-track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

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

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-size: 11px;
  color: rgba(212, 169, 74, 0.8);
  letter-spacing: 0.12em;
  padding: 0 28px;
  flex-shrink: 0;
}

.ticker-sep {
  color: rgba(212, 169, 74, 0.3);
  padding: 0 4px;
  flex-shrink: 0;
}

/* ===== SECTION BASE ===== */
.section {
  padding: 112px 0;
}

.section-inner {
  /* max-width: 1100px; */
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 今週の旬 ===== */
.shun-section {
  background: var(--cream);
}

.shun-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.shun-deco {
  flex: 1;
  max-width: 300px;
  height: 24px;
}

.shun-title {
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.shun-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* 左：大カード */
.shun-main {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.shun-main-img {
  width: 100%;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.shun-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.shun-main:hover .shun-main-img img {
  transform: scale(1.04);
}

.shun-main-body {
  padding: 14px 16px 18px;
  flex-shrink: 0;
}

/* 右：サブカード */
.shun-sub-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shun-sub {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 45% 1fr;
  cursor: pointer;
  flex: 1;
}

.shun-sub-img {
  overflow: hidden;
}

.shun-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.shun-sub:hover .shun-sub-img img {
  transform: scale(1.04);
}

.shun-sub-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* 共通パーツ */
.tag-pill {
  display: inline-block;
  background: var(--orange-tag);
  color: #fff;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  width: fit-content;
}

.prod-name {
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.6;
}

.prod-price {
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1;
}

.prod-price-note {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-sub);
}

/* もっと見るボタン */
.btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-more {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  padding: 16px 88px;
  letter-spacing: 0.14em;
  border-radius: 3px;
  transition: background 0.2s;
}

.btn-more:hover {
  /* background: #1a3060; */
  color: var(--gold);
}

/* ===== 旬カレンダー ===== */
.calendar-section {
  background: #fff;
}

.cal-title-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.cal-title {
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.08em;
}


/* カレンダー内部背景 */
.cal-inner-bg {
  background: transparent;
  padding: 0 0 48px;
  margin-top: 0;
  width: 80%;
  margin: 0 auto;
}

.cal-inner-bg .section-inner {
  background: #FAF5EC;
  border: 1px solid #E2CFA8;
  border-radius: 4px;
  padding: 32px 40px 48px;
}

/* 季節タブ */
.cal-season-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 14px;
}

.cal-season-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #D8CCAA;
}

.cal-season-btn {
  background: none;
  border: none;
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 700;
  color: #8A7860;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 0 0 14px;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}

.cal-season-btn.active {
  color: #B84A14;
}

.cal-season-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #B84A14;
  border-radius: 2px;
}

.cal-season-btn:hover {
  color: #B84A14;
}

/* 食材グリッド */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}

/* 食材カード */
.cal-item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: pointer;
}

/* 丸画像 */
.cal-item-circle {
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: -22px;
  background: #EDE6D6;
  position: relative;
  z-index: 1;
}

.cal-item-circle-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(36px, 7vw, 68px);
}

.cal-item-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.cal-item-card:hover .cal-item-circle img {
  transform: scale(1.05);
}

/* リボン（スワロウテール形状） */
.cal-item-ribbon {
  position: relative;
  width: 86%;
  margin-bottom: 6px;
  z-index: 2;
}

.cal-item-ribbon svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.cal-item-ribbon-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  /* font-size: clamp(10px, 1.3vw, 14px); */
  font-size: clamp(9px, 1.1vw, 12px);
  font-weight: 700;
  color: #1a1208;
  letter-spacing: 0.02em;
  pointer-events: none;
  padding: 0 16%;
  text-align: center;
  line-height: 1.2;
}

/* 産地テキスト */
.cal-item-region {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(10px, 1.1vw, 12px);
  color: #8A7860;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.5;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .cal-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 14px;
  }
}

@media (max-width: 768px) {
  .cal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }

  .cal-season-btn {
    font-size: 16px;
  }

  .cal-item-ribbon-text {
    font-size: 12px;
  }

  .cal-inner-bg {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 10px;
  }
}

/* ===== 人気の商品 ===== */
.popular-section {
  background: var(--cream);
}

.pop-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.pop-title {
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.pop-deco {
  flex: 1;
  max-width: 300px;
  height: 24px;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.pop-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pop-card:hover {
  box-shadow: 0 6px 24px rgba(13, 30, 61, 0.12);
  transform: translateY(-2px);
}

.pop-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.pop-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--navy);
  color: var(--gold);
  font-size: 9px;
  padding: 2px 8px;
  letter-spacing: 0.08em;
}

.pop-card-body {
  padding: 12px 14px 14px;
}

.pop-card-tag {
  display: inline-block;
  background: var(--orange-tag);
  color: #fff;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.pop-card-name {
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.5;
}

.pop-card-region {
  font-size: 10px;
  color: var(--text-sub);
  margin-bottom: 6px;
}

.pop-card-price {
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.pop-card-price span {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-sub);
}

/* ===== 定期サービス ===== */
.teiki-section {
  background: var(--cream);
  padding: 56px 0;
}

.teiki-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.teiki-title {
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.teiki-deco {
  flex: 1;
  max-width: 300px;
  height: 28px;
  object-fit: contain;
  display: block;
  min-width: 0;
}

.teiki-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}

.teiki-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  /* ← これを追加 */
  /* height: 420px; */
}

.teiki-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teiki-label span {
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  /* font-size: clamp(21px, 2.4vw, 28px); */
  font-size: clamp(14px, 1.6vw, 19px);
  font-weight: 500;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55), 0 0 20px rgba(0, 0, 0, 0.3);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.teiki-img {
  width: 100%;
  height: 100%;
  /* ← auto から 100% に変更 */
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.teiki-card:hover .teiki-img {
  transform: scale(1.05);
}


/* ===== カテゴリ ===== */
.category-section {
  background: #fff;
}

.cat-title-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.cat-deco-top {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.cat-deco-top-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.cat-title {
  /* font-family: 'Shippori Mincho', serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.08em;
  display: block;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cat-btn {
  background: var(--white);
  border: 1px solid var(--gold-mid);
  border-radius: 2px;
  padding: 22px 24px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #2a1a08;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-btn:hover {
  background: var(--navy);
  /* color: var(--gold); */
  color: rgba(255, 255, 255, 0.85);
  border-color: var(--navy);
}

.cat-btn .cat-icon {
  font-size: 18px;
}

/* ===== フッター上部（送料・支払い・FAQ） ===== */
.fi-section {
  background: #EDEAE0;
  padding: 56px 0;
}

.fi-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fi-card {
  background: #fff;
  border-radius: 2px;
}

.fi-card-inner {
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.fi-title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.fi-text {
  font-family: 'Zen Old Mincho', serif;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
  flex: 1;
}

.fi-btn {
  display: block;
  width: 100%;
  background: var(--navy);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 14px 0;
  border-radius: 2px;
  transition: background 0.2s;
}

.fi-btn:hover {
  /* background: #1a3060; */
  color: var(--gold);
}

/* ===== フッター ===== */
.footer {
  background: var(--navy);
  padding: 56px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 240px;
  padding-bottom: 56px;
}

/* ブランドエリア */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  margin-bottom: 16px;
}

.footer-tagline {
  /* font-family: 'Noto Sans JP', sans-serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* リンクグリッド：3カラム */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.fl-col h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  /* color: #fff; */
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  padding-bottom: 0;
}

.fl-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fl-col ul li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  line-height: 1;
}

.fl-col ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* コピーライト */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
}

.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}


/* ===== デコレーションライン画像 ===== */
.shun-deco,
.cal-deco,
.pop-deco,
.teiki-deco,
.cat-deco {
  flex: 1;
  max-width: 320px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.shun-deco,
.cal-deco,
.pop-deco,
.teiki-deco,
.cat-deco {
  min-width: 0;
}

/* ===== バナーセクション ===== */
.banner-section {
  background: #FBFAF8;
  padding: 40px 0 56px;
}

.banner-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bnr-link {
  display: block;
  border-radius: 3px;
  overflow: hidden;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.bnr-link:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.bnr-link img {
  width: 100%;
  height: auto;
  display: block;
}

/* フッターロゴ画像 */
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  object-fit: contain;
  opacity: 0.9;
}

/* ===== スクロールリビール ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
       RESPONSIVE — Tablet (max-width: 1024px)
    ============================================ */
@media (max-width: 1024px) {

  /* Header */
  .header-inner {
    padding: 0 20px;
  }

  /* Hero */
  .hero-slide {
    width: 82%;
    margin: 0 1%;
  }

  /* Sections */
  .section {
    padding: 44px 0;
  }

  .section-inner {
    padding: 0 20px;
  }

  /* 今週の旬 */
  .shun-grid {
    gap: 14px;
  }

  .shun-sub {
    grid-template-columns: 42% 1fr;
  }

  /* 人気の商品 */
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* 定期サービス */
  .teiki-card {
    aspect-ratio: unset;
    /* ← 追加 */
  }

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

  .teiki-img {
    height: 280px;
    max-height: unset;
    object-fit: cover;
    width: 100%;
  }

  /* カテゴリ */
  .category-grid {
    gap: 10px;
  }

  .cat-btn {
    padding: 16px 12px;
    font-size: 13px;
  }

  /* 送料・支払い・FAQ */
  .fi-grid {
    padding: 0 20px;
    gap: 14px;
  }

  .fi-card-inner {
    padding: 32px 20px;
  }

  /* バナー */
  .banner-inner {
    padding: 0 20px;
  }

  /* フッター */
  .footer-inner {
    padding: 0 32px;
  }

  .footer-top {
    gap: 48px;
  }

  .footer-links-grid {
    gap: 24px;
  }
}

/* ============================================
       RESPONSIVE — Mobile (max-width: 768px)
    ============================================ */
@media (max-width: 768px) {

  /* Header */
  .header-inner {
    padding: 0 16px;
    height: 56px;
  }

  .header-logo img {
    height: 36px;
  }

  .hdr-btn>span {
    display: none;
  }

  .hdr-btn svg {
    width: 20px;
    height: 20px;
  }

  .header-right {
    gap: 16px;
  }

  /* Sub Nav */
  .sub-nav-item {
    font-size: 12px;
    padding: 12px 0;
  }

  /* Hero — スマホは1枚全幅表示 */
  .hero-track-outer {
    overflow: hidden;
  }

  .hero-slide {
    width: 100%;
    margin: 0;
    border-radius: 0;
    flex-shrink: 0;
  }

  .hero-slide:not(.active) {
    opacity: 0.7;
  }

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

  .hero-arrow {
    width: 32px;
    height: 32px;
  }

  .hero-arrow svg {
    width: 14px;
    height: 14px;
  }

  .hero-arrow-prev {
    left: 6px;
  }

  .hero-arrow-next {
    right: 6px;
  }

  .hero-dots {
    bottom: 8px;
    gap: 5px;
  }

  .hero-dot {
    width: 20px;
  }

  .hero-dot.active {
    width: 28px;
  }

  /* Ticker */
  .ticker-item {
    font-size: 10px;
    padding: 0 18px;
  }

  /* Sections */
  .section {
    padding: 36px 0;
  }

  .section-inner {
    padding: 0 16px;
  }

  /* セクションタイトル */
  .shun-title,
  .cal-title,
  .pop-title,
  .teiki-title,
  .cat-title {
    font-size: 20px;
    letter-spacing: 0.04em;
  }

  .shun-title-row,
  .pop-title-row,
  .teiki-title-row {
    gap: 10px;
  }

  .shun-deco,
  .pop-deco,
  .teiki-deco {
    max-width: 120px;
    height: 22px;
  }

  .deco-top {
    max-width: 100%;
  }

  /* 今週の旬 — 縦並びに */
  .shun-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shun-main {
    border-radius: 4px;
  }

  .shun-main-img {
    flex: none;
    height: 220px;
  }

  .shun-main-img img {
    height: 100%;
  }

  .shun-sub-col {
    gap: 12px;
  }

  .shun-sub {
    grid-template-columns: 140px 1fr;
    flex: none;
  }

  .shun-sub-img img {
    height: 100%;
  }

  .shun-card-name {
    font-size: 13px;
  }

  /* 今週の旬 商品名を小さく */
  .prod-name {
    font-size: 16px;
  }

  .prod-price {
    font-size: 20px;
  }

  .prod-price-note {
    font-size: 10px;
  }

  /* もっと見るボタン */
  .btn-more {
    font-size: 13px;
    padding: 14px 40px;
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .btn-wrap {
    margin-top: 28px;
  }

  /* 旬カレンダー */
  .calendar-section {
    background: var(--white);
  }

  .cal-title-wrap {
    margin-bottom: 24px;
  }

  .calendar-tabs .cal-tab {
    font-size: 12px;
    padding: 10px 4px;
  }

  .calendar-body {
    padding: 16px;
  }

  .calendar-months {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cal-num {
    font-size: 20px;
  }

  .cal-ja {
    font-size: 12px;
  }

  /* 人気の商品 */
  .popular-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }

  .pop-card-img {
    height: 130px;
  }

  .pop-card-body {
    padding: 10px 10px 12px;
  }

  .pop-card-name {
    font-size: 12px;
  }

  .pop-card-price {
    font-size: 14px;
  }

  /* 定期サービス */
  .teiki-section {
    padding: 36px 0;
  }

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

  .teiki-card {
    position: relative;
    aspect-ratio: unset;
    /* ← PC用のaspect-ratioをリセット */
  }

  .teiki-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    display: block;
  }

  .teiki-label {
    padding: 12px 10px 12px 0;
  }

  .teiki-label span {
    font-size: 13px;
    letter-spacing: 0.1em;
    /* 縦1行に収まるよう文字を小さくしてwhite-spaceを設定 */
    white-space: nowrap;
    overflow: hidden;
  }

  .teiki-title {
    font-size: 20px;
  }

  /* カテゴリ */
  .category-section {
    background: #fff;
  }

  .cat-title-wrap {
    text-align: center;
    margin-bottom: 28px;
  }

  .cat-deco-top {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }

  .cat-deco-top-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

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

  .cat-btn {
    padding: 16px 8px;
    font-size: 12px;
  }

  /* バナー */
  .banner-section {
    padding: 28px 0 36px;
  }

  .banner-inner {
    padding: 0 16px;
    gap: 12px;
  }

  /* 送料・支払い・FAQ */
  .fi-section {
    padding: 36px 0;
  }

  .fi-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
  }

  .fi-card-inner {
    padding: 28px 20px 32px;
  }

  .fi-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .fi-text {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .fi-btn {
    font-size: 13px;
    padding: 12px 0;
  }

  /* フッター */
  .footer {
    padding: 40px 0 0;
  }

  .footer-inner {
    padding: 0 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }

  .footer-logo-img {
    height: 40px;
  }

  .footer-tagline {
    font-size: 11px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .fl-col h4 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .fl-col ul {
    gap: 8px;
  }

  .fl-col ul li a {
    font-size: 11px;
  }

  .footer-bottom {
    padding: 16px 0;
  }

  .footer-copy {
    font-size: 10px;
  }
}

/* ============================================
       RESPONSIVE — Small Mobile (max-width: 480px)
    ============================================ */
@media (max-width: 480px) {

  /* Hero */
  .hero-slide {
    width: 100%;
    margin: 0;
  }

  /* 今週の旬サブカード — さらに小さく */
  .shun-sub {
    grid-template-columns: 110px 1fr;
  }

  .shun-card-name {
    font-size: 12px;
  }

  .prod-price {
    font-size: 18px;
  }

  /* 人気の商品 */
  .pop-card-img {
    height: 110px;
  }

  .pop-card-name {
    font-size: 11px;
  }

  /* 定期サービス */
  .teiki-img {
    height: 140px;
  }

  /* カテゴリ */
  .cat-btn {
    padding: 14px 6px;
    font-size: 11px;
  }

  /* フッター */
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== ドロワーメニュー ===== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--navy);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.drawer-close span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
}

.drawer-close span:first-child {
  transform: rotate(45deg);
}

.drawer-close span:last-child {
  transform: rotate(-45deg);
}

.drawer-inner {
  padding: 72px 32px 40px;
}

.drawer-logo {
  max-width: 120px;
}

/* .drawer-logo {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid rgba(212, 169, 74, 0.25);
}

.drawer-logo-ja {
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.06em;
  display: block;
}

.drawer-logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.3em;
  display: block;
  margin-top: 3px;
} */

.drawer-nav,
.drawer-sub {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.drawer-nav li a,
.drawer-sub li a {
  display: block;
  padding: 14px 0;
  /* font-family: 'Noto Sans JP', sans-serif; */
  font-family: 'Zen Old Mincho', serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s, padding-left 0.2s;
}

.drawer-nav li a:hover,
.drawer-sub li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.drawer-divider {
  height: 0.5px;
  background: rgba(212, 169, 74, 0.2);
  margin: 16px 0;
}

.drawer-sub li a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}