/* ページ全体の基本スタイル */
body {
  font-family: "Helvetica Neue", sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

/* メインタイトル */
.main-title {
  font-size: 24px;
  text-align: center;
  margin: 40px 0 20px;
  color: #333;
}

/* 資料一覧テーブル */
.document-table {
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 18px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* テーブルのセル */
.document-table th,
.document-table td {
  border: 1px solid #ccc;
  padding: 14px 18px;
  text-align: left;
}

/* ヘッダー行 */
.document-table th {
  background-color: #f0f0f0;
  font-weight: bold;
  color: #444;
}

/* ダウンロードリンク */
.document-table a {
  color: #0077cc;
  font-weight: bold;
  text-decoration: none;
}

.document-table a:hover {
  text-decoration: underline;
}

/* レスポンシブ対応（オプション） */
@media screen and (max-width: 768px) {
  .document-table {
    width: 95%;
    font-size: 16px;
  }

  .main-title {
    font-size: 20px;
  }
}
