/* ===========================================
   TASTE GARDEN  |  Brand Site Stylesheet
   =========================================== */

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }

:root {
  --green: #36a149;
  --green-deep: #267e35;
  --green-light: #ebf6ed;
  --gray-bg: #f3f3f1;
  --gray-line: #e5e5e3;
  --text: #1a1a1a;
  --text-sub: #6b6b6b;
  --max-w: 1140px;
  --gutter: clamp(20px, 5vw, 60px);
  --font-en: 'Barlow Semi Condensed', 'DIN Next', 'Helvetica Neue', Arial, sans-serif;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Header (green) ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green);
  transition: box-shadow .3s ease;
}
.header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.14);
}

.header__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.logo__taste { color: #fff; }
.logo__garden { color: rgba(255,255,255,.85); font-weight: 500; }

/* SVG / image logo sizing — tuned for the horizontal TASTE GARDEN logotype (~11:1) */
.logo--svg { line-height: 0; }
.logo__img {
  display: block;
  height: 16px;
  width: auto;
  max-width: 224px;
  transition: height .3s ease;
}
@media (min-width: 768px) {
  .logo__img { height: 19px; max-width: 272px; }
}
.header.is-scrolled .logo__img { height: 14px; }
@media (min-width: 768px) {
  .header.is-scrolled .logo__img { height: 18px; }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__list a {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: .08em;
  color: #fff;
  position: relative;
  transition: color .25s ease, opacity .25s ease;
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s ease;
}
.nav__list a:hover { color: #fff; opacity: .85; }
.nav__list a:hover::after { transform: scaleX(1); transform-origin: left center; }
.nav__mobile-logo { display: none; }
.nav__mobile-only { display: none; }
.nav__pc-only { display: list-item; }
.nav__shop {
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__cart {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  position: relative;
  top: 2px;
  stroke: #fff;
}
.nav__shop::after,
.nav__item-shop > a::after { display: none !important; }
.nav__sns-trigger {
  color: #fff;
  font-family: var(--font-en);
  font-size: 17px;
  letter-spacing: .08em;
  cursor: default;
}
.nav__sns-trigger::after { display: none !important; }
.nav__shop::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s ease;
  position: static !important;
  background: none !important;
}
.nav__item-shop { position: relative; }
.nav__item-shop:hover .nav__shop::after {
  transform: rotate(225deg) translate(-2px, 2px);
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 1001;
}
.nav__item-shop:hover .nav__dropdown,
.nav__item-shop:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown li { display: block; }
.nav__dropdown a {
  display: block;
  padding: 11px 22px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  color: var(--green) !important;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, padding .2s ease;
}
.nav__dropdown a::after { display: none !important; }
.nav__dropdown-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.nav__dropdown a:hover {
  background: var(--green-light);
  color: var(--green) !important;
  padding-left: 28px;
}

.hamburger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 120px var(--gutter) 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #fff;
  filter: brightness(1.15);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.08) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  will-change: opacity, transform;
  animation: hero-slide 16s linear infinite;
}
.hero__slide:nth-child(1) { animation-delay:  0s; }
.hero__slide:nth-child(2) { animation-delay:  4s; }
.hero__slide:nth-child(3) { animation-delay:  8s; }
.hero__slide:nth-child(4) { animation-delay: 12s; }
.hero__slide--bright {
  filter: brightness(1.22) contrast(0.97) saturate(1.1);
  background-position: calc(50% - 60px) center;
}

/* 5 slides × 4s, minimal dissolve overlap */
@keyframes hero-slide {
  0%    { opacity: 0; transform: scale(1.02); }
  2%    { opacity: 1; }
  21%   { opacity: 1; }
  25%   { opacity: 0; transform: scale(1.0); }
  100%  { opacity: 0; transform: scale(1.0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; transform: none; }
  .hero__slide:first-child { opacity: 1; }
}
.hero__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.hero__title {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 1.05;
  letter-spacing: .01em;
  margin: 0 0 24px;
  text-shadow: none;
}
.hero__title span { display: block; }
.hero__title-inline { display: block; }
.hero__title-inline span { display: inline-block; }
.hero__title .title-inner {
  display: inline-block;
  background: linear-gradient(to right, #fff 50%, var(--green) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position .5s ease;
}
.hero__title .title-inner.is-wiping {
  background-position: 0% 0;
}
@keyframes lead-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__lead {
  font-size: clamp(14px, 1.54vw, 16.5px);
  line-height: 1.9;
  max-width: 600px;
  margin: 0;
  opacity: 0;
  animation: lead-in .8s ease forwards;
  animation-delay: .2s;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.hero__shop {
  position: absolute;
  right: var(--gutter);
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.hero__shop-label {
  font-size: 12px;
  letter-spacing: .15em;
  margin: 0;
  background: rgba(255,255,255,.2);
  padding: 4px 14px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}
.hero__shop-buttons { display: flex; gap: 8px; }

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 30px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .25em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll::after {
  content: '';
  width: 60px;
  height: 1px;
  background: #fff;
  position: relative;
  overflow: hidden;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleX(.3); transform-origin: left; }
  50%      { opacity: 1;  transform: scaleX(1);  transform-origin: left; }
}

/* ---------- Buttons ---------- */
.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 4px;
  letter-spacing: .03em;
  transition: transform .25s ease, box-shadow .25s ease;
  min-width: 110px;
}
.shop-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.shop-btn--amazon,
.shop-btn--rakuten,
.shop-btn--yahoo,
.shop-btn--qoo10 {
  background: #fff;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 100px;
}
.shop-btn--lg { padding: 18px 40px; font-size: 18px; min-width: 200px; }
.shop-btn__logo { height: 28px; width: auto; display: block; margin: 0 auto; }

/* "Coming soon" non-clickable variant */
.shop-btn--coming {
  position: relative;
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
  flex-direction: column;
  line-height: 1.2;
}
.shop-btn--coming small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  opacity: .9;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .15em;
  padding: 14px 32px;
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.btn-more:hover {
  transform: scale(1.1);
}
.btn-more--filled { background: var(--green); color: #fff; border-color: var(--green); }
.btn-more--filled:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }

/* ---------- Centered CTA wrapper ---------- */
.section__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(40px, 6vw, 70px);
  text-align: center;
}

/* ---------- Pill button (rounded, animated outline) ---------- */
.btn-more--pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .14em;
  padding: 22px 56px;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  transition: border-color .5s ease,
              letter-spacing .5s ease,
              transform .35s ease,
              box-shadow .35s ease;
  cursor: pointer;
}
.btn-more--pill::before,
.btn-more--pill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
}
/* Slide-darken on hover */
.btn-more--pill::before {
  background: var(--green-deep);
  transform: translateX(-101%);
  transition: transform .55s cubic-bezier(.7,0,.2,1);
}
/* Continuous subtle border-shine ring */
.btn-more--pill::after {
  border: 1.5px solid transparent;
  background:
    conic-gradient(from var(--tg-pill-angle, 0deg),
      rgba(54,161,73,.0) 0deg,
      rgba(54,161,73,.65) 40deg,
      rgba(54,161,73,.0) 80deg,
      rgba(54,161,73,.0) 360deg) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: tg-pill-shine 6s linear infinite;
  opacity: .9;
  pointer-events: none;
}

