/* =========================================================
   第三者評価　評価者紹介ページ
   /css/hyouka-member.css
   ========================================================= */

/* =========================================================
   01. 共通
   ========================================================= */
.member-page {
  background: #ffffff;
  color: #333;
}

.member-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.member-section-title {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  color: #1f2d3d;
  letter-spacing: 0.04em;
}

/* =========================================================
   02. 導入文
   ========================================================= */
.member-intro {
  padding: 28px 0 24px;
}

.member-intro__box {
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e3e8ec;
  border-radius: 14px;
}

.member-intro__text {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #556270;
}

/* =========================================================
   03. テーブル一覧
   ========================================================= */
.member-list--table {
  padding: 0 0 72px;
}

.member-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #dbe3e8;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.member-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
}

.member-table thead th {
  padding: 18px 16px;
  background: #edf4f7;
  border-bottom: 1px solid #d6e0e7;
  border-right: 1px solid #d6e0e7;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
  color: #1f2d3d;
  text-align: left;
  vertical-align: middle;
}

.member-table thead th:last-child {
  border-right: none;
}

.member-table tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid #e3e8ec;
  border-right: 1px solid #e3e8ec;
  font-size: 14px;
  line-height: 1.95;
  color: #333;
  vertical-align: top;
  background: #fff;
  word-break: break-word;
}

.member-table tbody tr:last-child td {
  border-bottom: none;
}

.member-table tbody td:last-child {
  border-right: none;
}

.member-table tbody tr:nth-child(even) td {
  background: #fcfdfe;
}

.col-no {
  width: 64px;
}

.col-code {
  width: 160px;
}

.col-career {
  width: auto;
}

.col-results {
  width: 260px;
}

.member-table__no {
  text-align: center;
  font-weight: 700;
  color: #1f2d3d;
}

.member-table__code {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #34536b;
}

/* =========================================================
   04. 下部導線
   ========================================================= */
.member-contact {
  padding: 0 0 88px;
}

.member-contact__box {
  padding: 36px 32px;
  background: #ffffff;
  border: 1px solid #dbe3e8;
  border-radius: 14px;
}

.member-contact__text {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #556270;
}

.member-contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.member-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid #9fb3c1;
  border-radius: 999px;
  background: #ffffff;
  color: #34536b;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.member-btn:hover {
  background: #f3f7fa;
}

.member-btn--primary {
  background: #34536b;
  border-color: #34536b;
  color: #ffffff;
}

.member-btn--primary:hover {
  background: #28465b;
  border-color: #28465b;
}

/* =========================================================
   05. レスポンシブ
   ========================================================= */
@media (max-width: 767px) {
  .member-container {
    width: min(100% - 24px, 100%);
  }

  .member-intro {
    padding: 20px 0 20px;
  }

  .member-intro__box {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .member-section-title {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .member-intro__text,
  .member-contact__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .member-contact {
    padding-bottom: 64px;
  }

  .member-contact__box {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .member-contact__buttons {
    flex-direction: column;
  }

  .member-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 14px;
  }
}


/* =========================================================
   表・カードの表示切り替え
   PC：表表示 / SP：カード表示
   ========================================================= */

/* 初期（PC） */
.member-list--table {
  display: block;
}

.member-list--cards {
  display: none;
}

/* スマホ */
@media (max-width: 768px) {

  .member-list--table {
    display: none;
  }

  .member-list--cards {
    display: block;
  }

}