/* =========================
   情報公開ページ
========================= */

#disclosure {
  padding-top: 80px;
}

.disclosure-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* ヒーロー */

.disclosure-hero {
  text-align: center;
  padding: 60px 0 40px;
  background: #f7f7f7;
}

.disclosure-hero-title {
  font-size: 36px;
  font-weight: 700;
  color: #3b7960;
  margin: 0 0 12px;
}

.disclosure-hero-desc {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* コンテンツ */

.disclosure-content {
  padding: 60px 0 100px;
}

/* セクション（GH / 自立訓練） */

.disclosure-section {
  margin-bottom: 60px;
}

.disclosure-section:last-child {
  margin-bottom: 0;
}

.disclosure-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background: #3b7960;
  padding: 14px 22px;
  border-radius: 8px;
  margin: 0 0 28px;
  line-height: 1.4;
}

/* カテゴリー（書類種別） */

.disclosure-category {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.disclosure-category-title {
  font-size: 16px;
  font-weight: 600;
  color: #3b7960;
  background: #f0f7f4;
  padding: 12px 20px;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.disclosure-category-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b7960;
  flex-shrink: 0;
}

/* PDFリスト */

.pdf-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pdf-list__item {
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdf-list__item:last-child {
  border-bottom: none;
}

.pdf-list__item a {
  color: #3b7960;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

.pdf-list__item a::before {
  content: '\f1c1'; /* Font Awesome PDF icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #e53935;
  font-size: 16px;
  flex-shrink: 0;
}

.pdf-list__item a:hover {
  color: #2a5c49;
  text-decoration: underline;
}

/* 準備中バッジ */

.pdf-list__item--pending {
  color: #999;
  font-size: 13px;
}

.pdf-list__item--pending::before {
  content: '−';
  flex-shrink: 0;
}

/* 義務バッジ */

.badge-required {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc80;
  margin-left: auto;
  white-space: nowrap;
}

/* スマホ対応 */

@media (max-width: 768px) {

  .disclosure-hero-title {
    font-size: 26px;
  }

  .disclosure-section-title {
    font-size: 18px;
    padding: 12px 16px;
  }

  .disclosure-category-title {
    font-size: 14px;
    padding: 10px 16px;
  }

  .pdf-list__item {
    padding: 10px 16px;
  }

}