.btn-more--pill:hover {
  color: #fff;
  letter-spacing: .18em;
  transform: translateY(-1px);
}
.btn-more--pill:hover::before {
  transform: translateX(0);
}

.btn-more--pill span {
  display: inline-block;
  transition: transform .4s ease;
}
.btn-more--pill:hover span {
  transform: translateX(6px);
}

@property --tg-pill-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes tg-pill-shine {
  to { --tg-pill-angle: 360deg; }
}

/* Browsers without @property: fall back to a soft pulse on the border */
@supports not (background: paint(angle)) {
  .btn-more--pill::after {
    background: none;
    border-color: rgba(54,161,73,.5);
    animation: tg-pill-pulse 2.4s ease-in-out infinite;
  }
}
@keyframes tg-pill-pulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-more--pill,
  .btn-more--pill::before,
  .btn-more--pill::after,
  .btn-more--pill span {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 600px) {
  .btn-more--pill {
    font-size: 13px;
    padding: 18px 40px;
  }
}

/* ---------- Section base ---------- */
.section {
  padding: clamp(70px, 10vw, 130px) 0;
}
.section__sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: .1em;
  margin: 0 0 8px;
}
.section__sub--right { text-align: right; }
.section__sub--center { text-align: center; }
.section__sub-jp {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.section__title-en {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: .01em;
  line-height: 1;
  margin: 0 0 50px;
  color: #1a1a1a;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease .25s, transform .45s ease .25s;
}
.section__title-en::after {
  content: '';
  display: block;
  margin: 10px auto 0;
  height: 2px;
  width: 120px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s cubic-bezier(.4,0,.2,1);
}
.section__title-en.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section__title-en.is-visible::after {
  transform: scaleX(1);
}
.section__title-en--center { text-align: center; }
.about .section__title-en { margin-bottom: 25px; }
.about { padding-bottom: clamp(18px, 2.5vw, 33px); }
.about__accent {
  color: var(--green);
  font-size: 1.44em;
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.about__heading,
.spec__heading,
.recipes__heading {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 28px;
  letter-spacing: .02em;
}
.about__desc,
.spec__desc {
  font-size: 14px;
  line-height: 2;
  color: #444;
  margin: 0 0 20px;
  text-align: left;
}
.recipes__desc {
  font-size: 14px;
  line-height: 2;
  color: #444;
  margin: -20px auto 40px;
  max-width: 720px;
  text-align: center;
}
.about__image img,
.spec__image img {
  border-radius: 4px;
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.spec__image--slider {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.spec__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.spec__slide.is-active {
  opacity: 1;
}
.about__image {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .5s ease, transform .5s ease;
}
.about__image.is-visible {
  opacity: 1;
  transform: scale(1);
}

.spec__tags {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.spec__tags li {
  border: 1.5px solid var(--green);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: #fff;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ---------- Spec ---------- */
.spec { background: var(--gray-bg); }
.spec__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.spec__heading-accent { color: var(--green-deep); }

/* ---------- Ways to Enjoy ---------- */
.ways__lead {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  margin: 0 0 18px;
  text-align: center;
}
.ways__desc {
  font-size: 14px;
  color: #444;
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}
.ways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 40px;
  width: 100%;
}
.ways__card { display: block; position: relative; overflow: hidden; }
.ways__card-img {
  aspect-ratio: 2/3;
  overflow: hidden;
}
.ways__card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.ways__card:hover .ways__card-img img { transform: scale(1.04); }
.ways__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
}
.ways__card-body {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 1;
}
.ways__card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  margin: 0 0 4px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 24px);
  color: #fff;
  letter-spacing: .1em;
}
.ways__icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  color: #FFD700;
  vertical-align: middle;
  display: block;
}
.ways__card-ja {
  margin: 0;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .04em;
}
.ways__btn-wrap { text-align: center; }

/* ---------- Recipes ---------- */
.recipes { background: var(--gray-bg); }
.recipes__lead {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  margin: 0 0 40px;
}
.recipes__marquee {
  overflow: hidden;
  margin-bottom: 40px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 12px 0;
}
.recipes__track {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}
.recipes__marquee:hover .recipes__track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.recipes__circle {
  display: block;
  position: relative;
  width: clamp(150px, 21vw, 240px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}
.recipes__circle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.recipes__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recipes__circle-name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  padding: 8px;
  opacity: 0;
  transition: opacity .3s ease;
}
.recipes__circle:hover .recipes__circle-name {
  opacity: 1;
}

/* ---------- Instagram ---------- */
.insta__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-bottom: 40px;
}
.insta__item {
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
  position: relative;
}
.insta__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, opacity .3s ease;
}
.insta__item:hover img { transform: scale(1.08); opacity: .85; }
.insta__btn-wrap { text-align: center; margin-top: 32px; }
.insta__btn { font-size: 18px; }

