@charset "UTF-8";
:root {
  --svh: 100vh;
  --color-text: var(--color-white);
  --color-bg: var(--color-violet-bg);
  --color-black: #000;
  --color-white: #fff;
  --color-violet-bg: #1e003b;
  --color-violet-light: rgba(95, 40, 255, 0.4);
  --color-sky: #5fdefe;
  --color-violet: #927bff;
  --color-pink: #ff86b0;
  --color-line: rgba(255, 255, 255, 0.2);
  --gradient-violet: linear-gradient(to right, #1c0844 0%, #432f86 100%);
  --gradient-header: linear-gradient(to right, #541c4c 0%, #18002e 50%, #16135b 100%);
  --shadow-violet: 0 0 3rem 0 rgba(0, 0, 0, 0.2);
  --ease_out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease_inout: cubic-bezier(0.65, 0, 0.35, 1);
}

.p-schedule {
  display: block;
  position: relative;
  padding: 8.5rem 0 5.6rem;
}

@media screen and (max-width: 960px) {
  .p-schedule {
    padding: 4rem 0 4rem;
  }
}
.p-schedule__container {
  display: block;
  position: relative;
}

.p-schedule__content {
  width: 90%;
  max-width: 120rem;
  display: block;
  position: relative;
  margin: 0 auto;
}

.p-schedule__header {
  display: block;
  position: relative;
  margin-bottom: 7.4rem;
}

@media screen and (max-width: 960px) {
  .p-schedule__header {
    margin-bottom: 3.8rem;
  }
}
.p-schedule__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
  font-size: 8rem;
  line-height: 0.8;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-family: "Chakra Petch", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-white);
  text-align: center;
}
.p-schedule__title::after {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-white);
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}

@media screen and (max-width: 960px) {
  .p-schedule__title {
    font-size: 4.6rem;
  }
}
.is-scroll-active .p-schedule__title::after {
  opacity: 0;
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  -webkit-transition: clip-path 0.5s var(--ease_inout) 0.25s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.65s;
  transition: clip-path 0.5s var(--ease_inout) 0.25s, opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1) 0.65s;
}

.p-schedule__title-text {
  display: block;
  position: relative;
  clip-path: polygon(0 0, -20% 0, 0 100%, 0 100%);
}
.is-scroll-active .p-schedule__title-text {
  clip-path: polygon(-20% 0, 100% 0, 120% 100%, 0 100%);
  -webkit-transition: clip-path 0.5s var(--ease_inout) 0.25s;
  transition: clip-path 0.5s var(--ease_inout) 0.25s;
}

.p-schedule__inner {
  display: block;
  position: relative;
}

.p-schedule_content {
  display: block;
  position: relative;
}
.p-schedule_content + .p-schedule_content {
  margin-top: 5.8rem;
}

.p-schedule_content__header {
  display: block;
  position: relative;
  padding: 1.5rem 0;
  margin-bottom: 4.1rem;
}
.p-schedule_content__header::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: var(--color-violet-light);
  clip-path: polygon(0 0, -10% 0, 0 100%, 0 100%);
}

@media screen and (max-width: 960px) {
  .p-schedule_content__header {
    margin-bottom: 2.8rem;
  }
}
.is-scroll-active .p-schedule_content__header::before {
  clip-path: polygon(-10% 0, 100% 0, 110% 100%, 0 100%);
  -webkit-transition: clip-path 0.5s var(--ease_inout) 0.25s;
  transition: clip-path 0.5s var(--ease_inout) 0.25s;
}

.p-schedule_content__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
  font-size: 3.5rem;
  line-height: 0.8;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-family: "Chakra Petch", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-white);
  text-align: center;
  opacity: 0;
  -webkit-transform: translateX(-2rem);
          transform: translateX(-2rem);
}

