/* ============================================================
   料金案内ページ専用スタイル
   menu.css
   依存: style.css（共通変数・ヘッダー・フッター）
============================================================ */

/* ---- レイアウト共通 ---- */
.mn-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.mn-container-narrow {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.mn-sec {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #F3EEE9;
}
.mn-sec--white {
  background: #ffffff;
}
.mn-sec--sub {
  background: #EDE8E3;
}

/* ---- セクションラベル ---- */
.mn-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: #2d6a4f;
  margin-bottom: .8rem;
  text-align: center;
  text-transform: uppercase;
}

/* ---- セクション見出し ---- */
.mn-heading {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  color: #163A2E;
  letter-spacing: .04em;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 1.2rem;
}
.mn-heading--left {
  text-align: left;
}

/* ---- アクセントバー ---- */
.mn-accent-bar {
  width: 36px;
  height: 2px;
  background: #2d6a4f;
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* ---- 本文 ---- */
.mn-body {
  font-size: clamp(.875rem, 1.5vw, .95rem);
  color: #5a5a5a;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.mn-body--center {
  text-align: center;
}

/* ============================================================
   ヒーロー
============================================================ */
.mn-hero {
  padding: clamp(60px, 10vw, 100px) 0 clamp(48px, 7vw, 80px);
  background: #ffffff;
  border-bottom: 1px solid #E8E2DC;
}

.mn-hero-breadcrumb {
  font-size: .72rem;
  color: #999;
  margin-bottom: 1.6rem;
  letter-spacing: .03em;
}
.mn-hero-breadcrumb a {
  color: #2d6a4f;
  text-decoration: none;
}
.mn-hero-breadcrumb a:hover { text-decoration: underline; }
.mn-hero-breadcrumb span { margin: 0 .35em; color: #bbb; }

.mn-hero-eyebrow {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: #2d6a4f;
  margin-bottom: .8rem;
  text-transform: uppercase;
}

.mn-hero-heading {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  color: #163A2E;
  letter-spacing: .04em;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.mn-hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: #6E6E6E;
  line-height: 1.8;
  margin-bottom: 1.4rem;
  max-width: 620px;
}

.mn-hero-body {
  font-size: clamp(.85rem, 1.4vw, .95rem);
  color: #777;
  line-height: 1.9;
  max-width: 600px;
}

/* ============================================================
   選び方ガイドボックス
============================================================ */
.mn-guide-box {
  background: #F4F9F6;
  border-left: 3px solid #2d6a4f;
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.6rem;
  margin: 0 auto 2.4rem;
  max-width: 680px;
}
.mn-guide-box-heading {
  font-size: .82rem;
  font-weight: 500;
  color: #163A2E;
  margin-bottom: .5rem;
  letter-spacing: .03em;
}
.mn-guide-box p {
  font-size: .82rem;
  color: #5a6a60;
  line-height: 1.85;
  margin: 0;
}

/* ============================================================
   料金カード
============================================================ */
.mn-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
  align-items: start;
}

@media (max-width: 767px) {
  .mn-price-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.mn-price-card {
  background: #ffffff;
  border: 1px solid rgba(22, 58, 46, .10);
  border-radius: 14px;
  padding: 1.8rem 1.4rem 1.6rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .2s;
}
.mn-price-card:hover {
  box-shadow: 0 10px 28px rgba(22, 58, 46, .09);
  transform: translateY(-2px);
}

.mn-price-card--featured {
  background: #F2F8F5;
  border: 2px solid #2d6a4f;
  box-shadow: 0 12px 36px rgba(22, 58, 46, .13);
}
.mn-price-card--featured:hover {
  box-shadow: 0 16px 40px rgba(22, 58, 46, .16);
}

/* スマホ：50分カードを先頭に視線が集まるよう強調 */
@media (max-width: 767px) {
  .mn-price-card--featured {
    order: -1;
  }
}

.mn-price-badge {
  display: inline-block;
  background: #2d6a4f;
  color: #fff;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: .9rem;
}

.mn-price-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: #2d6a4f;
  margin-bottom: .3rem;
  text-transform: uppercase;
}

.mn-price-duration {
  font-size: 1.2rem;
  font-weight: 500;
  color: #163A2E;
  letter-spacing: .04em;
  margin-bottom: .4rem;
}

.mn-price-amount {
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  font-weight: 300;
  color: #163A2E;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: .2rem;
}
.mn-price-card--featured .mn-price-amount {
  color: #1a5c3a;
}
.mn-price-amount small {
  font-size: .55em;
  color: #888;
  font-weight: 400;
}

/* おすすめの方リスト */
.mn-price-for {
  list-style: none;
  text-align: left;
  margin: 1rem 0 .8rem;
  padding: .9rem 1rem;
  background: rgba(22, 58, 46, .04);
  border-radius: 8px;
  flex: 1;
}
.mn-price-card--featured .mn-price-for {
  background: rgba(22, 58, 46, .06);
}
.mn-price-for li {
  font-size: .76rem;
  color: #4a5a52;
  line-height: 1.7;
  padding-left: 1.1em;
  position: relative;
}
.mn-price-for li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #2d6a4f;
}