.insta__catch {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  margin: -24px 0 12px;
  color: #1a1a1a;
}
.insta__desc {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin: 0 0 32px;
}
.insta__handle {
  text-align: center;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--green);
  margin: -8px 0 32px;
}

.insta__live {
  margin: 0 auto;
  max-width: 1140px;
}
.insta__live .sbi_header_text,
.insta__live #sb_instagram .sb_instagram_header {
  display: none;
}

/* ---------- Topics ---------- */
.topics { background: var(--gray-bg); }
.topics__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 50px;
  text-align: center;
}
.topics__head .section__title-en { margin: 0; }
.topics__lead {
  flex-basis: 100%;
  margin: 18px 0 0;
  font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  letter-spacing: .02em;
}
.topics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.topic-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.topic-card__img {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0eee7;
}
.topic-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.topic-card:hover .topic-card__img img { transform: scale(1.04); }
.topic-card__body { padding: 22px 24px 28px; }
.topic-card__date {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.topic-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 12px;
  color: #1a1a1a;
}
.topic-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.topic-card__title a:hover {
  color: var(--green);
}
.topic-card__desc {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
.topics__btn-wrap { text-align: center; }

/* ---------- Topics horizontal slider (left-aligned to content, right overflow) ---------- */
.topics__slider {
  position: relative;
  margin: 0 0 18px;
  width: 100%;
}

/* The left padding aligns with the .container's content edge (centered, max-w 1140 + gutter).
   Right padding is 0 so the last visible card overflows the viewport. */
.topics__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 14px max(var(--gutter), calc((100% - var(--max-w)) / 2 + var(--gutter)));
  scroll-padding-inline-start: max(var(--gutter), calc((100% - var(--max-w)) / 2 + var(--gutter)));
}
.topics__track::-webkit-scrollbar { display: none; }

/* Cards ~130% larger than the previous 5-up layout — approx 3 cards + peek on wide desktops */
.topics__track .topic-card {
  flex: 0 0 24vw;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (max-width: 1280px) {
  .topics__track .topic-card { flex: 0 0 30vw; }
}
@media (max-width: 980px) {
  .topics__track .topic-card { flex: 0 0 38vw; }
}
@media (max-width: 720px) {
  .topics__track { gap: 16px; }
  .topics__track .topic-card { flex: 0 0 52vw; }
}
@media (max-width: 520px) {
  .topics__track .topic-card { flex: 0 0 78vw; }
}
.topics__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}
.topics__arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-line);
  background: #fff;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}
