@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: #333;
  background-color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  font-family: "Zen Kaku Gothic Antique", 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;
  color: #333;
}

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

h2 {
  color: #093378;
  font-family: "Bellota Text", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@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: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  top: 0;
  left: 0;
  background-color: #fff;
}
.fixed_bg video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  opacity: 0.2;
}

/*-------------------------------*/
/*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: 500px;
  width: 60%;
  opacity: 0.3;
}

/*-------------------------------*/
/*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: 0;
  }
  .nav_btn.active {
    opacity: 1;
  }
}
.nav_btn.show {
  background-image: url(img/nav_icon-close.svg);
  opacity: 0.8;
}

.gnav {
  z-index: 100;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  height: 50px;
  opacity: 0;
  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.8s;
    background-color: #fff;
  }
  .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;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    background-color: transparent;
    padding-right: 0px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.gnav .gnav_list li a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 0.5em;
  font-size: 1em;
  color: #333;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.1em;
  }
}
.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.external::after {
  content: "";
  width: 0.7em;
  height: 0.7em;
  margin-left: 0.2em;
  background-image: url(img/external-link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.gnav .gnav_list li a .icon_menu {
  width: 24px;
  margin-bottom: 13px;
}

.to_top {
  z-index: 99;
  margin: 0 auto;
  position: fixed;
  width: 50px;
  height: 50px;
  transition: 1s;
  border-radius: 50%;
  bottom: 20px;
  right: 20px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .to_top {
    bottom: 10px;
    right: 10px;
  }
}
.to_top:hover {
  opacity: 0.3;
}
.to_top.active {
  opacity: 1;
}

/*-------------------------------*/
/*trailer------------------------*/
#trailer .section_inner {
  max-width: 900px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
  border-radius: 20px;
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#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;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trailer_tab li {
  width: calc(50% - 2px);
  margin: 3px 0 0 0;
}
.trailer_tab li:last-of-type {
  width: 100%;
}

.trailer_tab li a {
  background-color: #FFF;
  height: 3em;
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.15em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
}

.trailer_tab li a::before {
  content: "";
}

.trailer_tab .tab.active a::before {
  content: "◆";
}

/*-------------------------------*/
/*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 {
  font-family: "Bellota Text", sans-serif;
  font-weight: 400;
  font-style: normal;
  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-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-inview------------------------*/
.fadeIn {
  opacity: 0;
  transition: 1s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.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--------------------*/
/*-------------------------------*/
footer .footer {
  transition: 1s;
  padding: 40px 50px 60px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 40px 20px 40px;
  }
}
footer .footer .shares {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0px;
}
@media screen and (max-width: 768px) {
  footer .footer .shares {
    padding-bottom: 0px;
    flex-direction: column;
    align-items: center;
  }
}
footer .copyright {
  font-size: 10px;
  text-align: center;
  margin-top: 2em;
  line-height: 1.4;
}
footer .copyright span {
  display: inline-block;
}
footer .fc_bnr {
  margin: 20px auto;
  width: 50%;
  max-width: 220px;
  display: block;
  transition: 0.2s;
}
footer .fc_bnr:hover {
  opacity: 0.6;
}

#top {
  width: 100%;
  height: 56vw;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top {
    height: auto;
    padding: 20px 0 30px;
  }
}
#top .main-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #top .main-box {
    position: relative;
  }
}
#top .main-box .notes {
  width: 34%;
  position: absolute;
  bottom: 8%;
  right: 0;
  transition: 2s;
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 768px) {
  #top .main-box .notes {
    width: 60%;
    bottom: 6%;
  }
}
#top .main-box .notes.active {
  opacity: 0.1;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 768px) {
  #top .main-box .notes.active {
    opacity: 0.3;
  }
}
#top .main-box .main-kv {
  position: absolute;
  width: 38%;
  left: 3%;
  top: 6%;
  opacity: 1;
  filter: brightness(200%) blur(10px);
  transition: 3s;
}
@media screen and (max-width: 768px) {
  #top .main-box .main-kv {
    width: 87%;
    padding-top: 3%;
    position: relative;
  }
}
#top .main-box .main-kv.active {
  opacity: 1;
  filter: brightness(100%) blur(0);
}
#top .main-box h1.title {
  width: 58%;
  position: absolute;
  top: 7%;
  left: 30%;
  opacity: 0.5;
  mix-blend-mode: hard-light;
}
@media screen and (max-width: 768px) {
  #top .main-box h1.title {
    width: 96%;
    opacity: 0.7;
    top: 0%;
    left: 0;
  }
}
#top .main-box h1.title .title_en {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  mix-blend-mode: hard-light;
  opacity: 0;
  transition: 1s;
  transform: scale(1.1);
  filter: blur(10px) brightness(50%);
}
#top .main-box h1.title .title_en.active {
  filter: blur(0px) brightness(80%);
  transform: scale(1);
  opacity: 1;
}
#top .main-box h1.title .title_jp {
  position: relative;
  transition: 1s;
  opacity: 0;
  transform: translate(-10px, 10px);
}
#top .main-box h1.title .title_jp.active {
  transform: translate(0);
  opacity: 1;
}
#top .main-box .copy_tate {
  position: absolute;
  width: 1.3%;
  top: 8%;
  right: 6%;
  opacity: 0;
  transform: translateY(10px);
  transition: 1s;
}
@media screen and (max-width: 768px) {
  #top .main-box .copy_tate {
    width: 3.5%;
    right: 3.6%;
    top: 5%;
  }
}
#top .main-box .copy_tate.active {
  opacity: 1;
  transform: translateY(0px);
}
#top .texts {
  position: absolute;
  width: 45%;
  bottom: 6.5%;
  left: 44%;
  opacity: 0;
  filter: blur(5px);
  transition: 2s;
}
@media screen and (max-width: 768px) {
  #top .texts {
    position: relative;
    width: 100%;
    padding: 0 30px;
    left: unset;
    margin-top: 20px;
  }
}
#top .texts.active {
  filter: blur(0);
  opacity: 1;
}
#top .texts .release {
  width: 78%;
  margin-bottom: 4%;
  margin-left: -2px;
}
@media screen and (max-width: 768px) {
  #top .texts .release {
    width: 90%;
    margin-left: 0;
    margin-bottom: 2;
  }
}
#top .texts .billing {
  width: 70%;
  margin-bottom: 4%;
}
@media screen and (max-width: 768px) {
  #top .texts .billing {
    width: 100%;
  }
}
#top .texts .copy_yoko {
  width: 100%;
  margin-bottom: 4%;
}
#top .texts .billing_en {
  width: 55%;
}
@media screen and (max-width: 768px) {
  #top .texts .billing_en {
    width: 90%;
  }
}

#info ul.btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #info ul.btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
#info ul.btns li {
  max-width: 320px;
  min-width: 240px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #info ul.btns li {
    width: 100%;
  }
}
#info ul.btns li a, #info ul.btns li span {
  background-color: #FFEEF6;
  display: block;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: 0.4s;
}
#info ul.btns li a:hover, #info ul.btns li span:hover {
  background-color: #fff8fb;
}

#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(254, 240, 255, 0.6);
}
#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 {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  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: #333;
  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);
}

.trailer_tab {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trailer_tab li {
  width: 50%;
  margin: 0;
}
.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;
  color: #9F8549;
  background-color: #3D3000;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .trailer_tab li a {
    height: 3em;
  }
}
.trailer_tab .tab.active a {
  color: #333;
  background-color: #9F8549;
}
.trailer_tab .tab.active a::before {
  content: "● ";
}
.trailer_tab .tab.active a:hover {
  transition: 0.4s;
}/*# sourceMappingURL=style.css.map */