/* ===================================================
   臼井桃園 - トップページ スタイルシート
   岡山県倉敷市玉島 版
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --peach-50:  #FDF7F8;
  --peach-100: #FAEAEE;
  --peach-200: #F2CAD4;
  --peach-300: #E9A0B3;
  --peach-400: #E488A0;
  --peach-500: #dd6a88;
  --peach-600: #dc5266;
  --cream:     #faf6f1;
  --warm-white:#fffcf8;
  --brown-100: #f0e8df;
  --brown-500: #8b5e3c;
  --brown-700: #5c3920;
  --text-dark: #1a1209;
  --text-mid:  #4a3728;
  --text-light:#8a7060;
  --border:    #ecddd4;
  --font-serif:'Noto Serif JP', 'Cormorant Garamond', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-en:   'Cormorant Garamond', serif;
  --ease-out-expo: cubic-bezier(.16,1,.3,1);
  --transition: .6s var(--ease-out-expo);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(100,50,20,.08);
  --shadow-md: 0 8px 32px rgba(100,50,20,.14);
  --shadow-lg: 0 24px 64px rgba(100,50,20,.18);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.8;
}
img { max-width: 100%; height: auto; display: block; }
/* 画像は常に表示（JSによるopacity操作を上書き） */
img { opacity: 1 !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ---------- Utility ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: .85rem;
  letter-spacing: .3em;
  color: var(--peach-500);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--peach-400);
  vertical-align: middle;
  margin-right: 10px;
}
.section-label::after {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--peach-400);
  vertical-align: middle;
  margin-left: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-desc {
  font-size: .95rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s var(--ease-out-expo) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: all .35s var(--ease-out-expo);
  white-space: nowrap;
}
.btn-primary {
  background: var(--peach-500);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,114,74,.35);
}
.btn-primary:hover { background: var(--peach-600); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,114,74,.45); }
.btn-outline {
  border: 1.5px solid var(--peach-400);
  color: var(--peach-500);
}
.btn-outline:hover { background: var(--peach-50); transform: translateY(-2px); }
.btn-outline-hero {
  border: 1.5px solid rgba(255,255,255,.75);
  color: #fff;
}
.btn-outline-hero:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--peach-600);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.15); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,.7);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: .82rem; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--peach-500);
  font-weight: 500;
  letter-spacing: .05em;
  transition: gap .3s;
}
.link-arrow:hover { gap: 14px; }
.link-arrow span { transition: transform .3s; }
.link-arrow:hover span { transform: translateX(4px); }

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(255,252,248,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height .4s;
}
.site-header.scrolled .header-inner { height: 60px; }

.logo-link { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; gap: 3px; }
.logo-en {
  font-family: var(--font-en);
  font-size: .68rem;
  letter-spacing: .28em;
  color: var(--peach-400);
  text-transform: uppercase;
  transition: color .4s;
}
.site-header.scrolled .logo-en { color: var(--peach-500); }
.logo-ja {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .12em;
  transition: color .4s;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.site-header.scrolled .logo-ja { color: var(--text-dark); text-shadow: none; }

.header-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-size: .82rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.9);
  position: relative;
  padding-bottom: 3px;
  transition: color .3s;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.site-header.scrolled .nav-link { color: var(--text-mid); text-shadow: none; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--peach-500);
  transition: width .35s var(--ease-out-expo);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--peach-300); }
.site-header.scrolled .nav-link:hover { color: var(--peach-500); }

