@charset "UTF-8";

/* ===========================
   料金ページ専用CSS（price.css）
   このファイルはpriceページにのみ適用されます
=========================== */


/* ===========================
   全セクション共通パーツ
=========================== */
section { padding: 96px 80px; }

/* 英語小見出し */
.section-label { font-size: 13px; letter-spacing: 0.25em; color: var(--teal-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--teal); }

/* 日本語大見出し */
.section-title { font-family: 'Shippori Mincho', serif; font-size: clamp(28px, 3.5vw, 40px); line-height: 1.5; margin-bottom: 16px; color: var(--navy); }

/* 見出し下の説明文 */
.section-desc { color: var(--text-light); font-size: 18px; line-height: 2.2; font-weight: 300; }

/* メインボタン */
.btn-primary { background: var(--teal); color: var(--navy); padding: 16px 36px; font-size: 18px; font-weight: 700; text-decoration: none; border-radius: 100px; display: inline-block; transition: all 0.2s; border: 2px solid var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }

/* ===========================
   ヒーローセクション（紺背景）
   ページ最上部のタイトルエリア
=========================== */
.hero { min-height: 50vh; background: var(--navy); display: flex; align-items: center; padding: 140px 80px 80px; position: relative; overflow: hidden; }
/* 右上の光るグラデーション装飾 */
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(130,216,208,0.1) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 1; max-width: 760px; }
/* 英語ラベル（PRICE など） */
.hero-label { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: 0.2em; color: var(--teal); margin-bottom: 28px; }
.hero-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--teal); }
/* ページタイトル */
.hero h1 { font-family: 'Shippori Mincho', serif; font-size: clamp(32px, 5vw, 56px); color: var(--white); line-height: 1.5; font-weight: 700; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--teal); }
/* サブテキスト */
.hero-sub { color: rgba(255,255,255,0.85); font-size: 18px; line-height: 2.2; font-weight: 300; }

/* ===========================
   コンセプトセクション（薄ティール背景）
   料金の考え方・コンセプトを説明するエリア
=========================== */
.concept { background: var(--teal-pale); border-bottom: 3px solid var(--teal-mid); }
.concept-inner { max-width: 800px; margin: 0 auto; text-align: center; }
/* 大きな引用テキスト */
.concept-quote { font-family: 'Shippori Mincho', serif; font-size: clamp(22px, 3vw, 32px); color: var(--navy); line-height: 1.9; margin-bottom: 32px; }
.concept-quote em { font-style: normal; color: var(--teal-dark); border-bottom: 2px solid var(--teal); padding-bottom: 2px; }
.concept-body strong { color: var(--navy); font-weight: 700; }

/* ===========================
   月額プランセクション（白背景）
   2列のプランカードを表示
=========================== */
.plans { background: var(--white); }
/* プランカードグリッド（2列） */
.plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 56px; }

/* プランカード共通 */
.plan-card { border: 2px solid var(--border); border-radius: 24px; overflow: hidden; transition: all 0.3s; }
.plan-card:hover { box-shadow: 0 12px 48px rgba(130,216,208,0.2); transform: translateY(-4px); }
/* おすすめカード（ティール枠線） */
.plan-card.featured { border-color: var(--teal); }

/* プランカードのヘッダー部分（上半分） */
.plan-header { padding: 36px 36px 28px; background: var(--bg2); }
.plan-card.featured .plan-header { background: var(--navy); }

/* おすすめバッジ */
.plan-badge { display: inline-block; background: var(--teal); color: var(--navy); font-size: 13px; font-weight: 700; padding: 4px 14px; border-radius: 100px; margin-left: 16px; vertical-align: middle; position: relative; top: -4px; }

