@charset "utf-8";

/* ============================================================
   grantee.css — 助成決定団体ページ専用スタイル
   disclosure.css / officer.css のデザインシステムに準拠
============================================================ */

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


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

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


/* ===========================
   リード文
=========================== */
.grantee-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;
}


/* ===========================
   公募回ブロック
   （今後、回数が増えても同じ構造を
    繰り返すだけで対応できます）
=========================== */
.grantee-round {
  margin-bottom: 56px;
}

.grantee-round:last-of-type {
  margin-bottom: 0;
}

.grantee-round__head {
  margin-bottom: 24px;
}

.grantee-round__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;
}

.grantee-round__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);
}


/* ===========================
   団体カードリスト
=========================== */
.grantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grantee-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: 12px;
  padding: 18px 24px;
}

.grantee-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.grantee-card__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.grantee-card__name {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  line-height: 1.6;
}


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

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

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

  .grantee-round {
    margin-bottom: 44px;
  }

  .grantee-card {
    padding: 16px 18px;
    gap: 12px;
  }

  .grantee-card__name {
    font-size: 0.88rem;
  }
}

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