/* ===== RESET & VARIABLES ===== */
/* 既存のヘッダー・フッターを非表示 */
#header_top, header, .subtitle02_wrapper, #locator, #contents_right, footer {
    display: none;
}

/* このページのfooterは表示 */
#kuwa2026-lp footer {
    display: block;
}
#kuwa2026-lp *, #kuwa2026-lp *::before, #kuwa2026-lp *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green:        #5cb848;
  --green-dark:   #3a8c2c;
  --green-deep:   #2d6e22;
  --green-light:  #8fce7a;
  --green-pale:   #d4edcb;
  --green-mist:   #eef7e9;
  --cream:        #fdf8f0;
  --cream-mid:    #f5ede0;
  --beige:        #ede3d0;
  --orange-soft:  #f5a623;
  --white:        #ffffff;
  --text:         #333333;
  --text-mid:     #666666;
  --text-light:   #999999;
  --font-main:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en:      'Poppins', sans-serif;
  --r-sm:         12px;
  --r-md:         20px;
  --r-lg:         32px;
  --r-xl:         50px;
}
html, body { scroll-behavior: smooth; overflow-x: hidden; }
#kuwa2026-lp {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
#kuwa2026-lp img { max-width: 100%; height: auto; display: block; }
#kuwa2026-lp a { color: inherit; text-decoration: none; }

/* ===== SP UTILITY ===== */
#kuwa2026-lp .sp-br   { display: none; }
#kuwa2026-lp .sp-hide { display: inline; }
@media (max-width: 639px) {
  #kuwa2026-lp .sp-br   { display: inline; }
  #kuwa2026-lp .sp-hide { display: none; }
}

/* ===== SCROLL REVEAL ===== */
/* JSが動かない環境でも本文が消えないよう、通常時は表示。
   DOM読み込み後にJSが #kuwa2026-lp へ .is-reveal-ready を付与した場合のみアニメーション待機にする。 */
#kuwa2026-lp .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#kuwa2026-lp.is-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}
#kuwa2026-lp.is-reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
#kuwa2026-lp .d1 { transition-delay: 0.08s; }
#kuwa2026-lp .d2 { transition-delay: 0.16s; }
#kuwa2026-lp .d3 { transition-delay: 0.24s; }
#kuwa2026-lp .d4 { transition-delay: 0.32s; }

/* ===== SHARED ===== */
#kuwa2026-lp .inner { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* 大デコ英字（tag-label / product-deco-en / recipe-bg-deco 共通） */
#kuwa2026-lp .tag-label,
#kuwa2026-lp .product-deco-en,
#kuwa2026-lp .recipe-bg-deco {
  font-family: var(--font-en);
  font-size: clamp(48px, 12vw, 96px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 32px;
}
#kuwa2026-lp .tag-label        { display: block; color: #eef7e9; user-select: none; }
#kuwa2026-lp .product-deco-en  { color: #ffffff; text-align: left; }
#kuwa2026-lp .recipe-bg-deco   { color: #E1F3DE; text-align: left; user-select: none; pointer-events: none; }

/* セクションタイトル（sec-title / forwho-lead 共通） */
#kuwa2026-lp .sec-title,
#kuwa2026-lp .forwho-lead { font-size: 24px; font-weight: 700; color: var(--text-mid); }
#kuwa2026-lp .sec-title   { line-height: 1.6; margin-bottom: 8px; }
#kuwa2026-lp .forwho-lead { margin-bottom: 12px; }
#kuwa2026-lp .sec-sub {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
}
#kuwa2026-lp .btn-main {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: var(--r-xl);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(92,184,72,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
#kuwa2026-lp .btn-main:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,184,72,0.45); }
#kuwa2026-lp .btn-sub {
  display: inline-block;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: var(--r-xl);
  border: 2px solid var(--green);
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}
#kuwa2026-lp .btn-sub:hover { background: var(--green-mist); }

/* ===== STICKY NAV ===== */
#kuwa2026-lp .nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
}
#kuwa2026-lp .nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#kuwa2026-lp .nav-logo {
  font-weight: 900;
  font-size: 15px;
  color: var(--green-deep);
  letter-spacing: 0.05em;
}
#kuwa2026-lp .nav-logo small {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 10px;
  color: var(--green-light);
  display: block;
  letter-spacing: 0.12em;
}
#kuwa2026-lp .nav-btn {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 18px;
  border-radius: var(--r-xl);
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
#kuwa2026-lp .nav-btn:hover { background: var(--green-dark); }
#kuwa2026-lp .icon-arrow { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== HERO ===== */
#kuwa2026-lp .hero {
  background: var(--white);
  padding-top: 100px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
#kuwa2026-lp .hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── テキストエリア（モバイル: 上・白背景・波型下端） ── */
#kuwa2026-lp .hero-text {
  position: relative;
  background: var(--white);
  padding: 0;
  text-align: center;
  z-index: 2;
  overflow-x: clip; /* ::after の width:150% が右にはみ出すのを防ぐ */
}
#kuwa2026-lp .hero-text::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -25%;
  width: 150%;
  height: 60px;
  background: var(--white);
  border-radius: 0 0 50% 50%;
  z-index: 2;
}

/* ロゴ画像 */
#kuwa2026-lp .hero-logo {
  display: block;
  width: 180px;
  margin: 0 auto 10px;
}

/* 機能性表示食品テキスト（バッジなし） */
#kuwa2026-lp .hero-kinousei {
  display: block;
  color: #5cb848;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

/* メインコピー */
#kuwa2026-lp .hero-main-copy {
  font-size: clamp(34px, 9vw, 52px);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
#kuwa2026-lp .hero-main-copy .accent { color: var(--green); }

/* サブコピー */
#kuwa2026-lp .hero-sub-copy {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 0;
}

/* ── 写真エリア ── */
#kuwa2026-lp .hero-photo {
  position: relative;
  flex: 1;
  min-height: 80vw;
  z-index: 1;
  overflow: visible;
}
#kuwa2026-lp .hero-photo-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
#kuwa2026-lp .hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── メインビジュアル左上のバッジ ── */
#kuwa2026-lp .hero-badges {
  position: absolute;
  top: 35px;
  left: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#kuwa2026-lp .hero-badges img {
  width: 85px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

/* ── 3つのケア正円 ── */
#kuwa2026-lp .hero-care-circles {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
#kuwa2026-lp .care-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
#kuwa2026-lp .care-circle {
  width: 90px;
  height: 90px;
  background: #5cb848;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(92,184,72,0.35), 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
#kuwa2026-lp .care-circle img.icon-care { display: block; width: 36px; height: 36px; }
#kuwa2026-lp .care-circle-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.04em;
  text-align: center;
}
#kuwa2026-lp .care-circle-en {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  color: var(--green-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: -6px;
  text-align: center;
}

/* ── モバイル: CTAエリア（写真の下） ── */
#kuwa2026-lp .hero-cta-sp {
  background: var(--white);
  padding: 28px 20px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#kuwa2026-lp .hero-cta-pc { display: none; }

/* ── デスクトップ: 横並び ── */
@media (min-width: 640px) {
  #kuwa2026-lp .hero {
    padding: 80px 20px 20px;
  }
  #kuwa2026-lp .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }
  #kuwa2026-lp .hero-text {
    width: 30%;
    min-width: 210px;
    flex-shrink: 0;
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #kuwa2026-lp .hero-text::after { display: none; }
  #kuwa2026-lp .hero-logo { margin-left: 0; }
  #kuwa2026-lp .hero-kinousei { text-align: left; }
  #kuwa2026-lp .hero-care-circles { justify-content: flex-start; gap: 10px; }
  #kuwa2026-lp .care-circle { width: 90px; height: 90px; }
  #kuwa2026-lp .care-circle-label { font-size: 16px; }
  #kuwa2026-lp .hero-photo {
    flex: 1;
    min-height: 0;
    overflow: visible;
    margin-right: -20px;
  }
  #kuwa2026-lp .hero-photo-inner {
    border-radius: 80px 0 0 80px;
  }
  #kuwa2026-lp .hero-badges {
    top: 20px;
    left: 20px;
    flex-direction: row;
    gap: 10px;
  }
  #kuwa2026-lp .hero-badges img {
    width: 120px;
  }
  #kuwa2026-lp .hero-care-bar {
    bottom: 28px;
    left: 10%;
    right: 20px;
  }
  #kuwa2026-lp .hero-cta-sp { display: none; }
  #kuwa2026-lp .hero-cta-pc {
    display: block;
    margin-top: 36px;
  }
}

