/* 出演データ表 */
.program-table {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.program-table table {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  table-layout: fixed !important;
  border-collapse: collapse;
}

.program-table th,
.program-table td {
  min-width: 0 !important;
  max-width: none !important;
  box-sizing: border-box;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: break-word;
  vertical-align: top;
}

/*
  5列のページ
  番組名｜放送局｜放送日｜放送された曲｜備考
*/
.program-table tr > :nth-child(1):nth-last-child(5) {
  width: 22%;
}

.program-table tr > :nth-child(2):nth-last-child(4) {
  width: 7%;
}

.program-table tr > :nth-child(3):nth-last-child(3) {
  width: 7%;
}

.program-table tr > :nth-child(4):nth-last-child(2) {
  width: 32%;
}

.program-table tr > :nth-child(5):last-child {
  width: 32%;
}

/*
  6列のページ
  番組名｜放送局｜放送日｜出演｜放送された曲｜備考
*/
.program-table tr > :nth-child(1):nth-last-child(6) {
  width: 18%;
}

.program-table tr > :nth-child(2):nth-last-child(5) {
  width: 7%;
}

.program-table tr > :nth-child(3):nth-last-child(4) {
  width: 7%;
}

.program-table tr > :nth-child(4):nth-last-child(3) {
  width: 5%;
}

.program-table tr > :nth-child(5):nth-last-child(2) {
  width: 33%;
}

.program-table tr > :nth-child(6):last-child {
  width: 30%;
}

/* 番組名・放送された曲・備考は上下だけ中央寄せ */
.program-table td:nth-child(1),
.program-table td:nth-last-child(2),
.program-table td:last-child {
  vertical-align: middle;
}

/* 放送局・放送日は上下左右中央寄せ */
.program-table td:nth-child(2),
.program-table td:nth-child(3) {
  text-align: center;
  vertical-align: middle;
}

/* 6列表の出演は上下左右中央寄せ */
.program-table tr > td:nth-child(4):nth-last-child(3) {
  text-align: center;
  vertical-align: middle;
}

/* 見出し行は上下左右中央寄せ */
.program-table th {
  text-align: center;
  vertical-align: middle;
}

/* iPhoneなど */
@media screen and (max-width: 767px) {
  .program-table {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .program-table table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
    font-size: 11px;
  }

  .program-table th,
  .program-table td {
    min-width: 0 !important;
    max-width: none !important;
    padding: 5px 3px !important;
    line-height: 1.45;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* 番組名・放送された曲・備考は上下だけ中央寄せ */
  .program-table td:nth-child(1),
  .program-table td:nth-last-child(2),
  .program-table td:last-child {
    vertical-align: middle;
  }

  /* 放送局・放送日は上下左右中央寄せ */
  .program-table td:nth-child(2),
  .program-table td:nth-child(3) {
    text-align: center;
    vertical-align: middle;
  }

  /* 6列表の出演は上下左右中央寄せ */
  .program-table tr > td:nth-child(4):nth-last-child(3) {
    text-align: center;
    vertical-align: middle;
  }
}