/* menu.css — 撮影メニューページ共通スタイル
   依存：global.css / components.css
   クラス命名：.ph-*（page-hero）/ .mn-*（menu-page各セクション）
   ================================================================ */

/* ── ① ヒーロー（.ph） ─────────────────────────────────────── */
.ph {
  position: relative;
  width: 100%;
  height: 56vw;
  max-height: 540px;
  min-height: 260px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ph {
    height: 42vw;
    max-height: 800px;
    min-height: 380px;
  }
}

.ph-img-wrap {
  position: absolute;
  inset: 0;
}
.ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.32) 60%,
    rgba(0,0,0,.55) 100%
  );
}

.ph-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: clamp(24px, 5vw, 56px);
}
.ph-sub {
  color: rgba(255,255,255,.75);
  margin-bottom: 6px;
}
.ph-heading {
  font-family: var(--jp);
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: .14em;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

/* ── ② 共感コピー（.mn-empathy） ─────────────────────────── */
.mn-empathy { background: var(--cream); }

/* ── ③ 撮影実例（.mn-works） ──────────────────────────────── */
.mn-works { background: var(--warm-white); }

.mn-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .mn-works-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .mn-works-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── ④ 料金（.mn-price） ──────────────────────────────────── */
.mn-price { background: var(--cream); }

.mn-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .mn-price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .mn-price-grid { grid-template-columns: repeat(3, 1fr); }
}

.mn-price-note {
  font-size: .8rem;
  color: var(--text2);
}

/* 料金後 LINE CTA バナー（.mn-line-mid） */
.mn-line-mid {
  background: var(--indigo);
  padding: 28px 0;
  text-align: center;
}
.mn-line-mid-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: #fff;
  transition: background var(--t), border-color var(--t);
}
.mn-line-mid-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* ── ⑤ 撮影の流れ（.mn-steps） ───────────────────────────── */
.mn-steps { background: var(--warm-white); }

.mn-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}
.mn-step {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
}
.mn-step:first-child { padding-top: 0; }
.mn-step:last-child  { border-bottom: none; padding-bottom: 0; }

/* ステップ間の縦線 */
.mn-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: calc(28px + 40px);
  bottom: -1px;
  width: 2px;
  background: var(--light-gray);
}
.mn-step:first-child::after { top: calc(40px); }

.mn-step-num {
  font-family: var(--en);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--gold);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--warm-white);
  position: relative;
  z-index: 1;
}
.mn-step-body { flex: 1; padding-top: 6px; }
.mn-step-title {
  font-family: var(--jp);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.mn-step-desc { margin-top: 4px; }

@media (min-width: 768px) {
  .mn-steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
  }
  .mn-step {
    flex-direction: column;
    padding: 0;
    border-bottom: none;
  }
  .mn-step::after { display: none; }
  .mn-step-body { padding-top: 12px; }
}

/* ── ⑥ FAQ（.mn-faq） ────────────────────────────────────── */
.mn-faq { background: var(--cream); }
.mn-faq-list { display: flex; flex-direction: column; gap: 0; }

/* ── ⑦ LINE CTA（.line-cta-sec は components.css 共通） ──── */
.line-cta-sec { background: var(--charcoal); }

/* ── ⑧ 信頼証明バー（.nb__trust）＝全撮影メニュー共通・トップと線デザイン統一 ──────
   トップ（front-page の .trust-proof）を基準に「線のデザイン」を統一：
   上下ボーダー＋縦区切りはいずれもゴールド細線 rgba(232,212,163,.32)。暗背景HERO前提。
   ここに一本化し、各 menu-{slug}.css では .nb__trust を再定義しない。
   ＝今後追加する撮影メニューページも、文字情報だけでなく線デザインまで自動で揃う。 */
.nb__trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin: 0 0 14px 0;
  padding: 13px 0;
  width: 100%;
  max-width: 30em; /* トップ（.trust-proof）と同じ上限＝左列いっぱいに間延びさせずコンパクトに揃える */
  border-top: 1px solid rgba(232,212,163,.32);
  border-bottom: 1px solid rgba(232,212,163,.32);
}
.nb__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 0 6px;
}
.nb__trust-sep {
  width: 1px;
  height: 32px;
  background: rgba(232,212,163,.32);
  flex-shrink: 0;
}
.nb__trust-num {
  font-family: var(--en);
  font-size: clamp(.98rem, 2.4vw, 1.2rem);
  font-weight: 600; /* トップ（.tp-num）と同じ太さに揃える */
  letter-spacing: .04em;
  line-height: 1.1;
  color: #e8d4a3;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
/* 子の素 span は親 font-family（var(--en)）を継承（単独 span ルールの打ち消し） */
.nb__trust-num > span:not(.nb__trust-unit) { font-family: inherit; }
.nb__trust-unit {
  font-family: var(--jp);
  font-size: .58rem;
  letter-spacing: .04em;
  margin-left: 2px;
  color: rgba(232,212,163,.9);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.nb__trust-label {
  font-family: var(--jp);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.3;
  color: rgba(232,212,163,.85);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
/* SP：トップ（.trust-proof）同様、3列目が画面外へはみ出さないよう固定上限でビューポート内に収める */
@media (max-width: 767px) { .nb__trust { max-width: 340px; } }
@media (max-width: 359px) { .nb__trust { max-width: 300px; } }
/* SP：トップ（.trust-proof）の 419px 調整と同値で高さ・字詰めを統一 */
@media (max-width: 419px) {
  .nb__trust { padding: 11px 0; }
  .nb__trust-num { font-size: .98rem; }
  .nb__trust-label { font-size: .56rem; letter-spacing: 0; }
  .nb__trust-item { padding: 0 3px; }
}
