/* ============================================================
   maneger.css - 役員（サブページ再設計版）
   ワイヤーフレーム_サブページ再設計.md §4 maneger＝D人物グリッド
   参考: zelvia /club/clubteam/ の人物カード思想
   ※style.cssは編集禁止。ページ固有はすべて本ファイルに記述
   ============================================================ */

/* ---------- 法人名キャプション ---------- */
.mgmt-org {
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  margin: -28px 0 48px;
}

/* ---------- グループ（理事／運営・事務局） ---------- */
.mgmt-group {
  margin-bottom: 48px;
}

.mgmt-group:last-of-type {
  margin-bottom: 0;
}

.mgmt-group__label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-bottom: 14px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.mgmt-group__label span {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
}

/* ---------- 人物カード ---------- */
.mgmt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mgmt-grid--office {
  max-width: 880px;
}

.mgmt-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}

.mgmt-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface);
}

.mgmt-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mgmt-card__photo img.img-face-top {
  object-position: top;
}

/* 写真未支給（プレースホルダー＝エンブレム表示） */
.mgmt-card__photo--emblem {
  display: grid;
  place-items: center;
}

.mgmt-card__photo--emblem img {
  width: 52%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.mgmt-card__body {
  padding: 18px 20px 20px;
}

.mgmt-card__role {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--secondary);
  padding: 4px 12px;
  margin-bottom: 10px;
}

.mgmt-card__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.mgmt-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-decoration: none;
}

.mgmt-card__link:hover {
  text-decoration: underline;
}

/* 運営・事務局は一回り小ぶりに */
.mgmt-grid--office .mgmt-card__name {
  font-size: 17px;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 1024px) {
  .mgmt-grid {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .mgmt-org {
    margin: -16px 0 36px;
  }

  .mgmt-group {
    margin-bottom: 56px;
  }

  .mgmt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .mgmt-card__body {
    padding: 12px 14px 16px;
  }

  .mgmt-card__name {
    font-size: 16px;
  }

  .mgmt-grid--office .mgmt-card__name {
    font-size: 15px;
  }

  .mgmt-card__role {
    font-size: 10px;
    padding: 3px 9px;
  }
}
