@charset "UTF-8";
/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*theme--------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-size: 16px;
  color: #FFF;
  background-color: #000;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

@keyframes flash {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes main_flash {
  0% {
    transform: none;
  }
  36% {
    transform: none;
  }
  36.2% {
    transform: skewX(8deg);
  }
  36.4% {
    transform: skewX(-8deg);
  }
  36.6% {
    transform: none;
  }
  66% {
    transform: none;
  }
  66.2% {
    transform: skewX(10deg);
  }
  66.4% {
    transform: skewX(-10deg);
  }
  66.6% {
    transform: none;
  }
  76% {
    transform: none;
  }
  76.2% {
    transform: skewX(40deg);
  }
  76.4% {
    transform: skewX(-40deg);
  }
  76.6% {
    transform: none;
  }
  97% {
    transform: none;
  }
  97.2% {
    transform: skewX(5deg);
  }
  97.4% {
    transform: skewX(-5deg);
  }
  97.6% {
    transform: none;
  }
}
/*-inview------------------------*/
.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.coloring {
  transition: 1s;
  filter: brightness(50%) grayscale(100%);
}
.coloring.is-inview {
  filter: brightness(100%) grayscale(0%);
}

.fadeFromLeft {
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-20px);
}
.fadeFromLeft.is-inview {
  transform: translateX(0);
  opacity: 1;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
/*trailer------------------------*/
#trailer .section_inner {
  max-width: 900px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner .section_main {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: double 4px #3D3000;
}
#trailer .section_inner .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer_tab {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trailer_tab li {
  width: 50%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .trailer_tab li {
    width: 100%;
  }
}
.trailer_tab li a {
  height: 3em;
  width: 100%;
  display: block;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background-color: #3a3a3a;
  color: #FEFEFE;
}
@media screen and (max-width: 768px) {
  .trailer_tab li a {
    height: 3em;
  }
}
.trailer_tab .tab.active a {
  background-color: #200000;
  pointer-events: none;
}
.trailer_tab .tab.active a::before {
  content: "● ";
}
.trailer_tab .tab.active a:hover {
  transition: 0.4s;
}

/*-------------------------------*/
/*nav----------------------------*/
.nav_btn {
  display: none;
  z-index: 104;
  position: fixed;
  opacity: 0;
  mix-blend-mode: exclusion;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    display: unset;
    top: 0px;
    right: 0px;
    background-image: url(img/nav_icon.svg);
    background-size: 100%;
    width: 60px;
    height: 60px;
    transition: 0.4s;
    opacity: 1;
  }
}
.nav_btn.show {
  background-image: url(img/nav_icon-close.svg);
}

.gnav {
  z-index: 100;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  position: sticky;
  top: 0px;
  left: 0;
  height: 60px;
  transition: 1s;
}
@media screen and (max-width: 768px) {
  .gnav {
    z-index: 103;
    position: fixed;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    background-color: #000;
  }
  .gnav.show {
    left: 0;
    opacity: 1;
  }
}
.gnav.active {
  opacity: 1;
}
.gnav .gnav_list {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px #5B3E08;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    padding-right: 0px;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    border-bottom: 0;
  }
}
.gnav .gnav_list li a {
  display: block;
  height: 60px;
  line-height: 60px;
  padding: 0 0.5em;
  font-size: 1.2em;
  color: #FDD153;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.3em;
    line-height: 50px;
    height: 50px;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
}
.gnav .gnav_list li a.construction {
  opacity: 0.6;
  pointer-events: none;
}
.gnav .gnav_list li a .icon_menu {
  width: 24px;
  margin-bottom: 13px;
}

