@media (max-width: 959px) {
  .movie__cont {
    margin-top: 12.5vw;
  }
}
@media (min-width: 960px) {
  .movie__cont {
    margin-top: 50px;
  }
}

@media (min-width: 960px) {
  .movie__list {
    display: flex;
    flex-wrap: wrap;
    gap: 56px 3.7%;
  }
}

.movie__item {
  opacity: 0;
  position: relative;
}
@media (min-width: 960px) {
  .movie__item {
    width: 30.8%;
  }
}
@media (max-width: 959px) {
  .movie__item + .movie__item {
    margin-top: 13vw;
  }
}
.-load .movie__item {
  -webkit-animation: itemInY 0.5s 0s forwards;
          animation: itemInY 0.5s 0s forwards;
}
@media (min-width: 960px) {
  .movie__item:nth-child(3n-2) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
}
@media (min-width: 960px) {
  .movie__item:nth-child(3n-1) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
}
@media (min-width: 960px) {
  .movie__item:nth-child(3n) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
}
@media (max-width: 959px) {
  .movie__item:nth-of-type(1) {
    -webkit-animation-delay: 0.78s;
            animation-delay: 0.78s;
  }
}
@media (max-width: 959px) {
  .movie__item:nth-of-type(2) {
    -webkit-animation-delay: 0.86s;
            animation-delay: 0.86s;
  }
}
@media (max-width: 959px) {
  .movie__item:nth-of-type(3) {
    -webkit-animation-delay: 0.94s;
            animation-delay: 0.94s;
  }
}
@media (max-width: 959px) {
  .movie__item:nth-of-type(4) {
    -webkit-animation-delay: 1.02s;
            animation-delay: 1.02s;
  }
}
@media (max-width: 959px) {
  .movie__item:nth-of-type(5) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
}
@media (max-width: 959px) {
  .movie__item:nth-of-type(6) {
    -webkit-animation-delay: 1.18s;
            animation-delay: 1.18s;
  }
}
.movie__item .ttl {
  font-weight: 900;
}
@media (max-width: 959px) {
  .movie__item .ttl {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
    margin-top: 7px;
  }
}
@media (min-width: 960px) {
  .movie__item .ttl {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    margin-top: 7px;
  }
}
.movie__item .date {
  color: #809CAB;
  font-weight: 700;
}
@media (max-width: 959px) {
  .movie__item .date {
    font-size: 0.8125rem;
    line-height: 1.4615384615;
  }
}
@media (min-width: 960px) {
  .movie__item .date {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}
.movie__item .index {
  color: #ccd7dd;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 959px) {
  .movie__item .index {
    position: absolute;
    top: -10.5vw;
    left: -3.3vw;
    font-size: 13.5vw;
  }
}
@media (min-width: 960px) {
  .movie__item .index {
    position: absolute;
    top: -40px;
    left: -15px;
    font-size: 3.25rem;
  }
}
.movie__item .thumb {
  position: relative;
}
.movie__item .thumb::before, .movie__item .thumb::after {
  content: "";
  transition: all 0.2s;
}
.movie__item .thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.15);
  height: 100%;
  width: 100%;
}
.movie__item .thumb::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(../img/common/ico/ico_play_movie.svg) no-repeat 0 0/100% auto;
  transform: translate(-50%, -50%);
}
@media (max-width: 959px) {
  .movie__item .thumb::after {
    height: 16.6vw;
    width: 16.6vw;
  }
}
@media (min-width: 960px) {
  .movie__item .thumb::after {
    height: 56px;
    width: 56px;
  }
}
@media (min-width: 960px) {
  .movie__item:hover .thumb::before {
    opacity: 0;
  }
  .movie__item:hover .thumb::after {
    transform: translate(-50%, -50%) scale(1.05);
  }
}