/* ===================================================
   RingoxAme — Multi-page Style Sheet
   =================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #fbf8f3;
  --bg-warm: #f4ede1;
  --cream: #ede3d1;
  --ink: #1f1a15;
  --ink-soft: #4a403a;
  --muted: #8a7d72;
  --line: #e3d9c8;
  --accent: #a8302a;
  --accent-dark: #7d1f1a;
  --gold: #b38b4d;
  --leaf: #4a6b3a;
  --radius: 4px;
  --max: 1240px;
  --header-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  padding-top: calc(32px + var(--header-h));
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select { font-family: inherit; }

/* ---------- Promo Bar ---------- */
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
}
.promo-bar-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.promo-bar-track span { padding: 0 14px; opacity: 0.9; }
.promo-bar-track .dot { color: var(--gold); padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
/* デスクトップ: ロゴ中央固定、左ナビ・右アイコン */
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "nav logo utils";
  align-items: center;
  padding: 0 32px;
}
.menu-toggle {
  display: none;
  grid-area: toggle;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.menu-toggle svg { width: 22px; height: 22px; }

.header-nav {
  grid-area: nav;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: nowrap;
}
.header-nav a {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--ink);
  border-color: var(--accent);
}

.logo {
  grid-area: logo;
  text-align: center;
  flex-shrink: 0;
}
.logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 2px;
  white-space: nowrap;
  justify-content: center;
}
.logo-mark .apple::before { content: "×"; font-size: 14px; color: var(--accent); }
.logo-sub { font-size: 9px; letter-spacing: 0.15em; color: var(--muted); text-align: center; margin-top: 1px; }

.header-utils {
  grid-area: utils;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: color .2s;
  border-radius: 50%;
}
.icon-btn:hover { color: var(--ink); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu nav a { font-family: 'Shippori Mincho', serif; font-size: 20px; letter-spacing: 0.1em; }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.mobile-menu-close svg { width: 24px; height: 24px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--ink-soft); }

/* ---------- Page Head ---------- */
.page-head {
  text-align: center;
  padding: 48px 24px 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.page-head-desc {
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.9;
}

/* ---------- Shared Section Atoms ---------- */
.section-kicker {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
}
.section-head { margin-bottom: 40px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
  transition: background .2s, color .2s;
  border-radius: var(--radius);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background .2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--accent-dark); }

.section { padding: 80px 24px; max-width: var(--max); margin: 0 auto; }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* ---------- Product Thumbnails ---------- */
.p1 { background: linear-gradient(135deg, #d4453b 0%, #8a1e1a 100%); }
.p2 { background: linear-gradient(135deg, #c8a070 0%, #8a5a2a 100%); }
.p3 { background: linear-gradient(135deg, #d44040 0%, #8a1818 100%); }
.p4 { background: linear-gradient(135deg, #e8c870 0%, #b89040 100%); }
.p5 { background: linear-gradient(135deg, #c8d890 0%, #6a8a40 100%); }
.p6 { background: linear-gradient(135deg, #f0d080 0%, #c0902a 100%); }
.p7 { background: linear-gradient(135deg, #b8a890 0%, #7a6a58 100%); }
.p8 { background: linear-gradient(135deg, #d8c8b8 0%, #a09080 100%); }

/* ---------- Product Grid & Card ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
}
.product-card { display: block; }
.product-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  transition: transform .3s;
}
.product-card:hover .product-thumb { transform: scale(1.02); }
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ink);
  color: var(--bg);
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  font-weight: 700;
  z-index: 1;
}
.product-badge.new { background: var(--accent); }
.product-badge.limited { background: var(--leaf); }
.product-add {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  z-index: 1;
}
.product-add svg { width: 16px; height: 16px; }
.product-card:hover .product-add { opacity: 1; }
.product-name { font-size: 12.5px; line-height: 1.6; margin-bottom: 4px; color: var(--ink-soft); }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; }
.product-price .tax { font-size: 10px; color: var(--muted); margin-left: 4px; font-family: 'Noto Sans JP', sans-serif; font-weight: 400; }

/* ---------- Products List Layout ---------- */
.products-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.filter-side { position: sticky; top: calc(32px + var(--header-h) + 24px); }
.filter-group { margin-bottom: 32px; }
.filter-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 12px;
}
.filter-list li { border-bottom: 1px solid var(--line); }
.filter-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 12.5px;
  color: var(--ink-soft);
  transition: color .2s;
}
.filter-list a:hover,
.filter-list a.active { color: var(--ink); font-weight: 500; }
.filter-count { font-size: 10px; color: var(--muted); }

.products-main-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.products-count .num { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; margin-right: 4px; }
.products-count { font-size: 12px; color: var(--ink-soft); }
.sort-select {
  border: 1px solid var(--line);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--bg);
  border-radius: var(--radius);
  cursor: pointer;
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  font-size: 13px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  transition: background .2s, color .2s, border-color .2s;
}
.pagination a:hover,
.pagination a.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- Product Detail ---------- */
.detail-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.detail-main-img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  margin-bottom: 12px;
}
.detail-thumbs { display: flex; gap: 8px; }
.detail-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.detail-thumb.active { border-color: var(--accent); }

.detail-info { padding-top: 8px; }
.detail-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.detail-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.detail-price .tax { font-family: 'Noto Sans JP', sans-serif; font-size: 11px; color: var(--muted); font-weight: 400; margin-left: 4px; }
.detail-ship { font-size: 11px; color: var(--muted); margin-bottom: 20px; }
.detail-desc { font-size: 13px; line-height: 2; color: var(--ink-soft); margin-bottom: 24px; }
.detail-specs {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.detail-specs dl { display: grid; grid-template-columns: 80px 1fr; gap: 8px 16px; font-size: 12px; }
.detail-specs dt { color: var(--muted); }
.detail-specs dd { color: var(--ink-soft); }

.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-label { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
.qty-ctrl {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-ctrl button {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--ink-soft);
  transition: background .2s;
}
.qty-ctrl button:hover { background: var(--cream); }
.qty-ctrl input {
  width: 48px; height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--bg);
  font-size: 14px;
  outline: none;
}

.detail-actions { display: flex; gap: 12px; align-items: center; }
.btn-cart {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background .2s;
  cursor: pointer;
  border: none;
}
.btn-cart:hover { background: var(--accent-dark); }
.btn-wish {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color .2s, border-color .2s;
}
.btn-wish:hover { color: var(--accent); border-color: var(--accent); }
.btn-wish svg { width: 20px; height: 20px; }

/* ---------- Cart Page ---------- */
.cart-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.cart-main h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px; font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cart-items { display: flex; flex-direction: column; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.cart-item-name { font-size: 13px; line-height: 1.6; margin-bottom: 4px; }
.cart-item-price { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; }
.cart-item-remove { font-size: 11px; color: var(--muted); cursor: pointer; transition: color .2s; background: none; border: none; }
.cart-item-remove:hover { color: var(--accent); }

.cart-summary {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: calc(32px + var(--header-h) + 24px);
}
.cart-summary h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px; font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 8px 0;
  color: var(--ink-soft);
}
.cart-row.total {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 16px;
}

/* ---------- Guide Section ---------- */
.guide { background: var(--bg-warm); padding: 60px 24px; }
.guide-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.guide-card { text-align: center; padding: 24px 16px; }
.guide-icon { width: 48px; height: 48px; margin: 0 auto 14px; color: var(--gold); }
.guide-icon svg { width: 100%; height: 100%; }
.guide-label-en { font-size: 9px; letter-spacing: 0.2em; color: var(--gold); font-family: 'Cormorant Garamond', serif; margin-bottom: 4px; }
.guide-label { font-family: 'Shippori Mincho', serif; font-size: 14px; margin-bottom: 8px; }
.guide-desc { font-size: 12px; color: var(--ink-soft); line-height: 1.9; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--bg); padding: 60px 24px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-mark { color: var(--bg); font-size: 20px; }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-brand-text { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.9; margin-top: 16px; }
.footer-col h4 { font-size: 10px; letter-spacing: 0.2em; color: var(--gold); font-family: 'Cormorant Garamond', serif; margin-bottom: 16px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 12px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--bg); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,.4); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; opacity: .5; transition: opacity .2s; }
.footer-social a:hover { opacity: 1; }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Mockup Note ---------- */
.mockup-note {
  position: fixed;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 9999;
}

/* ===========================================================
   INDEX PAGE
   =========================================================== */

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  height: 88vh;
  min-height: 560px;
}
.hero-stage { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 80px;
  gap: 60px;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-1 { background: linear-gradient(135deg, #f4ede1 0%, #ede3d1 100%); }
.slide-2 { background: linear-gradient(135deg, #1f2a18 0%, #2d3e22 100%); color: #f4ede1; }
.slide-3 { background: linear-gradient(135deg, #2a1f18 0%, #3e2d22 100%); color: #f4ede1; }
.slide-kicker { font-size: 10px; letter-spacing: 0.2em; color: var(--gold); font-family: 'Cormorant Garamond', serif; margin-bottom: 16px; }
.slide-title { font-family: 'Shippori Mincho', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 500; line-height: 1.4; letter-spacing: 0.05em; margin-bottom: 20px; }
.slide-desc { font-size: 13px; line-height: 2; opacity: .8; margin-bottom: 28px; }
.slide-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border: 1px solid currentColor;
  font-size: 12px; letter-spacing: 0.1em;
  transition: background .2s, color .2s;
  border-radius: var(--radius);
}
.slide-visual {
  height: 60vh;
  border-radius: 4px;
  background: rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 120px;
}
.slide-1 .slide-visual::after { content: "🍎"; }
.slide-2 .slide-visual::after { content: "🍅"; }
.slide-3 .slide-visual::after { content: "🎁"; }

.hero-nav {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  display: flex; justify-content: center; align-items: center; gap: 16px;
  z-index: 10;
}
.hero-prev, .hero-next {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .6;
  transition: opacity .2s;
}
.hero-prev:hover, .hero-next:hover { opacity: 1; }
.hero-prev svg, .hero-next svg { width: 16px; height: 16px; }
.hero-dots { display: flex; gap: 8px; align-items: center; }
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .3;
  transition: opacity .2s, transform .2s;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hero-dot.active { opacity: 1; transform: scale(1.3); }

/* Sub Banners */
.sub-banners {
  max-width: var(--max);
  margin: 24px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sub-banner {
  aspect-ratio: 3/1.5;
  border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 24px;
  overflow: hidden;
  transition: transform .3s;
}
.sub-banner:hover { transform: translateY(-3px); }
.sb-1 { background: linear-gradient(135deg, #d44040 0%, #7d1f1a 100%); color: #fff; }
.sb-2 { background: linear-gradient(135deg, #b38b4d 0%, #7a5a28 100%); color: #fff; }
.sb-3 { background: linear-gradient(135deg, #4a6b3a 0%, #2d4520 100%); color: #fff; }
.sub-banner-kicker { font-size: 9px; letter-spacing: 0.2em; opacity: .7; margin-bottom: 4px; font-family: 'Cormorant Garamond', serif; }
.sub-banner-title { font-family: 'Shippori Mincho', serif; font-size: 15px; line-height: 1.5; }

/* Category Grid */
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cat-card { display: block; text-align: center; }
.cat-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin-bottom: 8px;
  transition: transform .3s;
}
.cat-card:hover .cat-thumb { transform: scale(1.05); }
.t1 { background: linear-gradient(135deg, #f0d890 0%, #c09040 100%); }
.t2 { background: linear-gradient(135deg, #d4453b 0%, #8a1e1a 100%); }
.t3 { background: linear-gradient(135deg, #d44040 0%, #8a1818 100%); }
.t4 { background: linear-gradient(135deg, #b38b4d 0%, #7a5a28 100%); }
.t5 { background: linear-gradient(135deg, #d8c8b8 0%, #a09080 100%); }
.t6 { background: linear-gradient(135deg, #b8c89c 0%, #5a7a48 100%); }
.cat-name { font-size: 12px; font-weight: 500; margin-bottom: 2px; }
.cat-en { font-size: 9px; color: var(--muted); letter-spacing: 0.06em; font-family: 'Cormorant Garamond', serif; }
.cat-more { text-align: center; margin-top: 36px; }

/* Big Marquee */
.big-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  background: var(--cream);
}
.big-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.big-marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  padding: 0 32px;
}
.big-marquee-track .apple-icon {
  display: inline-flex;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  vertical-align: middle;
  flex-shrink: 0;
  padding: 0;
}

/* About Section (Index) */
.about-section { padding: 80px 24px; }
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d4453b 0%, #8a1e1a 100%);
  border-radius: var(--radius);
  position: relative;
  display: flex; align-items: flex-end;
  padding: 20px;
  overflow: hidden;
}
.about-visual::after { content: "🍎"; font-size: 120px; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); opacity: .15; pointer-events: none; }
.about-visual-label { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,.6); position: relative; z-index: 1; }
.about-kicker { font-size: 10px; letter-spacing: 0.2em; color: var(--gold); font-family: 'Cormorant Garamond', serif; margin-bottom: 8px; }
.about-title { font-family: 'Shippori Mincho', serif; font-size: clamp(22px, 3vw, 32px); font-weight: 500; line-height: 1.5; margin-bottom: 20px; letter-spacing: 0.04em; }
.about-text { font-size: 13px; line-height: 2.1; color: var(--ink-soft); margin-bottom: 16px; }
.about-facts { display: flex; gap: 32px; margin: 28px 0; }
.fact-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; line-height: 1; margin-bottom: 4px; }
.fact-num .unit { font-size: 16px; }
.fact-label { font-size: 9px; letter-spacing: 0.15em; color: var(--muted); }

/* News Section */
.news-section { background: var(--bg-warm); padding: 80px 24px; }
.news-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }
.news-side { position: sticky; top: calc(32px + var(--header-h) + 24px); }
.news-side .section-title { text-align: left; }
.news-side-text { font-size: 13px; color: var(--ink-soft); line-height: 1.9; margin: 16px 0 24px; }
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: grid;
  grid-template-columns: 90px 64px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity .2s;
}
.news-item:hover { opacity: .7; }
.news-date { font-size: 12px; color: var(--muted); font-family: 'Cormorant Garamond', serif; }
.news-tag { font-size: 9px; letter-spacing: 0.1em; padding: 3px 8px; font-weight: 700; width: fit-content; }
.tag-sale { background: var(--accent); color: #fff; }
.tag-info { background: var(--ink); color: var(--bg); }
.tag-schedule { background: var(--gold); color: #fff; }
.news-title { font-size: 13px; line-height: 1.7; }
.news-arrow { font-size: 12px; color: var(--muted); }

/* Schedule */
.schedule { padding: 80px 24px; }
.schedule-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.schedule-head { margin-bottom: 40px; }
.schedule-head p { font-size: 13px; color: var(--ink-soft); line-height: 1.9; margin-top: 12px; }
.schedule-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 28px 36px;
  border: 1px solid var(--line);
  text-align: left;
}
.schedule-today { text-align: center; min-width: 70px; }
.day { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 500; line-height: 1; color: var(--accent); }
.month { font-size: 10px; letter-spacing: 0.1em; color: var(--muted); margin-top: 4px; }
.schedule-info { flex: 1; }
.time { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.place { font-family: 'Shippori Mincho', serif; font-size: 16px; margin-bottom: 4px; }
.place-sub { font-size: 11px; color: var(--muted); }

/* Store */
.store {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.store-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #b38b4d 0%, #7a5a28 100%);
  border-radius: var(--radius);
  display: flex; align-items: flex-end;
  padding: 20px;
  overflow: hidden;
  position: relative;
}
.store-visual::after { content: "🏪"; font-size: 120px; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); opacity: .15; pointer-events: none; }
.store-visual-label { font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,.6); position: relative; z-index: 1; }
.store-title { font-family: 'Shippori Mincho', serif; font-size: clamp(22px, 3vw, 30px); font-weight: 500; line-height: 1.5; margin: 12px 0 24px; }
.store-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 28px; }
.store-table th, .store-table td { padding: 10px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.store-table th { color: var(--muted); font-weight: 400; width: 90px; }

/* Instagram */
.instagram { padding: 80px 24px; background: var(--bg-warm); }
.instagram-inner { max-width: var(--max); margin: 0 auto; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; margin: 32px 0; }
.insta-cell { aspect-ratio: 1; border-radius: 2px; transition: opacity .2s; }
.insta-cell:hover { opacity: .85; }
.i1 { background: linear-gradient(135deg, #d4453b, #8a1e1a); }
.i2 { background: linear-gradient(135deg, #c8a070, #8a5a2a); }
.i3 { background: linear-gradient(135deg, #4a6b3a, #2d4520); }
.i4 { background: linear-gradient(135deg, #b38b4d, #7a5a28); }
.i5 { background: linear-gradient(135deg, #d44040, #8a1818); }
.i6 { background: linear-gradient(135deg, #8a7d72, #4a403a); }
.insta-cta { text-align: center; }

/* ===========================================================
   ABOUT PAGE
   =========================================================== */
.about-hero {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(135deg, #1f1a15 0%, #3a2820 100%);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::after { content: "🍎"; font-size: 280px; position: absolute; right: -40px; bottom: -40px; opacity: .05; pointer-events: none; }
.about-hero-content { position: relative; z-index: 1; }
.about-hero .section-kicker { color: var(--gold); margin-bottom: 16px; }
.about-hero h1 { font-family: 'Shippori Mincho', serif; font-size: clamp(26px, 5vw, 52px); font-weight: 500; line-height: 1.4; letter-spacing: 0.05em; }

.story-block {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
  border-bottom: 1px solid var(--line);
}
.story-kicker { font-size: 10px; letter-spacing: 0.2em; color: var(--gold); font-family: 'Cormorant Garamond', serif; margin-bottom: 16px; }
.story-title { font-family: 'Shippori Mincho', serif; font-size: clamp(20px, 3vw, 28px); font-weight: 500; line-height: 1.5; margin-bottom: 24px; letter-spacing: 0.04em; }
.story-text { font-size: 14px; line-height: 2.1; color: var(--ink-soft); margin-bottom: 16px; }
.story-image {
  margin-top: 40px;
  aspect-ratio: 16/7;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d4453b 0%, #8a1e1a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.story-image::after { content: "🍎"; }
.story-image.warm { background: linear-gradient(135deg, #b38b4d 0%, #7a5a28 100%); }
.story-image.warm::after { content: "🍬"; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
/* ===========================================================
   RESPONSIVE — Tablet (≤1024px)
   =========================================================== */
@media (max-width: 1024px) {
  /* ナビ文字が詰まるのを防ぐ */
  .header-inner  { padding: 0 20px; }
  .header-nav    { gap: 16px; }
  .header-nav a  { font-size: 11px; }

  .product-grid        { grid-template-columns: repeat(3, 1fr); }
  .category-grid       { grid-template-columns: repeat(3, 1fr); }
  .footer-top          { grid-template-columns: 1fr 1fr; gap: 28px; }
  .guide-inner         { grid-template-columns: repeat(2, 1fr); }
  .about-inner         { grid-template-columns: 1fr; gap: 36px; }
  .store               { grid-template-columns: 1fr; gap: 40px; }
  .news-inner          { grid-template-columns: 1fr; gap: 32px; }
  .products-layout     { grid-template-columns: 180px 1fr; gap: 28px; }
  .slide               { padding: 0 40px; }
  .detail-layout       { gap: 40px; }
  .insta-grid          { grid-template-columns: repeat(4, 1fr); }
  .sub-banners         { grid-template-columns: repeat(3, 1fr); }
}

/* タブレット〜スマホ境界（769px〜900px）でナビが溢れる場合はハンバーガーへ */
@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 44px 1fr 44px;
    grid-template-areas: "toggle logo utils";
    padding: 0 12px;
  }
  .header-nav  { display: none; }
  .menu-toggle { display: flex; }
}

/* ===========================================================
   RESPONSIVE — Mobile (≤768px)
   =========================================================== */
@media (max-width: 768px) {
  :root {
    --header-h: 56px;
  }

  /* ---- Header ---- */
  .header-inner {
    grid-template-columns: 44px 1fr 44px;
    grid-template-areas: "toggle logo utils";
    padding: 0 12px;
    gap: 0;
  }
  .header-nav   { display: none; }
  .menu-toggle  { display: flex; }

  /* ---- Hero ---- */
  .hero        { height: 100svh; min-height: 520px; }
  .slide {
    grid-template-columns: 1fr;
    padding: 48px 24px 72px;
    align-content: center;
  }
  .slide-visual { display: none; }
  .slide-title  { font-size: clamp(24px, 7vw, 36px); }
  .slide-desc   { font-size: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-nav     { bottom: 20px; }

  /* ---- Sub Banners ---- */
  .sub-banners { grid-template-columns: 1fr; gap: 10px; margin: 16px auto; }
  .sub-banner  { aspect-ratio: 5/2; }

  /* ---- Category ---- */
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .cat-thumb     { font-size: 28px; }
  .cat-name      { font-size: 11px; }
  .cat-en        { display: none; }

  /* ---- Products ---- */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 10px; }
  .product-thumb { font-size: 40px; }
  .product-name  { font-size: 12px; }
  .product-price { font-size: 15px; }

  /* ---- Products Layout (products.html) ---- */
  .products-layout { grid-template-columns: 1fr; padding: 0 16px 60px; }
  .filter-side     { display: none; }
  .filter-toggle-btn {
    display: flex !important;
    align-items: center; gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 12px; letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin-bottom: 16px;
    width: 100%;
  }
  .filter-side.open {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--bg);
    overflow-y: auto;
    padding: 24px;
  }
  .filter-close-btn {
    display: flex !important;
    justify-content: flex-end;
    margin-bottom: 24px;
  }

  /* ---- Product Detail ---- */
  .detail-layout { grid-template-columns: 1fr; gap: 24px; padding: 0 16px 60px; }
  .detail-main-img { font-size: 60px; }
  .detail-name  { font-size: 18px; }
  .detail-price { font-size: 22px; }

  /* ---- Cart ---- */
  .cart-layout  { grid-template-columns: 1fr; gap: 24px; padding: 0 16px 60px; }
  .cart-summary { position: static; }

  /* ---- About ---- */
  .about-section { padding: 48px 16px; }
  .about-inner   { grid-template-columns: 1fr; gap: 28px; }
  .about-facts   { gap: 20px; flex-wrap: wrap; }
  .about-hero    { height: 50vh; min-height: 300px; }
  .about-hero h1 { font-size: clamp(22px, 6vw, 36px); padding: 0 16px; }
  .story-block   { padding: 48px 16px; }

  /* ---- Store ---- */
  .store    { grid-template-columns: 1fr; padding: 48px 16px; gap: 32px; }
  .store-visual { aspect-ratio: 16/7; }

  /* ---- News ---- */
  .news-section { padding: 48px 16px; }
  .news-inner   { grid-template-columns: 1fr; gap: 28px; }
  .news-side    { position: static; }
  .news-item    { grid-template-columns: 80px auto 1fr 16px; gap: 8px; }

  /* ---- Schedule ---- */
  .schedule     { padding: 48px 16px; }
  .schedule-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }

  /* ---- Instagram ---- */
  .instagram    { padding: 48px 16px; }
  .insta-grid   { grid-template-columns: repeat(3, 1fr); }

  /* ---- Guide ---- */
  .guide        { padding: 40px 16px; }
  .guide-inner  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .guide-card   { padding: 16px 8px; }

  /* ---- Section ---- */
  .section      { padding: 48px 16px; }
  .section-title { font-size: clamp(20px, 5vw, 28px); }
  .page-head    { padding: 32px 16px 28px; }

  /* ---- Footer ---- */
  .footer       { padding: 40px 16px 24px; }
  .footer-top   { grid-template-columns: 1fr; gap: 24px; }
  .footer-col   { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* ---- Breadcrumb ---- */
  .breadcrumb   { padding: 10px 16px; font-size: 10px; }
}

/* ===========================================================
   RESPONSIVE — Small mobile (≤480px)
   =========================================================== */
@media (max-width: 480px) {
  .category-grid  { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px 8px; }
  .product-thumb  { font-size: 32px; }

  .detail-thumbs  { gap: 6px; }
  .detail-thumb   { width: 60px; height: 60px; font-size: 20px; }

  .hero { min-height: 480px; }
  .slide-cta { font-size: 11px; padding: 10px 20px; }

  .news-item  { grid-template-columns: 1fr; gap: 6px; padding: 12px 0; }
  .news-date  { font-size: 10px; }
  .news-arrow { display: none; }

  .guide-inner { grid-template-columns: 1fr 1fr; }
  .insta-grid  { grid-template-columns: repeat(2, 1fr); }

  .schedule-card { padding: 16px; }

  .about-facts { flex-direction: column; gap: 16px; }
  .fact-num    { font-size: 28px; }
}
