@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-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #333;
  min-height: 100vh;
  background: linear-gradient(90deg, #A5A39E 0%, #A5A39E 34.62%, #3F3E3C 100%);
}
@media screen and (max-width: 768px) {
  body {
    background: linear-gradient(90deg, #949494 0%, #3F3E3C 100%);
  }
}
@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 {
  margin: 0 auto;
}
h2 img {
  height: 32px;
  width: auto;
}
@media screen and (max-width: 768px) {
  h2 img {
    height: 22px;
  }
}

.imgs {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .imgs {
    padding: 10px;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
  }
}
.imgs div {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .imgs div:first-of-type {
    width: 35%;
    margin: auto 0 auto 0;
  }
  .imgs div:nth-of-type(2) {
    width: calc(65% - 10px);
  }
  .imgs div:nth-of-type(3) {
    width: 60%;
  }
  .imgs div:nth-of-type(4) {
    width: 100%;
  }
  .imgs div:nth-of-type(5) {
    width: 60%;
    margin: 0 0 0 auto;
  }
}

/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
@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;
  box-sizing: border-box;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}

.share_btns-square {
  display: flex;
  justify-content: center;
  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;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
  color: #333;
}
.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;
  }
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
@keyframes flash {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
/*-inview------------------------*/
.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
/*nav----------------------------*/
.nav_title {
  position: fixed;
  z-index: 105;
  width: 220px;
  top: 10px;
  left: 10px;
}
@media (max-width: 1200px) {
  .nav_title {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nav_title {
    display: block;
    top: 5px;
    left: 0px;
    width: 190px;
  }
}

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

.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%, 100%;
    width: 50px;
    height: 50px;
    transition: 1s;
  }
}
.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;
  }
}

.gnav {
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  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: rgba(0, 0, 0, 0.9);
  }
  .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-image: url(img/bgo.jpg);
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    background-image: none;
    padding-right: 0px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }
}
.gnav .gnav_list li a {
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em;
  font-size: 1.1em;
  color: #FFF;
  transition: 0.2s;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.43em;
    margin-bottom: 5px;
    padding: 10px 0;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
  transform: translateY(2px);
}
.gnav .gnav_list li a img {
  width: 22px;
}

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

/*-------------------------------*/
/*fixed_bg------------------------*/
/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #4e4e4e;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
}
.loading .loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loading .loading_inner .loader {
  animation: flash 1s infinite;
  max-width: 300px;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  mix-blend-mode: hard-light;
}
.loading .loading_inner .loader img {
  opacity: 0.2;
}
.loading.is-out {
  opacity: 0;
  pointer-events: none;
}

/*-------------------------------*/
.footer {
  background-color: #000;
  width: 100%;
  padding: 80px 40px 80px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 60px 20px 60px;
  }
}
.footer .title {
  width: 70%;
  max-width: 500px;
  margin: 0 auto 20px;
  opacity: 0.5;
}
.footer .release {
  opacity: 0.5;
  margin: 0 auto;
  width: 16%;
  max-width: 100px;
}

#top {
  margin-top: 50px;
  position: relative;
  width: 100%;
  height: 59vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top {
    height: 178vw;
  }
}
#top .main {
  position: absolute;
  width: 37.24%;
  top: 7.05%;
  left: 6.51%;
}
@media screen and (max-width: 768px) {
  #top .main {
    width: 100%;
    top: 0%;
    left: 0%;
  }
}
#top .award {
  position: absolute;
  width: 45.52%;
  top: 7.05%;
  left: 47.45%;
}
@media screen and (max-width: 768px) {
  #top .award {
    width: 92.8%;
    top: 1.49%;
    left: 4%;
  }
}
#top .copy_yoko {
  position: absolute;
  width: 45.57%;
  top: 13.32%;
  left: 47.45%;
}
@media screen and (max-width: 768px) {
  #top .copy_yoko {
    width: 93.07%;
    top: 5.66%;
    left: 4%;
  }
}
#top .casts {
  position: absolute;
  width: 40%;
  top: 35.98%;
  left: 50.21%;
}
@media screen and (max-width: 768px) {
  #top .casts {
    width: 80%;
    top: 59.61%;
    left: 10.13%;
  }
}
#top .title {
  position: absolute;
  width: 46.6%;
  top: 43.03%;
  left: 46.89%;
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 91.2%;
    top: 64.53%;
    left: 4.53%;
  }
}
#top .release {
  position: absolute;
  width: 8.39%;
  top: 70.46%;
  left: 66.04%;
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 17.33%;
    top: 78.99%;
    left: 41.33%;
  }
}
#top .billing_jp {
  position: absolute;
  width: 41.15%;
  top: 80.78%;
  left: 49.64%;
}
@media screen and (max-width: 768px) {
  #top .billing_jp {
    width: 84%;
    top: 85.84%;
    left: 8%;
  }
}
#top .billing_en {
  position: absolute;
  width: 35.68%;
  top: 86.16%;
  left: 52.4%;
}
@media screen and (max-width: 768px) {
  #top .billing_en {
    width: 72.8%;
    top: 89.42%;
    left: 13.6%;
  }
}
#top .copy_tate {
  position: absolute;
  width: 1.25%;
  top: 44.41%;
  left: 9.17%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    width: 2.67%;
    top: 19.82%;
    left: 34.4%;
  }
}

#info {
  padding: 0px 50px 80px;
  width: 100%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 0px 20px 60px;
  }
}
#info .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#info .btns div {
  margin: 0 10px 10px;
  position: relative;
  max-width: 60px;
  width: 100%;
}
#info .btns div a {
  overflow: hidden;
  position: relative;
  margin: 0 auto 0px;
  display: block;
  max-width: 180px;
  width: 100%;
  transition: 0.3s;
}
#info .btns div a:hover {
  opacity: 0.7;
}
#info .btn_theater a {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 30px;
  transition: 0.3s;
}
#info .btn_theater a:hover {
  opacity: 0.7;
}

.mvtk {
  width: 100%;
}
.mvtk #mvtk-widgets-container {
  margin: 20px auto;
}

.sns_btns {
  display: flex;
  justify-content: center;
  margin: 0 auto 30px;
}
.sns_btns a {
  width: 160px;
  display: block;
  margin: 0 5px;
}
.sns_btns a:hover {
  opacity: 0.7;
}

.bnrs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.bnrs .bnr {
  width: calc(50% - 10px);
  margin: 0 5px 10px;
  max-width: 200px;
  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;
  transition: 0.3s;
}
.bnrs .bnr a:hover {
  filter: brightness(120%);
}
.bnrs .bnr img {
  border-radius: 5px;
}

.mvtk {
  width: 100%;
  margin: 0 auto 30px;
}
.mvtk div {
  margin: 0 auto;
}

.tkt {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.tkt li {
  width: calc(50% - 5px);
  max-width: 220px;
}
.tkt li a {
  display: block;
  transition: 0.3s;
}
.tkt li a:hover {
  filter: brightness(120%);
}

.cbnrs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
}
.cbnrs a {
  max-width: 260px;
  width: 100%;
  display: flex;
}
.cbnrs a:hover {
  opacity: 0.8;
}

/*trailer------------------------*/
#trailer h2 {
  text-align: center;
  margin-bottom: 10px;
}
#trailer .youtube_outer {
  max-width: 900px;
  margin: 30px auto 0px;
}
@media screen and (max-width: 768px) {
  #trailer .youtube_outer {
    max-width: 500px;
  }
}
#trailer .youtube_outer .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  #trailer .youtube_outer .youtube_embed {
    border-radius: 5px;
  }
}
#trailer .youtube_outer .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#trailer .trailer_tabs {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2px;
}
#trailer .trailer_tabs li {
  cursor: pointer;
  border-radius: 8px;
  width: calc(50% - 1px);
  margin: 0;
  height: 3em;
  display: block;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9881;
  color: #FFF;
  background-color: #3D3000;
  font-weight: 700;
  font-size: 0.9em;
  transition: 0.4s;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  #trailer .trailer_tabs li {
    border-radius: 5px;
    height: 3em;
  }
}
#trailer .trailer_tabs li:hover {
  opacity: 0.8;
}
#trailer .trailer_tabs .tab.active {
  color: #333;
  background-color: #FF9881;
  pointer-events: none;
}
#trailer .trailer_tabs .tab.active::before {
  content: "● ";
}

/*-------------------------------*/
#intro {
  background-image: url(img/bg_intro.jpg);
  background-position: 50% 5%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 43vw;
}
@media screen and (max-width: 768px) {
  #intro {
    background-size: 210%;
    background-position: 15% 0%;
    background-color: #000;
    min-height: unset;
  }
}
#intro .section_inner {
  position: relative;
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner {
    padding: 440px 0 0;
  }
}
#intro .section_inner .section_main h2 {
  position: absolute;
  top: 40px;
  left: 40px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main h2 {
    top: 20px;
    left: 20px;
  }
}
#intro .section_inner .section_main .text_c, #intro .section_inner .section_main .text_e {
  position: absolute;
  left: 80px;
}
#intro .section_inner .section_main .text_c {
  min-width: 60px;
  width: 4%;
  top: 120px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_c {
    width: 40px;
    top: 80px;
    left: unset;
    right: 20px;
    width: 5%;
    right: 5%;
  }
}
#intro .section_inner .section_main .text_e {
  filter: drop-shadow(0px 0px 2px #000) drop-shadow(0px 0px 4px #000) drop-shadow(0px 0px 10px #000);
  width: 5.5%;
  min-width: 80px;
  left: 10%;
  top: 330px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_e {
    width: 60px;
    top: 80px;
    left: unset;
    right: 25%;
    width: 7%;
  }
}
#intro .section_inner .section_main .text_body {
  width: 50%;
  max-width: 800px;
  margin: 0 10% 0 auto;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_body {
    background-color: #000;
    width: 100%;
    max-width: 500px;
    margin: 0 0 0 auto;
    padding: 60px 20px;
  }
}
#intro .section_inner .section_main .text_body h3 {
  margin-bottom: 30px;
}
#intro .section_inner .section_main .text_body p {
  line-height: 2;
  text-align: justify;
}

#story {
  background-image: url(img/bg_story.jpg);
  background-position: 0% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #story {
    background-position: 70% 50%;
  }
}
#story .section_inner {
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  #story .section_inner {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 80px 20px;
  }
}
#story .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .text_body {
    max-width: 500px;
    margin: 0 auto;
  }
}
#story .section_inner .section_main .text_body p {
  line-height: 2.5;
  text-align: center;
  font-weight: 700;
}
#story .section_inner .section_main .text_body p span {
  display: inline-block;
}

#comment {
  background-color: rgba(255, 255, 255, 0.32);
}
#comment .section_inner {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #comment .section_inner {
    padding: 80px 0;
  }
}
#comment .section_inner .section_main {
  max-width: 1000px;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main {
    max-width: 500px;
    padding: 0 20px;
  }
}
#comment .section_inner .section_main h2 {
  color: #000;
  opacity: 1;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main h2 {
    margin-bottom: 40px;
  }
}
#comment .section_inner .section_main .comment_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 30px;
  max-width: 700px;
  width: 90%;
}
#comment .section_inner .section_main .comment_list li {
  padding: 0.5em;
}
#comment .section_inner .section_main .comment_list li a {
  color: #000;
  transition: 0.4s;
  font-weight: 700;
}
#comment .section_inner .section_main .comment_list li a:hover {
  opacity: 0.6;
}
#comment .section_inner .section_main .comment-cau {
  text-align: center;
  font-size: 0.9em;
  margin-bottom: 60px;
  color: #000;
  opacity: 0.9;
}
#comment .section_inner .section_main .comment_items .comment_item {
  margin-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment_items .comment_item {
    padding: 20px;
    margin-bottom: 40px;
  }
}
#comment .section_inner .section_main .comment_items .comment_item:last-of-type {
  margin-bottom: 0;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_names {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment_items .comment_item .comment_names {
    flex-direction: column;
  }
}
#comment .section_inner .section_main .comment_items .comment_item .comment_names .comment_name {
  font-size: 1.3em;
  color: #000;
  text-align: center;
  font-weight: 700;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_names .comment_role {
  font-size: 0.8em;
  text-align: center;
  color: #000;
  opacity: 0.8;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body {
  border-top: solid 1px rgba(255, 152, 129, 0.25);
  padding-top: 10px;
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body p {
  color: #000;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.6em;
  opacity: 0.9;
  font-size: 0.9em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .comment_items .comment_item .comment_body p {
    margin-bottom: 0.4em;
  }
}
#comment .section_inner .section_main .comment_items .comment_item .comment_body p:last-of-type {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */