@charset "UTF-8";

/* _reset.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-touch-callout: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

button {
  cursor: pointer;
}

[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-footer {
  padding: 32px 20px;
}

.site-footer__legal {
  color: #6b7280;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* コンポーネント */
/* =========================================================
   FV（アゲ恋）— レイアウト / ビネット / ロゴ / ステッカー
   - 画面ほぼ全高（svh対応＋vhフォールバック）
   - テキストはフローで安定、CTAは親指ゾーン
   - ステッカーは flex で星の上に縦積み配置
   ========================================================= */
/* ---- トークン（案件ごとにここだけ触ればOK） ---- */
/* 見出しブロック上余白 */
/* CTA下余白 */
/* ================= セクション土台 ================= */
.fv {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 88svh, 760px);
  /* svh非対応端末フォールバック */
  min-height: 88vh;
  padding: 0 20px;
  overflow: hidden;
  background: #fff;
}

/* ================ 背景レイヤ（写真） ================ */
.fv .gate {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.fv .gate__hero {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  background: #000 center 45%/cover no-repeat;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  filter: saturate(1.08) contrast(1.05);
}

@media (max-width: 420px) {
  .fv .gate__hero {
    inset: 8px;
    border-radius: 18px;
  }
}

/* ================== ビネット（薄め） ================== */
.fv__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  --veil-core: .10;
  /* 中央の暗さ */
  --veil-edge: .30;
  /* 周辺の暗さ */
  background: radial-gradient(closest-side at 50% 44%, rgba(0, 0, 0, var(--veil-core)), rgba(0, 0, 0, var(--veil-edge)) 64%, rgba(0, 0, 0, 0.58) 100%);
}

/* 明るめ演出（ギャル寄せ） */
.fv--bright .fv__veil {
  --veil-core: .06;
  --veil-edge: .22;
}

.fv--bright .gate__hero {
  filter: saturate(1.16) contrast(1.07) brightness(1.02);
}

/* ============= テキスト層（フロー配置） ============= */
.fv__inner {
  position: relative;
  z-index: 5;
  max-width: 960px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: inherit;
  /* CTAを底に押し下げ */
  color: #fff;
  text-align: center;
  padding-top: clamp(12px, 8vh, 72px);
  justify-content: center;
}

/* バッジ＋ロゴ＋見出し＋サブの塊 */
.fv__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  margin-bottom: 50%;
}

.fv__badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* ================ ロゴ（画像一体） ================ */
.fv__logo {
  position: relative;
  /* ステッカーの基準にする */
  display: inline-block;
  margin: 4px 0 6px;
}

.fv__logo img {
  display: block;
  width: min(70vw, 420px);
  /* 420pxベース推奨 */
  height: auto;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.25));
  will-change: transform;
}

/* ふわっと浮遊（動き配慮あり） */
@media (prefers-reduced-motion: no-preference) {
  .fv__logo img {
    animation: logoFloat 6s ease-in-out infinite;
  }

  @keyframes logoFloat {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-2px);
    }
  }
}

/* =========== 見出し（1行基調＋微装飾） =========== */
.fv__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(26px, 6.2vw, 32px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
  max-width: 20ch;
  margin-inline: auto;
  font-size: 20px;
  margin-bottom: 8px;
}

.fv__title--1line .nowrap {
  white-space: nowrap;
}

/* ギャル盛り（控えめのネオングラデ） */
.fv__title--gal .pop {
  background: linear-gradient(90deg, #ff4db1, #ff9a3c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

/* 端末幅に応じて2行化 */
.fv__title .seg {
  display: inline;
}

@media (max-width: 420px) {
  .fv__title .seg--2 {
    display: block;
    margin-top: 4px;
  }
}

@media (max-width: 340px) {
  .fv__title {
    font-size: clamp(24px, 6vw, 28px);
  }
}

/* ハートだけ鼓動（動き配慮あり） */
@media (prefers-reduced-motion: no-preference) {
  .fv__title--gal .pop {
    animation: popPulse 1.6s ease-in-out infinite;
  }

  @keyframes popPulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.02);
    }
  }
}

/* ================= サブコピー ================= */
.fv__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* ================= ヒーローCTA ================= */
#cta-hero {
  margin-top: auto;
  /* いちばん下へ */
  margin-bottom: calc(env(safe-area-inset-bottom) + 20px);
  width: min(92vw, 360px);
}

/* ============== スクロール示唆（薄いグラデ） ============== */
.fv::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.12));
  z-index: 6;
  pointer-events: none;
}

/* =========================================================
   ステッカー（flex版）— 星は背景（::before）、中身は縦積み
   ※ 位置・サイズは CSS 変数で上書き可能（あなたの調整を保持）
      --st-w, --st-top, --st-right, --st-rot
   画像：https://superfruits.sakura.ne.jp/agekoi/img/star.webp（プロジェクト直下の img 配下）
   ========================================================= */
.fv__logo .sticker {
  /* あなたの調整値があればそちらが優先されるように var() でフォールバック */
  width: var(--st-w, clamp(110px, 26vw, 150px));
  position: absolute;
  top: var(--st-top, -115px);
  right: var(--st-right, -50px);
  aspect-ratio: 1/1;
  transform: rotate(var(--st-rot, -6deg));
  z-index: -1;
  pointer-events: none;
  /* 背景の星（webp） */
  /* 内側レイアウト */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* 星の内側余白は変数で調整可能（未指定なら既定値） */
  padding: var(--pad-t, 18%) var(--pad-x, 10%) var(--pad-b, 16%);
  box-sizing: border-box;
  gap: 6%;
  /* ★ 子要素を潰さない（flex収縮禁止） */
}

