@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loop_x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrollAnime {
  0% {
    transform: translateY(-100%);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes kv_spin {
  0% {
    opacity: 0;
    transform: rotateY(360deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.p-episode {
  padding: 43px 0 182px;
}
@media screen and (max-width: 767px) {
  .p-episode {
    padding: 34px 0 106px;
  }
}
.p-episode__ttl {
  margin-bottom: 68px;
}
@media screen and (max-width: 767px) {
  .p-episode__ttl {
    margin-bottom: 44px;
  }
}
.p-episode__nav {
  transform: translateY(35px);
  opacity: 0;
}
.is-active .p-episode__nav {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1), opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
.p-episode__nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-episode__nav-list {
    margin: 0 auto;
    width: 90%;
  }
}
.p-episode__nav-list-item {
  width: 15.5%;
  background-color: #000;
  border-radius: 100px;
  margin-right: 1.4%;
  margin-bottom: 1%;
}
.p-episode__nav-list-item.is-current {
  pointer-events: none;
  background-color: #b20000;
}
.p-episode__nav-list-item:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-episode__nav-list-item:nth-child(6n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-episode__nav-list-item {
    width: 24%;
    margin-right: 1.3%;
    margin-bottom: 1.5%;
  }
  .p-episode__nav-list-item:nth-child(4n) {
    margin-right: 0;
  }
}
.p-episode__nav-inner {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 5px;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-episode__nav-inner:hover {
    transform: scale(0.97);
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-episode__nav-inner {
    padding: 3px;
  }
}
.p-episode__nav-text {
  border: 1px solid #b20000;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  padding: 8px 0 9px;
}
@media screen and (max-width: 767px) {
  .p-episode__nav-text {
    font-size: 12px;
    padding: 5px 0 5px;
  }
}
.p-episode__content {
  color: #fff;
  text-align: center;
  margin-top: 46px;
  transform: translateY(35px);
  opacity: 0;
}
.is-active .p-episode__content {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1), opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-episode__content {
    margin-top: 31px;
  }
}
.p-episode__cap {
  background-color: #b20000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 25px;
  padding: 5px 18px 6px;
}
@media screen and (max-width: 767px) {
  .p-episode__cap {
    margin-bottom: 11px;
    font-size: 20px;
    padding: 3px 13px 4px;
  }
}
.p-episode__epttl {
  line-height: 1.6;
  font-size: 32px;
  margin-bottom: 19px;
}
@media screen and (max-width: 767px) {
  .p-episode__epttl {
    padding: 0 6%;
    font-size: 20px;
    margin-bottom: 27px;
    line-height: 1.4;
  }
}
.p-episode__slider {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  margin-bottom: 51px;
}
@media screen and (max-width: 767px) {
  .p-episode__slider {
    margin-bottom: 25px;
  }
}
.p-episode__text {
  line-height: 1.85;
  text-align: left;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .p-episode__text {
    padding: 0 5%;
    line-height: 2;
    font-size: 13.5px;
  }
}
.p-episode__staff {
  text-align: left;
  margin-top: 97px;
}
@media screen and (max-width: 767px) {
  .p-episode__staff {
    padding: 0 5%;
  }
}
.p-episode__staff-ttl {
  background-color: #b20000;
  font-size: 28px;
  padding: 4px 10px 7px 29px;
  margin-bottom: 34px;
}
@media screen and (max-width: 767px) {
  .p-episode__staff-ttl {
    padding: 6px 10px 6px 19px;
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.p-episode__staff-list-item {
  display: flex;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-episode__staff-list-item {
    font-size: 14px;
  }
}
.p-episode__staff-list-item + .p-episode__staff-list-item {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-episode__staff-list-item + .p-episode__staff-list-item {
    margin-top: 5px;
  }
}
.p-episode__staff-label {
  flex-shrink: 0;
  width: 143px;
}
@media screen and (max-width: 767px) {
  .p-episode__staff-label {
    width: 106px;
  }
}
.p-episode__movie {
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .p-episode__movie {
    margin-top: 46px;
    padding: 0 5%;
  }
}
.p-episode__movie-item {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  cursor: pointer;
  overflow: hidden;
}
@media (hover: hover) {
  .p-episode__movie-item:hover .p-episode__movie-thumb {
    transform: scale(1.05);
    filter: blur(2px);
  }
}
.p-episode__movie-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), filter 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-episode__movie-thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-episode__movie-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17%;
}
@media screen and (max-width: 767px) {
  .p-episode__movie-play {
    width: 37%;
  }
}
.is-load .p-episode__movie-play-base img {
  animation: rotate_loop 10s linear infinite forwards;
}
.p-episode__movie-play-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  font-family: "Red Rose", system-ui;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-episode__movie-play-text {
    font-size: 10px;
  }
}

.ep_swiper .swiper-slide {
  padding: 5px;
  position: relative;
  margin: 0 auto;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .ep_swiper .swiper-slide {
    width: 82%;
    padding: 3px;
  }
}
.ep_swiper__frame {
  position: relative;
  width: 100%;
  padding-top: 55.8%;
  border: 1px solid #b20000;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ep_swiper__frame {
    padding-top: 53.8%;
  }
}
.ep_swiper__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ep_swiper__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ep_swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 23px;
  padding: 0 5%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .ep_swiper .swiper-pagination {
    margin-top: 9px;
  }
}
.ep_swiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background-color: transparent;
  width: 15%;
  padding-top: 8.25%;
  height: 0;
  margin: 0 5px 5px;
  position: relative;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .ep_swiper .swiper-pagination .swiper-pagination-bullet {
    width: 17%;
    padding-top: 11.25%;
    margin: 0 3px 3px;
  }
}
.ep_swiper .swiper-pagination .swiper-pagination-bullet img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
.ep_swiper .swiper-pagination .swiper-pagination-bullet-active img {
  filter: grayscale(0);
}