/* reportページ */
/* 全体 */
.report-archive h1{
  margin-bottom: 20px;
}

.report-archive hr{
  margin-bottom: 20px;
}

.report-archive {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
}

/* 年度ごとのセクション */
.report-year {
  margin-bottom: 60px;
}

.report-year h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  border-left: 6px solid #538135;
  padding-left: 10px;
}

/* 表の見た目 */
.report-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.report-table th,
.report-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.report-table th {
  background: #a0bf89;
  font-weight: bold;
}

.report-table tr:nth-child(even) td {
  background: #fafafa;
}

.report-table td a {
  color: #538135;
  text-decoration: none;
  font-weight: bold;
}

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

.report-table td {
  font-size: 0.95rem;
}

.report-table td:contains("公開なし") {
  color: #aaa;
  font-style: italic;
}

/* 年度関係ない資料 */
.report-general {
  margin-bottom: 40px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
}

.report-general h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #538135;
  padding-bottom: 5px;
}

.report-general ul {
  list-style: none;
  padding: 0;
}

.report-general ul li {
  margin-bottom: 8px;
}

.report-general ul li a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #538135;
  border-radius: 4px;
  color: #538135;
  text-decoration: none;
  transition: 0.2s;
}

.report-general ul li a:hover {
  background: #538135;
  color: #fff;
}

/* reportページ */