.fv__logo .sticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://superfruits.sakura.ne.jp/agekoi/img/star.webp") center/contain no-repeat;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.22));
  z-index: -1;
}

.fv__logo .sticker>* {
  flex: 0 0 auto;
}

/* 上段：LINEで安心（緑ピル）— 1行固定＆厚み確保 */
.fv__logo .sticker__line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42em 0.2em 0.48em;
  border-radius: 999px;
  background: #06c755;
  /* LINEグリーン */
  color: #fff;
  font-weight: 900;
  font-size: clamp(11px, 3.2vw, 14px);
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  /* ★ 折り返し禁止 */
  min-height: 28px;
  /* ★ つぶれ防止 */
  min-width: 100px;
  /* ★ 文字が窮屈にならない幅 */
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 3px #fff, 0 6px 14px rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
  /* ★ 収縮しない */
}

/* 下段：完全無料（4タイル） */
.fv__logo .sticker__tiles {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  /* ★ 収縮しない */
}

.fv__logo .tile {
  display: inline-grid;
  place-items: center;
  width: clamp(18px, 5.2vw, 24px);
  height: clamp(18px, 5.2vw, 24px);
  border-radius: 3px;
  font-weight: 900;
  font-size: clamp(11px, 3.6vw, 14px);
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 3px #fff, 0 6px 14px rgba(0, 0, 0, 0.18);
}

.fv__logo .tile--b {
  background: #5bb4ff;
}

/* 青 */
.fv__logo .tile--o {
  background: #ff8a54;
}

/* オレンジ */
.fv__logo .tile--p {
  background: #ff4db1;
}

/* ピンク */
.fv__logo .tile--v {
  background: #8b61ff;
}

/* バイオレット */
/* さらに狭い端末で少しだけ縮小（位置は var 指定なのであなたの調整値は保持） */
@media (max-width: 360px) {
  .fv__logo .sticker {
    width: var(--st-w, clamp(100px, 24vw, 132px));
  }
}

.fv__logo .sticker {
  --spin-s: 1s;
  --pulse-s: .5s;
  --pulse-scale: 1.1;
  --sparkle-s: 9s;
}

/* 回転 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* 脈動 */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(var(--pulse-scale, 1.04));
  }
}

/* きらめき（透明度で） */
@keyframes sparkle {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* アニメーション適用 */
.fv__logo .sticker {
  animation: spin var(--spin-s, 18s) linear infinite, pulse var(--pulse-s, 2.2s) ease-in-out infinite, sparkle var(--sparkle-s, 9s) ease-in-out infinite;
}

.fv__title--neon {
  position: relative;
  color: #fff;
  text-shadow: 0 0 6px #ff3, 0 0 12px #ff3;
  animation: sparkle 1.2s infinite ease-in-out;
}

@keyframes sparkle {

  0%,
  100% {
    text-shadow: 0 0 6px #ff3, 0 0 12px #ff3;
    opacity: 1;
  }

  50% {
    text-shadow: 0 0 12px #fff, 0 0 20px #ff3;
    opacity: 1;
  }
}

.fv__assist {
  margin: 0 0 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

#cta-hero {
  min-height: 56px;
}

@supports (padding: max(0px)) {
  #cta-hero {
    margin-bottom: max(20px, env(safe-area-inset-bottom));
  }
}

/* ===== FV veil – ギャル寄せ（強制上書き版） ===== */
/* ※ components/_fv.scss か style.scss の一番最後に置く */
.fv.fv--gal .fv__veil {
  /* 明るさ・彩度のトークン（数値を下げるほど明るい） */
  --veil-core: .02;
  /* 中央の暗さ */
  --veil-edge: .14;
  /* 外周の暗さ */
  --warm-top: .22;
  /* 上からのウォーム膜の強さ */
  --warm-mid: .14;
  /* ウォーム膜 + 薄いビネット（可読性は維持） */
  background: linear-gradient(180deg, rgba(255, 140, 200, var(--warm-top)) 0%, rgba(255, 210, 120, var(--warm-mid)) 28%, rgba(0, 0, 0, 0) 56%), radial-gradient(closest-side at 50% 44%, rgba(0, 0, 0, var(--veil-core)), rgba(0, 0, 0, var(--veil-edge)) 66%, rgba(0, 0, 0, 0.42) 110%) !important;
}

/* きらめきのスキャン（控えめ） */
.fv.fv--gal .fv__veil::after {
  content: "";
  position: absolute;
  inset: -14% -18%;
  mix-blend-mode: screen;
  pointer-events: none;
  background: radial-gradient(16% 22% at 72% 8%, rgba(255, 255, 255, 0.38), transparent 70%), conic-gradient(from 18deg at 0% 18%, rgba(255, 120, 200, 0.35) 0deg, rgba(255, 210, 120, 0.35) 30deg, transparent 85deg);
  filter: blur(12px);
  opacity: 0.28;
  animation: fvVeilSweep 10s linear infinite;
  z-index: 1;
}