.mn-price-desc {
  font-size: .75rem;
  color: #777;
  line-height: 1.75;
  margin: .6rem 0 1rem;
  text-align: left;
}

/* カード内CTAボタン */
.mn-price-cta {
  display: block;
  margin-top: auto;
  padding: .7rem 1rem;
  background: #2d6a4f;
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s, opacity .2s;
  text-align: center;
}
.mn-price-cta:hover { background: #1e4f3a; }
.mn-price-card:not(.mn-price-card--featured) .mn-price-cta {
  background: transparent;
  color: #2d6a4f;
  border: 1px solid rgba(45, 106, 79, .45);
}
.mn-price-card:not(.mn-price-card--featured) .mn-price-cta:hover {
  background: rgba(45, 106, 79, .06);
}

/* カード後の案内ボックス */
.mn-after-price-box {
  margin-top: 2.4rem;
  background: #FFFCF8;
  border: 1px solid rgba(22, 58, 46, .12);
  border-radius: 12px;
  padding: 1.8rem 2rem;
  text-align: center;
}
.mn-after-price-box h3 {
  font-size: .92rem;
  font-weight: 500;
  color: #163A2E;
  margin-bottom: .7rem;
  letter-spacing: .03em;
}
.mn-after-price-box p {
  font-size: .82rem;
  color: #666;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ---- 旧・鍼灸追加 (非表示・削除済み互換) ---- */
.mn-add-box { display: none; }
.mn-add-label {
  font-size: .78rem;
  color: #2d6a4f;
  font-weight: 500;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.mn-add-price {
  font-size: 1.25rem;
  font-weight: 400;
  color: #163A2E;
}
.mn-add-note {
  font-size: .75rem;
  color: #999;
  line-height: 1.65;
}

@media (max-width: 480px) {
  .mn-add-box { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

/* ============================================================
   保険・療養費ボックス
============================================================ */
.mn-notice-box {
  background: #FFFCF8;
  border-left: 3px solid #2d6a4f;
  border-radius: 0 8px 8px 0;
  padding: 1.3rem 1.6rem;
  margin-top: 1.6rem;
}
.mn-notice-box p {
  font-size: .82rem;
  color: #666;
  line-height: 1.85;
  margin: 0;
}
.mn-notice-title {
  font-size: .8rem;
  font-weight: 500;
  color: #163A2E;
  margin-bottom: .5rem;
  letter-spacing: .04em;
}

/* ============================================================
   LINE CTAウィジェット（このページ専用レイアウト）
============================================================ */
.mn-line-widget {
  text-align: center;
  margin: 2rem auto 0;
}
.mn-line-title {
  font-size: 1rem;
  font-weight: 500;
  color: #163A2E;
  margin-bottom: 1rem;
  letter-spacing: .03em;
}

/* ============================================================
   FAQアコーディオン（fx-faqクラス共用）
============================================================ */
.mn-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2rem;
}

/* ============================================================
   最後のCTA
============================================================ */
.mn-cta-sec {
  background: #163A2E;
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}

.mn-cta-heading {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: .05em;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.mn-cta-body {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  margin-bottom: 1.8rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA内LINE widget（ダーク背景） */
.mn-cta-sec .line-cta-title { color: rgba(232,245,239,.92); }
.mn-cta-sec .line-note       { color: rgba(255,255,255,.55); }

/* ============================================================
   関連リンク
============================================================ */
.mn-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 1.6rem;
}
.mn-related-link {
  font-size: .82rem;
  color: #2d6a4f;
  text-decoration: none;
  border: 1px solid rgba(45,106,79,.25);
  border-radius: 6px;
  padding: .5rem 1rem;
  transition: background .2s;
}
.mn-related-link:hover { background: rgba(45,106,79,.06); }