@media screen and (max-width: 960px) {
  .p-schedule_content__title {
    font-size: 2.8rem;
  }
}
.is-scroll-active .p-schedule_content__title {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.4s var(--ease_out) 0.55s, -webkit-transform 0.4s var(--ease_out) 0.55s;
  transition: opacity 0.4s var(--ease_out) 0.55s, -webkit-transform 0.4s var(--ease_out) 0.55s;
  transition: opacity 0.4s var(--ease_out) 0.55s, transform 0.4s var(--ease_out) 0.55s;
  transition: opacity 0.4s var(--ease_out) 0.55s, transform 0.4s var(--ease_out) 0.55s, -webkit-transform 0.4s var(--ease_out) 0.55s;
}

.p-schedule_content__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 3.7rem 2rem;
  position: relative;
}

@media screen and (max-width: 960px) {
  .p-schedule_content__list {
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.7rem 1rem;
  }
}
.p-schedule_data__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-schedule_data__inner + .p-schedule_data__inner {
  margin-top: 1rem;
}
.p-schedule_data-time {
  width: 6.5rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 961px) {
  .p-schedule_data-time {
    width: 14rem;
    font-size: 1.8rem;
  }
}
.p-schedule_data-time small {
  vertical-align: baseline;
  font-size: 50%;
}
.p-schedule_data-list {
  width: calc(100% - 6.5rem);
}
@media screen and (min-width: 961px) {
  .p-schedule_data-list {
    width: calc(100% - 14rem);
  }
}
.p-schedule_data-box {
  position: relative;
  border: 1px solid;
  -o-border-image: linear-gradient(to right, rgba(95, 222, 255, 0.5), rgba(67, 112, 231, 0.5), rgba(133, 83, 199, 0.5), rgba(255, 134, 176, 0.5));
     border-image: -webkit-gradient(linear, left top, right top, from(rgba(95, 222, 255, 0.5)), color-stop(rgba(67, 112, 231, 0.5)), color-stop(rgba(133, 83, 199, 0.5)), to(rgba(255, 134, 176, 0.5)));
     border-image: linear-gradient(to right, rgba(95, 222, 255, 0.5), rgba(67, 112, 231, 0.5), rgba(133, 83, 199, 0.5), rgba(255, 134, 176, 0.5));
  border-image-slice: 1;
  opacity: 0;
  -webkit-transform: translateY(4rem);
          transform: translateY(4rem);
}
.is-scroll-active .p-schedule_data-box {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.3s var(--ease_out), -webkit-transform 0.5s var(--ease_out);
  transition: opacity 0.3s var(--ease_out), -webkit-transform 0.5s var(--ease_out);
  transition: opacity 0.3s var(--ease_out), transform 0.5s var(--ease_out);
  transition: opacity 0.3s var(--ease_out), transform 0.5s var(--ease_out), -webkit-transform 0.5s var(--ease_out);
}
.p-schedule_data-box + .p-schedule_data-box {
  margin-top: 1rem;
}
.p-schedule_data-box .-caption {
  position: relative;
  padding: 1rem;
  background: rgba(95, 222, 255, 0.5);
  background: -webkit-gradient(linear, left top, right top, from(rgba(95, 222, 255, 0.5)), color-stop(33%, rgba(67, 112, 231, 0.5)), color-stop(66%, rgba(133, 83, 199, 0.5)), to(rgba(255, 134, 176, 0.5)));
  background: linear-gradient(90deg, rgba(95, 222, 255, 0.5) 0%, rgba(67, 112, 231, 0.5) 33%, rgba(133, 83, 199, 0.5) 66%, rgba(255, 134, 176, 0.5) 100%);
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 961px) {
  .p-schedule_data-box .-caption {
    font-size: 1.5rem;
  }
}
.p-schedule_data-box .-item {
  position: relative;
  padding: 1rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 961px) {
  .p-schedule_data-box .-item {
    font-size: 1.5rem;
  }
}
.p-schedule_data-box .-item li {
  padding-left: 1rem;
  text-indent: -1rem;
}
.p-schedule_data-box .-item li small {
  font-size: 75%;
  vertical-align: baseline;
}
.p-schedule_data-box .-item li span.--tag {
  font-family: "Chakra Petch", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  font-size: 90%;
  padding: 0.2rem 0.5rem;
  margin-right: 0.5rem;
  display: inline-block;
  line-height: 1;
  text-indent: 0;
  background: rgba(95, 222, 255, 0.5);
}