@keyframes fvVeilSweep {
  0% {
    transform: translate3d(-8%, -2%, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(6%, 2%, 0) rotate(8deg);
  }

  100% {
    transform: translate3d(-8%, -2%, 0) rotate(0deg);
  }
}

/* 動き配慮 */
@media (prefers-reduced-motion: reduce) {
  .fv.fv--gal .fv__veil::after {
    animation: none;
    opacity: 0.18;
  }
}

/* ================================
   Activity v2 – 読みやすさ最優先
   ================================ */
.activity--v2 {
  --gap: 16px;
  --icon: 56px;
  max-width: 960px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 40px) 20px 24px;
  /* 明るいパターン＋白膜（可読性のため淡く） */
  border-radius: 18px;
  background: radial-gradient(circle at 14px 10px, rgba(255, 105, 180, 0.1) 0 2px, transparent 2px) 0 0/32px 32px, radial-gradient(circle at 6px 22px, rgba(120, 180, 255, 0.1) 0 2px, transparent 2px) 0 0/32px 32px, radial-gradient(circle at 24px 26px, rgba(255, 220, 120, 0.1) 0 2px, transparent 2px) 0 0/32px 32px, linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.6));
}

/* 上段2カード */
.activityv2__top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

/* カード */
.stat {
  display: flex;
  grid-template-columns: var(--icon) 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  align-items: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(10, 15, 20, 0.06);
  box-shadow: 0 14px 28px rgba(10, 15, 20, 0.1);
  padding: 14px 16px;
  min-height: 118px;
}

/* アイコン */
.stat__icon {
  grid-row: 1/span 2;
  display: grid;
  place-items: center;
  width: var(--icon);
  height: var(--icon);
  border-radius: 999px;
  color: #fff;
  width: 40px;
  height: 40px;
}

.stat__icon svg {
  width: 28px;
  height: 28px;
}

.stat__icon--g {
  background: linear-gradient(135deg, #4eea94, #06c755);
  box-shadow: 0 8px 18px rgba(6, 199, 85, 0.35);
}

.stat__icon--p {
  background: linear-gradient(135deg, #b18bff, #ff77c8);
  box-shadow: 0 8px 18px rgba(177, 139, 255, 0.3);
}

/* 数値 + 単位（右肩） */
.stat__main {
  min-width: 0;
}

.stat__value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums slashed-zero;
  color: #141922;
  letter-spacing: 0.01em;
}

.stat .num {
  font-weight: 900;
  font-size: clamp(24px, 5.6vw, 30px);
  line-height: 1.05;
}

.stat .unit {
  position: relative;
  top: -0.15em;
  font-weight: 800;
  font-size: 0.58em;
  color: #5b6473;
}

/* ラベル（自然改行） */
.stat__label {
  grid-column: 2;
  grid-row: 2;
  margin-top: 2px;
  color: #2b3342;
  font-weight: 800;
  font-size: clamp(13px, 3.6vw, 14.5px);
  line-height: 1.35;
  white-space: normal;
}

/* 男女比 */
.ratio {
  margin-top: calc(var(--gap) + 6px);
  background: #fff;
  border: 1px solid rgba(10, 15, 20, 0.06);
  box-shadow: 0 14px 28px rgba(10, 15, 20, 0.1);
  border-radius: 18px;
  padding: 14px 16px 18px;
}

.ratio__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.ratio__labels .ratio__label {
  font-weight: 900;
  color: #141922;
}

.ratio__labels .ratio__label--f strong {
  color: #ff4db1;
  margin-left: 0.35em;
}

.ratio__labels .ratio__label--m strong {
  color: #4b91ff;
  margin-left: 0.35em;
}

.ratio__bar {
  --f: 70%;
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eef2f7, #e8edf3);
  outline: 1px solid rgba(10, 15, 20, 0.06);
  overflow: hidden;
}

.ratio__bar .ratio__fill {
  position: absolute;
  inset: 0;
  width: var(--f);
  background: linear-gradient(90deg, #ff63bf, #ff9a3c);
  transition: width 1.8s cubic-bezier(0.22, 0.9, 0.24, 1);
}

.ratio__bar .ratio__pin {
  position: absolute;
  left: var(--f);
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  transition: left 1.8s cubic-bezier(0.22, 0.9, 0.24, 1);
}

/* iPhone SE 等：縦並びで溢れゼロに */
@media (max-width: 360px) {
  .activity--v2 {
    --gap: 12px;
    --icon: 40px;
    padding: 20px 16px 20px;
  }

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

  .stat {
    padding: 10px 10px;
    column-gap: 10px;
    min-height: 98px;
    border-radius: 14px;
  }

  .stat__icon svg {
    width: 22px;
    height: 22px;
  }

  .stat .num {
    font-size: 22px;
  }

  .stat .unit {
    font-size: 0.52em;
    top: -0.2em;
  }

  .stat__label {
    font-size: 12px;
  }

  .ratio__bar {
    height: 14px;
  }

  .ratio__pin {
    width: 18px;
    height: 18px;
  }
}

/* =========================================================
   Reviews（派手×元気／男女交互／固定CTAナシ）
   背景: https://superfruits.sakura.ne.jp/agekoi/img/reviews-bg.webp
   まとめ: 背景 https://superfruits.sakura.ne.jp/agekoi/img/summary-hero.webp（ブラー無し・読みやすさレイヤ）
   ========================================================= */
/* ---- Fallback tokens（未定義でも落ちないよう保険） ---- */
/* ===== セクション：背景と薄いライト演出 ===== */
.reviews {
  position: relative;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(255, 140, 200, 0.1) 0%, rgba(255, 210, 120, 0.08) 28%, rgba(255, 255, 255, 0) 70%), url("https://superfruits.sakura.ne.jp/agekoi/img/reviews-bg.webp") center/cover no-repeat;
}

.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* 黒ビネットを弱め、中央はほぼ透明 */
  background: radial-gradient(120% 65% at 50% 2%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0.12) 100%);
}