.topics__arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.topics__arrow:disabled {
  opacity: .3;
  cursor: not-allowed;
  background: #fff;
  color: #333;
  border-color: var(--gray-line);
}
.topics__progress {
  flex: 1 1 auto;
  height: 2px;
  background: var(--gray-line);
  border-radius: 1px;
  overflow: hidden;
  max-width: 320px;
}
.topics__progress-bar {
  display: block;
  height: 100%;
  width: 33%;
  background: var(--green);
  transition: width .3s ease;
}

/* Back-to-home button used at the bottom of archive / single pages */
.back-to-home {
  text-align: center;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--gray-line);
}
.back-to-home .btn-more { min-width: 220px; justify-content: center; }
.back-to-home__arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.back-to-home .btn-more:hover .back-to-home__arrow { transform: translateX(-4px); }

/* ---------- LINE banner ---------- */
.line-bnr {
  padding: clamp(50px, 8vw, 90px) 0;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    url('../images/top-linebg.jpg') center/cover no-repeat;
}
.line-bnr__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.line-bnr__logo {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.5);
  padding: 22px 50px;
  border-radius: 4px;
  margin-bottom: 24px;
  transition: background .3s ease;
}
.line-bnr__logo:hover { background: rgba(255,255,255,.2); }
.line-bnr__brand {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .1em;
}
.line-bnr__line {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .05em;
  margin-top: 4px;
}
.line-bnr__text {
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
}

/* ---------- Shopping ---------- */
.contact-section__heading {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  text-align: center;
  margin: -20px 0 40px;
  color: #1a1a1a;
}
.contact-title { margin-top: 70px; }
@media (max-width: 640px) {
  .contact-title { margin-top: 70px; }
}
.topic-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-line);
}
.topic-single__nav-prev { text-align: left; }
.topic-single__nav-next { text-align: right; }
.topic-single__nav-list { text-align: center; }
.topic-single__nav-prev a,
.topic-single__nav-next a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #1a1a1a;
  text-decoration: none;
}
.topic-single__nav-label {
  font-size: 11px;
  font-family: var(--font-en);
  letter-spacing: .1em;
  color: var(--green);
}
.topic-single__nav-title {
  font-size: 13px;
  line-height: 1.5;
  color: #444;
}
@media (max-width: 640px) {
  .topic-single__nav { grid-template-columns: 1fr; text-align: center; }
  .topic-single__nav-prev, .topic-single__nav-next { text-align: center; }
  .topic-single__nav-prev a, .topic-single__nav-next a { align-items: center; }
}

.topic-single__date {
  text-align: center;
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: .08em;
  margin: -40px 0 24px;
}
.topic-single__title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}
/* ページヒーローなしページの上マージン */
.ways-intro,
.spec.section,
.recipe-insta { margin-top: 55px; }
@media (max-width: 640px) {
  .ways-intro,
  .spec.section,
  .recipe-insta { margin-top: 22px; }
}
.tg-form__submit { text-align: center; }
.tg-form__btn { justify-content: center; }