.is-scroll-active .p-schedule_data-box:nth-child(1) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.is-scroll-active .p-schedule_data-box:nth-child(2) {
  -webkit-transition-delay: 0.46s;
          transition-delay: 0.46s;
}

.is-scroll-active .p-schedule_data-box:nth-child(3) {
  -webkit-transition-delay: 0.47s;
          transition-delay: 0.47s;
}

.is-scroll-active .p-schedule_data-box:nth-child(4) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}

.is-scroll-active .p-schedule_data-box:nth-child(5) {
  -webkit-transition-delay: 0.49s;
          transition-delay: 0.49s;
}

.is-scroll-active .p-schedule_data-box:nth-child(6) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.is-scroll-active .p-schedule_data-box:nth-child(7) {
  -webkit-transition-delay: 0.51s;
          transition-delay: 0.51s;
}

.is-scroll-active .p-schedule_data-box:nth-child(8) {
  -webkit-transition-delay: 0.52s;
          transition-delay: 0.52s;
}

.is-scroll-active .p-schedule_data-box:nth-child(9) {
  -webkit-transition-delay: 0.53s;
          transition-delay: 0.53s;
}

.is-scroll-active .p-schedule_data-box:nth-child(10) {
  -webkit-transition-delay: 0.54s;
          transition-delay: 0.54s;
}

.is-scroll-active .p-schedule_data-box:nth-child(11) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

.is-scroll-active .p-schedule_data-box:nth-child(12) {
  -webkit-transition-delay: 0.56s;
          transition-delay: 0.56s;
}

.is-scroll-active .p-schedule_data-box:nth-child(13) {
  -webkit-transition-delay: 0.57s;
          transition-delay: 0.57s;
}

.is-scroll-active .p-schedule_data-box:nth-child(14) {
  -webkit-transition-delay: 0.58s;
          transition-delay: 0.58s;
}

.is-scroll-active .p-schedule_data-box:nth-child(15) {
  -webkit-transition-delay: 0.59s;
          transition-delay: 0.59s;
}

.is-scroll-active .p-schedule_data-box:nth-child(16) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.is-scroll-active .p-schedule_data-box:nth-child(17) {
  -webkit-transition-delay: 0.61s;
          transition-delay: 0.61s;
}

.is-scroll-active .p-schedule_data-box:nth-child(18) {
  -webkit-transition-delay: 0.62s;
          transition-delay: 0.62s;
}

.is-scroll-active .p-schedule_data-box:nth-child(19) {
  -webkit-transition-delay: 0.63s;
          transition-delay: 0.63s;
}

.is-scroll-active .p-schedule_data-box:nth-child(20) {
  -webkit-transition-delay: 0.64s;
          transition-delay: 0.64s;
}

.is-scroll-active .p-schedule_data-box:nth-child(21) {
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}

.is-scroll-active .p-schedule_data-box:nth-child(22) {
  -webkit-transition-delay: 0.66s;
          transition-delay: 0.66s;
}

.is-scroll-active .p-schedule_data-box:nth-child(23) {
  -webkit-transition-delay: 0.67s;
          transition-delay: 0.67s;
}

.is-scroll-active .p-schedule_data-box:nth-child(24) {
  -webkit-transition-delay: 0.68s;
          transition-delay: 0.68s;
}

.is-scroll-active .p-schedule_data-box:nth-child(25) {
  -webkit-transition-delay: 0.69s;
          transition-delay: 0.69s;
}

.is-scroll-active .p-schedule_data-box:nth-child(26) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.is-scroll-active .p-schedule_data-box:nth-child(27) {
  -webkit-transition-delay: 0.71s;
          transition-delay: 0.71s;
}

.is-scroll-active .p-schedule_data-box:nth-child(28) {
  -webkit-transition-delay: 0.72s;
          transition-delay: 0.72s;
}

