/* ============================================================
   アスリートオイル LP - style.css
   ============================================================ */

/* ─── リセット ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; }

/* ─── カスタムプロパティ ────────────────────────────────────── */
:root {
  --color-primary:      #111111;
  --color-secondary:    #b60000;
  --color-white:        #ffffff;
  --color-gold:         #fbd764;
  --color-gold-border:  #c5ad58;
  --color-gray-bg:      #ededed;
  --color-gray-text:    #848484;
  --color-gray-btn:     #6a6a6a;

  --font-base: 'Noto Sans JP', sans-serif;
  --fw-medium: 500;
  --fw-bold:   700;
  --fw-black:  900;

  --lh-base:   1.5;
  --lh-loose:  1.7;
  --lh-looser: 1.8;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-pill: 70px;

  --shadow-card: 0 4px 0 rgba(0, 0, 0, 0.15);
  --shadow-cta:  0 4px 7px rgba(0, 0, 0, 0.45);

  --content-sm:  720px;
  --content-md:  960px;
  --content-lg: 1080px;
}

/* ─── 基本スタイル ──────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  background-color: #000;
  color: var(--color-white);
  overflow-x: hidden;
  line-height: var(--lh-base);
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   共通コンポーネント
   ============================================================ */

/* ─── ボタン ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-base);
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
  transition: transform 0.15s ease;
}
.btn:hover { transform: scale(1.03); }

.btn--purchase {
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 24px;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: var(--content-sm);
}
.btn__icon { width: 32px; height: 32px; flex-shrink: 0; }

/* 予約受付ボタン（coming-soon = 購入予約） */
.btn--reserve {
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 22px;
  font-weight: var(--fw-bold);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: var(--content-sm);
  display: inline-flex; /* flex → inline-flex に変更 */
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--font-base);
  transition: transform 0.15s ease;
  text-decoration: none; /* 追加 */
  z-index: 2;
}
.btn--reserve:hover { transform: scale(1.03); }

/* ─── クーポンボックス ──────────────────────────────────────── */
.coupon {
  background-color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
  max-width: 480px;
  width: 100%;
}
.coupon__label {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  line-height: var(--lh-loose);
}
.coupon__code {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  line-height: var(--lh-base);
}
.coupon__copy-btn {
  background-color: var(--color-gray-btn);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  border: none;
  white-space: nowrap;
  font-family: var(--font-base);
  transition: opacity 0.2s;
}
.coupon__copy-btn:hover { opacity: 0.85; }
.coupon__copy-icon { width: 16px; height: 16px; }

/* ─── CTAボックス ────────────────────────────────────────────── */
.cta-box {
  background-color: var(--color-primary);
  border: 4px solid var(--color-gold-border);
  border-radius: var(--radius-md);
  padding: 44px 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: var(--content-lg);
  z-index: 3;
  position: relative;
  overflow: hidden;
}

/* 背景：金色光沢画像（上下2枚） */
.cta-box__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-box__bg-top,
.cta-box__bg-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-box__bg-top {
  top: 0;
  height: 50%;
}
.cta-box__bg-bottom {
  bottom: 0;
  height: 50%;
}

.cta-box__inner {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ボトル：大きく・影付き */
.cta-box__bottle {
  width: 225px;
  flex-shrink: 0;
  position: relative;
  height: 362px;
}
.cta-box__bottle-img {
  position: absolute;
  width: 192px;
  left: 18px;
  top: -19px;
  object-fit: contain;
}

.cta-box__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.cta-box__heading { font-size: 24px; font-weight: var(--fw-bold); line-height: var(--lh-base); }
.cta-box__terms   { font-size: 14px; font-weight: var(--fw-bold); line-height: var(--lh-loose); }

/* 価格エリアの上の区切り線 */
.cta-box__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  width: 100%;
  margin: 0;
}

