@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: linear-gradient(90deg, #FFF 0%, #FFF 66.83%, #FFFDE4 100%);
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    background: linear-gradient(90deg, #FFF 0%, #FFF 72.12%, #FFFDE9 100%);
  }
}

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 {
  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------------------------*/
/*-------------------------------*/
/*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: 300px;
  width: 60%;
  opacity: 0.5;
}

/*-------------------------------*/
/*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;
  opacity: 0;
  padding: 80px 50px;
}
footer .footer.active {
  opacity: 1;
}
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;
  }
}

#top .teaser-container {
  background-image: url(img/mainbg-pc.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-width: 1500px;
  padding: 0 50px;
  margin: 0 auto 80px;
  width: 100%;
  transition: 1s;
  opacity: 0;
}
#top .teaser-container.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #top .teaser-container {
    padding: 0;
    flex-wrap: wrap;
    background-image: none;
  }
}
#top .teaser-container .teaser-img {
  order: 2;
  width: 55%;
  position: relative;
}
#top .teaser-container .teaser-img .main-img {
  overflow: hidden;
  width: 100%;
}
#top .teaser-container .teaser-img .main-img img {
  transform: scale(1.1);
  transition: 6s;
  opacity: 0;
}
#top .teaser-container .teaser-img .main-img img.active {
  opacity: 1;
  transform: scale(1);
}
#top .teaser-container .teaser-img h1 {
  display: none;
}
@media screen and (max-width: 768px) {
  #top .teaser-container .teaser-img h1 {
    position: absolute;
    display: block;
    bottom: 1.5%;
    left: 14.5%;
    width: 75%;
    opacity: 0;
    filter: drop-shadow(1px 1px 0px #000);
    transition: 1s;
    transform: scale(1.1);
  }
  #top .teaser-container .teaser-img h1.active {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) {
  #top .teaser-container .teaser-img {
    order: 1;
    width: 100%;
  }
}
#top .teaser-container .teaser-texts {
  order: 1;
  width: 42%;
  margin-right: 3%;
}
@media screen and (max-width: 768px) {
  #top .teaser-container .teaser-texts {
    margin-right: 0;
    order: 2;
    width: 100%;
    margin-top: 20px;
    padding: 0 20px;
  }
}
#top .teaser-container .teaser-texts h1 {
  width: 85%;
  margin: 0 0 7% auto;
  transition: 1s;
  opacity: 0;
  transform: translateX(-20px);
  filter: drop-shadow(1px 1px 0px #000);
}
#top .teaser-container .teaser-texts h1.active {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  #top .teaser-container .teaser-texts h1 {
    display: none;
  }
}
#top .teaser-container .teaser-texts .release {
  width: 36%;
  margin: 0 0 5% auto;
  transition: 1s;
  opacity: 0;
  transform: translateX(-20px);
}
#top .teaser-container .teaser-texts .release.active {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  #top .teaser-container .teaser-texts .release {
    margin: 0 auto 20px;
  }
}
#top .teaser-container .teaser-texts .copy {
  width: 100%;
  margin: 0 0 6% auto;
  transition: 1s;
  opacity: 0;
  transform: translateX(-20px);
}
#top .teaser-container .teaser-texts .copy.active {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  #top .teaser-container .teaser-texts .copy {
    margin: 0 auto 30px;
  }
}
#top .teaser-container .teaser-texts .credit {
  width: 64%;
  margin: 0 0 6% auto;
  transition: 1s;
  opacity: 0;
  transform: translateX(-20px);
}
#top .teaser-container .teaser-texts .credit.active {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  #top .teaser-container .teaser-texts .credit {
    width: 78%;
    margin: 0 auto 20px;
  }
}
#top .teaser-container .teaser-texts a.btn_x {
  display: block;
  max-width: 235px;
  width: 40%;
  margin: 0 0 0 auto;
  transition: 1s;
  opacity: 0;
  transform: translateX(-20px);
}
#top .teaser-container .teaser-texts a.btn_x.active {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  #top .teaser-container .teaser-texts a.btn_x {
    width: 200px;
    margin: 0 auto;
  }
}
#top .teaser-container .teaser-texts a.btn_x img {
  transition: 0.2s;
}
#top .teaser-container .teaser-texts a.btn_x img:hover {
  opacity: 0.5;
}

#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(247, 255, 229, 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);
}

#teaser-comment {
  max-width: 1300px;
  padding: 0 50px;
  margin: 0 auto;
  transition: 1s;
  opacity: 0;
}
#teaser-comment.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #teaser-comment {
    max-width: 500px;
    padding: 0 30px;
  }
}
#teaser-comment .section_inner .section_main h2 {
  margin-bottom: 20px;
}
#teaser-comment .section_inner .section_main .comment-items .comment-item {
  margin-bottom: 50px;
}
#teaser-comment .section_inner .section_main .comment-items .comment-item:last-of-type {
  margin-bottom: 0;
}
#teaser-comment .section_inner .section_main .comment-items .comment-item .names {
  width: 100%;
  background: linear-gradient(90deg, #0F2344 0%, transparent 100%) no-repeat center center;
  background-size: 100% 1px;
  margin-bottom: 10px;
}
#teaser-comment .section_inner .section_main .comment-items .comment-item .names .names-inner {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
  background: #FFF;
  width: -moz-fit-content;
  width: fit-content;
}
#teaser-comment .section_inner .section_main .comment-items .comment-item .names .names-inner .role {
  padding-right: 0.8em;
  color: #093378;
}
@media screen and (max-width: 768px) {
  #teaser-comment .section_inner .section_main .comment-items .comment-item .names .names-inner .role {
    padding-right: 0.5em;
  }
}
#teaser-comment .section_inner .section_main .comment-items .comment-item .names .names-inner .name {
  padding-right: 1em;
}
#teaser-comment .section_inner .section_main .comment-items .comment-item .names .names-inner .name img {
  height: 32px;
  width: auto;
}
@media screen and (max-width: 768px) {
  #teaser-comment .section_inner .section_main .comment-items .comment-item .names .names-inner .name img {
    height: 24px;
  }
}
#teaser-comment .section_inner .section_main .comment-items .comment-item .comment_body p {
  text-align: justify;
  line-height: 1.8;
}/*# sourceMappingURL=style.css.map */