/* 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: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  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;
}

h2 {
  font-size: 2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

section.section-default {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  section.section-default {
    padding: 80px 0;
  }
}
section.section-default .section_inner {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner {
    padding: 0 30px;
  }
}
section.section-default .section_inner .section_main {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main {
    max-width: 500px;
  }
}

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

/*fixed_bg------------------------*/
.fixed_bg {
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 200lvh;
  background-image: url(img/bg.jpg?Ver=1.0.1);
  background-size: 100%;
  background-position: top center;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .fixed_bg {
    background-size: 1920px;
  }
}

/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loader {
  max-width: 200px;
  width: 30%;
  opacity: 0.32;
}

/*-------------------------------*/
/*nav----------------------------*/
/*-------------------------------*/
/*sharebtn-----------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
}
@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;
  gap: 20px;
}
.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-square {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.share_btns-square::before {
  content: "";
  letter-spacing: 0.1em;
  padding-right: 10px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url(img/asset-light/share.svg);
  background-size: contain;
  background-position: center center;
}
.share_btns-square li {
  cursor: pointer;
  width: 24px;
}
.share_btns-square li img {
  transition: 0.2s;
}
.share_btns-square li img:hover {
  opacity: 0.5;
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
.noise_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg_l.webp);
  background-repeat: repeat;
  background-size: 200px;
  animation: noise 2s steps(10) infinite;
  line-height: 0;
  opacity: 0.4;
  overflow: hidden;
}
@keyframes noise {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 800px;
  }
}
@media screen and (max-width: 768px) {
  .noise_overlay {
    background-size: 200px;
  }
}

/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-inview------------------------*/
.fadeIn {
  opacity: 0;
  transition: 0.5s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(5px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

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

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
/*nav----------------------------*/
.top_btn {
  z-index: 99;
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: scale(1, 0.6);
  color: #000;
  cursor: pointer;
}
.top_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top_btn.active {
    opacity: 1;
  }
}
.top_btn:hover {
  transform: scale(1, 0.6) translateY(2px);
  opacity: 0.5;
}

/*-------------------------------*/
footer .footer {
  position: relative;
  z-index: 2;
  transition: 1s;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 50px 20px;
  }
}
footer .footer .copyright {
  font-size: 0.7em;
  margin-top: 10px;
  text-align: center;
}
footer .footer ul.specs {
  margin-top: 20px;
}
footer .footer ul.specs li {
  font-size: 0.7em;
  line-height: 1.6;
  text-align: center;
}
footer .footer ul.specs li span {
  display: inline-block;
}

#top {
  position: relative;
  overflow: hidden;
  height: 51vw;
}
@media screen and (max-width: 768px) {
  #top {
    height: 188vw;
  }
}
#top .main {
  width: 49%;
  position: relative;
  opacity: 0;
  transition: 1s;
  overflow: hidden;
  filter: brightness(200%) blur(10px);
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
  }
}
#top .main img {
  transition: 2s;
  transform: scale(1.05);
}
#top .main.active {
  opacity: 1;
  filter: brightness(100%) blur(0px);
}
#top .main.active img {
  transform: scale(1);
}
#top .title {
  position: absolute;
  width: 25%;
  bottom: 3%;
  left: 53%;
  opacity: 0;
  transition: 2s;
  filter: blur(10px);
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 33%;
    bottom: 40%;
    left: 6%;
  }
}
#top .title.active {
  filter: blur(0px);
  opacity: 1;
}
#top .copy {
  position: absolute;
  width: 5.5%;
  top: 7%;
  right: 6%;
  opacity: 0;
  transition: 2s;
}
@media screen and (max-width: 768px) {
  #top .copy {
    width: 31%;
    top: 1.5%;
    right: 3%;
  }
}
#top .copy.active {
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 10%;
  top: 77%;
  left: 83%;
  width: 11%;
  opacity: 0;
  transition: 2s;
}
@media screen and (max-width: 768px) {
  #top .release {
    top: 83%;
    width: 64%;
    left: 5%;
  }
}
#top .release.active {
  opacity: 1;
}
#top .credit {
  position: absolute;
  width: 10%;
  bottom: 3%;
  left: 83%;
  width: 12%;
  opacity: 0;
  transition: 2s;
}
@media screen and (max-width: 768px) {
  #top .credit {
    width: 45%;
    left: 5%;
    bottom: 3%;
  }
}
#top .credit.active {
  opacity: 1;
}

#info {
  padding: 60px 50px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 20px;
  }
}
#info .btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}
#info .btns li {
  max-width: 220px;
  position: relative;
}
#info .btns li a {
  transition: 0.2s;
}
#info .btns li a:hover {
  opacity: 0.7;
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto 30px;
}

/*trailer------------------------*/
#trailer .section_inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 0px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
    padding: 0px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
}
#trailer .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: -0.25em;
}

.youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid #666;
  border-radius: 3px;
}
.youtube_embed.youtube_news {
  border: 0;
  border-radius: 0px;
}
.youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer_tabs {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trailer_tabs li {
  border: 1px solid #666;
  border-radius: 3px;
  width: 50%;
  margin-top: 2px;
  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;
  cursor: pointer;
  font-weight: 900;
  background-color: #3a3a3a;
  color: #FEFEFE;
}
@media screen and (max-width: 768px) {
  .trailer_tabs li {
    height: 3em;
  }
}
.trailer_tabs .tab.active {
  background-color: #161616;
  pointer-events: none;
}
.trailer_tabs .tab.active:hover {
  transition: 0.4s;
}

/*-------------------------------*/
#teaser {
  padding-top: 0;
  padding-bottom: 240px;
}
@media screen and (max-width: 768px) {
  #teaser {
    padding-top: 40px;
    padding-bottom: 120px;
  }
}
#teaser .section_inner .section_main {
  max-width: 900px;
}
#teaser .section_inner .section_main .comment_items {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  #teaser .section_inner .section_main .comment_items {
    gap: 80px;
  }
}
#teaser .section_inner .section_main .comment_items .comment_item .upper {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #teaser .section_inner .section_main .comment_items .comment_item .upper {
    gap: 20px;
    flex-direction: column;
    margin-bottom: 10px;
  }
}
#teaser .section_inner .section_main .comment_items .comment_item .img {
  flex: 1;
}
#teaser .section_inner .section_main .comment_items .comment_item .name {
  font-size: 2em;
  display: block;
  width: 260px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #teaser .section_inner .section_main .comment_items .comment_item .name {
    width: 100%;
    font-size: 1.5em;
  }
}
#teaser .section_inner .section_main .comment_items .comment_item .comment_body p {
  line-height: 2;
  text-align: justify;
  margin-bottom: 0.5em;
}
#teaser .section_inner .section_main .comment_items .comment_item .comment_body p:last-of-type {
  margin-bottom: 0;
}
#teaser .section_inner .section_main .comment_items .comment_item:last-of-type .upper .img {
  order: 2;
}
@media screen and (max-width: 768px) {
  #teaser .section_inner .section_main .comment_items .comment_item:last-of-type .upper .img {
    order: 1;
  }
}
#teaser .section_inner .section_main .comment_items .comment_item:last-of-type .upper .name {
  order: 1;
  text-align: right;
}
@media screen and (max-width: 768px) {
  #teaser .section_inner .section_main .comment_items .comment_item:last-of-type .upper .name {
    orphans: 2;
    text-align: left;
  }
}/*# sourceMappingURL=style.css.map */