/* ===== SECTION: 商品紹介 ===== */
#kuwa2026-lp .product-sec {
  background: #E1F3DE;
  padding: 80px 0 72px;
}
#kuwa2026-lp .product-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#kuwa2026-lp .product-text-col {
  order: 1;
}
#kuwa2026-lp .product-img-col {
  order: 2;
}
#kuwa2026-lp .product-info {
  order: 3;
}
#kuwa2026-lp .product-sec-ttl {
  font-size: clamp(22px, 5vw, 40px);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.35;
  margin-bottom: 20px;
}
#kuwa2026-lp .product-sec-ttl .ttl-sub {
  font-size: 0.6em;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
#kuwa2026-lp .ref-mark { font-size: 0.7em; vertical-align: super; }
#kuwa2026-lp .product-info {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
#kuwa2026-lp .product-img-col {
  width: 100%;
}
#kuwa2026-lp .product-img-wrap {
  width: 100%;
}
#kuwa2026-lp .product-img-main {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
#kuwa2026-lp .product-img-main img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
@media (min-width: 640px) {
  #kuwa2026-lp .product-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "img text"
      "img info";
    column-gap: 56px;
    row-gap: 28px;
  }
  #kuwa2026-lp .product-text-col { grid-area: text; order: unset; }
  #kuwa2026-lp .product-img-col { grid-area: img;  order: unset; align-self: start; }
  #kuwa2026-lp .product-info { grid-area: info; order: unset; }
}
#kuwa2026-lp .product-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--green-deep);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
#kuwa2026-lp .product-name-en {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--green-light);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
#kuwa2026-lp .product-spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 24px;
  font-size: 13px;
  color: var(--green-deep);
  margin-top: 10px;
  text-align: left;
}
#kuwa2026-lp .product-spec dt {
  font-weight: 700;
  white-space: nowrap;
}
#kuwa2026-lp .product-spec dd {
  margin: 0;
}
#kuwa2026-lp .product-spec dd span {
  font-size: 11px;
  color: #888;
  margin-left: 4px;
}
#kuwa2026-lp .product-note {
  font-size: 10px;
  color: #999;
  margin-top: 6px;
}
#kuwa2026-lp .pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-xl);
  background: none;
  color: #5cb848;
  margin-bottom: 8px;
}
#kuwa2026-lp .product-name-line {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
#kuwa2026-lp .kinousei-tag {
  font-size: 0.42em;
  color: #5cb848;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#kuwa2026-lp .product-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
#kuwa2026-lp .product-name-row .pill {
  margin-bottom: 0;
  font-size: 10px;
  padding: 3px 10px;
}

/* ── product-cta-card ── */
#kuwa2026-lp .product-cta-card {
  margin-top: 48px;
}
#kuwa2026-lp .product-cta-btns {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-areas:
    ". headline"
    "store  sample";
  gap: 8px 16px;
}
#kuwa2026-lp .product-cta-headline {
  grid-area: headline;
  font-size: clamp(13px, 2.8vw, 16px);
  font-weight: 900;
  color: var(--green-deep);
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  align-self: end;
}
#kuwa2026-lp .product-cta-headline .cta-emphasis {
  color: #e8740c;
  font-size: 1.35em;
  font-weight: 900;
  letter-spacing: 0.02em;
}
#kuwa2026-lp .product-cta-store-wrap {
  grid-area: store;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#kuwa2026-lp .btn-store-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 44px;
  border-radius: var(--r-xl);
  width: 100%;
  transition: background 0.2s, transform 0.2s;
}
#kuwa2026-lp .btn-store-cta .icon-arrow {
  position: absolute;
  right: 18px;
  width: 18px;
  height: 18px;
}
#kuwa2026-lp .btn-store-cta:hover {
  background: var(--green-mist);
  transform: translateY(-2px);
}
#kuwa2026-lp .product-cta-store-note {
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.7;
  padding: 0 6px;
}
#kuwa2026-lp .btn-sample-cta {
  grid-area: sample;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #5cb848;
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  padding: 20px 48px;
  border-radius: var(--r-xl);
  width: 100%;
  align-self: start;
  box-shadow: 0 6px 20px rgba(92,184,72,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
#kuwa2026-lp .btn-sample-cta .icon-arrow {
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
}
#kuwa2026-lp .btn-sample-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(92,184,72,0.45);
}

/* hero-cta-sp ボタンの矢印 */
#kuwa2026-lp .hero-cta-sp .btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 48px;
}
#kuwa2026-lp .hero-cta-sp .btn-main svg {
  position: absolute;
  right: 20px;
}

/* hero-cta-pc を btn-sample-cta に合わせる */
#kuwa2026-lp .hero-cta-pc .btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 900;
  font-size: 18px;
  padding: 20px 52px 20px 48px;
  box-shadow: 0 6px 20px rgba(92,184,72,0.35);
}
#kuwa2026-lp .hero-cta-pc .btn-main svg {
  position: absolute;
  right: 20px;
}
#kuwa2026-lp .hero-cta-pc .btn-main:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 28px rgba(92,184,72,0.45);
}
@media (max-width: 639px) {
  #kuwa2026-lp .product-cta-btns {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "sample"
      "store";
  }
  #kuwa2026-lp .product-sec-ttl { font-size: 24px; }
  #kuwa2026-lp .product-sec-ttl .ttl-sub { font-size: 0.7em; }
  #kuwa2026-lp .btn-store-inner { display: block; text-align: center; line-height: 1.6; }
}

/* ===== SECTION: CTA ===== */
#kuwa2026-lp .cta-sec {
  background: var(--green-mist);
  padding: 52px 20px;
  text-align: center;
}
#kuwa2026-lp .cta-sec .cta-ttl {
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 6px;
}
#kuwa2026-lp .cta-sec .cta-note {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 12px;
}

/* ── CTA 先着プレゼントボックス ── */
#kuwa2026-lp .cta-gift-box {
  position: relative;
  background: linear-gradient(135deg, #fffbe6 0%, #fff8d6 100%);
  border: 2.5px solid #f0c040;
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  margin: 28px auto 28px;
  max-width: 480px;
  box-shadow: 0 6px 28px rgba(240, 192, 64, 0.22), 0 2px 8px rgba(0,0,0,0.06);
}
#kuwa2026-lp .cta-gift-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f0c040, #e8a820);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(240, 192, 64, 0.45);
}
#kuwa2026-lp .cta-gift-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
#kuwa2026-lp .cta-gift-icon {
  font-size: 42px;
  line-height: 1;
  flex-shrink: 0;
}
#kuwa2026-lp .cta-gift-text {
  text-align: left;
}
#kuwa2026-lp .cta-gift-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
#kuwa2026-lp .cta-gift-qty {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
#kuwa2026-lp .cta-gift-qty strong {
  color: #c8860a;
  font-size: 30px;
  font-weight: 900;
}

/* ===== SECTION: 取り扱い店舗 ===== */
#kuwa2026-lp .store-sec {
  background: var(--white);
  padding: 56px 0;
}
#kuwa2026-lp .store-card {
  background: none;
  border-radius: var(--r-lg);
  padding: 0;
  text-align: center;
  margin-top: 24px;
}
#kuwa2026-lp .store-notice {
  font-size: 13px;
  color: var(--text-mid);
  background: var(--white);
  border-radius: var(--r-md);
  padding: 0;
  margin-bottom: 20px;
  border-left: none;
  text-align: left;
}

/* ===== SECTION: アレンジレシピ (Editorial) ===== */
#kuwa2026-lp .recipe-sec {
  background: var(--white);
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

/* セクションヘッダー */
#kuwa2026-lp .recipe-hdr {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* アイテムリスト */
#kuwa2026-lp .re-list {
  padding-bottom: 80px;
}

