/* ================================
 LP Renewal 2026 — Overrides & New Sections
================================ */

/* ── Variables ── */
:root {
  --r-red:    #C8281E;
  --r-red-h:  #E03028;
  --r-dark:   #1a0e08;
  --r-dark2:  #231208;
  --r-dark3:  #2e1a0e;
  --r-light:  #f4f4f4;
  --r-light2: #ebebeb;
  --r-light3: #e0e0e0;
  --r-ink:    #1c1c1c;
  --r-ink2:   #4a4a4a;
  --r-ink3:   #888888;
  --r-gold:   #b8963e;
}

/* ── Body bg override + global font ── */
#lp {
  background-color: var(--r-dark);
  font-family: 'Noto Sans JP', 'Yu Gothic', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Headings use Noto Serif JP to match current LP tone */
#lp h1, #lp h2, #lp h3 {
  font-family: 'Noto Serif JP', 'Yu Mincho', YuMincho, serif;
}

/* ── Smooth anchor scroll ── */
html {
  scroll-behavior: smooth;
}

/* ── box-sizing: border-box for section/nav/article (not in common.css reset) ── */
#lp section,
#lp nav,
#lp article,
#lp header,
#lp footer {
  box-sizing: border-box;
}

/* ── p margin reset for renewal sections ── */
.lp-page-cta p,
.lp-snav p,
.lp-ucases p,
.lp-value p,
.lp-feat-section p,
.lp-spec p,
.lp-voices p,
.lp-stats p,
.lp-faq p,
.lp-links p,
.lp-contact p {
  margin-bottom: 0;
}

/* ── Shared: Section Labels ── */
.lp-section-label {
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--r-red);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.lp-section-label::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--r-red);
}
.lp-section-label--dark { color: var(--r-red); }
.lp-section-label--light { color: var(--r-red); }

.lp-section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
}
/* --dark = 明背景向け濃色テキスト / --light = 暗背景向け白テキスト */
.lp-section-title--dark  { color: #1a0e08; }
.lp-section-title--light { color: #fff; text-align: left; }

/* 暗背景セクション：タイトルのみ白に上書き（ラベルは赤で統一） */
.lp-ucases .lp-section-title--dark { color: #fff; }

/* 明背景セクション：タイトルのみ濃色に上書き（ラベルは赤で統一） */
.lp-faq .lp-section-title--light,
.lp-links .lp-section-title--light { color: #1a0e08; }

/* ── Shared: Inner wrapper ── */
.lp-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ── Shared: Buttons ── */
.lp-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'Noto Sans JP', sans-serif;
  transition: background .2s, transform .15s, border-color .2s;
}
.lp-btn:hover { opacity: 1; } /* override common.css a:hover */

.lp-btn--primary {
  background: var(--r-red);
  color: #fff;
  padding: 20px 52px;
}
.lp-btn--primary:hover {
  background: var(--r-red-h);
  transform: translateY(-2px);
}

.lp-btn--outline {
  background: transparent;
  color: #fff;
  padding: 20px 48px;
  border: 2px solid rgba(255,255,255,.5);
}
.lp-btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

/* ================================
 Hero — Lead copy
================================ */
.lp-hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin: 0 auto !important;
  line-height: 1.9;
  font-weight: 400;
  text-align: center;
  font-feature-settings: 'palt';
}
.lp-hero__desc-break {
  display: none;
}

/* ================================
 CTA Section (below hero, above SNAV)
================================ */
.lp-page-cta {
  background: var(--r-dark2);
  padding: 48px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.lp-page-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

.lp-page-cta__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.lp-page-cta__note {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
  line-height: 1.7;
}

.lp-page-cta__break {
  display: none;
}

/* ================================
 Sticky Nav — New (lp-snav)
================================ */
#lp .lp-nav { display: none !important; } /* hide old gold nav */

.lp-snav-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
}
.lp-snav {
  background: #afa85e;
  border-bottom: none;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  padding: 0;
}
.lp-snav::-webkit-scrollbar { display: none; }

.lp-snav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  margin: 0 auto;
}
.lp-snav__inner a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  letter-spacing: .06em;
  white-space: nowrap;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  transition: opacity .2s;
}

@media (max-width: 767px) {
  .lp-snav__inner {
    justify-content: flex-start;
  }
}