.is-scroll-active .p-schedule_data-box:nth-child(29) {
  -webkit-transition-delay: 0.73s;
          transition-delay: 0.73s;
}

.is-scroll-active .p-schedule_data-box:nth-child(30) {
  -webkit-transition-delay: 0.74s;
          transition-delay: 0.74s;
}

.is-scroll-active .p-schedule_data-box:nth-child(31) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

.is-scroll-active .p-schedule_data-box:nth-child(32) {
  -webkit-transition-delay: 0.76s;
          transition-delay: 0.76s;
}

.is-scroll-active .p-schedule_data-box:nth-child(33) {
  -webkit-transition-delay: 0.77s;
          transition-delay: 0.77s;
}

.is-scroll-active .p-schedule_data-box:nth-child(34) {
  -webkit-transition-delay: 0.78s;
          transition-delay: 0.78s;
}

.is-scroll-active .p-schedule_data-box:nth-child(35) {
  -webkit-transition-delay: 0.79s;
          transition-delay: 0.79s;
}

.is-scroll-active .p-schedule_data-box:nth-child(36) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.is-scroll-active .p-schedule_data-box:nth-child(37) {
  -webkit-transition-delay: 0.81s;
          transition-delay: 0.81s;
}

.is-scroll-active .p-schedule_data-box:nth-child(38) {
  -webkit-transition-delay: 0.82s;
          transition-delay: 0.82s;
}

.is-scroll-active .p-schedule_data-box:nth-child(39) {
  -webkit-transition-delay: 0.83s;
          transition-delay: 0.83s;
}

.is-scroll-active .p-schedule_data-box:nth-child(40) {
  -webkit-transition-delay: 0.84s;
          transition-delay: 0.84s;
}

.is-scroll-active .p-schedule_data-box:nth-child(41) {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

.is-scroll-active .p-schedule_data-box:nth-child(42) {
  -webkit-transition-delay: 0.86s;
          transition-delay: 0.86s;
}

.is-scroll-active .p-schedule_data-box:nth-child(43) {
  -webkit-transition-delay: 0.87s;
          transition-delay: 0.87s;
}

.is-scroll-active .p-schedule_data-box:nth-child(44) {
  -webkit-transition-delay: 0.88s;
          transition-delay: 0.88s;
}

.is-scroll-active .p-schedule_data-box:nth-child(45) {
  -webkit-transition-delay: 0.89s;
          transition-delay: 0.89s;
}

.is-scroll-active .p-schedule_data-box:nth-child(46) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.is-scroll-active .p-schedule_data-box:nth-child(47) {
  -webkit-transition-delay: 0.91s;
          transition-delay: 0.91s;
}

.is-scroll-active .p-schedule_data-box:nth-child(48) {
  -webkit-transition-delay: 0.92s;
          transition-delay: 0.92s;
}

.is-scroll-active .p-schedule_data-box:nth-child(49) {
  -webkit-transition-delay: 0.93s;
          transition-delay: 0.93s;
}

.is-scroll-active .p-schedule_data-box:nth-child(50) {
  -webkit-transition-delay: 0.94s;
          transition-delay: 0.94s;
}

.is-scroll-active .p-schedule_data-box:nth-child(51) {
  -webkit-transition-delay: 0.95s;
          transition-delay: 0.95s;
}

.is-scroll-active .p-schedule_data-box:nth-child(52) {
  -webkit-transition-delay: 0.96s;
          transition-delay: 0.96s;
}

.is-scroll-active .p-schedule_data-box:nth-child(53) {
  -webkit-transition-delay: 0.97s;
          transition-delay: 0.97s;
}

.is-scroll-active .p-schedule_data-box:nth-child(54) {
  -webkit-transition-delay: 0.98s;
          transition-delay: 0.98s;
}

.is-scroll-active .p-schedule_data-box:nth-child(55) {
  -webkit-transition-delay: 0.99s;
          transition-delay: 0.99s;
}