
/* ===== common_large_v2.css (2025-09) =====
   全体の文字と見出しを確実に大きくする上書き用CSS。
   既存の common.css のセレクタ（#main h3 など）に合わせて上書きします。
*/

/* ベース（全体） */
html { -webkit-text-size-adjust: 100%; }
body {
  font-size: 16px !important;
  line-height: 1.8 !important;
}

/* 見出し（#main 側） */
#main h2 { font-size: 24px !important; line-height: 1.35; }
#main h3 { font-size: 21px !important; line-height: 1.35; }
#main h4 { font-size: 19px !important; line-height: 1.35; }
#main h5 { font-size: 17px !important; line-height: 1.4; }
#main h6 { font-size: 16px !important; line-height: 1.4; }

/* 見出し（#sub 側） */
#sub h2 { font-size: 20px !important; }

/* メニュー */
#menu li a { font-size: 16px !important; padding: 12px 20px !important; }

/* 本文表 */
#main table th, #main table td { font-size: 14px !important; }

/* フッター等 */
.copyright { font-size: 13px !important; }

/* タブレット以下でさらに大きく */
@media (max-width: 1024px) {
  body { font-size: 18px !important; line-height: 1.9 !important; }
  #menu li a { font-size: 17px !important; }
}

/* スマホ（縦持ち） */
@media (max-width: 768px) {
  body { font-size: 20px !important; line-height: 2.0 !important; }
  #main h2 { font-size: 28px !important; }
  #main h3 { font-size: 24px !important; }
  #main h4 { font-size: 22px !important; }
  #main h5 { font-size: 19px !important; }
  #sub h2 { font-size: 22px !important; }
  #menu li a { font-size: 18px !important; padding: 14px 16px !important; }
  #main table th, #main table td { font-size: 16px !important; }
  .copyright { font-size: 14px !important; }
}

/* 小型スマホ（〜480px） */
@media (max-width: 480px) {
  body { font-size: 22px !important; line-height: 2.1 !important; }
  #main h2 { font-size: 30px !important; }
  #main h3 { font-size: 26px !important; }
  #main h4 { font-size: 23px !important; }
  #menu li a { font-size: 19px !important; padding: 14px 12px !important; }
  #main table th, #main table td { font-size: 17px !important; }
  .copyright { font-size: 15px !important; }
}
/* ===== スマホ表示用の調整（少し小さく＋行間を狭める） ===== */

/* タブレット */
@media (max-width: 1024px) {
  body {
    font-size: 17px !important;   /* 18px → 少し下げる */
    line-height: 1.6 !important;  /* 1.9 → 狭める */
  }
}

/* スマホ（縦持ち） */
@media (max-width: 768px) {
  body {
    font-size: 18px !important;   /* 20px → 読みやすい大きさに */
    line-height: 1.6 !important;  /* 2.0 → 少し詰める */
  }
  #main h2 { font-size: 24px !important; }
  #main h3 { font-size: 21px !important; }
}

/* 小型スマホ（〜480px） */
@media (max-width: 480px) {
  body {
    font-size: 19px !important;   /* 22px → 下げる */
    line-height: 1.6 !important;  /* 2.1 → だいぶ詰める */
  }
  #main h2 { font-size: 25px !important; }
  #main h3 { font-size: 22px !important; }
}

