.table-wrapper.type-3 .sustainability-table thead th {
  font-size: 1.3rem;
  font-weight: 400;
  padding: 8px 4px;
}
.table-wrapper.type-3 .sustainability-table thead th:not(:first-child) {
  width: 128px;
}
.table-wrapper.type-3 .sustainability-table tbody th {
  padding: 16px 12px;
}
.table-wrapper.type-3 .sustainability-table tbody th > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-width: 100px;
  column-gap: 12px;
  row-gap: 2px;
}
.table-wrapper.type-3 .sustainability-table tbody .position {
  font-size: 1.2rem;
  line-height: 1.3;
  min-width: 100px;
  font-weight: 400;
}
.table-wrapper.type-3 .sustainability-table tbody .name {
  font-size: 1.5rem;
  min-width: 5.5em;
}
.table-wrapper.type-3 .sustainability-table tbody td {
  color: var(--Primary_blue);
  /* 英語版: ●（U+25CF）を日本語版と同じフォントで描画してサイズを揃える */
  font-family: "Noto Sans JP", "Noto-Sans-Fallback", sans-serif;
}
/* 英語版: 英語は語長が長くセルからはみ出るため、この表の見出しセルの nowrap を解除 */
.table-wrapper.type-3 .financial-table th,
.table-wrapper.type-stack .table-type-2 th {
  white-space: normal;
}

@media screen and (max-width: 1080px) {
  .table-wrapper.type-3 .sustainability-table thead th {
    padding: 8px 2px !important;
    font-size: 0.9rem !important;
  }
  .table-wrapper.type-3 .sustainability-table thead th:not(:first-child) {
    width: 80px !important;
  }
  .table-wrapper.type-3 .sustainability-table tbody th {
    padding: 8px 4px !important;
  }
  .table-wrapper.type-3 .sustainability-table tbody th > div {
    /* 英語版: 氏名を常に段落ち（縦積み）させ、TB帯での折り返しの不揃いを解消 */
    flex-direction: column;
    align-items: flex-start;
  }
  .table-wrapper.type-3 .sustainability-table tbody th .position {
    font-size: 1rem !important;
  }
  .table-wrapper.type-3 .sustainability-table tbody th .name {
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 769px) {
  .table-wrapper.type-3 .sustainability-table thead th {
    writing-mode: sideways-rl;
    text-orientation: upright;
    font-size: 1.1rem !important;
    line-height: 1.1;
    /* Safari対応: 縦書き時のセル高さ自動拡張バグの修正 */
    height: auto;
    min-height: 150px;
    max-height: 166px;
  }
  .table-wrapper.type-3 .sustainability-table thead th br {
    display: none;
  }
  .table-wrapper.type-3 .sustainability-table thead th:first-child {
    width: 30% !important;
  }
  .table-wrapper.type-3 .sustainability-table thead th:not(:first-child) {
    width: auto !important;
  }
  .table-wrapper.type-3 .sustainability-table tbody th {
    width: auto !important;
    padding: 8px !important;
  }
  .table-wrapper.type-3 .sustainability-table tbody th > div {
    flex-direction: column;
    align-items: flex-start;
  }
}