.movie .page-ttl {
  margin-bottom: 56px;
}
.movie__list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .movie__list {
    display: block;
    margin-bottom: 80px;
  }
}
.movie__list__item {
  width: calc((100% - 90px) / 3);
  position: relative;
}
@media screen and (max-width: 768px) {
  .movie__list__item {
    width: 100%;
    margin-bottom: 50px;
  }
}
.movie__list__item img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .movie__list__item img {
    display: block;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  .movie__ttl {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .movie__ttl {
    font-size: 14px;
    font-weight: 500;
  }
}
@media screen and (min-width: 769px) {
  .movie .movie__list__item:hover .movie__ttl {
    opacity: 1;
  }
}

.modal-video {
  background: rgba(255, 255, 255, 0.8);
}

.modal-video-close-btn:before,
.modal-video-close-btn:after {
  background: #000;
}/*# sourceMappingURL=movie.css.map */