@charset "UTF-8";
/* ===================================================================
 programschedule-icon
===================================================================*/
.program-icon {
  height: 15px;
  width: 15px;
  background-color: #737271;
  display: block;
  position: relative;
  line-height: 15px;
  text-align: center;
}

.program-icon::before {
  height: 15px;
  width: 15px;
  color: #fff;
  display: block;
  font-size: 11px;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
}

@media all and (-ms-high-contrast: none) {
  .program-icon::before {
    margin-top: 2px;
  }
}

.program-icon.is-ss::before {
  content: "SS";
  font-size: 10px;
}

.program-icon.is-kaisetsu::before {
  content: "解";
}

.program-icon.is-shuwa::before {
  content: "手";
  letter-spacing: 1px;
}

.program-icon.is-data::before {
  content: "デ";
}

.program-icon.is-multi::before {
  content: "多";
}

.program-icon.is-bilingual::before {
  content: "二";
  letter-spacing: -1px;
}

.program-icon.is-new::before {
  content: "新";
}

.program-icon.is-sohoko::before {
  content: "双";
}

.program-icon.is-end::before {
  content: "終";
}

.program-icon.is-subtitle::before {
  content: "字";
  letter-spacing: 1px;
}

.program-icon.is-rebroadcast::before {
  content: "再";
}

/* ===================================================================
 programschedule-pc
===================================================================*/
.sch-pc-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .sch-pc-wrapper {
    display: none;
  }
}

.sch-pc-wrapper a:hover {
  opacity: 0.6;
}

.sch-pc-day {
  position: absolute;
  width: 100%;
  z-index: 100;
}

.sch-pc-day.fixed {
  position: fixed;
  max-width: 1115px;
  top: 0;
  width: calc(100% - 40px);
}

.sch-pc-day__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: 40px;
  width: calc(100% - 40px);
}

.sch-pc-day__item {
  width: calc((100% - 1px) / 7);
}

.sch-pc-day__item:not(:last-child) div {
  border-right: 1px solid #fff;
}

.sch-pc-day__item div {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #f2830b;
  font-weight: bold;
  font-size: 1.6rem;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 1200px) {
  .sch-pc-day__item div {
    font-size: 1.4rem;
  }
}

.sch-pc-day__item.is-today {
  height: 80px;
  overflow: hidden;
  position: relative;
}

.sch-pc-day__item.is-today::after {
  content: "";
  background-color: #4ac099;
  height: 100px;
  width: calc(123% - 1px);
  border-radius: 50%;
  position: absolute;
  left: -11%;
  bottom: 10px;
  margin: auto;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
}

.sch-pc-day__item.is-today div {
  box-shadow: none;
  background-color: #4ac099;
  font-size: 2.0rem;
  position: relative;
  z-index: 10;
}

@media only screen and (max-width: 1200px) {
  .sch-pc-day__item.is-today div {
    font-size: 1.8rem;
  }
}