.reviews::after {
  content: "";
  position: absolute;
  inset: -8% -10%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  filter: blur(10px);
  background: conic-gradient(from 20deg at 10% 0%, rgba(255, 180, 220, 0) 0deg, rgba(255, 180, 220, 0.55) 18deg, rgba(255, 245, 160, 0.45) 40deg, rgba(255, 180, 220, 0) 70deg);
  animation: reviewsSweep 12s linear infinite;
}

@keyframes reviewsSweep {

  0%,
  100% {
    transform: translate3d(-4%, -2%, 0) rotate(0deg);
    opacity: 0.18;
  }

  50% {
    transform: translate3d(6%, 2%, 0) rotate(10deg);
    opacity: 0.26;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews::after {
    animation: none;
    opacity: 0;
  }
}

/* ===== タイトル：読みやすさ最優先 ===== */
.reviews__title {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  font-weight: 900;
  font-size: clamp(18px, 4.6vw, 22px);
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.reviews__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6bb5, #ff9ade);
  box-shadow: 0 4px 14px rgba(255, 77, 177, 0.35);
}

/* ===== レイアウト ===== */
.reviews__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 560px) {
  .reviews__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .reviews__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== 各アイテム＆アバター ===== */
.reviews__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.reviews__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
  /* 人型シルエット（白）を中央マスクで描画：フォント不要 */
}

.reviews__avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5Zm-7 9a7 7 0 0 1 14 0Z'/></svg>") center/62% no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5Zm-7 9a7 7 0 0 1 14 0Z'/></svg>") center/62% no-repeat;
  opacity: 0.95;
}

.reviews__avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55), inset 0 10px 18px rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

/* 性別で丸の色だけ変更 */
.reviews__item--f .reviews__avatar {
  background: linear-gradient(135deg, #ff6aa6, #ff9ade);
}

.reviews__item--m .reviews__avatar {
  background: linear-gradient(135deg, #7ea6ff, #8b61ff);
}

@media (min-width: 760px) {
  .reviews__avatar {
    width: 56px;
    height: 56px;
  }
}

/* ===== 吹き出し（読みやすさ寄り） ===== */
.reviews__bubble {
  position: relative;
  padding: 12px 12px 8px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.reviews__bubble p {
  margin: 0 0 6px;
  line-height: 1.5;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.reviews__bubble .reviews__meta {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.reviews__item--f .reviews__bubble {
  background: linear-gradient(135deg, rgba(255, 106, 166, 0.88), rgba(255, 154, 222, 0.88));
}

.reviews__item--f .reviews__bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 14px;
  border: 8px solid transparent;
  border-right-color: rgba(255, 106, 166, 0.88);
}

.reviews__item--m .reviews__bubble {
  background: linear-gradient(135deg, rgba(139, 97, 255, 0.88), rgba(126, 166, 255, 0.88));
}

.reviews__item--m .reviews__bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 14px;
  border: 8px solid transparent;
  border-right-color: rgba(139, 97, 255, 0.88);
}

/* ===== まとめ（ブラー無し／写真＋暗幕） ===== */
.reviews__summary {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 24px auto 0;
  padding: 20px 16px 90px;
  max-width: 960px;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  /* 背景webp */
  background: url("https://superfruits.sakura.ne.jp/agekoi/img/summary-hero.webp") center/cover no-repeat;
  /* 読みやすさレイヤ */
  /* コピー（中央〜左寄せのガラス風※ブラー無し） */
  /* 顔アイコン列（重ならず・ずらしアニメ） */
}

.reviews__summary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.34) 40%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0) 100%), radial-gradient(60% 60% at 50% 0%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 55%);
}

.reviews__summary p,
.reviews__summary .rs__copy {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  max-width: 640px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1) inset, 0 10px 24px rgba(0, 0, 0, 0.22);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(5px);
}

.reviews__summary strong {
  display: block;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(20px, 5.8vw, 24px);
}

.reviews__summary .nowrap {
  white-space: nowrap;
}

