@import url("phone.min.css") screen and (max-width: 767px);
@import url("tablet.min.css") screen and (min-width: 768px) and (max-width: 1024px);
@import url("pc.min.css") screen and (min-width: 1025px);
@keyframes statusIconAnimation {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}
section #scheduleNavi > ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
section #scheduleNavi > ul > li {
  position: relative;
  cursor: pointer;
}
section #scheduleNavi > ul > li > * {
  color: #ffffff;
  text-decoration: none;
  font-family: "europa", sans-serif;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section #scheduleNavi > ul > li > a {
  background: #000000;
  color: #ffffff;
}
section #scheduleNavi > ul > li > .active {
  background: #f2f2f8;
  color: #000000;
}
@media screen and (max-width: 767px) {
  section {
    width: 100%;
  }
  section > .contentsTitle {
    width: 96% !important;
    margin: auto;
    margin-top: 4rem;
  }
  section #scheduleNavi {
    width: 96%;
    margin: auto;
  }
  section #scheduleNavi > ul {
    width: 100%;
    gap: 0.5rem;
    justify-content: space-between;
  }
  section #scheduleNavi > ul > li {
    width: calc(50% - 0.5rem);
  }
  section #scheduleNavi > ul > li > * {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
  section #scheduleNavi > ul > li:first-child {
    width: 100%;
  }
  section .castList {
    width: 96%;
    margin: auto;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section {
    width: 96%;
    margin: auto;
  }
  section #scheduleNavi {
    width: 100%;
    margin: auto;
  }
  section #scheduleNavi > ul {
    gap: 0.3rem;
  }
  section #scheduleNavi > ul > li {
    width: calc(14% - 0.3rem);
    height: 2.2rem;
    overflow: hidden;
  }
  section #scheduleNavi > ul > li > * {
    font-size: 1.2rem;
  }
  section #scheduleNavi > ul > li::after {
    content: "";
    position: absolute;
    background: #ffffff;
    transform: rotate(45deg);
    width: 2.2rem;
    height: 2.2rem;
    top: -1.3rem;
    right: -1.3rem;
  }
  section > .castList {
    width: 96%;
    margin: auto;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  section {
    min-width: 1025px;
    max-width: 1680px;
    width: 96%;
    margin: auto;
  }
  section #scheduleNavi {
    width: 100%;
  }
  section #scheduleNavi > ul {
    width: 100%;
    column-gap: 0.3rem;
    margin-top: 4rem;
  }
  section #scheduleNavi > ul > li {
    width: 14%;
    height: 2.2rem;
    overflow: hidden;
  }
  section #scheduleNavi > ul > li > * {
    width: 100%;
  }
  section #scheduleNavi > ul > li::after {
    content: "";
    position: absolute;
    background: #ffffff;
    transform: rotate(45deg);
    width: 2.2rem;
    height: 2.2rem;
    top: -1.3rem;
    right: -1.3rem;
  }
  section > .castList {
    margin-top: 1rem;
  }
}
/*# sourceMappingURL=schedule-index.css.map */