@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.l-header__inner {
  margin: 0 auto;
}

.p-movie__list {
  margin-top: 2.7rem;
  transform: translateY(35px);
  opacity: 0;
}
.is-active .p-movie__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-movie__list {
    margin-top: 4.7rem;
  }
}
.p-movie__list-item {
  position: relative;
  cursor: pointer;
}
.p-movie__list-item + .p-movie__list-item {
  border-top: 1px solid #dbd8d2;
  margin-top: 2.6rem;
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-movie__list-item + .p-movie__list-item {
    margin-top: 4.6rem;
    padding-top: 5rem;
  }
}
.p-movie__list-item:last-of-type {
  border-bottom: 1px solid #dbd8d2;
  padding-bottom: 3rem;
}
@media (hover: hover) {
  .p-movie__list-item:hover .p-movie__list-thumb-img img {
    transform: scale(1.05);
    filter: blur(3px);
  }
}
.p-movie__list-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 4px solid #ddbd80;
  z-index: 1;
  padding: 2px;
  pointer-events: none;
}
.p-movie__list-frame::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border: 2px solid #ddbd80;
  box-sizing: border-box;
}
.p-movie__list-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.p-movie__list-thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-movie__list-thumb-img::after {
  content: "";
  width: 19%;
  padding-top: 19%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/sp/btn_play.png) no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
.p-movie__list-thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), filter 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-movie__list-ttl {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-movie__list-ttl {
    margin-top: 1.5rem;
    font-size: 1.6rem;
  }
}