.reviews__summary .em {
  font-weight: 900;
  background: linear-gradient(90deg, #ff4db1, #ff9a3c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.reviews__summary .faces,
.reviews__summary .rs3__faces {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.reviews__summary .faces li,
.reviews__summary .rs3__faces li {
  list-style: none;
}

.reviews__summary .faces img,
.reviews__summary .rs3__faces img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 2px #fff, 0 8px 18px rgba(0, 0, 0, 0.28);
  animation: facePop 1.9s ease-in-out infinite;
  will-change: transform, filter;
}

.reviews__summary .faces li:nth-child(2) img,
.reviews__summary .rs3__faces li:nth-child(2) img {
  animation-delay: 0.18s;
}

.reviews__summary .faces li:nth-child(3) img,
.reviews__summary .rs3__faces li:nth-child(3) img {
  animation-delay: 0.36s;
}

.reviews__summary .faces li:nth-child(4) img,
.reviews__summary .rs3__faces li:nth-child(4) img {
  animation-delay: 0.54s;
}

.reviews__summary .faces li:nth-child(5) img,
.reviews__summary .rs3__faces li:nth-child(5) img {
  animation-delay: 0.72s;
}

@keyframes facePop {

  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: none;
  }

  35% {
    transform: translateY(-7px) scale(1.05);
    filter: brightness(1.05) saturate(1.05);
  }

  70% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .reviews__summary .faces img,
  .reviews__summary .rs3__faces img {
    animation: none;
  }
}

@media (max-width: 420px) {
  .reviews {
    padding-bottom: 56px;
  }
}

/* === summary 内のコピーを2段にした時の調整（追記だけでOK） === */
/* 1行目/2行目とも既存の .reviews__summary p が対象 */
.reviews__summary {
  /* 念のため左寄せに戻しておく（全体は左から右へ） */
  text-align: left;
}

/* 2行が <p> で並んでいる想定：2行目だけに適用 */
.reviews__summary p+p {
  /* 行間（上下の“隙間”）を増やす */
  margin-top: 10px;
  /* 右寄せに見せるためのコツ：
   ブロック化＋内容幅に縮めて margin-left:auto; で右端へ */
  display: block;
  width: max-content;
  margin-left: auto;
  text-align: right;
  /* ガラスの見た目は1行目と揃えるが、少しだけ小ぶりに */
  padding: 12px 14px;
  border-radius: 12px;
}

/* 画面が狭い時は右端に貼り付きすぎないよう微調整 */
@media (max-width: 420px) {
  .reviews__summary p+p {
    /* 右端に余白を少し残す */
    margin-right: 4px;
  }

  /* 行間も少しだけ詰める */
  .reviews__summary p+p {
    margin-top: 8px;
  }
}

/* =========================
   Steps – 読める×アゲる安定版
   ========================= */
.steps {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
  padding: clamp(24px, 6vw, 48px) 20px;
  /* ★ 背景：IMG 直下のファイルを cover で */
  /* ファイル名は適宜置換してください（例：steps-bg.webp/webp など） */
  background-image: url("https://superfruits.sakura.ne.jp/agekoi/img/steps-bg.webp");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  /* 文字が沈まないよう、軽いコントラストブーストをオーバーレイで */
  /* コンテンツを前面へ（オーバーレイより上） */
}

.steps::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  /* 上はほんのり明るく、周辺はビネットで締める＋薄い暖色オーロラ */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 20%, rgba(0, 0, 0, 0.24) 100%), radial-gradient(60% 30% at 50% 0%, rgba(255, 120, 200, 0.12) 0%, rgba(255, 210, 110, 0.1) 40%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: multiply;
  /* 乗算で背景に馴染ませる */
}

.steps>* {
  position: relative;
  z-index: 1;
}

.steps__title {
  margin: 0 0 24px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(22px, 6vw, 28px);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

/* ----- list / card ----- */
.steps__list {
  display: grid;
  gap: clamp(20px, 4vw, 32px);
  grid-template-columns: 1fr;
}

.steps__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.04);
  /* 透明土台（崩れ防止） */
  isolation: isolate;
}

/* 画像 */
.steps__art {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  /* 下側だけ暗くして文字可読を確保 */
}

.steps__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 比率保持 */
  object-position: 50% 50%;
  display: block;
  transform: translateZ(0);
}

.steps__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

/* 番号バッジ（ギャル配色・読みやすさ重視） */
.steps__num {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font: 900 16px/1 system-ui, -apple-system, "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #ff4db1, #ff9a3c);
  box-shadow: 0 0 0 3px #fff, 0 10px 20px rgba(0, 0, 0, 0.22);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

/* コピー帯：確実に読めるダークガラス＋細いアクセント */
.steps__copy {
  position: relative;
  z-index: 2;
  padding: 16px 16px 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(20, 22, 24, 0.82), rgba(20, 22, 24, 0.76));
  backdrop-filter: blur(6px) saturate(1.06);
}

.steps__copy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid transparent;
  background: linear-gradient(90deg, #ff66c5, #ffcf67) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  /* 細いグラデの縁 */
  opacity: 0.85;
  pointer-events: none;
}

.steps__head {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(16px, 4.6vw, 18px);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.steps__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(14px, 4.2vw, 15px);
}

/* ===== 画像の右側・縦3チップ（STEP2専用） ===== */
.steps__card--talk {
  /* チップは画像の中で右側に配置 */
}

.steps__card--talk .steps__art {
  position: relative;
}

.steps__card--talk .steps__chat3 {
  position: absolute;
  z-index: 3;
  top: clamp(10px, 2.2vw, 14px);
  right: clamp(10px, 2.2vw, 14px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: clamp(150px, 32%, 220px);
  /* 画像の“右肩”に収まる幅 */
}

.steps__card--talk .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 10px 22px rgba(0, 0, 0, 0.18);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.steps__card--talk .chip--f {
  background: linear-gradient(135deg, #ff61c6, #ff9a3c);
}

.steps__card--talk .chip--m {
  background: linear-gradient(135deg, #4da7ff, #8b61ff);
}

.steps__card--talk .chip__icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

/* ===== ちょい動き（軽め） ===== */
@media (prefers-reduced-motion: no-preference) {
  .steps__card:hover .steps__art img {
    transform: scale(1.03);
    transition: transform 0.5s ease;
  }
}

/* ===== 端末がとても狭い時の保険 ===== */
@media (max-width: 340px) {
  .steps__card--talk .steps__chat3 {
    right: 8px;
    width: 70%;
  }
}

/* ======================
   FAQ – 読める×アゲる
   ====================== */
.faq {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
  padding: clamp(24px, 6vw, 48px) 20px;
  z-index: 0;
  /* 下地：コーラル→タンジェ→レモンの斜めグラデ＋淡いラジアルで厚み */
  background: radial-gradient(110% 80% at 10% -10%, rgba(255, 63, 173, 0.2) 0%, rgba(255, 63, 173, 0) 60%), radial-gradient(100% 80% at 88% 0%, rgba(255, 151, 69, 0.18) 0%, rgba(255, 151, 69, 0) 62%), linear-gradient(135deg, #ff37a5 0%, #ff8a3c 48%, #ffd36a 100%);
  /* 細かい“きらめき”を超軽量で追加（読みやすさを壊さない強さ） */
}

.faq::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.1px) 0 0/18px 18px, radial-gradient(circle at 76% 8%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.1px) 0 3px/24px 24px;
  opacity: 0.18;
}

.faq__title {
  margin: 0 0 24px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(22px, 6vw, 28px);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.faq__list {
  display: grid;
  gap: clamp(16px, 3.5vw, 20px);
}

/* ---- details card ---- */
.faq__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20, 22, 24, 0.76);
  /* ダークガラス */
  backdrop-filter: blur(6px) saturate(1.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  color: #fff;
  isolation: isolate;
  /* ビビッドな細縁（切り抜きボーダー） */
}

.faq__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #ff4db1, #ff9a3c);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}

/* summary */
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px 16px 16px;
  font-weight: 900;
  font-size: clamp(15px, 4.6vw, 17px);
  line-height: 1.3;
  /* + アイコン */
  position: relative;
}

.faq__q::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  translate: 0 -50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease;
}

