@charset "utf-8";

/* ============================================================
   officer.css — 理事・評議員一覧ページ専用スタイル
   privacy.css / entry.css のデザインシステムに準拠
============================================================ */

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


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

.officer-body__inner {
  max-width: 800px;
  margin: 0 auto;
}


/* ===========================
   区分ブロック（代表理事／理事／監事／評議員 など）
=========================== */
.officer-section {
  margin-bottom: 64px;
}

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

.officer-section__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-mid);
}


/* ===========================
   名簿リスト
=========================== */
.officer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.officer-list__item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 28px;
  padding: 22px 4px;
  border-bottom: 1px solid #eaeaea;
}

/*.officer-list__item:first-child {
  border-top: 1px solid #eaeaea;
}*/

.officer-list__name {
  flex-shrink: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  min-width: 8em;
}

.officer-list__role {
  flex: 1 1 auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.9;
}

/* 肩書が複数行ある場合（改行で区切って入力） */
.officer-list__role br + br {
  display: none;
}


/* ===========================
   更新日注記
=========================== */
.officer-note {
  margin: 14px 0 0;
  text-align: right;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}


/* ===========================
   所在地（Googleマップ）
=========================== */
.officer-map {
  background-color: #f5f2eb;
  background-image: url('../images/bg_pattern.jpg');
  background-repeat: repeat;
  background-size: 300px auto;
  padding: 64px 40px 100px;
}

.officer-map__inner {
  max-width: 800px;
  margin: 0 auto;
}

.officer-map__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-mid);
}

.officer-map__address {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  margin: 0 0 24px;
}

.officer-map__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.officer-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
}


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

  .officer-body {
    padding: 60px 16px 60px;
  }

  .officer-section {
    margin-bottom: 44px;
  }

  .officer-section__title {
    font-size: 1.3rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
  }

  .officer-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px 2px;
  }

  .officer-list__name {
    min-width: 0;
  }

  .officer-note {
    margin-top: 16px;
    font-size: 0.72rem;
  }

  .officer-map {
    padding: 40px 16px 70px;
  }

  .officer-map__title {
    font-size: 1.3rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
  }

  .officer-map__address {
    font-size: 0.82rem;
    margin-bottom: 18px;
  }

  .officer-map__frame {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
  }
}

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

  .officer-map {
    padding: 60px 32px 90px;
  }
}