/* 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: #FFD800;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

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

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  overflow: hidden;
  transition: 1s;
  filter: grayscale(100%);
}
.bg img {
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(1.1);
  transition: 0.8s;
}
.bg.active {
  filter: grayscale(0%);
}
.bg.active img {
  transform: scale(1);
}

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.text_body p {
  line-height: 2;
  text-align: justify;
  margin-bottom: 0.5em;
}
.text_body p:last-of-type {
  margin-bottom: 0;
}

.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: -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 .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: 500px;
  width: 70%;
  opacity: 0.5;
}

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

.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-square {
  display: flex;
  justify-content: flex-end;
  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;
  padding-right: 5px;
  font-size: 0.9em;
  text-transform: uppercase;
}
.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 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.png);
  background-repeat: repeat;
  background-size: 200px;
  animation: noise 2s steps(10) infinite;
  line-height: 0;
  opacity: 0.5;
  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;
  }
}

/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*nav----------------------------*/
.nav_btn {
  display: none;
  z-index: 104;
  position: fixed;
}
@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.5s;
  }
}
.nav_btn.show {
  background-image: url(img/nav_icon-close.svg);
  opacity: 0.8;
}
.nav_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .nav_btn.active {
    opacity: 1;
  }
}

.nav_bar {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 103;
}
@media screen and (max-width: 768px) {
  .nav_bar {
    display: block;
  }
}

.gnav {
  z-index: 100;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  height: 60px;
  transition: 1s;
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
  .gnav {
    background-color: rgba(0, 0, 0, 0.95);
    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.8s;
  }
  .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;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    padding-right: 0px;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }
}
.gnav .gnav_list li a {
  font-size: 1.5em;
  display: block;
  height: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #FFF;
  letter-spacing: 0.1em;
  transition: 0.2s;
  text-transform: uppercase;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 2em;
    margin-bottom: 5px;
    padding: 10px 0;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
  transform: translateY(1px);
}
.gnav .gnav_list li a img {
  height: 22px;
  width: auto;
}

.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: #FFF;
  cursor: pointer;
}
.top_btn:hover {
  transform: scale(1, 0.6) translateY(2px);
}
.top_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top_btn.active {
    opacity: 1;
  }
}

/*-------------------------------*/
#top {
  width: 100%;
  height: 53.7vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top {
    height: 140.2vw;
  }
}
#top .copy1 {
  mix-blend-mode: screen;
  position: absolute;
  width: 54.69%;
  top: 5.82%;
  left: 3.13%;
  transition: 0.5s;
  transform: translateX(-20px);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top .copy1 {
    width: 94.34%;
    top: 3.35%;
    left: 2.83%;
  }
}
#top .copy1.active {
  transform: translateX(0px);
  opacity: 1;
}
#top .cau {
  position: absolute;
  width: 17.09%;
  top: 17.77%;
  left: 3.13%;
  transition: 0.5s;
  transform: translateX(-20px);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top .cau {
    width: 48.57%;
    top: 10.5%;
    left: 2.83%;
  }
}
#top .cau.active {
  transform: translateX(0px);
  opacity: 1;
}
#top .name {
  position: absolute;
  width: 23.64%;
  top: 27.84%;
  left: 15.55%;
  transition: 0.5s;
  transform: translateX(-20px);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top .name {
    width: 39.43%;
    top: 56.4%;
    left: 30.28%;
  }
}
#top .name.active {
  transform: translateX(0px);
  opacity: 1;
}
#top .title {
  position: absolute;
  width: 45.32%;
  top: 34.25%;
  left: 4.71%;
  transition: 0.5s;
  transform: translateX(-20px);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 75.6%;
    top: 60.5%;
    left: 12.2%;
  }
}
#top .title.active {
  transform: translateX(0px);
  opacity: 1;
}
#top .copy2 {
  position: absolute;
  width: 58.75%;
  top: 82.08%;
  left: 5.27%;
  mix-blend-mode: plus-lighter;
  transition: 0.5s;
  transform: translateX(-20px);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top .copy2 {
    mix-blend-mode: normal;
  }
}
@media screen and (max-width: 768px) {
  #top .copy2 {
    width: 90.97%;
    top: 90.22%;
    left: 4.51%;
  }
}
#top .copy2.active {
  transform: translateX(0px);
  opacity: 1;
}
#top .release {
  position: absolute;
  width: 15.45%;
  top: 78.93%;
  left: 79.31%;
  transition: 0.5s;
  transform: scale(2);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 19.87%;
    top: 82.87%;
    left: 76.1%;
  }
}
#top .release.active {
  transform: scale(1);
  opacity: 1;
}

