@charset "UTF-8";
/* -------------------------------------
     /student/careertube/ 配下のページ用
---------------------------------------- */
.movie_detail_block .detail_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  padding: 1rem;
}
.movie_detail_block .detail_block iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 767px) {
  .movie_detail_block .detail_block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .movie_detail_block .detail_block iframe {
    width: 100%;
    height: 30vh;
  }
}
.movie_detail_block .detail_block .__title {
  color: #00AEE5;
  font-weight: 700;
  margin-bottom: 0.5em;
}