@charset "utf-8";

/* ============================================================
   disclosure.css — 情報公開ページ専用スタイル
   privacy.css / entry.css のデザインシステムに準拠
============================================================ */

/* ============================================================
   ※ カラー変数・.page-header 共通スタイルは style.css で定義済み
============================================================ */


/* ===========================
   本文エリア全体ラッパー
=========================== */
.disclosure-body {
  background: #fff;
  padding: 0 40px 100px;
}

.disclosure-body__inner {
  max-width: 860px;
  margin: 0 auto;
}


/* ===========================
   リード文
=========================== */
.disclosure-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.90rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 56px;
  padding: 28px 32px;
  background: var(--green-pale);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 8px 8px 0;
}


/* ===========================
   セクション共通（見出し部）
=========================== */
.disclosure-section {
  margin-bottom: 64px;
}

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

.disclosure-section__head {
  margin-bottom: 26px;
}

.disclosure-section__eyebrow {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.disclosure-section__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-mid);
}

.disclosure-section__lead {
  margin-top: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}


/* ===========================
   定款・規程類（恒久文書カード）
=========================== */
.disclosure-doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.disclosure-doc-card {
  flex: 1 1 calc(50% - 10px);
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: 14px;
  padding: 28px 26px;
}

.disclosure-doc-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.disclosure-doc-card__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.80rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.disclosure-doc-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.disclosure-doc-card__btn:hover {
  background: #b05526;
  box-shadow: 0 8px 24px rgba(196,98,45,0.35);
  transform: translateY(-2px);
}

.disclosure-doc-card__btn-icon {
  font-size: 0.88rem;
}

.disclosure-doc-card__status {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid #d9d9d4;
  border-radius: 40px;
  padding: 9px 20px;
}


/* ===========================
   年度ごとの開示書類テーブル
=========================== */
.disclosure-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--green-light);
}

.disclosure-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: #fff;
}

.disclosure-table th,
.disclosure-table td {
  padding: 16px 22px;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
}

.disclosure-table thead th {
  background: var(--green-mid);
  color: #fff;
  font-size: 0.80rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.disclosure-table tbody tr {
  border-bottom: 1px solid #eee;
}

.disclosure-table tbody tr:last-child {
  border-bottom: none;
}

.disclosure-table tbody tr:nth-child(even) {
  background: var(--green-pale);
}

.disclosure-table__year {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.disclosure-table__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.80rem;
  font-weight: 500;
  color: var(--green-mid);
  background: #fff;
  border: 1px solid var(--green-mid);
  border-radius: 40px;
  padding: 7px 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.disclosure-table__link:hover {
  background: var(--green-mid);
  color: #fff;
}

.disclosure-table__link-icon {
  font-size: 0.82rem;
}

.disclosure-table__status {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}


/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 768px) {

  .disclosure-body {
    padding: 60px 16px 70px;
  }

  .disclosure-lead {
    font-size: 0.84rem;
    padding: 20px 20px;
    margin-bottom: 40px;
  }

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

  .disclosure-doc-card {
    flex: 1 1 100%;
    padding: 24px 22px;
  }

  .disclosure-table th,
  .disclosure-table td {
    padding: 13px 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .disclosure-body {
    padding: 70px 32px 0;
  }
}