@charset "UTF-8";
/*==========================================================
	レスポンシブ設定
==========================================================*/
/*==========  レスポンシブ設定 END  =====================*/
body {
  min-height: unset;
  height: 100vh;
}
main {
  position: fixed;
  z-index: -1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}
main.vertical {
  aspect-ratio: unset;
}
main article {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /*縦横幅指定*/
  /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  height: 100%;
}
@media (max-width: 1366px) and (orientation: landscape) {
  main article {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1194px) and (orientation: landscape) {
  main article {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 834px) and (orientation: portrait) {
  main article {
    width: 100vw;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 928px) and (orientation: landscape) {
  main article {
    width: unset;
    height: 100dvh;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 480px) and (orientation: portrait) {
  main article {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
  }
}
main article .block_movie {
  position: relative;
  width: 100%;
  height: 100%;
  height: 100vh;
  aspect-ratio: 16/9;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1366px) and (orientation: landscape) {
  main article .block_movie {
    height: unset;
  }
}
@media (max-width: 1194px) and (orientation: landscape) {
  main article .block_movie {
    height: unset;
  }
}
@media (max-width: 834px) and (orientation: portrait) {
  main article .block_movie {
    height: auto;
    width: 100vw;
  }
}
@media (max-width: 480px) and (orientation: portrait) {
  main article .block_movie {
    height: auto;
    width: 100vw;
  }
}
main article .block_movie a {
  position: absolute;
  display: block;
  z-index: 1;
  transition: 0.5s ease-out;
  opacity: 0;
}
main article .block_movie a img {
  width: 100%;
}
main article .block_movie a.link_000 {
  width: 46.5%;
  top: -4.2%;
  right: 0.2%;
}main article .block_movie a.link_001 {
  width: 24.5%;
  top: 34.22%;
  left: 9.77%;
}
main article .block_movie a.link_002 {
  width: 28.95%;
  top: 42.10%;
  left: 21.25%;
}
main article .block_movie a.link_003 {
  width: 19.85%;
  top: 25.22%;
  left: 44.95%;
}
main article .block_movie a.link_004 {
  width: 17.7%;
  top: 53.95%;
  left: 49.35%;
}
main article .block_movie a.link_005 {
  width: 28.26%;
  top: 32.15%;
  left: 62.32%;
}
main article .block_movie a.link_006 {
  width: 24.3%;
  top: 66.1%;
  left: 69.65%;
}
@media (min-width: 480px) {
  main article .block_movie a:hover {
    opacity: 1;
    transition: 0.3s ease-out;
  }
}
main article video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1194px) and (orientation: landscape) {
  main article video {
    height: unset;
    width: unset;
  }
}
/*# sourceMappingURL=top.css.map */