/* ---------- Hero mobile ---------- */
@media (max-width: 600px) {
  .hero {
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 20px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .hero__title {
    font-size: clamp(46px, 14vw, 67px);
  }
  .hero__inner {
    width: 100%;
  }
  .hero__lead {
    font-size: 11px;
  }
}

/* ---------- 404 ---------- */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.notfound__inner {
  text-align: center;
  padding: 80px 0;
}
.notfound__num {
  font-family: var(--font-en);
  font-size: clamp(80px, 16vw, 160px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin: 0 0 16px;
  opacity: .15;
}
.notfound__title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  margin: 0 0 20px;
}
.notfound__desc {
  font-size: 14px;
  color: #555;
  line-height: 2;
  margin: 0 0 40px;
}
.notfound__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact banner ---------- */
.contact-bnr__desc {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin: -20px 0 0;
}

/* ---------- Shopping ---------- */
.shopping { background: var(--gray-bg); }
.shopping__lead {
  text-align: center;
  font-size: 14px;
  color: #444;
  margin: 0 0 40px;
}
.shopping__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* ---------- EC product image marquee (auto-scroll) ---------- */
.ec-marquee {
  width: 100%;
  overflow: hidden;
  margin: 0 0 clamp(36px, 5vw, 60px);
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0,
      #000 6%,
      #000 94%,
      transparent 100%);
          mask-image: linear-gradient(90deg,
      transparent 0,
      #000 6%,
      #000 94%,
      transparent 100%);
}
.ec-marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: ec-scroll 42s linear infinite;
}
.ec-marquee:hover .ec-marquee__track,
.ec-marquee:focus-within .ec-marquee__track {
  animation-play-state: paused;
}
.ec-marquee__item {
  flex: 0 0 auto;
  width: clamp(225px, 22.5vw, 300px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.ec-marquee__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.ec-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes ec-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ec-marquee__track { animation: none; }
}
@media (max-width: 600px) {
  .ec-marquee__track { gap: 12px; animation-duration: 30s; }
  .ec-marquee__item { width: 188px; }
}

/* ---------- Footer (green) ---------- */
.footer {
  background: var(--green-deep);
  color: #fff;
  padding: 60px 0 30px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand .logo,
.footer__brand .logo__taste,
.footer__brand .logo__garden { color: #fff; }
.footer__brand .logo__img { filter: brightness(0) invert(1); }
.footer__tagline {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.6);
  margin: 6px 0 0;
}

.footer__addr {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,.8);
  margin: 16px 0 0;
}
.footer__nav ul {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .08em;
  color: #fff;
  transition: opacity .25s ease;
}
.footer__nav a:hover { opacity: .75; color: #fff; }
.footer__nav-sep {
  color: rgba(255,255,255,.4);
  font-size: 13px;
  line-height: 1;
  align-self: center;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 32px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__contact-text {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin: 0;
}
.footer__contact-btn {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 8px 24px;
  border: 1.5px solid #fff;
  border-radius: 100px;
  color: #fff;
  transition: background .25s ease, color .25s ease;
}
.footer__contact-btn:hover {
  background: #fff;
  color: var(--green-deep);
}
.footer__sns {
  display: flex;
  gap: 16px;
}
.footer__sns-link {
  color: #fff;
  opacity: .8;
  transition: opacity .25s ease;
  display: block;
}
.footer__sns-link:hover { opacity: 1; }
.footer__sns-link svg {
  width: 22px;
  height: 22px;
  display: block;
}
.footer__copy {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.65);
  margin: 30px 0 0;
  letter-spacing: .05em;
}

/* ===========================================
   Responsive: Tablet
   =========================================== */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav.is-open {
    display: block;
    position: fixed;
    top: 0; left: 60px; right: 0; bottom: 0;
    background: #fff;
    padding: 40px 30px 40px;
    box-shadow: -4px 0 20px rgba(0,0,0,.1);
    overflow-y: auto;
    z-index: 999;
  }
  .nav__mobile-only { display: block; }
  .nav__pc-only { display: none !important; }
  .nav__mobile-logo {
    display: block;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-line);
  }
  .nav__mobile-logo .logo__img {
    height: 18px;
    filter: invert(42%) sepia(60%) saturate(500%) hue-rotate(90deg) brightness(.9);
  }
  .nav__mobile-logo .logo,
  .nav__mobile-logo .logo__taste,
  .nav__mobile-logo .logo__garden { color: var(--green); }
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    width: 60px;
    background: rgba(0,0,0,.3);
    z-index: 998;
  }
  .nav.is-open .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  /* In the open drawer the background flips to white, so links need dark text */
  .nav.is-open .nav__list a {
    color: #1a1a1a;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav.is-open .nav__list a::before,
  .nav.is-open .nav__list .nav__sns-trigger::before {
    content: '';
    display: block;
    width: 5px;
    height: 1px;
    background: var(--green);
    flex-shrink: 0;
  }
  .nav__dropdown a::before { display: none !important; }
  .nav__dropdown a { font-size: 0 !important; }
  /* カートアイコンのli */
  .nav__item-shop:not(.nav-sns) a::before { display: none !important; }
  .nav__item-shop:not(.nav-sns) { border-bottom: none !important; padding-bottom: 0 !important; }
  /* SNS行の縦位置 */
  .nav__item-shop.nav-sns { align-items: center; }
  .nav.is-open .nav__sns-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  /* ドロップダウンliのボーダー削除 */
  .nav__dropdown li { border-bottom: none !important; padding-bottom: 0 !important; }
  .nav.is-open .nav__list a:hover { color: var(--green); opacity: 1; }
  .nav.is-open .nav__list a::after { background: var(--green); }
  .nav.is-open .nav__shop { color: var(--green) !important; }
  .nav.is-open .nav__shop::after {
    border-right-color: var(--green);
    border-bottom-color: var(--green);
  }
  .nav__item-shop { width: 100%; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin-top: 0;
    min-width: 0;
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
  .nav__dropdown li { margin-top: 0; }
  .nav__dropdown a {
    padding: 0;
    font-size: 0;
    color: #1a1a1a !important;
    border-left: none;
  }
  .nav__dropdown a:hover {
    background: transparent;
    padding-left: 0;
    color: var(--green) !important;
  }
  .nav__dropdown-icon {
    width: 22px;
    height: 22px;
    color: #1a1a1a;
  }
  .nav__item-shop.nav-sns {
    display: flex;
    align-items: center;
    gap: 11px;
  }
  .nav__sns-trigger,
  .nav.is-open .nav__sns-trigger {
    color: #1a1a1a !important;
    font-family: var(--font-en) !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }
  .nav-sns .nav__dropdown {
    align-items: center;
  }
  .nav-sns .nav__dropdown-icon {
    display: block;
    vertical-align: middle;
  }
  .nav.is-open .nav__list li {
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .hamburger { display: block; }

  .about__grid,
  .spec__grid,
  .recipes__grid {
    grid-template-columns: 1fr;
  }
  .about__image,
  .spec__image { order: -1; }
  .about__image img,
  .spec__image img { aspect-ratio: 16/10; }
  .topics__head { justify-content: center; text-align: center; }

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

  .recipes__images { height: 380px; }

  .insta__grid { grid-template-columns: repeat(4, 1fr); }

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

  .topics__head { flex-direction: column; gap: 8px; align-items: center; }
}

/* ===========================================
   Responsive: Mobile
   =========================================== */
@media (max-width: 640px) {
  .header__inner { padding: 5px var(--gutter); }
  .header.is-scrolled .header__inner { padding: 3px var(--gutter); }
  .logo__img { height: 13px; }
  .header.is-scrolled .logo__img { height: 11px; }
  .page-hero { margin-top: 22px; }
  .header { transition: box-shadow .3s ease; }
  .logo { font-size: 18px; }

  .hero { min-height: 88vh; padding: 100px var(--gutter) 140px; }
  .hero__shop {
    left: var(--gutter); right: var(--gutter);
    bottom: 80px;
    align-items: center;
  }
  .hero__scroll { display: none; }

  .ways__grid { grid-template-columns: 1fr; }
  .ways__card-img { aspect-ratio: 4/3; }

  .recipes__images { height: 320px; }
  .recipes__img--1 { width: 60%; }
  .recipes__img--2 { width: 55%; }
  .recipes__img--3 { width: 55%; }

  .insta__grid { grid-template-columns: repeat(3, 1fr); }

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

  .shop-btn--lg { padding: 14px 28px; font-size: 16px; min-width: 160px; }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding-bottom: 14px;
  }
  .footer__nav ul {
    justify-content: center;
    gap: 10px;
  }
  .footer__bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__contact { flex-direction: column; align-items: center; }
  .footer__sns { justify-content: center; }
}

/* ===========================================
   Sub-page Hero
   =========================================== */
.page-hero {
  position: relative;
  margin-top: 55px;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 0 var(--gutter);
}
.page-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55));
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.page-hero__title {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.05;
  margin: 0 0 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,.3);
  letter-spacing: .01em;
}
.page-hero__lead {
  font-size: clamp(13px, 1.4vw, 16px);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  font-weight: 500;
  letter-spacing: .04em;
}

