@charset "utf-8";
.loading {
    position: fixed;
    width: 100%;
}

.loading #loader {
    opacity: 1;
    visibility: visible;
}

#loader {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    transition: .8s;
    pointer-events: none;
    overflow: hidden;
}

#loader img {
    z-index: 1;
    position: relative;
    max-width: 174px;
    width: 55%;
}

#loader:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 100%;
    opacity: 0.6;
    transform: translate3d(0, 0, 0);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    padding: 10px 20px;
    -webkit-animation: stripe 1s infinite linear 0s;
    z-index: 1;
}

#loader:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background: linear-gradient(to bottom, #6ac3d9, #57cfb5, #5bd879, #86d764, #bed64c);
    z-index: 0;
}

@-webkit-keyframes stripe {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(-20px, 0);
    }
}

#timeNav {
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: .8s;
}

.loaded #timeNav {
    opacity: 1;
    visibility: visible;
}

#timeNav .inner {
    position: fixed;
    top: 60%;
    right: 3px;
    transition: all .3s;
    width: 40px;
    z-index: 5;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#timeNav .date {
    margin-bottom: 4px;
    font-weight: 700;
    text-align: center;
    font-size: 85%;
}

#timeNav li > div {
    cursor: pointer;
    margin-bottom: 12px;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#timeNav .isMorning {
    background-color: rgb(151 213 229);
    color: rgb(11 54 65);
}

#timeNav .isNoon {
    background-color: rgb(209 227 130);
    color: rgb(52 62 8);
}

#timeNav .isEvening {
    background-color: rgb(249 187 191);
    color: rgb(86 0 1);
}

#timeNav .isNight {
    background-color: rgb(218 186 253);
    color: rgb(0 0 0);
}

.program_detail {
    opacity: 0;
    transition: opacity .3s linear;
}

.program_detail.slick-initialized {
    opacity: 1;
}

.program_detail:before {
    content: "";
    background: linear-gradient(to bottom, #6ac3d9, #57cfb5, #5bd879, #86d764, #bed64c, #e9bc4f, #e77960, #de6684, #c660b9, #915bc3, #8b70d8, #657dc6, #6ac3d9, #57cfb5, #5bd879, #86d764, #bed64c, #e9bc4f, #e77960, #de6684, #c660b9, #915bc3, #8b70d8, #657dc6, #6ac3d9) 0% 0% / auto 200%;
    background-position-y: 95%;
    opacity: 0.8;
    width: 1vw;
    height: 100%;
    position: absolute;
    z-index: 1;
}

#timetable .main_colum {
    min-height: 100vh;
    transition: .8s;
    opacity: .8;
    -ms-filter: blur(1px);
    filter: blur(1px);
}

.loaded #timetable .main_colum {
    opacity: 1;
    -ms-filter: none;
    filter: none;
}

#timetable {
    font-size: 1.8rem;
    position: relative;
}

.gFooter {
    opacity: 0;
    transition: .3s;
}

.loaded .gFooter {
    opacity: 1;
}

#main_cont * {
    box-sizing: border-box;
}

#main_colum {
    background: #fff;
    margin-bottom: 50px;
}

.program_dates {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
}

.program_dates {
    opacity: 0;
    transition: opacity .3s linear;
}

.program_dates.initialized {
    opacity: 1;
}

.program_dates ul {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.program_dates li {
    width: 100%;
    margin-right: 1vw;
}

.program_dates li:last-child {
    margin-right: 0;
}

.program_dates li .txt {
    text-align: center;
    padding: 2vh 0;
    min-height: 50px;
    background: #5b5656;
    border-radius: 5px 5px 0 0;
    transform: translateY(3px);
    color: #fff;
    font-size: 3.4vw;
    font-weight: bold;
    line-height: 1.3;
    transition: .3s;
    position: relative;
    opacity: .8;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 320px) {
    .program_dates li .txt {
        font-size: 3.8vw;
    }
}

.program_dates li.current .txt {
    color: #fff;
    background: #353535;
    transform: translateY(0);
    opacity: 1;
    z-index: 1;
}

.program_date.w0 {
    background: rgb(254 237 234 / 50%);
}

.program_date.w6 {
    background: rgb(227 239 245 / 50%);
}

.program_dates .current:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #353535;
    z-index: 1;
}

.program_times {
    display: none;
    width: 0;
    height: 0;
}

.program_times li {
    display: block;
}

.program_times li .txt {
    color: #fff;
    text-align: center;
    border-bottom: solid 1px #ffffff;
    height: 160px;
    padding: 7px 0px 0px;
}

.program_date li.head {
    display: block;
    width: 100%;
    height: 0px !important;
}

.program_date li.programs {
    display: block;
    border-bottom: dotted 1px #CDCECE;
    overflow: hidden;
    padding: 10px 50px 10px 15px;
    position: relative;
    top: auto !important;
}

.program_date li.programs:first-child {
    border-top: none;
}

.program_date li.programs .txt {
    height: auto !important;
}

.program_date li.programs .time {
    display: inline-block;
    padding: 2px 8px;
    letter-spacing: 0.05em;
    margin-bottom: 0.5em;
    font-size: 90%;
    border-radius: 5px;
}

.program_date li.time1 .time {
    background: rgb(151 213 229 / 30%);
}

.program_date li.time2 .time {
    background: rgb(209 227 130 / 40%);
}

.program_date li.time3 .time {
    background: rgb(235 155 156 / 30%);
}

.program_date li.time4 .time {
    background: rgb(177 142 214 / 30%);
}

.program_date li.programs .title {}

.program_date li.programs .title img {
    margin: 8px auto 0 auto;
    max-height: 156px;
    display: block;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 0 3px rgb(0 0 0 / 5%);
    transition: 0.3s;
}

.program_date li.programs .title a {
    color: #000000;
}

.program_date li.programs .title a:hover {
    text-decoration: underline;
    color: #383838;
}

.program_date li.programs .title a:hover img {
    opacity: 0.8;
}

.program_date li.programs .title a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 2px;
    z-index: 0;
}

.program_date li.programs .title a[href="#"] {
    color: #000;
    text-decoration: none;
    cursor: default;
    pointer-events: none;
}