.cta-box__price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-box__price-label {
  font-size: 16px;
  font-weight: var(--fw-medium);
  white-space: nowrap;
}
.cta-box__price-volume,
.cta-box__price-label-text { font-size: 20px; font-weight: var(--fw-medium); white-space: nowrap; }
.cta-box__price-sep {
  width: 1px;
  height: 24px;
  background-color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.cta-box__price-amount { font-size: 28px; font-weight: var(--fw-medium); color: var(--color-gold); white-space: nowrap; }
.cta-box__price-unit   { font-size: 16px; font-weight: var(--fw-medium); white-space: nowrap; }

/* ─── 口コミブロック ─────────────────────────────────────────── */
.review-block {
  background-color: var(--color-gray-bg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-block__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: var(--fw-bold);
  font-size: 16px;
  color: var(--color-primary);
  line-height: var(--lh-looser);
}
.review-block__bar {
  width: 6px;
  height: 30px;
  background-color: var(--color-primary);
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}
.review-block__text { font-size: 16px; font-weight: var(--fw-medium); color: var(--color-primary); line-height: var(--lh-base); }
.review-block__text--accent { color: var(--color-secondary); font-weight: var(--fw-bold); }

/* ─── 区切り線 ───────────────────────────────────────────────── */
.divider { width: 100%; border: none; border-top: 1px solid var(--color-gray-bg); }

/* ─── FAQセクション ──────────────────────────────────────────── */
.faq__question {
  background-color: #000;
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: 20px;
  padding: 10px 16px;
  line-height: var(--lh-base);
  display: block;
  width: 100%;
  border: none;
  font-family: var(--font-base);
}
.faq__answer {
  background-color: var(--color-white);
  border: 2px solid #000;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: #000;
  padding: 24px 16px;
  line-height: var(--lh-base);
}

/* ─── フッター ───────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.site-footer__copyright { font-size: 14px; font-weight: var(--fw-bold); color: var(--color-white); }

/* ─── タグ ───────────────────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  border: 1px solid var(--color-white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-white);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tag__icon { width: 24px; height: 24px; }

/* ─── レシピカード ───────────────────────────────────────────── */
.recipe-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-secondary);
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 16px;
  padding: 30px;
}
.recipe-card--row { flex-direction: row; align-items: center; }
.recipe-card--col { flex-direction: column; flex: 1; min-width: 160px; }
.recipe-card__figure { overflow: hidden; position: relative; flex-shrink: 0; }
.recipe-card__figure--wide   { width: 367px; height: 275px; }
.recipe-card__figure--square { width: 240px; height: 240px; }
.recipe-card__figure img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.3); }
.recipe-card__name { font-weight: var(--fw-bold); font-size: 24px; color: var(--color-secondary); line-height: var(--lh-base); }
.recipe-card__tags { font-size: 14px; font-weight: var(--fw-bold); color: var(--color-primary); line-height: var(--lh-base); margin-top: 6px; }

/* アイコン＋テキスト横並び */
.recipe-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}
.recipe-card__meta-icon { width: 20px; height: 20px; flex-shrink: 0; }
.recipe-card__meta-text { font-size: 14px; font-weight: var(--fw-medium); color: var(--color-gray-text); white-space: nowrap; }

/* ============================================================
   LP TOP 固有スタイル
   ============================================================ */

/* ─── FV ─────────────────────────────────────────────────────── */
.fv {
  position: relative;
  /* PCは画像の縦横比に合わせて */
  aspect-ratio: 1440 / 803; /* 実際の画像サイズに合わせる */
}

.fv__bg-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.fv__bg-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fv__cta-btn {
  position: absolute;
  right: 0;
  bottom: 42px;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  border: none;
  font-family: var(--font-base);
  transition: transform 0.15s ease;
}
.fv__cta-btn:hover { transform: scale(1.03); }
.fv__cta-text { font-weight: var(--fw-bold); font-size: 24px; color: var(--color-white); white-space: nowrap; }
.fv__cta-arrow { width: 32px; height: 32px; }

/* ─── お悩みセクション ──────────────────────────────────────── */
.section-pain {
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 100px 24px;
}
.pain__headline { text-align: center; position: relative; display: inline-block; }

/* 左右フレーム */
.pain__headline::before,
.pain__headline::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  border-top: 3px solid var(--color-white);
  border-bottom: 3px solid var(--color-white);
}
.pain__headline::before { left: -28px; border-left: 3px solid var(--color-white); }
.pain__headline::after  { right: -28px; border-right: 3px solid var(--color-white); }