.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.btn-cart {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: rgba(255,255,255,.9);
  transition: background .3s, color .3s;
}
.site-header.scrolled .btn-cart { color: var(--text-mid); }
.btn-cart:hover { background: var(--peach-100); color: var(--peach-500); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: all .35s, background .4s;
  transform-origin: center;
}
.site-header.scrolled .nav-toggle span { background: var(--text-dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 99;
  opacity: 0;
  transition: opacity .35s;
}
.nav-overlay.show { opacity: 1; }

/* ===================================================
   HERO
   =================================================== */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,8,3,.72) 0%,
    rgba(20,10,5,.5) 50%,
    rgba(10,5,2,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-sub {
  font-family: var(--font-en);
  font-size: .85rem;
  letter-spacing: .35em;
  color: var(--peach-300);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title { margin-bottom: 28px; }
.hero-title-en {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.12);
  line-height: 1;
  margin-bottom: -10px;
  letter-spacing: .05em;
}
.hero-title-main {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
  letter-spacing: .06em;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  line-height: 2.1;
  margin-bottom: 40px;
  max-width: 420px;
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Badge */
.hero-badge {
  position: absolute;
  right: 8%; bottom: 12%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  z-index: 3;
}
.badge-label { display: block; font-family: var(--font-en); font-size: .72rem; letter-spacing: .3em; color: var(--peach-300); margin-bottom: 6px; }
.badge-main { display: block; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.badge-sub { display: block; font-size: .78rem; color: rgba(255,255,255,.7); letter-spacing: .05em; }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
  animation: fadeUp .8s 1.2s both;
}
.hero-scroll-indicator span { font-family: var(--font-en); font-size: .65rem; letter-spacing: .3em; color: rgba(255,255,255,.6); text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================================
   NOTICE BAR
   =================================================== */
.notice-bar { background: var(--peach-500); color: #fff; padding: 10px 0; overflow: hidden; }
.notice-track { display: flex; white-space: nowrap; animation: ticker 28s linear infinite; }
.notice-track span { font-size: .82rem; letter-spacing: .06em; padding-right: 40px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================================================
   STORY
   =================================================== */
.story-section { background: var(--warm-white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-visual { position: relative; }
.story-img-wrap { position: relative; aspect-ratio: 4/5; max-width: 460px; }
.story-img {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-1 { top: 0; left: 0; width: 82%; aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.story-img-2 { bottom: -30px; right: -20px; width: 52%; aspect-ratio: 1; border: 4px solid var(--warm-white); box-shadow: var(--shadow-md); }
.story-img-caption {
  position: absolute; bottom: -52px; left: 0;
  font-family: var(--font-en); font-size: .78rem; letter-spacing: .2em; color: var(--text-light); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.story-img-caption::before { content: ''; width: 32px; height: 1px; background: var(--peach-300); }
.story-text { padding: 20px 0; }
.story-body { color: var(--text-mid); line-height: 2; font-size: .95rem; margin-bottom: 20px; }

/* ===================================================
   FARMER PROFILE
   =================================================== */
.farmer-section { background: var(--cream); padding: 80px 0; }
.farmer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 420px 1fr; gap: 72px; align-items: center;
}
.farmer-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.farmer-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.farmer-img-deco {
  position: absolute; bottom: -16px; right: -16px;
  width: 60%; aspect-ratio: 1;
  border: 2px solid var(--peach-300);
  border-radius: var(--radius-md);
  z-index: -1;
}
.farmer-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--peach-600);
  line-height: 1.7;
  border-left: 3px solid var(--peach-400);
  padding-left: 20px;
  margin: 20px 0 24px;
  font-style: normal;
}
.farmer-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.farmer-name span { font-size: .78rem; color: var(--text-light); margin-left: 10px; font-weight: 400; }

/* ===================================================
   FEATURES
   =================================================== */
.features-section { background: var(--warm-white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: transform .35s, box-shadow .35s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon { width: 52px; height: 52px; margin: 0 auto 20px; color: var(--peach-500); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.feature-desc { font-size: .85rem; color: var(--text-light); line-height: 1.85; }

/* ===================================================
   VARIETIES
   =================================================== */
.varieties-section { background: var(--cream); position: relative; }
.varieties-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.variety-item {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .35s, box-shadow .35s;
}
.variety-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.variety-period { background: var(--peach-500); color: #fff; font-size: .72rem; letter-spacing: .08em; text-align: center; padding: 7px 12px; }
.variety-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.variety-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.variety-item:hover .variety-img img { transform: scale(1.06); }
.variety-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.3), transparent 60%); }
.variety-info { padding: 20px; }
.variety-name { font-family: var(--font-serif); font-size: 1.08rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.variety-tag { font-size: .72rem; color: var(--peach-500); letter-spacing: .06em; margin-bottom: 10px; font-weight: 500; }
.variety-desc { font-size: .82rem; color: var(--text-light); line-height: 1.85; }

/* ===================================================
   PRODUCTS
   =================================================== */
.products-section { background: var(--warm-white); }
.products-tabs {
  display: flex; gap: 4px; justify-content: center; margin-bottom: 48px;
  background: var(--brown-100); border-radius: 50px; padding: 5px;
  width: fit-content; margin-left: auto; margin-right: auto;
}
.tab-btn { padding: 10px 32px; border-radius: 50px; font-size: .88rem; letter-spacing: .06em; color: var(--text-light); transition: all .3s; }
.tab-btn.active { background: var(--warm-white); color: var(--peach-500); box-shadow: var(--shadow-sm); font-weight: 500; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card.hidden { display: none; }
.product-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--peach-500); color: #fff;
  font-size: .7rem; font-weight: 500; letter-spacing: .06em;
  padding: 4px 12px; border-radius: 50px;
}
.product-badge-tag.home { background: var(--brown-500); }
.product-badge-popular {
  position: absolute; top: 14px; right: 14px;
  background: #fff; color: var(--peach-500);
  font-size: .7rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px;
  border: 1px solid var(--peach-200);
}
.product-body { padding: 22px; }
.product-variety { font-size: .75rem; color: var(--text-light); letter-spacing: .08em; margin-bottom: 6px; }
.product-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; line-height: 1.5; }
.product-desc { font-size: .82rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.product-price { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--peach-600); }
.price-tax { font-size: .7rem; font-weight: 400; color: var(--text-light); }

/* ===================================================
   SEASON CALENDAR
   =================================================== */
.season-section { background: var(--cream); }
.calendar-wrap { background: #fff; border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }
.calendar-header { display: grid; grid-template-columns: 200px repeat(4, 1fr); background: var(--peach-500); color: #fff; }
.cal-col { padding: 14px 12px; text-align: center; font-size: .82rem; letter-spacing: .08em; font-weight: 500; }
.cal-col-label { padding: 14px 20px; }
.calendar-row { display: grid; grid-template-columns: 200px repeat(4, 1fr); border-bottom: 1px solid var(--border); align-items: center; transition: background .2s; }
.calendar-row:hover { background: var(--peach-50); }
.calendar-row:last-child { border-bottom: none; }
.cal-row-label { padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--border); }
.cal-row-label strong { font-family: var(--font-serif); font-size: .92rem; color: var(--text-dark); }
.cal-row-label span { font-size: .72rem; color: var(--text-light); letter-spacing: .05em; }
.calendar-row .cal-col { position: relative; height: 56px; }
.cal-bar {
  position: absolute; top: 50%;
  left: calc(var(--start, 0%));
  width: calc(var(--width, 0%));
  transform: translateY(-50%);
  height: 14px;
  background: linear-gradient(90deg, var(--peach-300), var(--peach-500));
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(232,114,74,.3);
  animation: barGrow .8s var(--ease-out-expo) both;
}
@keyframes barGrow {
  from { transform: translateY(-50%) scaleX(0); transform-origin: left; }
  to   { transform: translateY(-50%) scaleX(1); }
}
.calendar-note { text-align: center; margin-top: 20px; font-size: .78rem; color: var(--text-light); }

/* ===================================================
   REVIEWS
   =================================================== */
.reviews-section { background: var(--warm-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff; border-radius: var(--radius-md); padding: 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  position: relative; transition: transform .35s, box-shadow .35s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before { content: '"'; position: absolute; top: 12px; left: 24px; font-family: var(--font-en); font-size: 4rem; color: var(--peach-200); line-height: 1; font-style: italic; }
.review-stars { color: #f5a623; font-size: 1rem; margin-bottom: 16px; letter-spacing: .1em; }
.review-text { font-size: .88rem; color: var(--text-mid); line-height: 2; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid var(--border); }
.review-name { font-weight: 500; font-size: .85rem; color: var(--text-dark); }
.review-area { font-size: .78rem; color: var(--text-light); letter-spacing: .05em; }

/* ===================================================
   PHOTO STRIP
   =================================================== */
.photo-strip { overflow: hidden; height: 240px; background: var(--text-dark); }
.strip-track { display: flex; height: 100%; animation: strip 30s linear infinite; }
.strip-item {
  flex-shrink: 0;
  width: 300px; height: 100%;
  position: relative;
  overflow: hidden;
}
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.strip-item:hover img { transform: scale(1.06); }
.strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 16px 20px;
  transition: background .3s;
}
.strip-item:hover .strip-overlay { background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 60%); }
.strip-overlay span { color: #fff; font-size: .82rem; letter-spacing: .14em; font-family: var(--font-serif); }
@keyframes strip { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* Strip with 8 items = 300*8 = 2400px, loop at 50% */

/* ===================================================
   CTA
   =================================================== */
.cta-section { position: relative; padding: 100px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.cta-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(92,57,32,.92) 0%, rgba(221,106,136,.60) 60%, rgba(92,57,32,.75) 100%);
}
.cta-inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-content .section-label { color: rgba(255,255,255,.8); }
.cta-content .section-label::before,
.cta-content .section-label::after { background: rgba(255,255,255,.5); }
.cta-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 500; line-height: 1.4; margin-bottom: 20px; color: #fff; }
.cta-desc { font-size: .95rem; color: rgba(255,255,255,.82); line-height: 2; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-info {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 36px;
}
.info-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.15); gap: 16px; }
.info-item:last-child { border-bottom: none; }
.info-label { font-size: .8rem; color: rgba(255,255,255,.7); letter-spacing: .08em; flex-shrink: 0; }
.info-val { font-size: .88rem; color: #fff; text-align: right; font-weight: 500; }
.section-label.light { color: rgba(255,255,255,.8); }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,.7); }
.footer-top {
  max-width: 1160px; margin: 0 auto; padding: 64px 24px 48px;
  display: grid; grid-template-columns: 280px 1fr; gap: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {}
.footer-logo { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; }
.footer-logo .logo-en { color: var(--peach-400); font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; font-family: var(--font-en); }
.footer-logo .logo-ja { color: #fff; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; letter-spacing: .12em; text-shadow: none; }
.footer-tagline { font-size: .78rem; color: rgba(255,255,255,.5); letter-spacing: .1em; line-height: 1.8; margin-bottom: 12px; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.footer-nav-title { font-size: .7rem; letter-spacing: .2em; color: var(--peach-400); text-transform: uppercase; font-family: var(--font-en); margin-bottom: 16px; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: .82rem; color: rgba(255,255,255,.6); letter-spacing: .06em; transition: color .3s; }
.footer-nav a:hover { color: var(--peach-300); }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding: 20px 24px; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.35); letter-spacing: .08em; }

/* ===================================================
   PAGE TOP
   =================================================== */
.page-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--peach-500); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,114,74,.4);
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s, transform .4s, background .3s;
  pointer-events: none; z-index: 50;
}
.page-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.page-top:hover { background: var(--peach-600); transform: translateY(-3px); }

/* ===================================================
   PRODUCT META & BADGE ADDITIONS
   =================================================== */
.product-badge-limited {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, #e8a000, #c87800);
  color: #fff;
  font-size: .7rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(200,120,0,.35);
}
.product-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 14px;
}
.product-meta-item {
  font-size: .72rem;
  color: var(--text-light);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 3px 10px;
  letter-spacing: .04em;
}
.products-note {
  text-align: center;
  margin-top: 32px;
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .05em;
  padding: 14px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   LAW SECTION (特定商取引法)
   =================================================== */
.law-section { background: var(--cream); }
.law-table-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.law-table { width: 100%; border-collapse: collapse; }
.law-table th,
.law-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  line-height: 1.85;
  vertical-align: top;
  text-align: left;
}
.law-table tr:last-child th,
.law-table tr:last-child td { border-bottom: none; }
.law-table th {
  width: 180px;
  background: var(--cream);
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-serif);
  white-space: nowrap;
}
.law-table td { color: var(--text-mid); }
.law-table td a {
  color: var(--peach-500);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s;
}
.law-table td a:hover { color: var(--peach-600); }
.law-note {
  text-align: center;
  margin-top: 20px;
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .04em;
}
.law-note a {
  color: var(--peach-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Story tags */
.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  margin-top: 4px;
}
.story-tag-item {
  font-size: .78rem;
  background: var(--peach-50);
  color: var(--peach-600);
  border: 1px solid var(--peach-200);
  border-radius: 50px;
  padding: 5px 14px;
  letter-spacing: .04em;
  font-weight: 500;
}

/* Footer address */
.footer-address {
  margin-top: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .1em;
  font-style: normal;
}
.map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .varieties-list { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .farmer-inner { grid-template-columns: 340px 1fr; gap: 48px; }
  .story-grid { gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .section-padding { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  /* Header */
  .nav-toggle { display: flex; }
  .header-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: var(--warm-white);
    z-index: 100; padding: 80px 32px 40px;
    transform: translateX(100%);
    transition: transform .4s var(--ease-out-expo);
    box-shadow: var(--shadow-lg);
  }
  .header-nav.open { transform: translateX(0); }
  .nav-overlay { display: block; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-list li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-link { display: block; padding: 16px 0; font-size: .95rem; color: var(--text-mid) !important; text-shadow: none !important; }
  /* Hero */
  .hero-content { padding: 100px 24px 120px; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(10,5,2,.65) 0%, rgba(10,5,2,.5) 100%); }
  .hero-badge { position: relative; right: auto; bottom: auto; margin: 20px 24px 0; display: flex; gap: 12px; align-items: center; background: rgba(0,0,0,.3); }
  .badge-label { margin-bottom: 0; }
  /* Story */
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-img-wrap { max-width: 100%; }
  .story-img-2 { right: 0; }
  /* Farmer */
  .farmer-inner { grid-template-columns: 1fr; gap: 40px; }
  .farmer-img { aspect-ratio: 16/9; max-height: 360px; }
  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature-card { padding: 24px 16px; }
  /* Varieties */
  .varieties-list { grid-template-columns: 1fr 1fr; gap: 16px; }
  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  /* Calendar */
  .calendar-header, .calendar-row { grid-template-columns: 120px repeat(4, 1fr); }
  .cal-row-label { padding: 14px 10px; }
  .cal-row-label strong { font-size: .8rem; }
  .cal-row-label span { font-size: .68rem; }
  .cal-col { font-size: .72rem; padding: 10px 4px; }
  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  /* Photo strip */
  .strip-item { width: 220px; }
  /* CTA */
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
  .footer-nav { flex-direction: column; gap: 28px; }
  .page-top { bottom: 24px; right: 20px; width: 42px; height: 42px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .varieties-list { grid-template-columns: 1fr; }
  .hero-title-main { font-size: 2.1rem; }
  .hero-title-en { font-size: 2rem; }
  .calendar-header, .calendar-row { grid-template-columns: 90px repeat(4, 1fr); }
  .cal-row-label strong { font-size: .72rem; }
  .cal-row-label span { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