/* open時を – に */
.faq__item[open] .faq__q::after {
  content: "–";
  transform: rotate(180deg);
}

/* answer */
.faq__a {
  padding: 0 16px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.faq__a p {
  margin: 0 0 10px;
}

.faq__a .faq__bullets {
  margin: 0;
  padding: 0 0 0 1.1em;
}

.faq__a .faq__bullets li {
  margin: 4px 0;
  list-style: "✔  ";
  list-style-position: outside;
}

/* ちょいアニメ（動き配慮） */
@media (prefers-reduced-motion: no-preference) {
  .faq__item {
    transform: translateY(4px);
    opacity: 0.98;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }

  .faq__item:hover {
    transform: translateY(0);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  }
}

/* CTA（必要に応じて運用判断で残す/外す） */
.faq__cta {
  margin-top: 24px;
  text-align: center;
}

.faq__cta .btn {
  min-width: min(92vw, 360px);
  font-weight: 900;
}

.section {
  padding: 40px 20px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.btn--pulse {
  animation: pulse 1.2s ease-in-out infinite;
}

/* 共通ボタン（必要最低限） */
.btn {
  --btn-h: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-h);
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.btn--lg {
  --btn-h: 60px;
  font-size: 16px;
}

/* ヒーローCTAは%基準の最大幅のみ */
.fv .btn--primary {
  width: min(92%, 360px);
}

/* ===== 固定CTA（デフォルトは隠す） ===== */
.cta-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  /* 初期は非表示（下へオフセット） */
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
  will-change: transform, opacity;
  background: linear-gradient(180deg, #06C755 0%, #03B14C 100%);
  color: #fff;
  font-weight: bold;
}

/* 表示状態（JSで付与） */
.cta-fixed.is-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* 互換：もし .hidden を使っていたら非表示として扱う */
.cta-fixed.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

/* ============================================
   CTA Buttons（共通ベース＋LINEグリーン）
   - KPI意識：高コントラスト / 大きめタップ領域 / 明確なフォーカス
   - .btn--line がヒーロー用の緑
   ============================================ */
/* ---- base ---- */
.btn {
  --h: 56px;
  /* 最小高さ（.btn--lgで上書き） */
  --ring: 3px;
  /* 白リングの太さ */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--h);
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: transform 0.12s ease, filter 0.18s ease, box-shadow 0.18s ease, background-position 0.2s ease;
  /* iOSの太字に合わせて軽くスムージング */
  text-rendering: optimizeLegibility;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

/* アクセシビリティ：明確なフォーカス */
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 var(--ring) #fff, 0 0 0 calc(var(--ring) + 3px) rgba(6, 199, 85, 0.6), 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* サイズ */
.btn--lg {
  --h: 60px;
  padding-inline: 26px;
  font-size: 17px;
}

/* ===================================================
   LINE GREEN（ヒーロー用）
   =================================================== */
/* 公式LINEカラー */
.btn--line {
  position: relative;
  color: #fff;
  background: linear-gradient(180deg, #06C755 0%, #03B14C 100%);
  box-shadow: 0 0 0 var(--ring) #fff, 0 16px 28px rgba(6, 199, 85, 0.25), 0 3px 0 rgba(0, 0, 0, 0.05);
  /* 底の締め */
  /* グロッシーなハイライト */
  /* ネオンの外周（やり過ぎない程度に） */
}

.btn--line::after {
  content: "";
  position: absolute;
  inset: 1px 1px 52% 1px;
  /* 上半分にだけ反射を乗せる */
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}

.btn--line::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.35;
  filter: blur(18px);
  background: radial-gradient(60% 80% at 50% 50%, rgba(6, 199, 85, 0.45), rgba(6, 199, 85, 0) 70%);
}

.btn--line:hover {
  filter: brightness(1.02) saturate(1.04);
}

.btn--line:active {
  filter: brightness(0.98);
  box-shadow: 0 0 0 var(--ring) #fff, 0 10px 18px rgba(6, 199, 85, 0.22), 0 2px 0 rgba(0, 0, 0, 0.06);
}

.btn--line[aria-disabled=true],
.btn--line.is-disabled,
.btn--line:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  filter: none;
  box-shadow: 0 0 0 var(--ring) #fff, 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* もし固定CTAで同じ見た目を使いたいとき（任意）
   <a class="cta-fixed__btn btn btn--line btn--lg">…</a> と併用可。
   既存の .cta-fixed__btn 単体にも緑を当てたい場合は下を有効化。 */
.cta-fixed__btn.btn--line {
  /* 併用時の安全側指定だけ */
  width: min(92%, 420px);
  margin-inline: auto;
  display: inline-flex;
}

/* 動作を静かにしたい環境向け */
@media (prefers-reduced-motion: reduce) {

  .btn,
  .btn--line {
    transition: none;
  }

  .btn--line::before {
    opacity: 0.25;
    filter: blur(14px);
  }
}

.fv-cta {
  position: absolute;
  bottom: 20px;
}

/* 既存 .btn--line を強化（色味は据え置き） */
.btn--line {
  box-shadow: 0 0 0 3px #fff, 0 14px 28px rgba(0, 0, 0, 0.22);
  position: relative;
}

.btn--line::after {
  content: "";
  position: absolute;
  inset: 1px 1px 50% 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  pointer-events: none;
}

/* ===== Fixed CTA: アイコン（PNG）を左/右に表示 ===== */
/* 画像は https://superfruits.sakura.ne.jp/agekoi/img/icon-line.png （24×24px 推奨） */
.cta-fixed__btn {
  --icon-size: 22px;
  --icon-gap: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-fixed__btn::before {
  content: "";
  position: absolute;
  inset-inline-start: 16px;
  /* 左寄せ */
  top: 50%;
  width: var(--icon-size);
  height: var(--icon-size);
  transform: translateY(-50%);
  background: url("https://superfruits.sakura.ne.jp/agekoi/img/icon-line.png") center/contain no-repeat;
  /* 視認性が足りなければわずかに白フチ */
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.45));
  pointer-events: none;
}

.cta-fixed__btn[data-icon=right] {
  padding-left: 16px;
  padding-right: calc(16px + var(--icon-size) + var(--icon-gap));
}

.cta-fixed__btn[data-icon=right]::before {
  inset-inline-start: auto;
  inset-inline-end: 16px;
  /* 右寄せ */
}

/* （任意）小さい端末でアイコン縮小 */
@media (max-width: 360px) {
  .cta-fixed__btn {
    --icon-size: 20px;
    --icon-gap: 8px;
  }
}

.cta-fixed__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-fixed__btn i {
  font-size: 20px;
  color: #fff;
}

/* ================== Age Gate ================== */
.agegate {
  padding: 0;
  margin: auto;
  border: none;
  background: transparent;
  color: #1a1a1a;
  /* 非モーダル(openのみ)の保険：中央寄せ */
}

.agegate::backdrop {
  background: radial-gradient(120% 80% at 50% 10%, rgba(10, 10, 14, 0.32), rgba(10, 10, 14, 0.56) 70%), linear-gradient(180deg, rgba(255, 170, 210, 0.1), rgba(255, 230, 150, 0.08) 30%, rgba(0, 0, 0, 0.36) 100%);
  backdrop-filter: blur(1.6px) saturate(1.03);
}

.agegate:not(:modal)[open] {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
}

.agegate:not(:modal)[open]::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 10%, rgba(10, 10, 14, 0.32), rgba(10, 10, 14, 0.56) 70%), linear-gradient(180deg, rgba(255, 170, 210, 0.1), rgba(255, 230, 150, 0.08) 30%, rgba(0, 0, 0, 0.36) 100%);
  backdrop-filter: blur(1.6px) saturate(1.03);
}