/* 各行 */
#kuwa2026-lp .re-row {
  padding: 20px 20px;
}

#kuwa2026-lp .re-row-in {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 72px;
}

/* 画像右：逆順 */
#kuwa2026-lp .re-img-right .re-row-in {
  flex-direction: row-reverse;
}

/* 画像カラム */
#kuwa2026-lp .re-img-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 円形 */
#kuwa2026-lp .re-circle {
  width: clamp(220px, 40vw, 440px);
  height: clamp(220px, 40vw, 440px);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
#kuwa2026-lp .re-circle:hover {
  transform: scale(1.02);
}

#kuwa2026-lp .re-circle-in {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

#kuwa2026-lp .re-circle-in img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキストカラム */
#kuwa2026-lp .re-text-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
#kuwa2026-lp .re-howto { order: 1; }
#kuwa2026-lp .re-num   { order: 2; }
#kuwa2026-lp .re-divider { order: 3; }
#kuwa2026-lp .re-name  { order: 4; }
#kuwa2026-lp .re-for   { order: 5; }
#kuwa2026-lp .re-combo { order: 6; }
#kuwa2026-lp .re-desc  { order: 7; }

/* How to */
#kuwa2026-lp .re-howto {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 2px;
}

/* 番号 */
#kuwa2026-lp .re-num {
  font-family: var(--font-en);
  font-size: clamp(52px, 7.9vw, 78px);
  font-weight: 700;
  color: #5cb848;
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

/* 区切り線 */
#kuwa2026-lp .re-divider {
  border: none;
}

/* レシピ名 */
#kuwa2026-lp .re-name {
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

/* こんな方に */
#kuwa2026-lp .re-for {
  display: inline-block;
  background: var(--green-mist);
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 4px 14px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* イラスト＋商品 横並び */
#kuwa2026-lp .re-combo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
#kuwa2026-lp .re-combo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
#kuwa2026-lp .re-combo-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

/* 説明文 */
#kuwa2026-lp .re-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
}

/* モバイル: 縦積み */
@media (max-width: 639px) {
  #kuwa2026-lp .recipe-hdr { padding-top: 40px; padding-bottom: 32px; }
  #kuwa2026-lp .re-row { padding: 40px 20px; }
  #kuwa2026-lp .re-row-in,
  #kuwa2026-lp .re-img-right .re-row-in {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  #kuwa2026-lp .re-for { display: block; width: 100%; box-sizing: border-box; }
  #kuwa2026-lp .re-circle {
    width: min(280px, 78vw);
    height: min(280px, 78vw);
  }
  #kuwa2026-lp .re-num { font-size: 52px; }
  #kuwa2026-lp .re-combo { justify-content: center; }
}

/* ===== SECTION: 3つの機能 ===== */
#kuwa2026-lp .features-sec .tag-label {
  color: var(--white);
}
#kuwa2026-lp .features-sec {
  background: #eef7e9;
  padding: 64px 0;
}
#kuwa2026-lp .feature-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
#kuwa2026-lp .feature-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
#kuwa2026-lp .feature-card:hover { border-color: var(--green-pale); }
#kuwa2026-lp .feature-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
#kuwa2026-lp .feature-num {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
#kuwa2026-lp .feature-num-label { font-size: 8px; font-family: var(--font-en); letter-spacing: 0.08em; line-height: 1; }
#kuwa2026-lp .feature-num-val { font-family: var(--font-en); font-size: 18px; font-weight: 700; line-height: 1; }
#kuwa2026-lp .feature-ttl {
  font-size: 18px;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.4;
}
#kuwa2026-lp .feature-ingredient-tag {
  display: inline-block;
  background: var(--green-mist);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--r-xl);
  margin-bottom: 10px;
}
#kuwa2026-lp .feature-desc { font-size: 13px; color: var(--text-mid); line-height: 1.85; }
#kuwa2026-lp .feature-stat-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
#kuwa2026-lp .feature-stat {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 12px;
  text-align: center;
}
#kuwa2026-lp .feature-stat-val {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
#kuwa2026-lp .feature-stat-label { font-size: 10px; color: var(--text-mid); margin-top: 4px; line-height: 1.5; }

