/* ==========================================================================
   共通リセット & 基本設定
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.7;
  color: #333333;
  background-color: #f8f9fa;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #0056b3;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   レイアウト（ヘッダー・ナビ・フッター）
   ========================================================================== */
.site-header {
  background-color: #ffffff;
  border-bottom: 3px solid #003366;
  padding: 20px;
  text-align: center;
}
.site-title {
  font-size: 24px;
  color: #003366;
  font-weight: bold;
}
.site-nav {
  background-color: #003366;
}
.site-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.site-nav a {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.site-nav a:hover, .site-nav .current {
  background-color: #002244;
  text-decoration: none;
}

/* メインコンテナ */
.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ページタイトル */
.page-title {
  font-size: 22px;
  color: #003366;
  border-left: 5px solid #003366;
  padding-left: 15px;
  margin-bottom: 25px;
}

/* コンテンツエリア */
.main-content {
  padding: 30px 0;
}

/* 表組み（テーブル）の統一 */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  border: 1px solid #dddddd;
  padding: 12px;
  text-align: left;
}
th {
  background-color: #f2f2f2;
  font-weight: bold;
  width: 30%;
}

/* フッター */
.site-footer {
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  margin-top: 50px;
}

/* ==========================================================================
   レスポンシブ（スマホ対応）
   ========================================================================== */
@media (max-width: 768px) {
  .site-nav ul {
    flex-direction: column;
  }
  .site-nav a {
    text-align: center;
    border-bottom: 1px solid #002244;
  }
  th, td {
    display: block;
    width: 100% !important;
  }
  th {
    background-color: #003366;
    color: #ffffff;
  }
}