/* =========================================================
   B.STYLE プロテイン紹介LP（体験特典→入会オプション用）
   共通の styles.css を土台に、このページ専用の追加分だけを定義。
   価格・成分の数値は出さない方針。商品写真は後日差し込む前提で、
   "空き枠"を意図的に上品に見せる（.ph）。
   ========================================================= */

/* ========================= 写真プレースホルダー =========================
   後で <img> に差し替える枠。壊れて見えないよう、黒金の意匠として仕上げる。 */
.ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(70% 60% at 50% 30%, rgba(201,168,106,0.16) 0%, transparent 60%),
    linear-gradient(160deg, #4f5157 0%, #44464b 55%, #3a3c40 100%);
  color: var(--gold);
}
/* 内側に金の細い飾り罫（額縁のように） */
.ph::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(201,168,106,0.5);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.ph-mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}
.ph-label {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
}

/* ヒーローの商品ビジュアル */
.p-hero-photo {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
}
.p-hero-photo .ph {
  aspect-ratio: 3 / 4;   /* プレースホルダー時のみ */
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.p-hero-photo .ph-mark { font-size: 2rem; }
/* 実写（下平さん＋商品・横長）を入れたとき */
.p-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

@media (max-width: 760px) {
  .p-hero-photo { order: -1; width: min(88%, 380px); }
}

/* ========================= 開発ストーリー ========================= */
.story-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: clamp(1.75rem, 5vw, 3.5rem);
}
.story-photo .ph { aspect-ratio: 4 / 5; }
.story-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}
.story-quote {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 2.6vw, 1.3125rem);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.story-name {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.story-name b { color: var(--ink); font-weight: 700; font-family: var(--serif); font-size: 1.0625rem; }
@media (max-width: 720px) {
  .story-inner { grid-template-columns: 1fr; text-align: center; }
  .story-photo { width: min(66%, 260px); margin-inline: auto; }
  .story-quote { text-align: left; }
}

/* ========================= ラインナップ（3種類） ========================= */
.lineup {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.p-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(42,39,36,0.08);
}
.p-card .ph {
  aspect-ratio: 1 / 1;
  border-radius: 0;
}
.p-card .ph::before { inset: 0.75rem; }
.p-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.5rem, 3vw, 1.9rem);
}
.p-tag {
  align-self: flex-start;
  margin-bottom: 0.85rem;
  padding: 0.35em 1em;
  border-radius: 999px;
  background: var(--ivory);
  border: 1px solid var(--line);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
}
.p-name {
  margin: 0 0 0.15rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.p-size {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  font-weight: 700;
}
.p-desc {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 2;
  color: var(--ink-muted);
}
.p-flavors {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.p-flavors dt {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-bottom: 0.55rem;
}
.p-flavors dd { margin: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.p-flavors dd span {
  padding: 0.3em 0.85em;
  border-radius: 999px;
  background: var(--ivory);
  font-size: 0.75rem;
  color: var(--ink);
}
@media (max-width: 860px) { .lineup { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; } }

/* ラインナップ＝実物写真＋「いろんな味」（味/ターゲットで分けない） */
.lineup-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  max-width: 60rem;
  margin: 0 auto;
}
.lineup-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(42,39,36,0.14);
}
.lineup-body .p-flavors { margin-top: 1.5rem; }
/* アイボリー背景に載るので、チップは白地＋枠で見せる */
.lineup-body .p-flavors dd span {
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.8125rem;
  padding: 0.4em 1em;
}
@media (max-width: 760px) { .lineup-feature { grid-template-columns: 1fr; } }

/* ========================= お客様の声（味の感想） ========================= */
.voice-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  max-width: 62rem;
  margin: 0 auto;
}
.voice-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(42,39,36,0.14);
}
.voice-quote {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2.6vw, 1.375rem);
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.voice-quote b { color: var(--gold-deep); }
@media (max-width: 760px) { .voice-inner { grid-template-columns: 1fr; } }

/* ========================= 体験特典（コンバージョン手前） ========================= */
.perk {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  background: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}
.perk-mark {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4em 1.2em;
  border-radius: 999px;
  background: linear-gradient(135deg, #cdae74, #a5854a);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.perk h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.perk p { margin: 0 auto; max-width: 34rem; font-size: 0.9375rem; line-height: 2.1; color: var(--ink-muted); }
.perk .btn { margin-top: 1.75rem; }
.perk-note { margin-top: 1rem !important; font-size: 0.8125rem !important; color: var(--gold-deep) !important; }
