@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: #041629;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  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;
  }
}

footer {
  background-color: #000811;
}
footer .footer {
  padding: 80px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 60px 80px;
  }
}
footer .footer .title {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  footer .footer .title {
    max-width: 300px;
  }
}
footer .release {
  width: 70%;
  margin: 0 auto;
  max-width: 400px;
  padding-left: 1%;
}
@media screen and (max-width: 768px) {
  footer .release {
    max-width: 200px;
  }
}

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

/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #041629;
  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);
  }
}

/*-------------------------------*/
/*nav----------------------------*/
/*-------------------------------*/
/*trailer------------------------*/
#trailer .section_inner {
  max-width: 900px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
  padding: 0 0px 0px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner .section_main {
    padding: 0 0px 0px;
  }
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: solid 1px #3c3c3c;
}
#trailer .section_inner .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.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 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;
  }
}
.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 10px 0px;
  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-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
@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------------------------*/
/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
/*trailer------------------------*/
#trailer .section_inner {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
  padding: 0 0px 80px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner .section_main {
    padding: 0 0px 60px;
  }
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: solid 1px #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;
  background-color: #000000;
  font-weight: 900;
  color: #FEFEFE;
}
@media screen and (max-width: 768px) {
  .trailer_tab li a {
    height: 3em;
  }
}
.trailer_tab .tab.active a {
  background-color: #3a3a3a;
  pointer-events: none;
}
.trailer_tab .tab.active a::before {
  content: "● ";
}
.trailer_tab .tab.active a:hover {
  transition: 0.4s;
}

/*-------------------------------*/
#top {
  position: relative;
  background-color: #041629;
  overflow: hidden;
}
#top .main {
  position: relative;
  width: 54.27%;
  top: 0%;
  left: 0%;
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
    top: 0%;
    left: 0%;
  }
}
#top .title {
  position: absolute;
  width: 49.17%;
  top: 15.51%;
  left: 46.82%;
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 93.85%;
    top: 54.89%;
    left: 3.08%;
  }
}
#top .title.active {
  transform: translateY(0);
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 38.21%;
  top: 48.06%;
  left: 52.28%;
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 77.37%;
    top: 68.15%;
    left: 12.56%;
  }
}
#top .release.active {
  transform: translateY(0);
  opacity: 1;
}
#top .copy {
  position: absolute;
  width: 46.82%;
  top: 62.78%;
  left: 48.02%;
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .copy {
    width: 86.41%;
    top: 75.75%;
    left: 6.92%;
  }
}
#top .copy.active {
  transform: translateY(0);
  opacity: 1;
}
#top .billing_en {
  position: absolute;
  width: 43.41%;
  top: 67.2%;
  left: 51.27%;
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .billing_en {
    width: 84.62%;
    top: 81.54%;
    left: 7.69%;
  }
}
#top .billing_en.active {
  transform: translateY(0);
  opacity: 1;
}
#top .credits {
  position: absolute;
  width: 32.85%;
  top: 73.67%;
  left: 55%;
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .credits {
    width: 84.62%;
    top: 84.68%;
    left: 7.69%;
  }
}
#top .credits.active {
  transform: translateY(0);
  opacity: 1;
}
#top .logos {
  position: absolute;
  width: 38.69%;
  top: 77.72%;
  left: 52.06%;
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .logos {
    width: 84.62%;
    top: 88.42%;
    left: 7.69%;
  }
}
#top .logos.active {
  transform: translateY(0);
  opacity: 1;
}

#info {
  padding: 40px 20px 80px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #info {
    max-width: 500px;
    padding: 30px 20px 60px;
  }
}
#info .btn_louise {
  max-width: 600px;
  margin: 0 auto 20px;
  cursor: pointer;
  transition: 0.3s;
  background-color: rgb(255, 255, 255);
  border: solid 1px #CCC;
  border-radius: 50px;
  filter: drop-shadow(2.07px 2.07px 2px rgba(0, 0, 0, 0.25));
}
#info .btn_louise:hover {
  filter: brightness(95%);
}
#info .btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
#info .btns .btn_item {
  max-width: 240px;
  width: calc(50% - 10px);
  margin: 0 5px 10px;
  cursor: pointer;
  transition: 0.3s;
  background-color: rgb(255, 255, 255);
  border: solid 1px #CCC;
  border-radius: 50px;
  filter: drop-shadow(2.07px 2.07px 2px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  #info .btns .btn_item {
    max-width: 160px;
  }
}
#info .btns .btn_item a {
  display: block;
}
#info .btns .btn_item:hover {
  filter: brightness(95%);
}

.bnrs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bnrs .bnr {
  width: calc(50% - 14px);
  margin: 0 7px 10px;
  max-width: 240px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .bnrs .bnr {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    max-width: unset;
  }
}
.bnrs .bnr a {
  display: block;
}
.bnrs .bnr a:hover {
  filter: brightness(70%);
}
.bnrs .bnr img {
  border-radius: 8px;
}

.mvtk {
  width: 100%;
}
.mvtk #mvtk-widgets-container {
  margin: 0 auto 30px;
}

.bnr_twin {
  display: block;
  width: 100px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .bnr_twin {
    margin: 0 auto 40px;
  }
}
.bnr_twin:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */