:root {
  --mv-back-color: #8F8F8F;
  --white: #ffffff;
}

.hero {
  background-color: var(--mv-back-color);
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("/top/2026/assets/img/poster.jpg");
  filter: blur(10px);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media only screen and (max-width: 460px) {
  .hero {
    height: auto;
    aspect-ratio: 192/96;
  }
}
.hero__movieBox {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0px auto;
  height: 100%;
  width: 100%;
  max-width: 1920px;
  aspect-ratio: 192/96;
  background-color: var(--mv-back-color);
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .hero_movideBox {
    aspect-ratio: 16/9;
  }
}
.hero__movie {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}/*# sourceMappingURL=mv.css.map */