/* ===========================================
   PRODUCTS page (ライスケーキとは)
   =========================================== */
.products-intro { padding: clamp(70px, 10vw, 130px) 0 60px; }
.products-intro__title {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: .01em;
  margin: 0 0 60px;
  text-align: center;
}
.products-intro__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 10vw, 120px);
}
.products-intro__row--reverse .products-intro__image { order: -1; }
.products-intro__heading {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 28px;
}
.products-intro__desc {
  font-size: 14px;
  line-height: 2;
  color: #444;
  margin: 0 0 16px;
}
.products-intro__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.products-overseas { background: var(--gray-bg); padding: clamp(70px, 10vw, 130px) 0; }
.products-overseas__heading {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 30px;
  letter-spacing: .02em;
}
.products-overseas__desc {
  font-size: 14px;
  line-height: 2;
  color: #444;
  max-width: 720px;
  margin: 0 0 50px;
}
.products-overseas__videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}
.video-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.video-card::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  transform: translate(-50%,-50%);
  z-index: 2;
  transition: transform .3s ease;
}
.video-card::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  margin-left: -8px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent var(--green);
  transform: translate(-50%,-50%);
  z-index: 3;
  transition: transform .3s ease;
}
.video-card:hover img { transform: scale(1.06); }
.video-card:hover::before { transform: translate(-50%,-50%) scale(1.1); }

/* ===========================================
   SPEC page
   =========================================== */
/* ---------- Feature compare block ---------- */
.feature-compare {
  background: #f5f2ec;
}
.feature-compare__img {
  max-width: 860px;
  margin: 0 auto 40px;
}
.feature-compare__img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.feature-compare__desc {
  font-size: 14px;
  line-height: 2;
  color: #444;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Spec intro ---------- */
.spec-intro {
  padding: clamp(70px, 10vw, 120px) 0 50px;
  text-align: center;
}
.spec-intro__heading {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 30px;
}
.spec-intro__tags {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px;
  line-height: 2.2;
  letter-spacing: .04em;
}
.spec-intro__note {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.spec-compare { padding: 50px 0; }
.spec-compare__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 40px;
  color: #333;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr;
  align-items: center;
  gap: 30px;
  max-width: 760px;
  margin: 0 auto 28px;
}
.compare-cell {
  text-align: center;
}
.compare-cell__cal {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 22px;
  color: #555;
}
.compare-cell__icon {
  font-size: 50px;
  margin: 4px 0;
  color: var(--green);
}
.compare-cell__label {
  font-size: 12px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.compare-cell__rices {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-bottom: 6px;
}
.rice-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 22px;
  background: #f5e23a;
  color: #444;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 12px;
  border-radius: 3px;
}
.compare-cell__equiv {
  font-size: 13px;
  color: var(--green-deep);
  font-weight: 700;
  margin: 0;
}
.compare-row__eq {
  font-size: 28px;
  color: #999;
  font-weight: 700;
}

.spec-nutrition {
  padding: 60px 0;
  text-align: center;
  background: #fff;
}
.spec-nutrition__head {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 30px;
}
.spec-nutrition__diagram {
  position: relative;
  width: clamp(280px, 60vw, 460px);
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.spec-nutrition__diagram img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.nutrition-tag {
  position: absolute;
  text-align: center;
  font-weight: 700;
  background: rgba(255,255,255,.85);
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.nutrition-tag__label {
  display: block;
  font-size: 12px;
  color: #555;
  margin-bottom: 2px;
  font-weight: 600;
}
.nutrition-tag__value {
  display: block;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 800;
  color: var(--green-deep);
}
.nutrition-tag--energy { top: -10px; left: 50%; transform: translateX(-50%); }
.nutrition-tag--fat { top: 28%; left: -8%; }
.nutrition-tag--carb { top: 28%; right: -8%; }
.nutrition-tag--protein { bottom: 28%; left: -8%; }
.nutrition-tag--total { bottom: 28%; right: -8%; }
.nutrition-tag--salt { bottom: -10px; left: 50%; transform: translateX(-50%); }

/* ---------- Spec features (vertical FEATURE blocks) ---------- */
.spec-features {
  padding: clamp(70px, 10vw, 120px) 0 clamp(80px, 12vw, 140px);
  background: #fff;
}
.spec-features__head {
  text-align: center;
  margin: 0 0 70px;
}
.spec-features__sub {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 16px;
}
.spec-features__desc {
  font-size: 14px;
  line-height: 2;
  color: #444;
  max-width: 800px;
  margin: 8px auto 0;
  text-align: center;
}
.spec-features__title {
  font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
  color: #111;
}

.spec-features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2px;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .spec-features__list { grid-template-columns: 1fr; }
}

/* Accordion style */
.spec-feature {
  border-bottom: 1px solid var(--gray-line);
  border-top: 1px solid var(--gray-line);
  margin-top: -1px;
  background: #fff;
}
.spec-feature--no-img { display: block; }
.spec-feature__trigger {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 30px 4px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}
.spec-feature__num {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  background: var(--green);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.spec-feature__title {
  font-size: clamp(22px, 2.4vw, 27px);
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
  flex: 1;
  margin: 0;
}
.spec-feature__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  transition: background .3s ease;
}
.spec-feature.is-open .spec-feature__icon {
  background: var(--green);
}
.spec-feature__icon::before,
.spec-feature__icon::after {
  content: '';
  position: absolute;
  background: var(--green);
  border-radius: 2px;
  transition: transform .35s ease, opacity .35s ease, background .3s ease;
}
.spec-feature__icon::before {
  width: 1.5px; height: 8px;
  top: 6px; left: 9px;
}
.spec-feature__icon::after {
  width: 8px; height: 1.5px;
  top: 9px; left: 6px;
}
.spec-feature.is-open .spec-feature__icon::before {
  transform: rotate(90deg);
  opacity: 0;
  background: #fff;
}
.spec-feature.is-open .spec-feature__icon::after {
  background: #fff;
}
.spec-feature__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.spec-feature.is-open .spec-feature__body {
  max-height: 300px;
}
.spec-feature__desc {
  font-size: 14px;
  line-height: 2;
  color: #444;
  padding: 0 4px 24px;
  margin: 0;
}
@media (max-width: 600px) {
  .spec-feature__title { font-size: 14px; }
}

/* ===========================================
   WAYS page
   =========================================== */
.ways-intro {
  padding: clamp(70px, 10vw, 120px) 0 60px;
}
.ways-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.ways-intro__heading {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 24px;
}
.ways-intro__desc {
  font-size: 13px;
  color: #555;
  line-height: 2;
  margin: 0;
}
.ways-intro__image img {
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.scenes { padding: 40px 0 clamp(70px, 10vw, 120px); }
.scene {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.scene:first-child { border-top: 1px solid rgba(0,0,0,.06); }
.scene:nth-child(even) {
  grid-template-columns: 400px 1fr;
}
.scene:nth-child(even) .scene__img { order: -1; }

.scene__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(80px, 11vw, 130px);
  line-height: 1;
  color: #1a1a1a;
}
.scene__body {}
.scene__title {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: .04em;
  margin: 0 0 14px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scene__title .ways__icon {
  width: 1em;
  height: 1em;
  color: #FFD700;
  flex-shrink: 0;
}
.scene__lead {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.6;
}
.scene__desc {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin: 0;
}
.scene__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.scene__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.scene:hover .scene__img img { transform: scale(1.05); }

/* ===========================================
   RECIPE page
   =========================================== */
.recipe-intro { padding: clamp(70px, 10vw, 120px) 0 60px; }
.recipe-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.recipe-intro__heading {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 24px;
}
.recipe-intro__desc {
  font-size: 13px;
  color: #555;
  line-height: 2;
  margin: 0;
}
.recipe-intro__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}

.recipe-list {
  padding: 80px 0 clamp(60px, 8vw, 100px);
}
.recipe-list__title-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 50px;
}
.recipe-list__title {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0;
  letter-spacing: .02em;
}
.recipe-list__title-wrap::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #1a1a1a;
}
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 34px;
}
.recipe-card { display: block; }
.recipe-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 14px;
}
.recipe-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.recipe-card:hover .recipe-card__img img { transform: scale(1.06); }
.recipe-card__title {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1.5;
  text-align: center;
}
.recipe-card__meta {
  display: none;
}