/* プラン名 */
.plan-name { font-family: 'Shippori Mincho', serif; font-size: 28px; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.plan-card.featured .plan-name { color: var(--white); }

/* 料金表示エリア */
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.plan-price-num { font-family: 'Shippori Mincho', serif; font-size: 52px; color: var(--navy); line-height: 1; }
.plan-card.featured .plan-price-num { color: var(--teal); }
.plan-price-unit { font-size: 18px; color: var(--text-light); }
.plan-card.featured .plan-price-unit { color: rgba(255,255,255,0.7); }
.plan-tax { font-size: 15px; color: var(--text-light); font-weight: 300; margin-left: 4px; }
.plan-card.featured .plan-tax { color: rgba(255,255,255,0.5); }

/* プランのキャッチフレーズ */
.plan-tagline { font-size: 18px; color: var(--text-light); font-weight: 300; margin-top: 12px; line-height: 1.8; }
.plan-card.featured .plan-tagline { color: rgba(255,255,255,0.75); }

/* プランカード内のセクション小見出し */
.plan-section-title { font-size: 15px; font-weight: 700; color: var(--teal-dark); letter-spacing: 0.1em; margin-bottom: 16px; margin-top: 28px; }
.plan-section-title:first-child { margin-top: 0; }

/* 含まれる内容リスト */
.plan-list { list-style: none; }
.plan-list li { font-size: 18px; color: var(--text); padding: 10px 0 10px 28px; border-bottom: 1px solid var(--border); position: relative; font-weight: 300; line-height: 1.8; }
.plan-list li:last-child { border-bottom: none; }
.plan-list li::before { content: '✓'; color: var(--teal-dark); position: absolute; left: 0; font-weight: 700; }
.plan-list li strong { color: var(--navy); font-weight: 700; }

/* プランカード本文エリア */
.plan-body { padding: 28px 36px; }

/* プランカードのフッター部分（下半分） */
.plan-footer { padding: 24px 36px 36px; }
.plan-note { font-size: 15px; color: var(--text-light); line-height: 1.9; font-weight: 300; margin-bottom: 20px; }

/* ===========================
   提供価値セクション（紺背景）
   「月額に含まれるもの」を説明するエリア
=========================== */
.whatyouget { background: var(--navy); }
.whatyouget .section-label { color: var(--teal); }
.whatyouget .section-label::before { background: var(--teal); }
.whatyouget .section-title { color: var(--white); }
.whatyouget .section-desc { color: rgba(255,255,255,0.85); }
/* 3列グリッド */
.whatyouget-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.whatyouget-card { background: rgba(130,216,208,0.06); border: 1px solid rgba(130,216,208,0.2); border-radius: 16px; padding: 32px 24px; transition: all 0.3s; }
.whatyouget-card:hover { background: rgba(130,216,208,0.12); border-color: rgba(130,216,208,0.4); }
.whatyouget-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.whatyouget-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.4; }
.whatyouget-card p { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 2.0; font-weight: 300; }

/* ===========================
   セミナーセクション（薄グレー背景）
   セミナーメニューと料金を表示
=========================== */
.seminar { background: var(--bg2); }
/* セミナーカードグリッド（2列） */
.seminar-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.seminar-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 36px 32px; transition: all 0.3s; }
.seminar-card:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(130,216,208,0.15); }
/* セミナーカードの英語ラベル */
.seminar-card-label { font-size: 13px; color: var(--teal-dark); letter-spacing: 0.15em; display: block; margin-bottom: 8px; font-weight: 700; }
.seminar-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
/* 料金の大きな数字 */
.seminar-price { font-family: 'Shippori Mincho', serif; font-size: 36px; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.seminar-price span { font-size: 18px; color: var(--text-light); }
.seminar-card p { font-size: 18px; color: var(--text-light); line-height: 2.0; font-weight: 300; margin-top: 16px; }
.seminar-note { font-size: 15px; color: var(--text-light); margin-top: 8px; font-weight: 300; }

/* ===========================
   FAQセクション（白背景）
   よくある質問（Q&A形式）
=========================== */
.faq { background: var(--white); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
/* 質問テキスト */
.faq-q { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.faq-q::before { content: 'Q'; color: var(--teal-dark); font-family: 'Shippori Mincho', serif; font-size: 22px; display: inline; margin-bottom: 6px; margin-right: 10px;}
/* 回答テキスト */
.faq-a { font-size: 18px; color: var(--text-light); line-height: 2.2; font-weight: 300; }
.faq-a::before { content: 'A'; color: var(--teal); font-family: 'Shippori Mincho', serif; font-size: 22px; font-weight: 700; display: block; margin-bottom: 6px; }
.faq-a strong { color: var(--navy); font-weight: 700; }

.faq-a { display: none; }
.faq-item.active .faq-a { display: block; }
.faq-q { cursor: pointer; }

/* ===========================
   CTAセクション（紺背景）
   お問合せ誘導エリア
=========================== */
.cta { background: var(--navy); text-align: center; }
.cta .section-label { justify-content: center; color: var(--teal); }
.cta .section-label::before { background: var(--teal); }
.cta h2 { font-family: 'Shippori Mincho', serif; font-size: clamp(26px, 4vw, 44px); color: var(--white); line-height: 1.6; margin-bottom: 16px; }
.cta h2 em { font-style: normal; color: var(--teal); }
.cta p { color: rgba(255,255,255,0.85); font-size: 18px; line-height: 2.2; font-weight: 300; margin-bottom: 44px; }
.cta-note { font-size: 15px; color: rgba(255,255,255,0.6); margin-top: 18px; }


/* ===========================
   レスポンシブ：タブレット以下（900px以下）
=========================== */
@media (max-width: 900px) {
  section { padding: 64px 28px; }
  header { padding: 0 24px; }
  .hero { padding: 120px 28px 64px; }
  .plans-grid { grid-template-columns: 1fr; }      /* プランを1列に */
  .whatyouget-grid { grid-template-columns: 1fr; } /* 提供価値を1列に */
  .seminar-cards { grid-template-columns: 1fr; }   /* セミナーを1列に */
  nav a:not(.nav-cta) { display: none; }
  footer { padding: 40px 28px 28px; }
  .footer-inner { flex-direction: column; gap: 24px; }
}

/* ===========================
   レスポンシブ：スマホ（600px以下）
=========================== */
@media (max-width: 600px) {
  p, li { font-size: 18px !important; line-height: 2.2 !important; }
  .plan-price-num { font-size: 40px; } /* 料金数字を小さく */
  .concept-quote { font-size: 30px !important; }
}