/* hover: white underline expands from center (current LP style) */
.lp-snav__inner a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: #fff;
  transition: left .25s ease, right .25s ease;
}
.lp-snav__inner a:hover { opacity: .85; }
.lp-snav__inner a:hover::after { left: 8px; right: 8px; }

.lp-snav__sep {
  display: none;
}

/* SP: 横スクロール示唆アニメーション（ヒーローのSCROLLを横向きに）
   ナビの下端にぶら下げる形で配置。.lp-snav 自体は overflow-x:auto の影響で
   overflow-y も暗黙的に auto になり子要素がクリップされるため、
   position:sticky は親の .lp-snav-wrap 側に持たせ、.lp-snav__scroll は
   その wrap の子として配置することでクリップされずスティッキー時も追従する */
.lp-snav__scroll {
  display: none;
  position: absolute;
  top: 100%;
  right: 12px;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 4px;
  background: rgba(0,0,0,.35);
  border-radius: 0 0 6px 6px;
  z-index: 3;
  pointer-events: none;
}
.lp-snav__scroll-line {
  width: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, #fff);
  transform-origin: left center;
  animation: rSnavScroll 1.8s ease-in-out infinite;
}
@keyframes rSnavScroll {
  0%, 100% { transform: scaleX(0); }
  50%       { transform: scaleX(1); }
}
.lp-snav__scroll-lbl {
  font-size: 9px;
  letter-spacing: .15em;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 450px) {
  .lp-snav__scroll {
    display: flex;
  }
}


/* ================================
 USE CASES Scroll
================================ */
.lp-ucases {
  background: var(--r-dark);
  padding: 64px 0 64px 80px;
  border-bottom: 1px solid #222;
  overflow: hidden;
  position: relative;
}
/* シズル写真レイヤー */
.lp-ucases::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/recipe/bg-image.jpg') center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}
/* 暗色オーバーレイ（写真の視認性と可読性を両立） */
.lp-ucases::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,5,2,.65);
  z-index: 0;
  pointer-events: none;
}
.lp-ucases__head,
.lp-ucases__track {
  position: relative;
  z-index: 1;
}

.lp-ucases__head {
  max-width: 1340px;
  padding-right: 80px;
  margin-bottom: 36px;
}

.lp-ucases__sub {
  font-size: 14px;
  color: #ccc;
  line-height: 1.95;
  max-width: 560px;
  font-weight: 400;
  margin-top: 12px;
}

.lp-ucases__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: rInfiniteScroll 28s linear infinite;
}
.lp-ucases__track:hover { animation-play-state: paused; }

@keyframes rInfiniteScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lp-ucase-card {
  flex: 0 0 240px;
  width: 240px;
  background: var(--r-dark3);
  border: 1px solid #222;
  overflow: hidden;
  transition: border-color .3s;
}
.lp-ucase-card:hover { border-color: #555; }

.lp-ucase-card__img {
  height: 160px;
  background: #252525;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #222;
}
.lp-ucase-card__img img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.lp-ucase-card__body { padding: 18px 20px; }

.lp-ucase-card__type {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ddd;
}
.lp-ucase-card__desc {
  font-size: 11px;
  color: #8a8a8a;
  line-height: 1.7;
  font-weight: 400;
}

/* ================================
 VALUE Section
================================ */
.lp-value {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  padding: 88px 0 64px;
  margin: 48px auto 32px;
}
.lp-value::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/recipe/bg-image.jpg') center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}
.lp-value::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,5,2,.72);
  z-index: 0;
  pointer-events: none;
}
.lp-value__sparks {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.lp-value__sparks .lp-value__sparks-01 {
  position: absolute;
  left: -4%;
  top: -6%;
  width: clamp(160px, 22vw, 280px) !important;
  height: auto !important;
  opacity: 0.8;
}
.lp-value__sparks .lp-value__sparks-02 {
  position: absolute;
  right: 23%;
  top: -2%;
  width: clamp(60px, 23vw, 300px) !important;
  height: auto !important;
  opacity: 0.8;
  transform: rotateX(180deg);
}
@media (max-width: 767px) {
  .lp-value__sparks .lp-value__sparks-01 {
    left: -25%;
    top: -3%;
    width: 280px !important;
  }
  .lp-value__sparks .lp-value__sparks-02 {
    right: -24%;
    top: -3%;
    width: 260px !important;
  }
}
.lp-value__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 1;
}
.lp-value__sub {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.95;
  max-width: 100%;
  font-weight: 400;
  margin-top: 12px;
}