/* Recipe coming soon */
.recipe-coming-soon {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin: 0 0 40px;
  letter-spacing: .04em;
}

/* Recipe placeholder circles */
.recipe-placeholder__circle {
  position: relative;
  overflow: hidden;
}
.recipe-placeholder__circle--1 { background: radial-gradient(circle at 30% 30%, #d4f0a0, #a8d870 40%, #7cc040 70%); }
.recipe-placeholder__circle--2 { background: radial-gradient(circle at 70% 20%, #ffe066, #a8d870 50%, #36a149 80%); }
.recipe-placeholder__circle--3 { background: radial-gradient(circle at 50% 60%, #b8e86c, #ffe066 40%, #d4f0a0 80%); }
.recipe-placeholder__circle--4 { background: radial-gradient(circle at 20% 70%, #7cc040, #ffe066 50%, #a8d870 80%); }
.recipe-placeholder__circle::before,
.recipe-placeholder__circle::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.recipe-placeholder__circle::before { width: 40%; height: 40%; top: 15%; left: 10%; }
.recipe-placeholder__circle::after  { width: 25%; height: 25%; bottom: 20%; right: 15%; }
.recipe-placeholder .recipe-card__title {
  color: #888;
  font-style: italic;
}

.recipe-insta {
  background: var(--gray-bg);
  padding: 60px 0;
}
.recipe-insta__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.recipe-insta__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.recipe-insta__img img { width: 100%; height: 100%; object-fit: cover; }
.recipe-insta__img::after {
  content: 'Instagram';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .04em;
}
.recipe-insta__title {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--green);
  margin: 0 0 14px;
  letter-spacing: .02em;
  text-align: center;
}
.recipe-insta__title-inline {
  font-weight: 700;
  color: #1a1a1a;
}
.recipe-insta__tag {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  text-align: center;
}
.recipe-insta__tag { color: #1a1a1a; }
.recipe-insta__tag a { color: var(--green); }
.recipe-insta__desc {
  font-size: 13px;
  color: #555;
  line-height: 1.9;
  margin: 0;
  text-align: center;
}

/* ===========================================
   ABOUT page
   =========================================== */
.about-brand {
  padding: clamp(70px, 10vw, 120px) 0;
  text-align: center;
}
.about-brand__sub {
  font-size: 13px;
  color: #1a1a1a;
  letter-spacing: .15em;
  margin: 0 0 60px;
}
.about-brand__logo {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: .04em;
  color: var(--green);
  margin: 0 0 50px;
}
.about-brand__logo span:last-child {
  color: #6c6c6c;
  font-weight: 500;
  margin-left: 12px;
}
.about-brand__heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 80px;
}
.company-info {
  max-width: 760px;
  margin: 40px auto 25px;
  text-align: left;
}
.company-info__table {
  width: 100%;
  border-collapse: collapse;
}
.company-info__table th,
.company-info__table td {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.8;
  border-bottom: 1px solid var(--gray-line);
  vertical-align: top;
}
.company-info__table th {
  width: 140px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.company-info__table td {
  color: #444;
}
.company-info__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.company-info__list li {
  font-size: 13px;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
  color: #1a1a1a;
}
.company-info__list li::before {
  content: '■';
  position: absolute;
  left: 0; top: 0;
  color: var(--green);
  font-size: 11px;
}
.company-info__list strong {
  font-weight: 700;
  margin-right: 6px;
}

/* ===========================================
   Sub-page Responsive
   =========================================== */
@media (max-width: 960px) {
  .products-intro__row,
  .ways-intro__inner,
  .recipe-intro__inner,
  .recipe-insta__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .products-intro__row--reverse .products-intro__image { order: 0; }

  .scene,
  .scene:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .scene__img,
  .scene:nth-child(even) .scene__img {
    order: -1;
  }

  .spec-points__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recipe-grid { grid-template-columns: repeat(3, 1fr); }

  .company-info { grid-template-columns: 1fr; gap: 14px; }

  .recipe-insta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .recipe-insta__img { max-width: 240px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .page-hero { height: 42vh; min-height: 280px; }

  .products-overseas__videos { grid-template-columns: 1fr; }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .compare-row__eq { transform: rotate(90deg); }

  .nutrition-tag { font-size: 11px; padding: 4px 8px; }
  .nutrition-tag__value { font-size: 14px; }

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

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