.pain__headline-sub {
  font-weight: var(--fw-bold);
  font-size: 24px;
  line-height: var(--lh-base);
  padding: 8px 0 0;
}
.pain__headline-title {
  font-weight: var(--fw-bold);
  font-size: 36px;
  line-height: var(--lh-base);
  margin-top: 8px;
  position: relative;
  padding-bottom: 12px;
}

.pain__list {
  display: flex;
  width: 100%;
  min-height: 280px;
  background-color: #000;
}
.pain__item {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.pain__item-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  pointer-events: none;
}
.pain__item-text {
  position: relative;
  font-weight: var(--fw-bold);
  font-size: 24px;
  line-height: var(--lh-base);
  text-align: center;
}

/* ─── 解決セクション ─────────────────────────────────────────── */
.section-resolve {
  background-color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

/* 左右の油画像 */
.section-resolve__oil-left,
.section-resolve__oil-right {
  position: absolute;
  top: 0;
  width: 420px;
  pointer-events: none;
  z-index: 2;
}
.section-resolve__oil-left{ 
   top: 5%;
   left: -120px;
}
.section-resolve__oil-right {
    right: -200px;
    top: -50%;
}

.resolve__headline {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  max-width: var(--content-md);
  position: relative;
  z-index: 1;
}
.resolve__headline-sub {
  font-weight: var(--fw-black);
  font-size: 40px;
  line-height: var(--lh-base);
  border-bottom: 4px solid rgb(255,255,255);
  padding-bottom: 4px;
  width: fit-content;
  margin: 0 auto;
}
.resolve__headline-badge {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px 12px;
  background: linear-gradient(175.55deg, #e8b419 5%, #f8d25a 18%, #ffe9a2 44%, #f9d560 66%, #bc9724 93%);
  width: fit-content;
  margin: 0 auto;
  justify-content: center;
}
.resolve__headline-badge-main { font-weight: var(--fw-black); font-size: 50px; color: var(--color-secondary); line-height: 1; white-space: nowrap; }
.resolve__headline-badge-sub  { font-weight: var(--fw-black); font-size: 32px; color: var(--color-primary); line-height: var(--lh-base); letter-spacing: 1.6px; }

.resolve__list {
  width: 100%;
  max-width: var(--content-md);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.resolve__card {
  background-color: var(--color-white);
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px;
  flex-wrap: wrap;
}
.resolve__card-figure {
  flex: 1;
  min-width: 200px;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.resolve__card-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4);
}
.resolve__card-body { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 20px; }
.resolve__card-title {
  font-weight: var(--fw-black);
  font-size: 32px;
  color: var(--color-secondary);
  line-height: var(--lh-base);
  letter-spacing: 1.6px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--color-secondary);
}
.resolve__card-title--normal { font-weight: var(--fw-bold); font-size: 24px; color: #000; }
.resolve__card-desc { font-weight: var(--fw-bold); font-size: 20px; color: #131313; line-height: var(--lh-base); }
.resolve__card-desc--accent { color: var(--color-secondary); }

.section-resolve-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/triangle-bg.png');
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 1;
}


/* ─── 選ばれる理由 ───────────────────────────────────────────── */
.section-features {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 24px 100px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}
.features__heading { text-align: center; }
.features__heading-main { font-weight: var(--fw-black); font-size: 50px; color: var(--color-secondary); line-height: var(--lh-base); }
.features__heading-sub  { font-weight: var(--fw-black); font-size: 40px; color: var(--color-primary); line-height: var(--lh-base); }
.features__list { width: 100%; max-width: var(--content-md); display: flex; flex-direction: column; gap: 32px; }

.feature { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.feature--reverse { flex-direction: row-reverse; }
.feature__text { flex: 1; min-width: 200px; color: var(--color-primary); display: flex; flex-direction: column; gap: 16px; }
.feature__heading { font-weight: var(--fw-black); font-size: 32px; line-height: var(--lh-base); letter-spacing: 1.6px; }
.feature__body { font-weight: var(--fw-medium); font-size: 16px; line-height: var(--lh-base); }
.feature__note { font-size: 12px; font-weight: var(--fw-medium); line-height: var(--lh-looser); color: var(--color-primary); }
.feature__figure { flex: 1; min-width: 200px; max-height: 345px; overflow: hidden; }
.feature__figure img { width: 100%; height: 100%; object-fit: cover; }

/* 栄養バランス：テキスト＋グラフ横並び */
.feature--nutrition {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.feature--nutrition .feature__text { flex: 1; min-width: 200px; }
.feature--nutrition .feature__graph {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature--nutrition .feature__graph img { width: 100%; height: auto; }

/* ─── セクション間斜め装飾（背景切り替え部分） ──────────────── */
.section-divider-diagonal {
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  position: relative;
}
.section-divider-diagonal--red-to-dark {
  background-color: var(--color-secondary);
}
.section-divider-diagonal--red-to-dark::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.section-divider-diagonal--dark-to-red {
  background-color: #000;
}
.section-divider-diagonal--dark-to-red::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ─── アンバサダーセクション ────────────────────────────────── */
.section-ambassador {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 0 0 100px;
}
.ambassador__inner {
  display: flex;
  gap: 38px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 24px;
  max-width: var(--content-md);
  width: 100%;
}
.ambassador__figure { width: 499px; flex-shrink: 0; overflow: hidden; }
.ambassador__figure img { width: 100%; object-fit: cover; display: block; }
.ambassador__content { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 37px; }
.ambassador__heading { font-weight: var(--fw-black); font-size: 40px; line-height: var(--lh-base); }
.ambassador__heading-oil {
  background: linear-gradient(112.82deg, #e1a900 12%, #fbd764 51%, #f5cb4b 71%, #b28e1d 91%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 50px;
  font-weight: var(--fw-black);
}
.ambassador-heading{
    border-top: 1px solid #E4B532;
    border-bottom: 1px solid #E4B532;
    padding: 20px 0;
    width: fit-content;
}
.ambassador__body { font-weight: var(--fw-medium); font-size: 16px; line-height: var(--lh-looser); }

/* ─── 動画 ───────────────────────────────────────────────────── */
.video {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}
.video__label { font-weight: var(--fw-bold); font-size: 24px; }
/* YouTube埋め込み用アスペクト比ラッパー */
.video__embed-wrap {
  width: 100%;
  max-width: 643px;
  aspect-ratio: 16 / 9;
  position: relative;
  background-color: #000;
}
.video__embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── レシピセクション ──────────────────────────────────────── */
.section-recipe {
  background-color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 100px 24px 0px 60px;
  overflow: hidden;
  position: relative;
}
/* レシピコンテンツ（カード群）とプレイヤーを横並び */
.recipe__layout {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.recipe__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 0 0 auto;
  width: 624px;
}
.recipe__heading {
  font-weight: var(--fw-black);
  font-size: 40px;
  line-height: var(--lh-base);
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  padding: 4px 4px;
  background-color: #111111;
  transform: skewX(-8deg);
  display: inline-block;;
}
.recipe__heading-icon { width: 40px; height: 40px; display: inline-block; vertical-align: middle; margin-left: 8px; }
.recipe__list { width: 100%; display: flex; flex-direction: column; gap: 24px; padding-bottom: 80px; }
.recipe__row  { display: flex; gap: 13px; }
.recipe__player {
  flex: 1;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.recipe__player img {
  position: absolute;
  bottom: 0;
  left: -20px;
  width: auto;
  object-fit: cover;
  object-position: top center;
}

/* ─── 口コミスライダー ──────────────────────────────────────── */
.section-reviews {
  background: linear-gradient(90deg, #aeaeae 1%, #f0f0f0 26%, #fff 51%, #aeaeae 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}
.reviews__heading {
  font-weight: var(--fw-bold);
  font-size: 40px;
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 8px 40px;
  transform: skewX(-8deg);
}

/* スライダー本体 */
/* ─── Swiper スライダー ─── */

.reviews-swiper {
  width: 100%;
  padding: 0 0 48px; /* ページネーション分の余白 */
  overflow: visible !important; 
}

/* スライド（カード）幅 */
.reviews-swiper .swiper-slide {
  width: 50%;
  height: auto;
}

/* カード本体 */
.review-card {
  background-color: var(--color-white);
  border: 4px solid var(--color-primary);
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  box-sizing: border-box;
}
.review-card__title { font-weight: var(--fw-bold); font-size: 24px; color: var(--color-primary); line-height: var(--lh-base); }
.review-card__meta { display: flex; align-items: center; gap: 8px; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__who { font-size: 14px; color: var(--color-primary); font-weight: var(--fw-medium); line-height: var(--lh-looser); }

/* ページネーション（ドット）カスタマイズ */
.reviews-swiper__pagination {
  bottom: 12px !important;
}
.reviews-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  opacity: 1;
  transition: background-color 0.2s;
}
.reviews-swiper .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/* 前後ボタンカスタマイズ */
.reviews-swiper__prev,
.reviews-swiper__next {
  width: 44px !important;
  height: 44px !important;
  background-color: var(--color-primary);
  border-radius: 50%;
  color: var(--color-white) !important;
  top: 50% !important;
  margin-top: -22px;
  transition: opacity 0.2s;
}
.reviews-swiper__prev::after,
.reviews-swiper__next::after {
  font-size: 18px !important;
  font-weight: bold;
}
.reviews-swiper__prev:hover,
.reviews-swiper__next:hover { opacity: 0.75; }
.reviews-swiper__prev.swiper-button-disabled,
.reviews-swiper__next.swiper-button-disabled { opacity: 0.3; }

/* ─── FAQセクション ──────────────────────────────────────────── */
.section-faq {
  background-color: var(--color-gray-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  padding: 100px 24px;
}
.faq__heading { font-weight: var(--fw-bold); font-size: 40px; color: #000; text-align: center; }
.faq__list { width: 100%; max-width: var(--content-md); display: flex; flex-direction: column; gap: 24px; }
.faq__item { display: flex; flex-direction: column; }

/* ─── フッターCTA ─────────────────────────────────────────────── */
.section-footer-cta {
  background-color: var(--color-secondary);
  padding: 80px 24px;
  display: flex;
  justify-content: center;
}

/* ============================================================
   レシピ詳細ページ固有スタイル
   ============================================================ */
.recipe-page { background-color: var(--color-primary); }
.recipe-fv {
  background-color: var(--color-primary);
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}
.recipe-hero {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--content-lg);
  min-height: 317px;
}
.recipe-hero__info {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 317px;
  gap: 16px;
}
.recipe-hero__divider { border: none; border-top: 1px solid rgba(255,255,255,0.4); }
.recipe-hero__title-badge {
  background: linear-gradient(171.98deg, #e8b419 5%, #f8d25a 18%, #ffe9a2 44%, #f9d560 66%, #bc9724 93%);
  padding: 8px 4px;
  text-align: center;
}
.recipe-hero__title-text {
  font-weight: var(--fw-black);
  font-size: 32px;
  color: var(--color-primary);
  line-height: var(--lh-base);
  letter-spacing: 1.6px;
}
.recipe-hero__desc {
  font-weight: var(--fw-bold);
  font-size: 20px;
  color: var(--color-white);
  line-height: var(--lh-looser);
}
.recipe-hero__figure {
  width: 526px;
  height: 317px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.recipe-hero__figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.recipe-content-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
  max-width: var(--content-md);
}
.recipe-col { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 20px; }
.recipe-col__heading { display: flex; gap: 8px; align-items: center; }
.recipe-col__heading-bar {
  width: 6px;
  height: 30px;
  background-color: var(--color-primary);
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-block;
}
.recipe-col__heading-text { font-weight: var(--fw-bold); font-size: 24px; color: var(--color-primary); line-height: var(--lh-base); }

.recipe-ingredient-list,
.recipe-step-list { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.recipe-ingredient { display: flex; flex-direction: column; gap: 16px; }
.recipe-ingredient__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  line-height: var(--lh-base);
}
.recipe-ingredient__name { flex: 1; min-width: 0; }
.recipe-ingredient__name--accent { color: var(--color-secondary); }
.recipe-ingredient__qty { flex-shrink: 0; text-align: right; white-space: nowrap; }
.recipe-ingredient__note { font-size: 12px; }

.recipe-side-badge {
  background-color: var(--color-gold);
  border-radius: 50px;
  padding: 4px 20px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 12px;
}
.recipe-ingredient-list--side { margin-top: 0; }

.recipe-step { display: flex; flex-direction: column; gap: 16px; }
.recipe-step__row { display: flex; gap: 16px; align-items: flex-start; }
.recipe-step__num { font-size: 14px; font-weight: var(--fw-bold); color: var(--color-secondary); line-height: var(--lh-loose); white-space: nowrap; flex-shrink: 0; }
.recipe-step__text { font-size: 16px; font-weight: var(--fw-medium); color: var(--color-primary); line-height: var(--lh-base); flex: 1; min-width: 0; }

.section-other-recipes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.other-recipes__heading {
  font-weight: var(--fw-black);
  font-size: 24px;
  color: var(--color-white);
  line-height: var(--lh-base);
  letter-spacing: 1.6px;
  text-align: center;
}
.other-recipes__list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--content-lg);
}


/* ============================================================
   レスポンシブ (タブレット: 768px〜1024px))
   ============================================================ */
@media (min-width: 768px) and (max-width: 1024px) {
  .fv__cta-btn { bottom: 0px; }
  .section-recipe { padding: 100px 24px 0px 24px; }
  .recipe__layout {
    flex-direction: column;
  }
  .recipe__content {
    width: 100%;
  }
  .recipe__player {
    min-height: 400px;
    width: 100%;
  }
  .recipe__player img {
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
  }
  .recipe__list { padding-bottom: 0px;}
}
/* ============================================================
   レスポンシブ (SP: 767px以下)
   ============================================================ */
@media (max-width: 767px) {
  .fv {
    aspect-ratio: 390 / 844; /* SP画像サイズに合わせる */
  }
  .fv__cta-btn {
    right: auto;
    bottom: 4vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: calc(100% - 48px);
    padding: 14px 20px;
    white-space: nowrap;
    justify-content: center
  }
  .fv__cta-btn:hover { transform: translateX(-50%) scale(1.03); }
  .fv__cta-text { font-size: 15px; }
  .fv__cta-arrow { width: 24px; height: 24px; }

  /* お悩み */
  .section-pain { padding: 80px 24px; }
  .pain__headline-sub   { font-size: 16px; }
  .pain__headline-title { font-size: 24px; }
  .pain__list { flex-direction: column; min-height: auto; }
  .pain__item { padding: 36px 24px; }
  .pain__item-text { font-size: 16px; }

  /* 解決 */
  .section-resolve { padding: 60px 16px; gap: 40px; }
  .section-resolve__oil-left,
  .section-resolve__oil-right { width: 260px; }
  .section-resolve__oil-left  { left: -120px; top: 4%; }
  .section-resolve__oil-right { right: -140px; top: -20% }
  .resolve__headline-sub { font-size: 24px; }
  .resolve__headline-badge-main { font-size: 28px; }
  .resolve__headline-badge-sub  { font-size: 20px; }
  .resolve__card { flex-direction: column; }
  .resolve__card-figure {  flex: none; width: 100%; height: 220px; order: -1; position: relative; overflow: hidden;}
  .resolve__card-figure img { position: absolute;  inset: 0;  width: 100%; height: 100%;  object-fit: cover;}
  .resolve__card-body { order: 1; flex: none; width: 100%; }
  .resolve__card-title { font-size: 24px; }
  .resolve__card-desc  { font-size: 16px; }

  /* CTA */
  .cta-box {
    padding: 32px 20px 40px;
    max-width: 100%;
    z-index: 3;
    gap: 24px;
  }
  .cta-box__bottle {
    width: 160px;
    height: 260px;
  }
  .cta-box__inner { flex-direction: column; }
  .cta-box__bottle { width: 100px; height: 180px; }
  .cta-box__bottle-img { width: 100; left: 0; top: -8px; }
  .cta-box__heading { font-size: 18px; }
  .coupon__code { font-size: 18px; }
  .cta-box__price-amount { font-size: 20px; }
  .btn--purchase { font-size: 16px; padding: 14px 20px; }
  .btn--reserve  { font-size: 15px; padding: 14px 20px; }
  .cta-box__bg-top { height: auto; }
  .cta-box__bg-bottom { height: auto; }
  .cta-box__price-label { font-size: 14px; }
  .cta-box__price-volume, .cta-box__price-label-text { font-size: 14px; }
  .cta-box__price-unit { font-size: 14px; }
  .cta-box__price { gap: 6px; }

  /* 選ばれる理由 */
  .section-features { padding: 60px 16px; max-width: 100%; }
  .features__heading-main { font-size: 24px; }
  .features__heading-sub  { font-size: 20px; }
  .feature, .feature--reverse { flex-direction: column !important; gap: 16px; }
  .feature--nutrition { flex-direction: column !important; }
  .feature__heading { font-size: 20px; }
  .feature__body { font-size: 14px; line-height: var(--lh-loose); }
  .feature__figure { width: 100%; height: 206px; }
  .feature--nutrition .feature__graph { width: 100%; }

  /* アンバサダー */
  .section-ambassador { gap: 60px; padding-bottom: 80px; }
  .ambassador__inner { flex-direction: column; gap: 24px; padding: 0 16px; }
  .ambassador__figure { width: 100%; max-width: 320px; }
  .ambassador__heading { font-size: 24px; }
  .ambassador__heading-oil { font-size: 32px; }
  .ambassador__body { font-size: 14px; }

  /* 動画 */
  .video { gap: 12px; padding: 0 16px; }
  .video__label { font-size: 20px; }
  .video__embed-wrap { max-width: 100%; }

  /* レシピセクション */
  .section-recipe { padding: 80px 16px 0px 16px; gap: 24px; align-items: center; }
  .recipe__layout { flex-direction: column; }
  .recipe__content { width: 100%; }
  .recipe__list { gap: 16px ; padding-bottom: 0; }
  .recipe__player { min-height: 270px;}
  .recipe__player img { left: 50%; transform: translateX(-50%); width: auto; height: 100%; }
  .recipe__heading { font-size: 22px; }
  .recipe__heading-icon { width: 28px; height: 28px; }
  /* SP: トンカツカードは縦積み（画像上・テキスト下） */
  .recipe-card--row {
    flex-direction: column;
    width: 100%;
  }
  .recipe-card { padding: 16px; gap: 12px; }
  .recipe-card__figure--wide {
    width: 100%;
    max-width: 200px;
    height: auto;
    flex-shrink: 0;
  }
  .recipe-card__figure--square { width: 100%; height: 160px; }
  .recipe-card__name { font-size: 18px; }
  .recipe-card__tags { font-size: 12px; }
  .recipe-card__meta-icon { width: 16px; height: 16px; }
  .recipe-card__meta-text { font-size: 13px; }
  .recipe-card--col {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
    min-width: 0;
  }
  
  /* 口コミ */
  .section-reviews { padding: 60px 0; }
  .reviews__heading { font-size: 24px; padding: 6px 24px; }
  /* Swiper SP */
  .reviews-swiper .swiper-slide {
    width: 85%; /* SPは少し広め */
  }
  .review-card { padding: 24px 20px; }
  .review-card__title { font-size: 20px; }
  .review-block__text { font-size: 14px; }
  .review-block { padding: 16px; }

  /* FAQ */
  .section-faq { padding: 80px 16px; }
  .faq__heading { font-size: 24px; }
  .faq__question { font-size: 16px; }
  .faq__answer { font-size: 14px; }

  /* フッターCTA */
  .section-footer-cta { padding: 80px 16px; }

  /* レシピページ */
  .recipe-fv { padding: 60px 16px; gap: 40px; }
  .recipe-hero { flex-direction: column; min-height: auto; }
  .recipe-hero__info { height: auto; }
  .recipe-hero__title-text { font-size: 22px; }
  .recipe-hero__desc { font-size: 15px; }
  .recipe-hero__figure { width: 100%; height: 220px; }
  .recipe-content-card { padding: 20px 16px; gap: 32px; max-width: 100%; }
  .other-recipes__heading { font-size: 22px; }
  .other-recipes__list { display: flex; gap: 12px; flex-direction: row !important; flex-wrap: nowrap;}
  .tag { font-size: 12px; padding: 4px 12px; }
  .tag__icon { width: 16px; height: 16px; }
  .recipe-card.recipe-card--row { flex-direction: column; flex: 1; align-items: flex-start; padding: 12px; width: 50%;}
  .recipe-card__figure--square { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .recipe-card__name { font-size: 14px; margin-top: 8px; }
  .recipe-card.recipe-card--row.recipe-card--tonkatsu { flex-direction: row; width: 100%;}
}


/* ─── レシピ付け合わせ ────────────────────────────────────────── */
.recipe-side { margin-top: 20px; color: var(--color-primary);}
.recipe-side .divider { border-top: 1px solid #ccc;}
.recipe-ingredient-list--side { margin-top: 12px; }