.lp-value__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 24px;
  margin-top: 64px;
}

.lp-value-card {
  background: rgba(20,10,5,.75);
  border: 1px solid rgba(176,168,94,.3);
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.lp-value-card__head {
  background: #161616;
  padding: 32px 24px;
}
.lp-value-card__segment {
  display: inline-block;
  background: var(--r-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  margin-bottom: 18px;
}
.lp-value-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 12px;
  font-feature-settings: 'palt';
}
.lp-value-card__persona { font-size: 12px; color: rgba(255,255,255,.5); }

.lp-value-card__img {
  height: 160px;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  position: relative;
}
.lp-value-card__img img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.lp-value-card__body {
  padding: 28px;
  flex: 1;
}
.lp-value-card__body-head {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-value-card__body-head::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  background: var(--r-red);
  flex-shrink: 0;
}

.lp-value-card__list { list-style: none; }
.lp-value-card__list li {
  font-size: 13px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.lp-value-card__list li:last-child { border-bottom: none; }
.lp-value-card__list li::before {
  content: '✓';
  color: var(--r-red);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}

/* ================================
 4 Features — Row Layout
================================ */
.lp-feat-section {
  background: linear-gradient(104deg, #591818 2.18%, #B3332E 52.34%, #8F2321 83.69%);
  padding: 48px 0 64px;
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
}

/* sp: ミルクスプラッシュ・雫 — PC は非表示 */
.lp-feat-liquid,
.lp-feat-drops { display: none; }

@media (max-width: 767px) {
  .lp-feat-liquid {
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .lp-feat-liquid img {
    width: 100% !important;
    height: auto;
    opacity: .75;
    transform: scale(1.3);
    transform-origin: center top;
  }
  .lp-middle-header {
    position: relative;
    overflow: hidden;
  }
  .lp-middle-header__inner {
    position: relative;
    z-index: 1;
  }
  .lp-feat-drops {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: visible;
  }
  .lp-feat-drop {
    position: absolute;
    height: auto !important;
    animation: dropBounce 3s ease-in-out infinite;
  }
  .lp-feat-drop--l  { width: 52px !important; top: 3%;  left: -12px; animation-delay: 0s; }
  .lp-feat-drop--m1 { width: 34px !important; top: 6%;  right: -8px; animation-delay: 0.6s; }
  .lp-feat-drop--l2 { width: 46px !important; bottom: 8%; left: -10px; animation-delay: 1.2s; }
  .lp-feat-drop--m2 { width: 38px !important; bottom: 12%; right: -6px; animation-delay: 0.9s; }
}

.lp-feat-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Product */
.lp-product__inner {
  max-width: 1120px;
  margin: 0 auto 40px;
  border-radius: 0;
  grid-template-columns: 1fr 1fr;
}
.lp-product__clean-badge {
  width: 100%;
}
.lp-product__main-group {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 16px;
}
.lp-product__main-group .lp-product__photo {
  flex-shrink: 0;
  margin-top: 0;
}
.lp-product__detail-group {
  flex: 1;
  min-width: 0;
}

/* 添加物不使用 — 帯バッジ */
.lp-product__clean-badge {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  background: linear-gradient(90deg, rgba(176,168,94,.18) 0%, rgba(176,168,94,.06) 100%);
  border: 1.5px solid #B0A85E;
  border-left: 5px solid #B0A85E;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.lp-product__clean-badge__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  border-right: 1px solid #B0A85E;
  padding-right: 16px;
}
.lp-product__clean-badge__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #B0A85E;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  background: rgba(176,168,94,.15);
  padding: 3px 8px;
  border: 1px solid rgba(176,168,94,.5);
}
.lp-product__clean-badge__text {
  font-size: 17px;
  font-weight: 700;
  color: #1a0e08;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: .05em;
}
.lp-product__clean-badge__sub {
  font-size: 15px;
  font-weight: 700;
  color: #1a0e08;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
}

/* 商品特徴: 文字サイズアップ */
.lp-product__heading { font-size: 20px; }
.lp-product__features li { font-size: 16px; line-height: 1.7; }
.lp-product__inspection { font-size: 15px; font-weight: 700; }
.lp-product__table { font-size: 15px; }
.lp-product__table th,
.lp-product__table td { padding: 10px 12px; }
.lp-product__allergen-label,
.lp-product__allergen-value { font-size: 14px; }
@media (max-width: 767px) {
  .lp-product__inner {
    grid-template-columns: 1fr;
  }
  .lp-product__main-group {
    display: block;
  }
  .lp-product__photo {
    margin-top: 0;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .lp-product__clean-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .lp-product__clean-badge__sub {
    margin-left: 0;
  }
  .lp-product__clean-badge__group {
    flex-wrap: wrap;
    border-right: none;
    padding-right: 0;
  }
}

.lp-feat-row {
  display: flex;
  flex-direction: column;
  background: #231815;
  border: 4px solid #B0A85E;
}

/* 偶数ブロックの逆順レイアウトを解除（4ブロック均一） */
.lp-feat-row:nth-child(even) .lp-feat-cell-text { order: unset; }
.lp-feat-row:nth-child(even) .lp-feat-cell-graph {
  order: unset;
  border-left: none;
  border-right: none;
}

/* Feature 01: 加熱後水分値の比較グラフを上揃えに */
.lp-feat-row:nth-child(1) .lp-feat-cell-graph {
  justify-content: start;
}

.lp-feat-cell-text {
  background: transparent;
  padding: 24px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-feat-cell-graph {
  background: rgba(0,0,0,.15);
  border-top: 1px solid #B0A85E;
  border-left: none;
  padding: 24px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
}

/* チャート画像エリア = クリーム背景（元LP lp-4features__item-chart に準拠） */
.lp-feat-chart-wrap {
  background: #f0ede3;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
}

.lp-feat-big-num {
  position: absolute;
  top: -8px;
  right: 8px;
  font-size: 180px;
  font-weight: 500;
  color: rgba(255,255,255,.07);
  line-height: 1;
  letter-spacing: -.06em;
  pointer-events: none;
  user-select: none;
}

.lp-feat-label {
  font-size: 11px;
  letter-spacing: .2em;
  color: #afa85e;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lp-feat-label__num {
  font-size: 16px;
  letter-spacing: 0;
  font-family: 'Noto Serif JP', serif;
  margin-left: 2px;
}
.lp-feat-title {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Noto Serif JP', serif;
}
.lp-feat-title .lp-4features__spark {
  display: block !important;
  position: absolute !important;
  bottom: -50px;
  left: 35%;
  width: 5em !important;
  height: auto !important;
  max-width: none !important;
  flex: none;
  opacity: .95;
}
.lp-feat-row:nth-child(3) .lp-feat-title .lp-4features__spark {
  left: 52%;
}
.lp-feat-row:nth-child(4) .lp-feat-title .lp-4features__spark {
  left: 41%;
}
@media (max-width: 767px) {
  .lp-feat-title .lp-4features__spark {
    bottom: -40px;
    left: 40%;
  }
  .lp-feat-row:nth-child(3) .lp-feat-title .lp-4features__spark {
    left: 60%;
  }
  .lp-feat-row:nth-child(4) .lp-feat-title .lp-4features__spark {
    left: 48%;
  }
}
.lp-feat-desc {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.9;
  margin-bottom: 16px !important;
}

.lp-feat-note {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
}

.lp-feat-metric {
  border-left: 4px solid #afa85e;
  padding: 10px 20px;
  background: rgba(0,0,0,.22);
  display: inline-block;
}
.lp-feat-metric__num {
  font-size: 24px;
  font-weight: 900;
  color: #f5e19a;
  margin-bottom: 4px;
  font-family: 'Noto Serif JP', serif;
}
.lp-feat-metric__label {
  font-size: 12px;
  color: rgba(255,255,255,.8);
  font-weight: 700;
}

.lp-feat-graph-title {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}
.lp-feat-graph-title small { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 400; }
.lp-feat-graph-note {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  text-align: center;
}

.lp-feat-chart-img {
  width: 100% !important;
  height: auto !important;
  max-height: 220px;
  object-fit: contain;
  display: block;
}

/* Feature 4 — step flow */
/* Feature 04: 誰でも簡単 row を 50/50 に */
.lp-feat-row:nth-child(4) {
  grid-template-columns: 1fr 1fr;
}
.lp-feat-row:nth-child(4) .lp-feat-cell-graph {
  padding: 20px 24px 32px;
}

.lp-feat-step-flow {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  justify-content: center;
}
.lp-feat-step-box {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(175,168,94,.55);
  padding: 10px 14px;
  text-align: center;
  border-radius: 2px;
}
.lp-feat-step-box__num { font-size: 14px; color: #f5e19a; font-weight: 700; margin-bottom: 3px; }
.lp-feat-step-box__txt { font-size: 15px; color: rgba(255,255,255,.9); font-weight: 600; }
.lp-feat-step-arr { font-size: 18px; color: rgba(255,255,255,.6); }

@media (max-width: 767px) {
  .lp-feat-step-flow { gap: 4px; }
  .lp-feat-step-box { padding: 8px 10px; }
  .lp-feat-step-box__num { font-size: 12px; }
  .lp-feat-step-box__txt { font-size: 13px; }
  .lp-feat-step-arr { font-size: 15px; }
}

.lp-feat-process-img {
  margin-top: 16px;
  max-width: 200px;
}
.lp-feat-process-img img {
  width: 100%;
  height: auto;
}

/* Feature 04 — process1.png + process2.png (half size, side by side) */
.lp-feat-process-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
}
.lp-feat-process-pair__item {
  flex: 0 0 auto;
}
.lp-feat-process-pair__item img {
  width: auto;
  height: auto;
  max-width: 130px;
  display: block;
}

/* ================================
 Product Spec Section
================================ */
.lp-spec {
  background: #fafafa;
  padding: 80px 0;
}
.lp-spec__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 80px;
}

.lp-spec__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  overflow: hidden;
}

.lp-spec__left {
  padding: 40px;
}
.lp-spec__right { padding: 40px; }

.lp-spec__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--r-ink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-spec__heading::before {
  content: '';
  display: block;
  width: 4px;
  height: 16px;
  background: var(--r-red);
  flex-shrink: 0;
}

.lp-spec__list { list-style: none; margin-bottom: 20px; }
.lp-spec__list li {
  font-size: 13px;
  color: var(--r-ink2);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.lp-spec__list li::before {
  content: '●';
  color: var(--r-ink3);
  font-size: 8px;
  margin-top: 7px;
  flex-shrink: 0;
}

.lp-spec__check {
  background: var(--r-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  margin-top: 8px;
  display: inline-block;
}

.lp-spec__photo {
  margin-top: 24px;
  max-width: 180px;
}
.lp-spec__photo img {
  width: 100%;
  height: auto;
}

.lp-spec__table { width: 100%; border-collapse: collapse; }
.lp-spec__table tr { border-bottom: 1px solid var(--r-light3); }
.lp-spec__table tr:last-child { border-bottom: none; }
.lp-spec__table th {
  font-size: 12px;
  color: var(--r-ink3);
  padding: 10px 0;
  font-weight: 400;
  width: 40%;
  text-align: left;
}
.lp-spec__table td {
  font-size: 13px;
  color: var(--r-ink);
  padding: 10px 0;
  font-weight: 500;
}
.lp-spec__allergy {
  background: var(--r-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  display: inline-block;
}

/* ================================
 Chef Voices — Redesigned
================================ */
.lp-voices {
  background: #1a1a1a;
  padding: 112px 0;
}
.lp-voices__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 80px;
}
.lp-voices__sub {
  font-size: 14px;
  color: #888;
  line-height: 1.9;
  max-width: 100%;
  margin-top: 12px;
  font-weight: 400;
}

.lp-voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.lp-voice-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 40px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  transition: box-shadow .3s;
}
.lp-voice-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.lp-voice-card--pending { box-shadow: 0 2px 12px rgba(0,0,0,.04); }

.lp-voice-card__badge {
  display: inline-block;
  background: #1c2436;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.lp-voice-card__badge--brown { background: #5a4632; }

.lp-voice-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.lp-voice-card__tag {
  font-size: 10px;
  color: var(--r-red);
  border: 1px solid var(--r-red);
  padding: 3px 10px;
  border-radius: 2px;
}
.lp-voice-card__tag--gray { color: var(--r-ink3); border-color: var(--r-light3); }

.lp-voice-card__quote {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
  color: var(--r-ink);
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  border-left: 3px solid var(--r-red);
  padding-left: 16px;
}
.lp-voice-card__quote--placeholder { color: var(--r-ink3); }

.lp-voice-card__detail {
  font-size: 13px;
  color: var(--r-ink2);
  line-height: 1.9;
  margin-bottom: 28px !important;
}
.lp-voice-card__detail--placeholder { color: var(--r-ink3); }

.lp-voice-card__foot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--r-light3);
}
.lp-voice-card__photo {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--r-light2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--r-ink3);
  text-align: center;
  overflow: hidden;
}
.lp-voice-card__name  { font-size: 14px; font-weight: 700; color: var(--r-ink); margin-bottom: 2px; }
.lp-voice-card__shop  { font-size: 12px; color: var(--r-ink3); }
.lp-voice-card__award { font-size: 11px; color: var(--r-red); font-weight: 500; margin-top: 4px; }

/* #voices section margin */
#voices { margin: 112px 0; }

/* ================================
 lp-feature — VOICE OF CUSTOMERS 統合後の上書き
================================ */
/* シルエット画像なしのため margin-top をリセット */
.lp-feature__voice-text {
  margin-top: 0;
}
/* 01/02 はタイトル背景画像ぶんの余白 */
.lp-feature__voice:nth-child(1) .lp-feature__voice-quote,
.lp-feature__voice:nth-child(2) .lp-feature__voice-quote {
  margin-top: 100px;
}
/* タイトルエリアを lp-feature__voices と揃える */
.lp-feature__title-area {
  padding: 0 64px;
}
/* バッジを lp-feature の赤背景に合わせてゴールド系に */
.lp-feature .lp-voice-card__badge {
  background: rgba(176,168,94,.2);
  color: #B0A85E;
  border: 1px solid rgba(176,168,94,.5);
  margin-bottom: 12px;
}
.lp-feature .lp-voice-card__badge--brown {
  background: rgba(90,70,50,.3);
  color: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.2);
}
/* サブテキストを白・左揃えに（赤背景上） */
.lp-feature .lp-voices__sub {
  color: #fff;
  text-align: left;
}
/* 入稿待ちカードは少し透過 */
.lp-feature__voice--pending {
  opacity: 0.6;
}
.lp-voice-card__quote--placeholder {
  color: rgba(255,255,255,.45) !important;
  font-style: italic;
}
/* 受賞歴 */
.lp-feature__voice-award {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  margin-top: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .05em;
}

/* ================================
 Stats / Track Record
================================ */
.lp-middle-header {
  padding: 112px 0 32px;
  position: relative;
  z-index: 1;
}

.lp-stats {
  background: rgba(255, 255, 255, .5);
  padding: 40px 0;
  position: relative;
}
.lp-stats .lp-liquid--lower {
  top: auto;
  bottom: 0;
}
.lp-stats .lp-section-label--dark { color: var(--r-red); }
.lp-stats .lp-section-title--dark { color: #1a0e08; }
.lp-stats__sub { color: rgba(255,255,255,.75); margin: 16px 0 0; }
.lp-stats__inner {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 80px;
  text-align: left;
}
.lp-stats__sub {
  color: #333;
  max-width: 600px;
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #2a2a2a;
  border: 1px solid #2a2a2a;
  margin-top: 56px;
}

.lp-stat-card { background: #1c1c1c; display: flex; flex-direction: column; }

.lp-stat-card__top {
  padding: 40px 36px 32px;
  text-align: center;
  border-bottom: 2px solid #2a2a2a;
}
.lp-stat-card__num {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em;
  color: var(--r-red);
}
.lp-stat-card__unit { font-size: 24px; font-weight: 400; color: var(--r-red); }
.lp-stat-card__label { font-size: 12px; color: #888; letter-spacing: .06em; margin-top: 4px; }

.lp-stat-card__bottom { padding: 32px 36px; flex: 1; text-align: left; }
.lp-stat-card__seg-title { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.lp-stat-card__seg-desc { font-size: 12px; color: #888; line-height: 1.7; margin-bottom: 16px; }

.lp-stat-card__list { list-style: none; }
.lp-stat-card__list li {
  font-size: 12px;
  color: #aaa;
  line-height: 1.6;
  padding: 9px 0;
  border-bottom: 1px solid #252525;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.lp-stat-card__list li:last-child { border-bottom: none; }
.lp-stat-card__list li::before {
  content: '●';
  color: var(--r-red);
  font-size: 6px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ================================
 FAQ Accordion
================================ */
.lp-faq {
  background: var(--r-light);
  padding: 112px 0;
  border-top: 1px solid var(--r-light3);
}
.lp-faq__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 80px;
}

.lp-faq__list { margin-top: 64px; max-width: 820px; }

.lp-faq__item { border-bottom: 1px solid var(--r-light3); }

.lp-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 24px;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
}
.lp-faq__q:focus { outline: none; }
.lp-faq__q:focus-visible { outline: 2px solid var(--r-red); outline-offset: 2px; }
.lp-faq__q:hover { opacity: .8; }

.lp-faq__q-mark {
  width: 30px;
  height: 30px;
  background: var(--r-red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-faq__q-text {
  flex: 1;
  font-size: 17px;
  font-weight: 500;
  color: var(--r-ink);
  line-height: 1.6;
}
.lp-faq__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  color: var(--r-red);
  transition: transform .3s;
  line-height: 1;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.lp-faq__item.is-open .lp-faq__icon { transform: rotate(45deg); }

.lp-faq__a {
  font-size: 13px;
  color: var(--r-ink2);
  line-height: 1.95;
  padding: 0 0 0 54px;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.lp-faq__item.is-open .lp-faq__a {
  max-height: 300px;
  padding: 0 0 24px 54px;
}

/* ================================
 Links Section
================================ */
.lp-links {
  background: var(--r-light2);
  padding: 96px 0;
  border-top: 1px solid var(--r-light3);
}
.lp-links__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 80px;
}
.lp-links__sub {
  font-size: 13px;
  color: var(--r-ink3);
  margin-top: 12px;
  margin-bottom: 52px !important;
  font-weight: 400;
}

.lp-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-link-card {
  background: #fff;
  border: 1px solid #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: border-color .3s, box-shadow .3s;
}
.lp-link-card:hover {
  border-color: var(--r-red);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  opacity: 1;
}
.lp-link-card__source { font-size: 10px; color: var(--r-red); letter-spacing: .12em; font-weight: 700; }
.lp-link-card__title  { font-size: 14px; font-weight: 500; color: var(--r-ink); line-height: 1.5; }
.lp-link-card__desc   { font-size: 12px; color: var(--r-ink3); line-height: 1.7; font-weight: 400; }
.lp-link-card__arrow  { font-size: 11px; color: var(--r-red); margin-top: 4px; }

.lp-links__note { font-size: 11px; color: var(--r-ink3); margin-top: 24px; }

/* ================================
 Contact / Final CTA
================================ */
#lp .lp-cta { display: none !important; } /* hide old LP's .lp-cta */

.lp-contact {
  background: var(--r-dark);
  text-align: center;
  padding: 120px 0 140px;
  border-top: 1px solid #222;
  position: relative;
  z-index: 1;
}
.lp-contact__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-contact__divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--r-red));
  margin-bottom: 40px;
}
.lp-contact__label {
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--r-red);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.lp-contact__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
  letter-spacing: -.01em;
  color: #fff;
}
.lp-contact__card {
  display: inline-block;
  border: 1px solid #454545;
  padding: 40px 80px;
  text-align: center;
  min-width: min(440px, 100%);
}
.lp-contact__company { font-size: 16px; color: #cacaca; letter-spacing: .1em; margin-bottom: 4px; }
.lp-contact__dept    { font-size: 16px; color: #cacaca; letter-spacing: .06em; margin-bottom: 36px; }

.lp-contact__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: opacity .2s;
  color: #fff;
}
.lp-contact__tel:hover { opacity: .8; }
.lp-contact__tel-icon {
  background: var(--r-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 12px;
}
.lp-contact__tel-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: .04em;
}
.lp-contact__hours { font-size: 14px; color: #cacaca; letter-spacing: .08em; }
.lp-contact__note-pre {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  padding: 16px 20px;
  margin-bottom: 24px;
  max-width: 560px;
  margin-bottom: 24px !important;
}

/* ================================
 Responsive
================================ */
@media (max-width: 1023px) {
  .lp-value__inner, .lp-spec__inner,
  .lp-voices__inner, .lp-stats__inner,
  .lp-faq__inner, .lp-links__inner, .lp-contact__inner { padding: 0 40px; }
  .lp-ucases { padding-left: 40px; }
  .lp-ucases__head { padding-right: 40px; }
  .lp-value__inner { padding: 0 24px; }
  .lp-value__cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .lp-value-card__title { font-size: 17px; }

  .lp-stats {
    position: relative;
    overflow: hidden;
  }
  .lp-stats .lp-liquid--lower {
    display: none;
  }
  .lp-stats::before {
    content: '';
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
    height: 130%;
    background-image: url('../images/lp/liquid_bottom.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.55;
    z-index: 0;
  }
  .lp-stats::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.72);
    z-index: 0;
  }
  .lp-stats__inner { position: relative; z-index: 1; }
}

@media (max-width: 767px) {
  .lp-hero__desc-break { display: block; }

  .lp-page-cta .lp-btn--primary { font-size: 16px; }
  .lp-page-cta__break { display: block; }

  .lp-snav__inner a { padding: 10px 12px; font-size: 13px; }
  .lp-ucases__head { padding-right: 24px; }
  .lp-ucases { padding: 48px 0 48px 24px; }

  .lp-feature__title-area { padding: 0 32px; }

  .lp-middle-header { padding: 0 0 32px; }
  .lp-middle-header__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
    margin: 0 24px;
  }

  .lp-value { padding: 72px 0; }
  .lp-value__inner, .lp-spec__inner,
  .lp-voices__inner, .lp-stats__inner,
  .lp-faq__inner, .lp-links__inner, .lp-contact__inner { padding: 0 24px; }
  .lp-value__cards { grid-template-columns: 1fr; }

  .lp-feat-section { padding: 24px 0 40px; }
  .lp-feat-rows { grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
  .lp-feat-cell-text,
  .lp-feat-row:nth-child(even) .lp-feat-cell-text { padding: 20px 24px; }
  .lp-feat-cell-graph,
  .lp-feat-row:nth-child(even) .lp-feat-cell-graph { padding: 24px 20px 32px; }
  .lp-feat-title { font-size: 28px; }

  .lp-spec { padding: 56px 0; }
  .lp-spec__content { grid-template-columns: 1fr; }
  .lp-spec__left { border-bottom: 1px solid var(--r-light3); }

  .lp-voices { padding: 72px 0; }
  .lp-voices__grid { grid-template-columns: 1fr; }
  .lp-voice-card { padding: 28px 24px; }

  .lp-feature__voice-quote { font-size: 22px; margin-bottom: 24px; }
  .lp-feature__voice-detail { font-size: 16px; line-height: 1.6; margin-bottom: 16px; }
  .lp-feature__voice:nth-child(1) .lp-feature__voice-quote,
  .lp-feature__voice:nth-child(2) .lp-feature__voice-quote { margin-top: 80px; }

  .lp-stats {
    padding: 64px 0;
    position: relative;
    overflow: hidden;
  }
  .lp-stats::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    height: 130%;
    background-image: url('../images/lp/liquid_top.png');
    background-size: 160% 40%;
    background-repeat: no-repeat;
    z-index: 0;
  }
  .lp-stats__inner { position: relative; z-index: 1; }
  .lp-stats__grid { grid-template-columns: 1fr; }
  .lp-stat-card__top { padding: 32px 24px; }
  .lp-stat-card__bottom { padding: 24px; }
  .lp-stat-card__num { font-size: 48px; }

  .lp-faq { padding: 72px 0; }
  .lp-faq__list { max-width: 100%; }
  .lp-faq__q-text { font-size: 15px; }

  .lp-links { padding: 64px 0; }
  .lp-links__grid { grid-template-columns: 1fr; }

  .lp-contact { padding: 72px 0 96px; }
  .lp-contact__card { padding: 28px 24px; min-width: 0; width: 100%; }
  .lp-contact__company, .lp-contact__dept { font-size: 14px; }
  .lp-contact__tel-num { font-size: clamp(22px, 8vw, 32px); }
}

@media (max-width: 480px) {
  .lp-feat-big-num { font-size: 100px; }
}

/* 344px前後の極小幅端末でPOINT1〜4が見切れるのを防止 */
@media (max-width: 345px) {
  .lp-feat-rows { padding: 0 5px; }
}
