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

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

#loader {
    width: 100%;
    height: 100%;
    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 {
    display: none;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to{
    transform: rotate(359deg);
  }
}
#loader .spinner {
  width: 120px;
  height: 120px;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(255 255 255 / 10%) 30%, rgb(255 255 255) 100%) border-box border-box;
  border: 4px solid transparent;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
  animation: spin 1s linear 0s infinite;
}

#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 {
    display: none;
}

#timetable {
    font-size: 1.6rem;
    position: relative;
    min-height: calc(100vh - 120px);
    margin: 0 auto 30px;
    width: 97%;
}

@media screen and (max-width:1000px) {
    #timetable {
        font-size: 1.5rem;
    }
}

#main_colum {
    background: #fff;
}

#program_root {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ccc;
}

.program_dates {
    position: sticky;
    top: 0;
    z-index: 1;
}

.program_dates:before {
    content: "";
    height: 40%;
    width: 100%;
    top: 100%;
    position: absolute;
    background: linear-gradient(to bottom, rgb(0 0 0 / 5%), transparent);
    pointer-events: none;
}

.program_dates ul {
    display: flex;
    padding: 0 35px;
    background: #5b5656;
}

.program_dates li {
    width: 100%;
    border-left: 1px solid #fff;
    color: #fff;
    font-size: 106.25%;
    padding: 10px 0;
    text-align: center;
    line-height: 1;
}

.program_dates li:first-of-type,
.program_date.first {
    width: 150%;
    font-size: 112.5%;
}

.program_dates li:first-of-type {
    background: #353535;
}

.program_dates li:last-child {
    border-right: 1px solid #fff;
}

.program_detail {
    display: flex;
}

.program_times {
    min-width: 35px;
    position: relative;
}

.program_times: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: 100%;
    height: 100%;
    position: absolute;
}

.program_times li {
    display: block;
}

.program_times li .txt {
    color: #fff;
    text-align: center;
    border-top: solid 1px #ffffff;
    height: 160px;
    font-size: 112.5%;
    padding: 7px 6px 5px;
    position: relative;
    text-shadow: 0 0 10px rgb(0 0 0 / 40%);
}

.program_times li .txt span {
    position: sticky;
    top: 45px;
}

.program_date {
    width: 100%;
    position: relative;
    border-right: dotted 2px #d7d7d8;
}

.program_date:nth-last-of-type(2) {
    border-right: none;
}

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

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

.program_date li.programs {
    display: block;
    width: 100%;
    position: absolute;
}

.program_date li.programs .txt {
    border-top: dotted 2px #d7d7d8;
    overflow: hidden;
}

.program_date li.programs .txt:has(.photo) {
    min-height: 240px;
}

.program_date li.programs .time {
    background: #ffdc73;
    display: inline-block;
    padding: 2px 8px;
    margin: 6px 6px 0;
    letter-spacing: 0.05em;
    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 {
    padding: 6px;
    letter-spacing: 0.03em;
}

.program_date li.programs .title .photo.pcHide {
    display: none;
}

.program_date li.programs .title .photo {
    margin: 8px auto 0 auto;
    display: block;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 0 3px rgb(0 0 0 / 5%);
    transition: 0.3s;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.program_date li.programs .title .photo img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

.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;
}