/* 特徴画像スタック */
#kuwa2026-lp .features-img-stack {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
#kuwa2026-lp .features-img-stack img {
  width: 100%;
  height: auto;
  display: block;
}

/* 追加特徴グリッド */
#kuwa2026-lp .extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
#kuwa2026-lp .extra-card {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 20px 16px;
  text-align: center;
}
#kuwa2026-lp .extra-icon { font-size: 30px; margin-bottom: 8px; }
#kuwa2026-lp .extra-title { font-size: 14px; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
#kuwa2026-lp .extra-desc { font-size: 11px; color: var(--text-mid); line-height: 1.6; }

/* ===== SECTION: こんな方に ===== */
#kuwa2026-lp .forwho-sec {
  background: var(--white);
  padding: 72px 0 0;
  text-align: center;
}
#kuwa2026-lp .forwho-logo {
  margin: 0 auto;
}
#kuwa2026-lp .forwho-logo img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* --- Slider outer --- */
#kuwa2026-lp .forwho-slider-outer {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 20px 52px;
}
#kuwa2026-lp .forwho-slider-deco {
  font-family: var(--font-en);
  font-size: clamp(64px, 16vw, 128px);
  font-weight: 700;
  color: rgba(92, 184, 72, 0.07);
  letter-spacing: 0.12em;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* --- Slider row --- */
#kuwa2026-lp .forwho-slider {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
#kuwa2026-lp .forwho-track-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  touch-action: pan-y;
}
#kuwa2026-lp .forwho-track {
  display: flex;
  gap: 40px;
  padding: 12px 0 20px;
}

/* --- Slides --- */
#kuwa2026-lp .forwho-slide {
  flex-shrink: 0;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
#kuwa2026-lp .forwho-slide.is-active { opacity: 1; }
#kuwa2026-lp .forwho-slide-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
#kuwa2026-lp .forwho-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
#kuwa2026-lp .forwho-slide-case {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 4px;
}
#kuwa2026-lp .forwho-slide-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  line-height: 1.7;
  transition: color 0.4s, font-size 0.4s;
}
#kuwa2026-lp .forwho-slide.is-active .forwho-slide-text {
  color: var(--green-deep);
}

/* --- Arrows --- */
#kuwa2026-lp .forwho-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  margin: 0 16px;
}
#kuwa2026-lp .forwho-arrow img { display: block; width: 20px; height: 20px; }
#kuwa2026-lp .forwho-arrow:hover {
  background: var(--green-dark);
  transform: scale(1.08);
}

/* --- Dots --- */
#kuwa2026-lp .forwho-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
#kuwa2026-lp .forwho-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
#kuwa2026-lp .forwho-dot.is-active {
  background: transparent;
  border-color: var(--green);
  width: 10px;
  height: 10px;
}

/* ===== SECTION: 商品詳細 ===== */
#kuwa2026-lp .detail-sec {
  background: var(--white);
  padding: 64px 0;
}
#kuwa2026-lp .detail-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
#kuwa2026-lp .detail-img-box {
  width: 190px; height: 225px;
  background: var(--green-mist);
  border-radius: var(--r-md);
  border: 2px dashed var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--green-light); text-align: center;
  overflow: hidden;
}
#kuwa2026-lp .detail-img-box img { width: 100%; height: 100%; object-fit: contain; }
#kuwa2026-lp .detail-info { width: 100%; }
#kuwa2026-lp .detail-pname { font-size: 24px; font-weight: 900; color: var(--green-deep); }
#kuwa2026-lp .detail-pen { font-family: var(--font-en); font-size: 11px; color: var(--green-light); letter-spacing: 0.2em; margin-bottom: 16px; }
#kuwa2026-lp .detail-table { width: 100%; margin: 0 auto 20px; max-width: 320px; }
#kuwa2026-lp .detail-table tr { border-bottom: 1px dashed var(--beige); }
#kuwa2026-lp .detail-table tr:last-child { border-bottom: none; }
#kuwa2026-lp .detail-table th { font-size: 12px; font-weight: 500; color: var(--text-mid); padding: 10px 8px; text-align: left; }
#kuwa2026-lp .detail-table td { font-size: 15px; font-weight: 700; color: var(--text); padding: 10px 8px; text-align: right; }
#kuwa2026-lp .detail-btns { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }
#kuwa2026-lp .detail-btns .btn-main, #kuwa2026-lp .detail-btns .btn-sub { display: block; text-align: center; }
#kuwa2026-lp .salon-note { font-size: 12px; color: var(--text-mid); background: var(--white); border-radius: var(--r-sm); padding: 10px 16px; }

