/* Talent Size Table Styles */
.size-table {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
}

.size-table td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: center;
}

.size-table td:nth-child(odd) {
  background-color: #f0e5e5;
  font-weight: bold;
  width: 20%;
}

.size-table td:nth-child(even) {
  background-color: transparent;
  width: 30%;
}

/* タブレット対応 */
@media screen and (max-width: 768px) {
  .size-table {
    font-size: 12px;
  }

  .size-table td {
    padding: 6px 8px;
  }
}

/* スマホ対応 - 1カラム表示 */
@media screen and (max-width: 600px) {
  /* 親要素の中央寄せを解除 */
  #about .c {
    text-align: left;
    padding: 0 15px;
  }

  .size-table {
    display: block;
    width: 100%;
    font-size: 14px;
    margin: 0;
    max-width: none;
  }

  .size-table tbody {
    display: block;
    width: 100%;
  }

  .size-table tr {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
  }

  .size-table td {
    display: block;
    width: 100% !important;
    text-align: left;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 15px;
  }

  .size-table td:last-child {
    border-bottom: none;
  }

  .size-table td:nth-child(odd) {
    background-color: #f0e5e5;
    font-weight: bold;
  }

  .size-table td:nth-child(even) {
    background-color: #fff;
    padding-left: 30px;
    font-weight: normal;
  }

  /* 各行の最後のペアの下線を削除 */
  .size-table td:nth-child(3) {
    border-top: 1px solid #ccc;
    margin-top: 5px;
    padding-top: 15px;
  }
}
