/*************************************************

movie

*************************************************/
/* movie-wrap
---------------------------------------*/
.movie-wrap {
  width: min(100rem, 100% - 5rem);
  margin-left: auto;
  margin-right: auto;
}

/*************************************************

movie-item

*************************************************/
.movie-item {
  margin-bottom: 20rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .movie-item {
    margin-bottom: 10rem;
  }
}

/* movie-item__conts
---------------------------------------*/
.movie-item__conts > * {
  margin-bottom: 2.5rem;
}
.movie-item__conts > *:last-child {
  margin-bottom: 0;
}
.movie-item__conts a {
  color: #000;
}

/* movie-item__movie
---------------------------------------*/
.movie-item__movie {
  position: relative;
  margin-bottom: 2.5rem;
  line-height: 0;
}
.movie-item__movie iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}