.sch-pc-day__item.is-today div::before {
  content: "今日";
  color: #4ac099;
  background-color: #fff;
  position: absolute;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 10px;
  height: 20px;
  width: 40px;
  line-height: 20px;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.sch-pc-table {
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  table-layout: fixed;
  background-color: #f5f5f5;
}

.sch-pc-table__wrapper tbody tr {
  min-height: 1px;
}

.sch-pc-table__wrapper tbody tr td:first-child {
  width: 40px;
}

.sch-pc-table__wrapper tbody tr:first-child td {
  padding-top: 80px;
}

.sch-pc-table__wrapper tbody tr:first-child td:first-child {
  padding-top: 10px;
}

.sch-pc-table__wrapper tbody td {
  border-bottom: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  vertical-align: top;
  height: 100%;
  background-color: #fff;
}

.sch-pc-table__wrapper tbody td.is-empty {
  background-color: #f5f5f5;
}

.sch-pc-table__wrapper tbody td.is-data {
  background-color: #e8f8f3;
}

.sch-pc-table__wrapper tbody td.is-empty.is-data {
  background-color: #d1e7e0;
}

.sch-pc-table__wrapper tbody td.is-now {
  box-shadow: inset 0px 0px 0px 3px rgba(74, 192, 153, 0.8);
}

.sch-pc-table__wrapper tbody td.sch-pc-table__time {
  text-align: center;
  background: #737271;
  padding: 10px 0;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  vertical-align: middle;
  border-bottom: 1px solid #f9f1df;
  border-left: none;
}

.sch-pc-table__wrapper tbody td .sch-pc-table__program {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.sch-pc-table__wrapper tbody td .sch-pc-table__program__date {
  font-size: 1.4rem;
  color: #f2830b;
  line-height: 1;
}

@media only screen and (max-width: 1200px) {
  .sch-pc-table__wrapper tbody td .sch-pc-table__program__date {
    font-size: 1.2rem;
  }
}

.sch-pc-table__wrapper tbody td .sch-pc-table__program__title {
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 5px;
}

@media only screen and (max-width: 1200px) {
  .sch-pc-table__wrapper tbody td .sch-pc-table__program__title {
    font-size: 1.3rem;
  }
}

.sch-pc-table__wrapper tbody td .sch-pc-table__program__performer {
  font-size: 1.2rem;
  color: #808080;
  margin-top: 3px;
}

.sch-pc-table__wrapper tbody td .sch-pc-table__program__icon {
  display: flex;
  flex-wrap: wrap;
}

.sch-pc-table__wrapper tbody td .sch-pc-table__program__icon i {
  margin: 5px 5px 0 0;
}

.sch-pc-table__wrapper tbody tr:first-of-type {
  border-top: 1px solid #cccccc;
}

.sch-pc-table__wrapper tbody tr:last-of-type td {
  border-bottom: none;
}

/* ===================================================================
programschedule-sp
===================================================================*/
.sch-sp-wrapper {
  display: none;
}

@media only screen and (max-width: 1023px) {
  .sch-sp-wrapper {
    display: block;
    position: relative;
  }
}

.sch-sp-day {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #f2830b;
}

.is-today .sch-sp-day {
  background-color: #4ac099;
}

.sch-sp-day.fixed {
  position: fixed;
}

.sch-sp-day__arrow {
  height: 45px;
  width: 45px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
}

.sch-sp-day__arrow::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 0px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.sch-sp-day__arrow.is-past::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.sch-sp-day__arrow.is-past.is-disabled {
  background-color: transparent;
  pointer-events: none;
}

.sch-sp-day__arrow.is-past.is-disabled::before {
  display: none;
}

.sch-sp-day__arrow.is-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sch-sp-day__arrow.is-next.is-disabled {
  background-color: transparent;
  pointer-events: none;
}

.sch-sp-day__arrow.is-next.is-disabled::before {
  display: none;
}

.sch-sp-day__data {
  height: 45px;
  width: calc(100% - 90px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  font-weight: bold;
}

.is-today .sch-sp-day__data::after {
  content: "今日";
  font-size: 1.2rem;
  height: 18px;
  padding: 0 8px;
  background-color: #fff;
  color: #4ac099;
  font-weight: bold;
  line-height: 18px;
  border-radius: 9px;
  margin-left: 5px;
}

.sch-sp-program {
  padding-top: 45px;
}

.sch-sp-program-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #cccccc;
}

.sch-sp-program-item:first-child {
  border-top: 1px solid #cccccc;
}

.sch-sp-program-data {
  width: 56px;
  background-color: #f7f7f7;
  padding: 15px;
  font-size: 1.2rem;
  color: #f2830b;
  font-weight: bold;
}

.is-now .sch-sp-program-data {
  background-color: #c9ebe1;
}

.sch-sp-program-box {
  width: calc(100% - 56px - 1px);
  background-color: #fff;
}

.is-now .sch-sp-program-box {
  background-color: #e8f8f3;
}

.sch-sp-program-link {
  display: block;
  padding: 15px 10px;
}

.sch-sp-program-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.sch-sp-program-info i {
  margin-right: 5px;
}

.sch-sp-program-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 5px;
}

.sch-sp-program-memo {
  font-size: 1.2rem;
  color: #999;
  margin: 5px auto 0;
}

.p-table {
  line-height: 1.6;
}

.p-table-title {
  padding: 10px 0;
}

@media only screen and (min-width: 768px) {
  .p-table-title {
    padding: 15px 0;
  }
}

.p-table-title__inner {
  max-width: 1155px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (min-width: 601px) {
  .p-table-title__inner {
    padding: 0 15px;
  }
}

.p-table-title__text {
  color: #f2830b;
  font-size: 1.8rem;
}

@media only screen and (min-width: 768px) {
  .p-table-title__text {
    font-size: 2.4rem;
  }
}

.p-table-title__text > [class*=icon-] {
  font-size: 4rem;
  vertical-align: middle;
  margin-right: 10px;
}

@media only screen and (min-width: 768px) {
  .p-table-title__text > [class*=icon-] {
    font-size: 5rem;
  }
}

.p-table-title__text > span {
  vertical-align: middle;
}

.p-table-title__icon {
  font-size: 13px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-table-title__icon i {
  width: 30px;
  height: 30px;
  background-color: #ececec;
  display: block;
  border-radius: 50%;
  position: relative;
  margin-left: 10px;
}

.p-table-title__icon i::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  position: absolute;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  left: 0px;
  right: 0;
  top: -3px;
  bottom: 0;
  margin: auto;
}

.p-table-main {
  background-color: #f9f1df;
  padding: 40px 0 50px;
}

@media only screen and (max-width: 1023px) {
  .p-table-main {
    padding: 20px 0;
  }
}

.p-table-main__inner {
  max-width: 1155px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .p-table-main__inner {
    padding: 0;
  }
}

.p-table-icon {
  margin: 50px auto 0;
  padding: 30px;
  background-color: #fff;
  border-radius: 5px;
}

@media only screen and (max-width: 1023px) {
  .p-table-icon {
    margin: 20px auto 0;
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 600px) {
  .p-table-icon {
    padding: 15px;
  }
}

.p-table-icon__title {
  text-align: center;
}

.p-table-icon__title span {
  font-weight: bold;
  position: relative;
  color: #f2830b;
  font-size: 1.4rem;
  padding: 0 3px 5px;
  border-bottom: 1px solid #f2830b;
}

.p-table-icon__list {
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.p-table-icon__item {
  font-size: 1.2rem;
  min-width: 140px;
  width: calc(100% / 7);
  padding: 5px 0 5px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 600px) {
  .p-table-icon__item {
    min-width: 50%;
    width: auto;
  }
}

.p-table-icon__item i {
  margin-right: 5px;
}
