:root {
  --in-sine: cubic-bezier(.47, 0, .745, .715);
  --out-sine: cubic-bezier(.39, .575, .565, 1);
  --in-out-sine: cubic-bezier(.445, .05, .55, .95);
  --in-quad: cubic-bezier(.55, .085, .68, .53);
  --out-quad: cubic-bezier(.25, .46, .45, .94);
  --in-out-quad: cubic-bezier(.455, .03, .515, .955);
  --in-cubic: cubic-bezier(.55, .055, .675, .19);
  --out-cubic: cubic-bezier(.215, .61, .355, 1);
  --in-out-cubic: cubic-bezier(.645, .045, .355, 1);
  --in-quart: cubic-bezier(.895, .03, .685, .22);
  --out-quart: cubic-bezier(.165, .84, .44, 1);
  --in-out-quart: cubic-bezier(.77, 0, .175, 1);
  --in-quint: cubic-bezier(.755, .05, .855, .06);
  --out-quint: cubic-bezier(.23, 1, .32, 1);
  --in-out-quint: cubic-bezier(.86, 0, .07, 1);
  --in-expo: cubic-bezier(.95, .05, .795, .035);
  --out-expo: cubic-bezier(.19, 1, .22, 1);
  --in-out-expo: cubic-bezier(1, 0, 0, 1);
  --in-circ: cubic-bezier(.6, .04, .98, .335);
  --out-circ: cubic-bezier(.075, .82, .165, 1);
  --in-out-circ: cubic-bezier(.785, .135, .15, .86);
  --in-back: cubic-bezier(.6, -.28, .735, .045);
  --out-back: cubic-bezier(.175, .885, .32, 1.275);
  --in-out-back: cubic-bezier(.68, -.55, .265, 1.55);
}

.p-movie__list {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-movie__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
.p-movie__list-item {
  width: 48.3%;
  margin-right: 3.4%;
  margin-bottom: 4.8%;
}
@media screen and (min-width: 900px) {
  .p-movie__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .p-movie__list-item {
    margin-bottom: 8%;
    width: 100%;
    margin-right: 0;
  }
}
.p-movie__list-thumb {
  width: 100%;
  padding-top: 56%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.p-movie__list-thumb::before, .p-movie__list-thumb::after {
  content: "";
  width: 22%;
  padding-top: 22%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.p-movie__list-thumb::before {
  background: url(../img/common/btn_play01.png) no-repeat center center;
  background-size: contain;
}
.p-movie__list-thumb::after {
  background: url(../img/common/btn_play02.png) no-repeat center center;
  background-size: contain;
}
.is-load .p-movie__list-thumb::after {
  animation: loop_rotate2 10s linear infinite;
}
@media screen and (min-width: 900px) {
  .p-movie__list-thumb:hover .p-movie__list-thumb-img {
    transform: scale(1.05);
  }
  .p-movie__list-thumb:hover .p-movie__list-thumb-img::before {
    opacity: 0.5;
  }
}
.p-movie__list-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-movie__list-thumb-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #091d46;
  opacity: 0.3;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-movie__list-ttl {
  line-height: 1.6;
  margin-top: 1.9rem;
  font-size: 1.6rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 899px) {
  .p-movie__list-ttl {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 1rem;
  }
}
.p-movie__pager {
  margin-top: 4.4rem;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-movie__pager {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.7s;
}
@media screen and (max-width: 899px) {
  .p-movie__pager {
    margin-top: 2rem;
  }
}