@charset "utf-8";
/*===============================================
 ビジネス・ネイビーブルーカスタム Ver.1.0
===============================================*/

/* 基本設定 */
body {
  color: #2b2f38; /* ややクールな黒 */
  background-color: #f7faff; /* 明るいブルーグレー背景 */
  font-size: 100%;
  font-family: "游ゴシック Medium", YuGothic, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}

html>/**/body {
  font-size: 12px;
}

p {
  font-size: 1.6em;
  line-height: 150%;
}

@media (max-width: 640px) {
  p {
    font-size: 1.5em;
  }
}

/* 背景色ブロック */
.bg_01, .bg_02, .bg_03 {
  background-color: #eef5fb; /* 薄めブルー背景 */
}

/* ヘッダー */
header {
  width: 100%;
  background-color: #f7faff;
  box-sizing: border-box;
  border-bottom: 10px solid #2b5c88; /* 濃紺 */
}

/* 見出し */
.heading-main {
  font-size: 2.5em;
  font-weight: bold;
  color: #2b5c88; /* 濃紺 */
  text-align: center;
  margin: 1em auto;
  border-bottom: 3px solid #2b5c88;
  padding-bottom: 0.2em;
  display: block;
  width: fit-content;
}

/* テーブル */
#table03 {
  font-size: 1.4em;
  text-align: center;
  margin: 0 auto;
  border-collapse: collapse;
  width: 90%;
  font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
}

#table03 th {
  background-color: #d0e4f7; /* 淡いブルー */
  color: #000;
  border: 1px solid #fff;
}

#table03 td {
  background-color: #eaf2f8; /* アイシーブルー */
  color: #000;
  border: 1px solid #fff;
}

#table03 .head {
  background-color: #2b5c88;
  color: #fff;
}

#table03 td span {
  font-size: 0.7em;
  color: #777;
}

/* スマホ時テーブル */
@media only screen and (max-width: 768px) {
  #table03 {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  #table03 .fixed {
    position: sticky;
    left: 0;
  }
}

/* ボタン */
a.btn_03 {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  margin: 0 auto;
  padding: 0.5em;
  font-weight: bold;
  border: 2px solid #2b5c88;
  color: #fff !important;
  border-radius: 100vh;
  transition: 0.5s;
  background-color: #2b5c88;
}
a.btn_03:hover {
  color: #2b2f38;
  background: #3e7bb4;
}

/* フッター */
footer {
  background-color: #2b5c88; /* 濃紺で統一感 */
  color: #fff;
  padding: 1em;
  text-align: center;
}

/* フッター内リンクの見やすさ向上 */
.footer-link a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1em;
}

.footer-link a:hover {
  color: #cce4ff; /* ホバー時に薄い水色でアクセント */
}