/* ---- パネル ---- */
.agegate__panel {
  display: grid;
  gap: 16px;
  place-items: center;
  /* ★少し広げて余裕を作る */
  width: min(94vw, 380px);
  /* 360→380 */
  min-width: 280px;
  padding: 24px 24px 20px;
  border-radius: 18px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.04) inset;
  /* ★上下左右autoで“絶対中央” */
  margin: auto;
  align-self: center;
  justify-self: center;
  transform: translateY(6px) scale(0.985);
  animation: ag-panel-in 0.28s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}

@keyframes ag-panel-in {
  to {
    transform: translateY(0) scale(1);
  }
}

/* ---- テキスト ---- */
.agegate__title {
  margin: 0;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.25;
  color: #111;
  letter-spacing: 0.01em;
  text-align: center;
}

.agegate__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
}

.agegate__em {
  color: #ff7a2e;
  font-weight: 800;
}

.agegate__legal {
  margin: 0;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

/* ---- ボタン行（等幅・1行維持） ---- */
.agegate__actions {
  --ag-btn-h: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2列 */
  gap: 12px;
  width: 100%;
}

/* 主ボタン（暖色グラデ） */
.agegate .btn--primary {
  min-height: var(--ag-btn-h);
  width: 100%;
  white-space: nowrap;
  /* ★折り返し禁止 */
  font-size: clamp(14px, 3.9vw, 16px);
  /* ★狭い画面で微縮小 */
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a54, #ffd36a);
  box-shadow: 0 0 0 3px #fff, 0 12px 24px rgba(255, 122, 46, 0.18);
  position: relative;
}

.agegate .btn--primary::after {
  content: "";
  position: absolute;
  inset: 1px 1px 52% 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

/* 副ボタン（見た目は揃えて弱め） */
.agegate__link {
  min-height: var(--ag-btn-h);
  width: 100%;
  white-space: nowrap;
  /* ★折り返し禁止 */
  font-size: clamp(14px, 3.9vw, 16px);
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #6b7280;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}

.agegate__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 199, 85, 0.45);
}

/* 狭い画面は縦並び（CV重視で読みやすく） */
@media (max-width: 380px) {
  .agegate__actions {
    grid-template-columns: 1fr;
  }
}

/* 低背端末での詰め */
@media (max-height: 560px) {
  .agegate__panel {
    padding: 20px 20px 16px;
  }
}

/* 動き配慮 */
@media (prefers-reduced-motion: reduce) {
  .agegate__panel {
    animation: none;
    transform: none;
  }

  .agegate::backdrop {
    animation: none;
  }
}

/* テーマ */
/* ===== Cinema Override (男目線・ダーク×ネオン) ===== */
/* 適用対象：FVに .fv--cinema が付いているとき */
.theme-summer .fv--cinema {
  /* 1) FV背景をダークに差し替え（パステル禁止） */
  background: radial-gradient(140% 120% at 50% -10%, #0b0b10 0%, #09090d 40%, #0a0a0d 100%) !important;
  isolation: isolate;
}

/* 2) summer が足す装飾を完全に無効化（これがパステルに見える元） */
.theme-summer .fv--cinema::before,
.theme-summer .fv--cinema::after,
.theme-summer .fv--cinema .fv__inner::before,
.theme-summer .fv--cinema .fv__inner::after {
  content: none !important;
}

/* 3) タイポは高コントラスト */
.theme-summer .fv--cinema .fv__title {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

.theme-summer .fv--cinema .fv__sub {
  color: rgba(255, 255, 255, 0.86);
}

.theme-summer .fv--cinema .fv__badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

/* 4) CTA：LINEグリーンを主役に（.btn--line を使う） */
.theme-summer .fv--cinema .btn--line,
.theme-summer .cta-fixed__btn.btn--line {
  position: relative;
  color: #fff;
  background: linear-gradient(180deg, #33db7b 0%, #06c755 70%, #01a747 100%) !important;
  border: 3px solid #fff !important;
  box-shadow: 0 8px 22px rgba(6, 199, 85, 0.35), 0 0 0 4px rgba(255, 255, 255, 0.9) inset !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

/* summer が .cta-fixed__btn に与えるコーラル系を打ち消す */
.theme-summer .fv--cinema .cta-fixed__btn {
  background: none !important;
  box-shadow: none !important;
}

/* FVボタン幅（主役感） */
.theme-summer .fv--cinema .btn--line {
  width: min(92%, 380px);
  margin-inline: auto;
}

/* ===== Cinema Override (男目線・ダーク×ネオン) ===== */
/* 適用対象：FVに .fv--cinema が付いているとき */
.theme-summer .fv--cinema {
  /* 1) FV背景をダークに差し替え（パステル禁止） */
  background: radial-gradient(140% 120% at 50% -10%, #0b0b10 0%, #09090d 40%, #0a0a0d 100%) !important;
  isolation: isolate;
}

/* 2) summer が足す装飾を完全に無効化（これがパステルに見える元） */
.theme-summer .fv--cinema::before,
.theme-summer .fv--cinema::after,
.theme-summer .fv--cinema .fv__inner::before,
.theme-summer .fv--cinema .fv__inner::after {
  content: none !important;
}

/* 3) タイポは高コントラスト */
.theme-summer .fv--cinema .fv__title {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

.theme-summer .fv--cinema .fv__sub {
  color: rgba(255, 255, 255, 0.86);
}

.theme-summer .fv--cinema .fv__badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

/* 4) CTA：LINEグリーンを主役に（.btn--line を使う） */
.theme-summer .fv--cinema .btn--line,
.theme-summer .cta-fixed__btn.btn--line {
  position: relative;
  color: #fff;
  background: linear-gradient(180deg, #33db7b 0%, #06c755 70%, #01a747 100%) !important;
  border: 3px solid #fff !important;
  box-shadow: 0 8px 22px rgba(6, 199, 85, 0.35), 0 0 0 4px rgba(255, 255, 255, 0.9) inset !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

/* summer が .cta-fixed__btn に与えるコーラル系を打ち消す */
.theme-summer .fv--cinema .cta-fixed__btn {
  background: none !important;
  box-shadow: none !important;
}

/* FVボタン幅（主役感） */
.theme-summer .fv--cinema .btn--line {
  width: min(92%, 380px);
  margin-inline: auto;
}

/* =========================================================
   FV strips — 16タイルの反転（比率厳密一致版）
   - gate__hero と同じ枠に重ねる
   - front/back で独立した cover 計算値（px）を使用
   ========================================================= */
.fv--strips {
  /* タイル層 */
  /* front 用：px変数で cover を厳密再現 */
  /* back 用：px変数で cover を厳密再現 */
}

.fv--strips .gate {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.fv--strips .gate__hero {
  position: absolute;
  inset: 0;
  border-radius: var(--fv-radius, 22px);
  overflow: hidden;
  background: #000 center 45%/cover no-repeat;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.fv--strips .tiles {
  position: absolute;
  inset: 0;
  border-radius: var(--fv-radius, 22px);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  z-index: 1;
  /* hero の上, veil の下 */
}

.fv--strips .tile {
  position: relative;
  perspective: 1000px;
  isolation: isolate;
}

.fv--strips .tile__inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.fv--strips .face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  background-color: transparent;
}

.fv--strips .face--front {
  background-image: var(--front);
  background-size: var(--bgW-front) var(--bgH-front);
  background-position: calc(var(--bgX-front) - var(--col) * var(--tileW)) calc(var(--bgY-front) - var(--row) * var(--tileH));
}

.fv--strips .face--back {
  background-image: var(--back);
  transform: rotateY(180deg);
  background-size: var(--bgW-back) var(--bgH-back);
  background-position: calc(var(--bgX-back) - var(--col) * var(--tileW)) calc(var(--bgY-back) - var(--row) * var(--tileH));
}

/*# sourceMappingURL=style.css.map */