@media (max-width: 834px) {
  .movie__content {
    padding: 0 30px 33.85vw;
  }
}
@media (min-width: 835px) {
  .movie__content {
    padding: 45px 0 180px;
  }
}

.movie__list {
  display: grid;
}
@media (max-width: 834px) {
  .movie__list {
    gap: 8.33vw;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 835px) {
  .movie__list {
    gap: min(3.33vw, 64px);
    grid-template-columns: repeat(3, 1fr);
  }
}

.movie__item {
  cursor: pointer;
  min-width: 320px;
  position: relative;
}
@media (min-width: 835px) {
  .movie__item {
    min-width: initial;
  }
}
.movie__item .thumb {
  clip-path: inset(0 100% 0 0);
  cursor: pointer;
  position: relative;
  transition: all 0.7s 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.-ready .movie__item .thumb {
  clip-path: inset(0 0 0 0);
}
.movie__item .thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.movie__item .thumb::before {
  background: #000;
  content: "";
  height: 100%;
  opacity: 0.3;
  transition: opacity 0.5s 0s ease;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.movie__item .thumb::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: url(/omnibus/assets/img/common/ico/ico_play.svg) no-repeat 0 0/100% auto;
  content: "";
  height: min(12.5vw, 58px);
  transform: translate(-50%, -50%);
  width: min(12.5vw, 58px);
}
.movie__item .thumb:hover::before {
  opacity: 0;
}
.movie__item .ttl {
  transition: all 0.3s ease;
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 500;
  margin-top: 10px;
}
@media (min-width: 835px) {
  .movie__item .ttl {
    font-size: 0.875rem;
    margin-top: 16px;
  }
}
.movie__item .date {
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  color: #959595;
}
@media (min-width: 835px) {
  .movie__item .date {
    font-size: 1rem;
  }
}
.movie__item .ttl,
.movie__item .date {
  clip-path: inset(0 100% 0 0);
  transition: all 0.7s 0.65s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.-ready .movie__item .ttl,
.-ready .movie__item .date {
  clip-path: inset(0 0 0 0);
}