.l-main.main--image {
  background-image: url(../../img/movie/head_img.webp);
}

.movie {
  max-width: 650px;
  margin: 0 auto;
}

.movie__title {
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.movie__container + .movie__container {
  margin-top: 120px;
}

.movie-list {
  overflow: hidden;
  transition: max-height 180ms ease;
  margin-top: 30px;
}

.movie-list__title {
  color: #005bac;
  margin-bottom: 8px;
}

.movie-list__item + .movie-list__item {
  margin-top: 40px;
}

.movie-list__item .js-modal-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.movie-list__item .js-modal-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.movie-list__item .js-modal-video::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.4);
}

.movie-list__item .js-modal-video::after {
  content: "";
  display: block;
  width: 55px;
  height: 56px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../../img/movie/movie_ico.webp) top left/contain no-repeat;
}

.movie--more {
  cursor: pointer;
  margin-top: 40px;
  position: relative;
}

.movie--more::before, .movie--more::after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-color: #005bac;
}

.movie--more::after {
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (min-width: 361px) {
  html, body {
    margin: 0;
  }
}

@media screen and (min-width: 500px) {
  html, body {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  html, body {
    margin: 0;
  }
}

@media screen and (min-width: 1080px) {
  html, body {
    margin: 0;
  }
  .movie {
    max-width: none;
  }
  .movie-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .movie-list__item {
    width: calc(50% - 20px);
  }
  .movie-list__item:nth-of-type(2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 1280px) {
  html, body {
    margin: 0;
  }
}

@media screen and (min-width: 1920px) {
  html, body {
    margin: 0;
  }
}

@media screen and (max-width: 360px) {
  html, body {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  html, body {
    margin: 0;
  }
}

@media screen and (max-width: 1079px) {
  html, body {
    margin: 0;
  }
}

@media screen and (max-width: 1279px) {
  html, body {
    margin: 0;
  }
}

@media screen and (max-width: 1919px) {
  html, body {
    margin: 0;
  }
}

@media (hover: hover) {
  .movie--more:hover::before, .movie--more:hover::after {
    background-color: #ffffff;
  }
}
