@charset "utf-8";

.site_24h_timetable_notice {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #252525;
}
@media only screen and (max-width: 960px) {
  .site_24h_timetable_notice {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  .site_24h_timetable_notice {
    margin-bottom: 8vw;
    font-size: 4.5vw;
  }
}

.site_24h_link_area {
  margin-bottom: 0;
}

.site_24h_timetable_btn {
  width: 280px;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 40px;
  text-align: center;
  font-size: 18px;
  letter-spacing: .9px;
  font-weight: 700;
  color: #fff;
  background-color: #ffb501;
}
@media only screen and (max-width: 768px) {
  .site_24h_timetable_btn {
    width: 67.6%;
    padding: 1.8% 0;
    font-size: 4.3vw;
    letter-spacing: .05em;
  }
}

.site_24h_timetable .site_24h_second_box_inner {
  padding: 0;
  background-color: transparent;
}

.site_24h_timetable_table {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .site_24h_timetable_table {
    margin-top: 8vw;
  }
}

.site_24h_timetable_table .onairDay {
  padding: 6px 0;
  text-align: center;
  font-size: 28px;
  letter-spacing: 2.8px;
  font-weight: 700;
  color: #fff;
}
.site_24h_timetable_table.day01 .onairDay {
  background-color: #56bbfb;
}
.site_24h_timetable_table.day02 .onairDay {
  background-color: #19cb32;
}
.site_24h_timetable_table .onairDay span {
  font-size: 36px;
  letter-spacing: 3.6px;
}
@media only screen and (max-width: 768px) {
  .site_24h_timetable_table .onairDay {
    font-size: 4.8vw;
    letter-spacing: .1em;
  }
  .site_24h_timetable_table .onairDay span {
    font-size: 6.4vw;
    letter-spacing: .1em;
  }
}


@media only screen and (max-width: 768px) {
  .site_24h_timetable_table .onairDay + ul {
    margin-top: 2.5vw;
  }
}

.site_24h_timetable_table li {
  margin-top: 2px;
  padding: 0 80px;
  background-color: #fff;
}
.site_24h_timetable_table li.is-next {
  position: relative;
  padding: 0 calc(80px - 3px);
  padding-top: 37px;
  border: 3px solid #e70f7a;
}
.site_24h_timetable_table li.is-next:before {
  position: absolute;
  top: -3px;
  left: -3px;
  content: 'NEXT';
  width: 100px;
  padding: 1px 0;
  border-radius: 3px;
  background-color: #e70f7a;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.site_24h_timetable_table li.no-body .head {
  pointer-events: none;
}
.site_24h_timetable_table li.no-body .head:after {
  display: none;
}


@media only screen and (max-width: 768px) {
  .site_24h_timetable_table li {
    padding: 0 5.6%;
  }
  .site_24h_timetable_table li.is-next {
    padding: 0 calc(5.6% - 3px);
    padding-top: 7vw;
  }
  .site_24h_timetable_table li.is-next:before {
    width: 23%;
    font-size: 3.7vw;
  }
}

.site_24h_timetable_table .head {
  position: relative;
  display: flex;
  padding: 23px 0 18px;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: #252525;
  cursor: pointer;
}
.site_24h_timetable_table .head:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  content: '';
  width: 20px;
  height: 20px;
  margin: auto;
  background-size: contain;
  background-image: url(/24h/assets/images/timetable/icon-open.png);
  background-repeat: no-repeat;
}
.site_24h_timetable_table .is-open .head:after {
  background-image: url(/24h/assets/images/timetable/icon-close.png);
}
@media only screen and (max-width: 768px) {
  .site_24h_timetable_table .head {
    padding: 3.2vw 0 2.4vw;
    font-size: 4.3vw;
    line-height: 1.4em;
  }
  .site_24h_timetable_table .head:after {
    width: 6.3%;
    height: 5.3vw;
  }
}

.site_24h_timetable_table .time {
  min-width: 5em;
  margin-right: 1em;
}
.site_24h_timetable_table.day01 .time {
  color: #2b97e3;
}
.site_24h_timetable_table.day02 .time {
  color: #19cb32;
}

.site_24h_timetable_table .title {
  padding-right: calc(1em + 6.3%);
}

.site_24h_timetable_table .body {
  height: 0;
  overflow: hidden;
  border-top: 1px solid #ccc;
  opacity: 0;
  transition: .4s;
}
.site_24h_timetable_table .is-open .body {
  height: auto;
  padding-bottom: 30px;
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .site_24h_timetable_table .is-open .body {
    padding-bottom: 5.3vw;
  }
}

.site_24h_timetable_table .image {
  margin-top: 30px;
  padding-bottom: 56.3%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .site_24h_timetable_table .image {
    margin-top: 5.3vw;
  }
}

.site_24h_timetable_table .textarea {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 22.4px;
  color: #252525;
}
@media only screen and (max-width: 768px) {
  .site_24h_timetable_table .textarea {
    margin-top: 5.3vw;
    font-size: 3.7vw;
    line-height: 1.4em;
  }
}

.site_24h_timetable_table .relatedArticle {
  margin-top: 30px;
  padding: 30px;
  background-color: #efefef;
}
.site_24h_timetable_table .relatedArticle dt {
  font-size: 14px;
  font-weight: 600;
  color: #252525;
}
.site_24h_timetable_table .relatedArticle dd {
  margin-top: 16px;
}
.site_24h_timetable_table .relatedArticle a {
  display: block;
  font-size: 15px;
  font-weight: 300;
  line-height: 19.5px;
  color: #252525;
  text-decoration: underline;
}
.site_24h_timetable_table .relatedArticle a:not(:first-child) {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .site_24h_timetable_table .relatedArticle {
    margin-top: 5.3vw;
    padding: 8vw 6.3%;
  }
  .site_24h_timetable_table .relatedArticle dt {
    font-size: 3.8vw;
  }
  .site_24h_timetable_table .relatedArticle a {
    font-size: 3.7vw;
    line-height: 1.3em;
  }
  .site_24h_timetable_table .relatedArticle a:not(:first-child) {
    margin-top: 6vw;
  }
}

.site_24h_timetable_table .rinkBtn {
  display: block;
  width: 380px;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 15px 0;
  border-radius: 43px;
  text-align: center;
  font-size: 18px;
  letter-spacing: .9px;
  color: #fff;
  background-color: #ffb501;
}
.site_24h_timetable_table.day01 .rinkBtn {
  background-color: #56bbfb;
}
.site_24h_timetable_table.day02 .rinkBtn {
  background-color: #19cb32;
}
@media only screen and (max-width: 768px) {
  .site_24h_timetable_table .rinkBtn {
    margin-top: 5.3vw;
    font-size: 4.3vw;
    letter-spacing: .05em;
  }
}
