.p-movie {
  margin-top: 8rem;
  transform: translate(-1.2rem, -1rem);
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .p-movie {
    margin-top: 3.8rem;
    transform: translate(-0.8rem, -0.6rem);
  }
}
.l-section.is-active .p-movie {
  transform: translate(0, 0);
  opacity: 1;
  transition: transform 1.2s var(--ease-out-cubic) 0.25s, opacity 0.7s var(--ease-out-cubic) 0.25s;
}
.p-movie__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .p-movie__list {
    display: block;
  }
}
.p-movie__list-item {
  width: 31.2%;
  margin-left: 3.2%;
}
@media screen and (max-width: 750px) {
  .p-movie__list-item {
    width: 100%;
    margin-left: 0;
  }
}
.p-movie__list-item:nth-child(3n-2) {
  margin-left: 0;
}
.p-movie__list-item:nth-child(n+4) {
  margin-top: 3%;
}
@media screen and (max-width: 750px) {
  .p-movie__list-item:nth-child(n+2) {
    margin-top: 2.4rem;
  }
}

.p-movie_item__thumbnail {
  z-index: 0;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.p-movie_item__thumbnail::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--color-pink);
  opacity: 0.2;
  transition: opacity 0.5s var(--ease-out-cubic);
}
@media (hover: hover) {
  .p-movie_item__thumbnail:hover::before {
    opacity: 0;
  }
}

.p-movie_item__thumbnail::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 25%;
  height: 100%;
  background: url(../img/movie/btn_play.png) no-repeat center center/100% auto;
}
.p-movie_item__thumbnail-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: transform 0.5s var(--ease-out-cubic);
}
@media (hover: hover) {
  .p-movie_item__thumbnail:hover .p-movie_item__thumbnail-img {
    transform: scale(1.06);
  }
}
.p-movie_item__title {
  margin-top: 0.6rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  .p-movie_item__title {
    font-size: 1.3rem;
  }
}