@charset "UTF-8";

/* 全体設定 */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1600px;
  margin: 20px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ページヘッダー */
.page-header {
    margin-bottom: 20px;
    padding: 30px 35px;
    background: #a7e3ed;

}
  

.sub-title {
  font-size: 14px;
  color: #666666;
  margin: 0 0 5px 0;
}

.main-title {
  font-size: 22px;
  color: #005a9b;
  margin: 0 0 15px 0;
  font-weight: bold;
}

.entry-guide {
  font-size: 22px;
  font-weight: bold;
  color: #f0fafd;
  margin-bottom: 10px 10px;
  padding: 16px 24px;
  background-color: #005a9b;
  border-left: 4px solid #a7e3ed;
  display: inline-block;
}

/* スマホ・PC共通：横スクロール対応用の囲み枠 */
.table-wrapper {
  width: 100%;
  overflow-x: auto; /* ★横幅を超えたら自動でスライド可能にする */
  -webkit-overflow-scrolling: touch; /* スマホでのスクロールを滑らかに */
  margin-bottom: 20px;
}

/* データテーブルのデザイン */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background-color: #ffffff;
  white-space: nowrap; /* ★セル内の自動折り返しを禁止して1行表示に統一 */
}

/* 表の見出し（ヘッダー） */
.data-table th {
  background-color: #005a9b;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 14px;
  border: 1px solid #dadada;
  text-align: center;
}

/* データセル（格子状の明確な枠線） */
.data-table td {
  padding: 10px 14px;
  border: 1px solid #cccccc;
  vertical-align: middle;
}

/* 記述が長くなりがちな「その他PR」列だけ幅を少し広めに確保 */
.data-table td:nth-child(9) {
  min-width: 250px;
  white-space: normal; /* PR欄だけ文章量に応じて折り返しを許可する場合はここを指定 */
}

/* 偶数行の背景色（1行おきに薄いグレー） */
.data-table tbody tr:nth-child(even) {
  background-color: #f2f6f9;
}

/* パソコン表示時の行ホバー効果 */
.data-table tbody tr:hover {
  background-color: #eaf2f8;
}

/* 中央寄せ用クラス */
.text-center {
  text-align: center;
}

/* PDFリンクボタン */
.btn-link {
  display: inline-block;
  padding: 6px 10px;
  background-color: #19b7de;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.btn-link:hover {
  background-color: #0369a1;
}

/* ========================================
   スクロール案内
   ======================================== */

.scroll-note {
    margin: 8px 0 0;
    color: #005a9b;
    font-size: 24px;
    text-align: right;
}