a.to_top {
  opacity: 0;
  z-index: 99;
  margin: 0 auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  transition: 1s;
  color: #FFF;
  mix-blend-mode: exclusion;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.to_top.active {
  opacity: 1;
}

/*-------------------------------*/
/*fixed_bg------------------------*/
.fixed_bg {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  background-image: url(img/bg.jpg);
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
}

/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loadeing_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loadeing_inner .loader {
  animation: loadingFlash 1s infinite;
}
.loading .loader {
  width: 50px;
  --b: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #CCC) content-box;
  -webkit-mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0deg, #000 1deg 20deg, rgba(0, 0, 0, 0) 21deg 36deg), radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: l4 1s infinite steps(10);
}
@keyframes l4 {
  to {
    transform: rotate(1turn);
  }
}

/*-------------------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
  margin-right: 0px;
}
@media screen and (max-width: 768px) {
  .shares {
    flex-direction: column;
    margin-right: 0;
  }
}

.share_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  box-sizing: border-box;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}
.share_btns li:hover {
  opacity: 0.7;
}

.share_btns-square {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .share_btns-square {
    margin-bottom: 10px;
    justify-content: flex-end;
  }
}
.share_btns-square::before {
  content: "Share:";
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
}
.share_btns-square li {
  cursor: pointer;
  margin: 0 0px 0px 20px;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .share_btns-square li {
    margin: 0 10px 10px;
  }
}
.share_btns-square li:hover {
  opacity: 0.7;
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
#top {
  position: relative;
  overflow: hidden;
}
#top .main_img {
  position: relative;
  width: 100%;
  transition: 0.5s;
  opacity: 0;
  transform: scale(1.2);
}
#top .main_img.active {
  transform: scale(1);
  opacity: 1;
}
#top .logo-l {
  position: absolute;
  width: 2.6%;
  top: 3.9%;
  left: 1.28%;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .logo-l {
    width: 10.66%;
    top: 1.41%;
    left: 2.67%;
  }
}
#top .logo-l.active {
  transform: translateY(0);
  opacity: 1;
}
#top .logo-r {
  position: absolute;
  width: 3.21%;
  top: 3.9%;
  left: 48.11%;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .logo-r {
    width: 13.12%;
    top: 1.94%;
    left: 84.21%;
  }
}
#top .logo-r.active {
  transform: translateY(0);
  opacity: 1;
}
#top .copy_tate1 {
  position: absolute;
  width: 2.97%;
  top: 13.53%;
  left: 48.23%;
  transform: scale(1.1);
  transform-origin: top center;
  transition: 1s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top .copy_tate1 {
    width: 7.27%;
    top: 8.74%;
    left: 88.53%;
  }
}
#top .copy_tate1.active {
  opacity: 1;
  transform: scale(1);
}
#top .copy_tate2 {
  position: absolute;
  width: 2.92%;
  top: 13.53%;
  left: 1.28%;
  transform: scale(1.1);
  transform-origin: top center;
  transition: 1s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top .copy_tate2 {
    width: 7.15%;
    top: 8.74%;
    left: 4.01%;
  }
}
#top .copy_tate2.active {
  opacity: 1;
  transform: scale(1);
}
#top .starring {
  position: absolute;
  width: 22%;
  top: 16.11%;
  left: 65.66%;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .starring {
    width: 58.69%;
    top: 55.82%;
    left: 21.54%;
  }
}
#top .starring.active {
  transform: translateY(0);
  opacity: 1;
}
#top .presents {
  position: absolute;
  width: 20.68%;
  top: 23.41%;
  left: 66.19%;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .presents {
    width: 55.2%;
    top: 59.17%;
    left: 21.85%;
  }
}
#top .presents.active {
  transform: translateY(0);
  opacity: 1;
}
#top .title_en {
  position: absolute;
  width: 38.21%;
  top: 30.9%;
  left: 57.11%;
}
@media screen and (max-width: 768px) {
  #top .title_en {
    width: 86.86%;
    top: 61.97%;
    left: 6.57%;
  }
}
#top .title_en img {
  transition: 0.3s;
  transform: translateY(10px);
  opacity: 0;
}
#top .title_en.active img {
  transform: translateY(0);
  opacity: 1;
}
#top .title_jp {
  position: absolute;
  width: 26.41%;
  top: 52.85%;
  left: 63.01%;
  transition: 0.3s;
  opacity: 0;
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  #top .title_jp {
    width: 60.55%;
    top: 75.73%;
    left: 19.99%;
  }
}
#top .title_jp.active {
  opacity: 1;
  transform: scale(1);
}
#top .billing_en {
  position: absolute;
  width: 41.58%;
  top: 65.79%;
  left: 55.42%;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .billing_en {
    width: 92.28%;
    top: 88.76%;
    left: 3.86%;
  }
}
#top .billing_en.active {
  transform: translateY(0);
  opacity: 1;
}
#top .billing_jp {
  position: absolute;
  width: 38.41%;
  top: 72.85%;
  left: 56.97%;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .billing_jp {
    width: 83.42%;
    top: 92.73%;
    left: 8.29%;
  }
}
#top .billing_jp.active {
  transform: translateY(0);
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 34.45%;
  top: 80.88%;
  left: 58.88%;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 89.53%;
    top: 80.78%;
    left: 5.24%;
  }
}
#top .release.active {
  transform: translateY(0);
  opacity: 1;
}
#top .copy_yoko {
  position: absolute;
  width: 41.78%;
  top: 88.99%;
  left: 55.22%;
  transition: 0.8s;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .copy_yoko {
    width: 89.53%;
    top: 85.23%;
    left: 5.24%;
  }
}
#top .copy_yoko.active {
  transform: translateY(0);
  opacity: 1;
}

#info {
  padding: 40px 10px 80px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 40px 20px 60px;
  }
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto 30px;
}
#info .bnrs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #info .bnrs {
    gap: 10px;
  }
}
#info .bnrs .bnr {
  width: calc(50% - 5px);
  max-width: 280px;
}
#info .bnrs .bnr:hover {
  opacity: 0.8;
}
#info .btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0px 40px auto;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #info .btns {
    margin: 0 auto 30px;
  }
}
#info .btns .btn_item {
  max-width: 200px;
  width: calc(50% - 10px);
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #info .btns .btn_item {
    max-width: 200px;
    margin: 0 auto;
    width: 100%;
  }
}
#info .btns .btn_item a {
  display: block;
}
#info .btns .btn_item a:hover {
  opacity: 0.6;
}

.bnr_twin {
  display: block;
  width: 100px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .bnr_twin {
    margin: 0 auto 30px;
  }
}
.bnr_twin:hover {
  opacity: 0.7;
}

.shares {
  margin-bottom: 20px;
}

#series {
  background-color: #000;
  padding: 40px 50px 120px;
}
@media screen and (max-width: 768px) {
  #series {
    padding: 40px 20px 80px;
  }
}
#series h2 {
  color: #FDD153;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 20px;
}
#series ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
#series ul li a {
  display: block;
  max-width: 320px;
  width: 100%;
  transition: 0.2s;
}
#series ul li a:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */