/* 情報公開ページ専用 CSS */
/* about.css のスタイルを継承（sub-hero など） */
@import url("about.css");

/* ==========================================
   全体ベース（文字サイズアップ）
========================================== */
body {
  font-size: 18px;        /* 基本文字サイズを大きめに */
  line-height: 1.9;
  color: #333;
}

/* 小さすぎる要素を揃える */
p,
li,
td,
th {
  font-size: 18px;
}

/* 見出し */
h1,
h2,
h3 {
  line-height: 1.4;
}

/* ===============================
   セクション共通
================================= */
.disclosure-section {
  padding: 90px 16px;
  position: relative;
}

.disclosure-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.disclosure-section--soft {
  background: rgba(255, 245, 225, 0.4);
}

/* ===============================
   学校情報 表デザイン
================================= */

.info-table-wrap {
  margin-top: 28px;
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th {
  width: 200px;
  padding: 18px;
  background: #fff7e2;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.info-table td {
  padding: 18px;
  font-size: 18px;
  line-height: 1.9;
  border-bottom: 1px solid #eee;
}

/* ===============================
   PDF カード（資料集 & 法人情報公開）
================================= */

/* カード全体を左寄せに */
.pdf-card,
.pdf-card-header,
.pdf-card-detail,
.pdf-detail-list li {
  text-align: left;
}

/* カードリスト */
.pdf-card-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* 基本カードスタイル */
.pdf-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 26px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pdf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

/* ヘッダー（アイコン・タイトル） */
.pdf-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
}

.pdf-card-header-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* アイコン */
.pdf-card-icon {
  font-size: 42px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

/* タイトル（例：学校評価 / いじめ防止基本方針 など） */
.pdf-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

/* サブ説明文 */
.pdf-card-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* ＋ / − インジケータ */
.pdf-card-toggle-indicator {
  font-size: 24px;
  line-height: 1;
  color: #ff9a3c;
  transition: transform 0.18s ease;
}

/* 開いたときは 45度回転（＋が×っぽく） */
.pdf-card.is-open .pdf-card-toggle-indicator {
  transform: rotate(45deg);
}

/* 詳細エリア開閉アニメーション */
.pdf-card-detail {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.25s ease,
    opacity 0.25s ease,
    margin-top 0.25s ease;
}

.pdf-card.is-open .pdf-card-detail {
  opacity: 1;
  margin-top: 16px;
}

/* ===============================
   PDF 詳細リスト
   （学校名 1行目＋タイトル/準備中 2行目）
================================= */

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

/* 1件ごとにブロック表示（左右分割しない） */
.pdf-detail-list li {
  display: block;
  padding: 10px 0;
  border-top: 1px dashed rgba(0,0,0,0.1);
}

.pdf-detail-list li:first-child {
  border-top: none;
}

/* 学校名：1行目 */
.pdf-detail-label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #444;
  margin-bottom: 4px;
}

/* タイトル or 準備中：2行目（学校名の下） */
.pdf-detail-link,
.pdf-detail-link--disabled {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 15px;
  white-space: normal;   /* タイトルが長いときは折り返し */
  margin-left: 0;        /* 右寄せを完全に解除 */
}

/* PDFボタン */
.pdf-detail-link {
  background: #ff9a3c;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255,154,60,0.45);
  transition: 0.12s ease;
}

.pdf-detail-link:hover {
  background: #ffb257;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,154,60,0.6);
}

/* 準備中バッジ */
.pdf-detail-link--disabled {
  background: #ddd;
  color: #777;
}

/* ===============================
   横長カード（法人情報公開の年度一覧）
================================= */

.pdf-card-list--wide {
  grid-template-columns: 1fr;
}

.pdf-card--wide {
  padding: 20px 26px;
}

/* ===============================
   スマホ最適化
================================= */
@media (max-width: 768px) {
  body {
    font-size: 17px;
  }

  .disclosure-section {
    padding: 60px 16px;
  }

  .disclosure-section-inner {
    max-width: 100%;
  }

  .info-table-wrap {
    padding: 24px 18px;
  }

  .info-table th {
    width: 140px;
    font-size: 16px;
  }

  .info-table td {
    font-size: 16px;
  }

  .pdf-card-list {
    grid-template-columns: 1fr;
  }

  .pdf-card-header-main {
    align-items: flex-start;
  }

  .pdf-card-title {
    font-size: 18px;
  }

  .pdf-card-icon {
    font-size: 36px;
  }

  .pdf-detail-label {
    font-size: 16px;
  }

  .pdf-detail-link,
  .pdf-detail-link--disabled {
    font-size: 14px;
  }
}