#info {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px;
  flex: 1;
  transition: 0.5s;
  transform: translateY(10px);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #info {
    background-color: rgb(0, 0, 0);
    padding: 30px 20px 40px;
  }
}
#info.active {
  transform: translateY(0px);
  opacity: 1;
}
#info .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #info .btns {
    flex-direction: column;
    gap: 10px;
  }
}
#info .btns li {
  width: calc(50% - 10px);
  max-width: 260px;
  height: 60px;
  text-align: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  #info .btns li {
    width: 100%;
    max-width: 420px;
  }
}
#info .btns li a, #info .btns li span {
  width: 100%;
  position: relative;
  border: solid 1px #CCC;
  border-radius: 60px;
  overflow: hidden;
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.1);
  line-height: 56px;
  padding-bottom: 5px;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-style: italic;
  font-weight: bold;
  padding-left: 60px;
  padding-right: 20px;
  text-align: center;
}
#info .btns li a::before, #info .btns li span::before {
  transition: 0.2s;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-size: 24px;
  background-position: 59% 50%;
  display: block;
  background-repeat: no-repeat;
  border-right: dotted 1px #CCC;
}
#info .btns li a:hover::before, #info .btns li span:hover::before {
  background-color: rgba(255, 255, 255, 0.32);
}
#info .btns li a.link-x::before, #info .btns li span.link-x::before {
  background-image: url(img/icon_x.svg);
}
#info .btns li a.link-trailer::before, #info .btns li span.link-trailer::before {
  background-image: url(img/play-circle.svg);
}
#info .btns li a.link-theater::before, #info .btns li span.link-theater::before {
  background-image: url(img/film.svg);
}
#info .shares {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #info .shares {
    padding-bottom: 0px;
    flex-direction: column;
    align-items: center;
  }
}
#info .billing_en {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 20px;
}
@media screen and (max-width: 768px) {
  #info .billing_en {
    max-width: 400px;
    margin: 20px auto 10px;
  }
}
#info .billing_jp {
  width: 50%;
  max-width: 620px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #info .billing_jp {
    max-width: 400px;
    width: 100%;
  }
}

#trailer {
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 9997;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.8);
}
#trailer .trailer_inner {
  height: 100%;
  height: 100svh;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#trailer .trailer_inner .trailer_main {
  max-width: inherit;
  position: relative;
  z-index: 4;
  width: 100%;
  height: auto;
  max-height: 100vh;
  overflow: auto;
  max-width: 150vh;
}
#trailer .trailer_inner .trailer_main .youtube_outer {
  margin: 0 auto;
  max-width: calc(100% - 8em);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #trailer .trailer_inner .trailer_main .youtube_outer {
    width: 100%;
    margin-bottom: 0px;
    max-width: 100%;
  }
}
#trailer .trailer_inner .trailer_main .youtube_outer .youtube_embed {
  border: solid 1px rgba(204, 204, 204, 0.2);
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #trailer .trailer_inner .trailer_main .youtube_outer .youtube_embed {
    border-radius: 0px;
  }
}
#trailer .trailer_inner .trailer_main .youtube_outer .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#trailer .trailer_inner .overlay_trailer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  cursor: pointer;
  z-index: 1;
}
#trailer .close_btn_trailer {
  position: fixed;
  cursor: pointer;
  z-index: 9998;
  top: 20px;
  right: 0px;
  width: 120px;
  height: 72px;
}
@media screen and (max-width: 768px) {
  #trailer .close_btn_trailer {
    width: 70px;
    height: 42px;
    top: 10px;
    right: 0px;
  }
}
#trailer .close_btn_trailer span {
  position: absolute;
  display: block;
  height: 1px;
  background-color: #FFF;
  transition: 0.3s;
  width: 120px;
  transform: rotate(-32deg) translate(-7px, 12px);
}
@media screen and (max-width: 768px) {
  #trailer .close_btn_trailer span {
    width: 70px;
    transform: rotate(-32deg) translate(-7px, 12px);
  }
}
#trailer .close_btn_trailer span:last-of-type {
  transform: rotate(32deg) translate(7px, 12px);
}
@media screen and (max-width: 768px) {
  #trailer .close_btn_trailer span:last-of-type {
    transform: rotate(32deg) translate(7px, 12px);
  }
}
#trailer .close_btn_trailer:hover span {
  transform: rotate(-26deg) translate(-6px, 13px);
}
#trailer .close_btn_trailer:hover span:last-of-type {
  transform: rotate(26deg) translate(6px, 13px);
}/*# sourceMappingURL=style.css.map */