@charset "UTF-8";
/* =====================
  日東会会員紹介
 ======================= */
.members-table {
  width: 100%;
  font-size: 125%;
}
.members-table thead th {
  text-align: left;
  color: var(--c_blue);
  padding: 0 0 1.2em;
  border-bottom: 1px solid var(--c_border);
}
.members-table tbody th {
  text-align: left;
  vertical-align: middle;
  padding: 1.2em 0;
  border-bottom: 1px solid var(--c_border);
}
.members-table tbody td {
  vertical-align: middle;
  padding: 1.2em 0;
  border-bottom: 1px solid var(--c_border);
}

/* タブレット
  ------------------------ */
/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  .members-table {
    font-size: 16px;
  }
  .members-table thead {
    display: none;
  }
  .members-table tbody tr:first-of-type th {
    padding-top: 0;
  }
  .members-table tbody th {
    display: block;
    padding: 16px 0 8px;
    border: 0;
  }
  .members-table tbody td {
    display: block;
    padding: 0 0 16px;
  }
}