.detail__movie {
  margin-top: 3em;
}
.detail__movie__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 10px;
  background: #7ecef4;
}
.detail__movie__title span {
  font-size: 25px;
}
.detail__movie__body {
  padding: 50px;
  border: solid 4px #7ecef4;
  border-top: none;
  background: #fff;
}
.detail__movie__frame {
  width: 100%;
  max-width: 736px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}
.detail__movie__frame iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .detail__movie {
    margin-top: 1.5em;
  }
  .detail__movie__title {
    gap: 2.66667vw;
  }
  .detail__movie__title i {
    flex: 0 0 16vw;
  }
  .detail__movie__title i img {
    display: block;
    width: 100%;
    height: auto;
  }
  .detail__movie__title span {
    font-size: 4.26667vw;
  }
  .detail__movie__body {
    padding: 4vw;
  }
}
