/* ===================================================================
 * 固定ページ共通スタイル（ご利用ガイド / 評価基準について 等）
 *
 * カラーパレット:
 *   theme/main: #012B54
 *   text/gray:  #797777
 *   text/black: #383838
 *   bg/blue:    #E5EEF6
 * =================================================================== */

/* --- ページタイトル（日本語 + 英語サブタイトル） --- */
.p-static__title {
  margin: 0 0 24px;
}
.p-static__title-ja {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #012B54;
  letter-spacing: 1.44px;
  line-height: 1.4;
}
.p-static__title-en {
  display: block;
  font-size: 10px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #797777;
  letter-spacing: 1px;
  line-height: 1.6;
  margin-top: 4px;
}

/* --- 簡易目次（アンカーリンク一覧） --- */
.p-static__toc {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.p-static__toc li {
  line-height: 1.7;
}
.p-static__toc a {
  font-size: 15px;
  color: #272626;
  text-decoration: underline;
}
.p-static__toc a:hover {
  opacity: 0.7;
}

/* --- h2 見出し（コスパ記事と同一デザイン） --- */
.p-static__section h2 {
  font-size: 24px;
  font-weight: 700;
  border-left: 5px solid #383838;
  background: #E5EEF6;
  padding: 10px 15px;
  margin: 0 0 24px;
  line-height: normal;
  letter-spacing: 0.72px;
  color: #383838;
}

/* --- h3 サブ見出し --- */
.p-static__section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #383838;
  margin: 32px 0 16px;
  padding-left: 12px;
  border-left: 3px solid #383838;
  line-height: 1.5;
}

/* --- セクション --- */
.p-static__section {
  margin-bottom: 40px;
}

/* --- 本文テキスト --- */
.p-static__section p {
  font-size: 15px;
  font-weight: 400;
  color: #383838;
  line-height: 2;
  margin: 0 0 16px;
}
.p-static__section a {
  color: #38A2E6;
  text-decoration: underline;
}
.p-static__section a:hover {
  opacity: 0.7;
}

/* --- スムーズスクロール --- */
html {
  scroll-behavior: smooth;
}

/* --- レスポンシブ --- */
@media (max-width: 750px) {
  .p-static__title-ja {
    font-size: 20px;
  }
  .p-static__section h2 {
    font-size: 20px;
    padding: 8px 12px;
  }
  .p-static__section h3 {
    font-size: 16px;
  }
}