/* ===== SECTION: VEGAN ===== */
#kuwa2026-lp .vegan-sec {
  position: relative;
  background-color: #1e3620;
  padding: 60px 0;
}
#kuwa2026-lp .vegan-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/dcms_media/image/vegan-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.65;
  pointer-events: none;
}
#kuwa2026-lp .vegan-inner { position: relative; max-width: 760px; margin: 0 auto; padding: 0 20px; text-align: center; }
#kuwa2026-lp .vegan-tag { display: inline-block; font-family: var(--font-en); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); background: rgba(92,184,72,0.15); padding: 4px 14px; border-radius: 50px; margin-bottom: 12px; }
#kuwa2026-lp .vegan-ttl { font-size: clamp(18px, 4.5vw, 24px); font-weight: 900; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
#kuwa2026-lp .vegan-desc { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 24px; line-height: 1.8; }
#kuwa2026-lp .vegan-img-box {
  width: min(192px, 48%);
  margin: 0 auto 24px;
}
#kuwa2026-lp .vegan-img-box img { width: 100%; height: auto; display: block; }
#kuwa2026-lp .btn-vegan {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: var(--r-xl);
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
#kuwa2026-lp .btn-vegan:hover { background: rgba(255,255,255,0.2); }

/* ===== SECTION: Instagram ===== */
#kuwa2026-lp .insta-sec {
  background: var(--cream);
  padding: 56px 0;
  text-align: center;
}
#kuwa2026-lp .insta-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
#kuwa2026-lp .insta-icon img { display: block; width: 30px; height: 30px; }
#kuwa2026-lp .insta-handle {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
#kuwa2026-lp .btn-insta {
  display: inline-block;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: var(--r-xl);
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
}
#kuwa2026-lp .btn-insta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ===== LEGAL ===== */
#kuwa2026-lp .legal {
  background: var(--white);
  padding: 20px;
  border-top: 1px solid var(--beige);
}
#kuwa2026-lp .legal p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 10px;
  color: var(--text-light);
  line-height: 2;
}

/* ===== FOOTER ===== */
#kuwa2026-lp footer {
  background: #0b1807;
  padding: 36px 20px;
  text-align: center;
}
#kuwa2026-lp .footer-logo { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
#kuwa2026-lp .footer-company { font-family: var(--font-en); font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; margin-bottom: 20px; }
#kuwa2026-lp .footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
#kuwa2026-lp .footer-links a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
#kuwa2026-lp .footer-links a:hover { color: rgba(255,255,255,0.85); }
#kuwa2026-lp .footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }

/* ===== RESPONSIVE ===== */
@media (min-width: 580px) {
  #kuwa2026-lp .hero-content { padding: 48px 32px 64px; }
  #kuwa2026-lp .product-card { flex-direction: row; text-align: left; }
  #kuwa2026-lp .detail-card { flex-direction: row; text-align: left; }
  #kuwa2026-lp .detail-btns { max-width: none; }
  #kuwa2026-lp .extras-grid { grid-template-columns: repeat(4, 1fr); }
  #kuwa2026-lp .recipe-cards { display: grid; grid-template-columns: 1fr 1fr; }
  #kuwa2026-lp .recipe-cards > *:last-child { grid-column: 1 / -1; }
}
@media (min-width: 768px) {
  #kuwa2026-lp .hero-content { max-width: 50%; }
  #kuwa2026-lp .feature-cards { display: grid; grid-template-columns: 1fr; }
}
