/* ===============================
  Movie block
  =============================== */

/* layout */
.box_movie {
  display: grid;
  grid-template-columns: 100px 630px;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.box_movie_left {
  margin: 20px 0 0 0;
  text-align: left;
  box-align: start;
}

.box_movie_right {
  text-align: left;
  box-align: start;
}

.box_movie_right iframe {
  display: block;
  width: 100%;
  height: auto;
  max-width: 630px;
  aspect-ratio: 16 / 9;
}

/* circle badge */
.circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  line-height: 140%;
  border-radius: 50%;
}

.circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "montserrat", "source-han-sans-japanese", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 11px;
  line-height: 140%;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}


/* ===============================
  Color variations
  =============================== */

.bgc_18415b { background-color: #18415b; }

.bgc_1a6783 { background-color: #1a6783; }

.bgc_496167 { background-color: #496167; }

.bgc_466964 { background-color: #466964; }

.bgc_d53a3e { background-color: #d53a3e; }

.bgc_ec3643 { background-color: #ec3643; }

.bgc_007580 { background-color: #007580; }

.bgc_0a366a { background-color: #0a366a; }

.bgc_eb7a77 { background-color: #eb7a77; }

.bgc_2e2c27 { background-color: #2e2c27; }

.bgc_d7282f { background-color: #d7282f; }

.bgc_1f415c { background-color: #1f415c; }

.bgc_585858 {
  background: linear-gradient(to bottom right, #585858, #e2dfd6);
}

.bgc_fec739 { background-color: #fec739; }

.bgc_6daddb {
  background-color: #6daddb;
  background-image: linear-gradient(315deg, #6daddb 0%, #313131 74%);
}

.bgc_b09151 {
  background: -moz-linear-gradient(top left, #b09151, #ead4a6);
  background: -webkit-linear-gradient(top left, #b09151, #ead4a6);
  background: linear-gradient(to bottom right, #b09151, #ead4a6);
}


/* ===============================
  Utility
  =============================== */

.setting {
  margin-left: 110px;
}


/* ===============================
  Responsive
  =============================== */

@media screen and (max-width: 768px) {
  .box_movie {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .box_movie_left {
    margin: 0 auto 10px;
    text-align: center;
  }

  .circle {
    width: 80px;
    height: 80px;
  }

  .setting {
    margin-left: 0;
  }
}