@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: "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;
  }
}

h2 {
  color: #FFFC10;
  font-size: 3.5em;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2em;
  }
}

/*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: #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);
  }
}

/*-------------------------------*/
/*nav----------------------------*/
.nav_btn {
  display: none;
  z-index: 104;
  position: fixed;
  opacity: 0;
}
@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;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  height: 50px;
  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: flex-end;
  align-items: center;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    padding-right: 0px;
    justify-content: center;
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .gnav .gnav_list {
    margin-bottom: 40px;
  }
}
.gnav .gnav_list li a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 0.5em;
  font-size: 1.125em;
  color: #FFFC10;
  font-weight: 700;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.43em;
  }
}
.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 {
  z-index: 99;
  margin: 0 auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  transition: 1s;
  color: #FFFC10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*-------------------------------*/
/*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: flex-end;
  margin-bottom: 20px;
  margin-right: 20px;
}
@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 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 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------------------------*/
.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;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
}
#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;
}
#top .main {
  position: relative;
  top: 0;
  left: 0;
  width: 52%;
  transition: 1s;
  filter: grayscale(100%);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
  }
}
#top .main img {
  transition: 0.5s;
  transform: scale(2);
}
#top .main.active {
  opacity: 1;
  filter: grayscale(0%);
}
#top .main.active img {
  transform: scale(1);
}
#top .copy_tate {
  position: absolute;
  width: 7.97%;
  top: 9.17%;
  left: 2.6%;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    width: 18.21%;
    top: 4.59%;
    left: 5.9%;
  }
}
#top .copy_tate.active {
  transform: translateY(0);
  opacity: 1;
}
#top .copy_yoko {
  position: absolute;
  width: 48.23%;
  top: 4.69%;
  left: 49.01%;
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-40px);
}
@media screen and (max-width: 768px) {
  #top .copy_yoko {
    width: 91.54%;
    top: 54.26%;
    left: 3.33%;
  }
}
#top .copy_yoko.active {
  transform: translateX(0);
  opacity: 1;
}
#top .credit {
  position: absolute;
  width: 34.32%;
  top: 24.91%;
  left: 59.27%;
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-40px);
}
@media screen and (max-width: 768px) {
  #top .credit {
    width: 80.51%;
    top: 61.5%;
    left: 14.36%;
  }
}
#top .credit.active {
  transform: translateX(0);
  opacity: 1;
}
#top .title {
  position: absolute;
  width: 43.75%;
  top: 33.02%;
  left: 53.49%;
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-40px);
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 97.69%;
    top: 66.32%;
    left: 1.28%;
  }
}
#top .title.active {
  transform: translateX(0);
  opacity: 1;
}
#top .billing {
  position: absolute;
  width: 39.43%;
  top: 53.99%;
  left: 55.83%;
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-40px);
}
@media screen and (max-width: 768px) {
  #top .billing {
    width: 92.37%;
    top: 85.45%;
    left: 2.56%;
  }
}
#top .billing.active {
  transform: translateX(0);
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 58.46%;
  top: 67.6%;
  left: 40.31%;
  opacity: 0;
  transition: 0.5s;
  transform: translateX(-40px);
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 78.79%;
    top: 75.7%;
    left: 10.58%;
  }
}
#top .release.active {
  transform: translateX(0);
  opacity: 1;
}

#info {
  padding: 0px 20px 0px;
  width: 100%;
  margin: -8vw auto 0;
  position: relative;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  #info {
    max-width: 500px;
    padding: 10px 20px 0px;
    margin: 0 auto;
  }
}
#info.active {
  opacity: 1;
}
#info .btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#info .btns .btn_item {
  max-width: 240px;
  width: calc(50% - 10px);
  margin: 0 40px 10px auto;
  cursor: pointer;
  transition: 0.3s;
  border: solid 1px #E60012;
}
@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:hover {
  opacity: 0.6;
}

.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%);
}
.mvtk {
  width: 100%;
}
.mvtk #mvtk-widgets-container {
  margin: 0 auto 30px;
}

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

#intro, #story {
  margin: 0 auto;
  padding: 0px 50px 80px;
}
@media screen and (max-width: 768px) {
  #intro, #story {
    padding: 0 20px 60px;
  }
}
#intro .section_inner, #story .section_inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #intro .section_inner, #story .section_inner {
    max-width: 500px;
  }
}
#intro h2, #story h2 {
  margin-bottom: 40px;
  margin-top: -0.5em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #intro h2, #story h2 {
    margin-bottom: 20px;
  }
}
#intro h3, #story h3 {
  color: #F39800;
  font-weight: 900;
  font-size: 3em;
  line-height: 1.2;
  margin-bottom: 20px;
  font-style: italic;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #intro h3, #story h3 {
    font-size: 1.5em;
    line-height: 1.5;
  }
}
#intro .text_body p, #story .text_body p {
  font-size: 1.1em;
  text-align: justify;
  line-height: 2;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #intro .text_body p, #story .text_body p {
    font-size: 1em;
  }
}
#intro .text_body p:last-of-type, #story .text_body p:last-of-type {
  margin-bottom: 0;
}

.grids {
  display: flex;
  width: 100%;
  overflow: hidden;
  flex-wrap: wrap;
}
.grids img {
  width: 25%;
  display: block;
}
@media screen and (max-width: 768px) {
  .grids img {
    width: 50%;
  }
}
.grids img.double {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .grids img.double {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */