@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: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
  background-color: #000;
}
@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;
}

section h2 {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
section h2 .h2-ja {
  font-size: 0.9em;
  color: #D80C18;
  letter-spacing: 0.2em;
}
section h2 .h2-en {
  text-transform: uppercase;
  font-size: 1.5em;
  letter-spacing: 0.2em;
}
section.section-default .section_inner .section_main {
  padding: 0 50px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main {
    padding: 0 30px;
    max-width: 500px;
  }
}
section.section-default .section_inner .section_main p {
  line-height: 2;
  text-align: justify;
  margin-bottom: 0.75em;
}
section.section-default .section_inner .section_main p:last-of-type {
  margin-bottom: 0;
}
section.section-bigger .section_inner .section_main {
  padding: 0 50px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.section-bigger .section_inner .section_main {
    max-width: 500px;
    padding: 0 20px;
  }
}

.imgs4 {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .imgs4 {
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}
.imgs4 div {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .imgs4 div:first-of-type {
    width: 100%;
    margin-bottom: 20px;
  }
  .imgs4 div:nth-of-type(2) {
    width: 60%;
    margin: 0 auto 20px 0;
  }
  .imgs4 div:nth-of-type(3) {
    width: 80%;
    margin: 0 0 20px auto;
  }
  .imgs4 div:nth-of-type(4) {
    width: 60%;
  }
}

@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;
  position: absolute;
  width: 100%;
  height: 75vw;
  background-image: url(img/main-pc.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .fixed_bg {
    height: 173vw;
    background-image: url(img/main-sp.jpg);
  }
}

/*-------------------------------*/
/*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: 200px;
  width: 60%;
  opacity: 0.32;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .loading .loader {
    max-width: 100px;
  }
}

/*-------------------------------*/
/*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;
  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: 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;
  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-------------------*/
@keyframes noise {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 800px;
  }
}
.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;
}
@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(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--------------------*/
/*-------------------------------*/
/*nav----------------------------*/
.nav_title {
  display: none;
}
@media screen and (max-width: 768px) {
  .nav_title {
    position: absolute;
    bottom: 0;
    width: 90%;
    left: 5%;
    opacity: 0.2;
    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%;
    width: 60px;
    height: 60px;
    transition: 0.5s;
    opacity: 0;
  }
}
.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 {
  z-index: 100;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  height: 60px;
  opacity: 0;
  transition: 1s;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #000 100%);
}
@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.5s;
    background: #000;
  }
  .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: 10px;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    padding-right: 0px;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.gnav .gnav_list li a {
  display: block;
  cursor: pointer;
  padding: 0 0.25em;
  transition: 0.2s;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.2em;
  height: 60px;
  display: flex;
  align-items: center;
  color: #FFF;
  justify-content: center;
}
.gnav .gnav_list li a span {
  color: #D80C18;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a {
    font-size: 1.2em;
    margin-bottom: 5px;
    padding: 10px 0;
    height: auto;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
  transform: translateY(2px);
}

.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: #D80C18;
  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 {
  transition: 1s;
  padding: 50px 50px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 50px 20px;
  }
}
footer .title_footer {
  opacity: 0.5;
  max-width: 266px;
  margin: 0 auto 20px;
  width: 50%;
}
footer .release_footer {
  opacity: 0.7;
  max-width: 82px;
  margin: 0 auto 40px;
  width: 20%;
}

#top {
  position: relative;
  width: 100%;
  height: 61vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top {
    height: 174vw;
  }
}
#top .award {
  position: absolute;
  width: 11.61%;
  top: 3.38%;
  left: 3.23%;
}
@media screen and (max-width: 768px) {
  #top .award {
    width: 29.07%;
    top: 6.91%;
    left: 3.47%;
  }
}
#top .starring {
  position: absolute;
  width: 42.66%;
  top: 4.39%;
  left: 17.24%;
}
@media screen and (max-width: 768px) {
  #top .starring {
    width: 92%;
    top: 2.3%;
    left: 4%;
  }
}
#top .copy_tate {
  position: absolute;
  width: 1.3%;
  top: 12.5%;
  left: 83.91%;
}
@media screen and (max-width: 768px) {
  #top .copy_tate {
    width: 2.67%;
    top: 21.51%;
    left: 47.73%;
  }
}
#top .title {
  position: absolute;
  width: 24.32%;
  top: 54.81%;
  left: 72.4%;
}
@media screen and (max-width: 768px) {
  #top .title {
    width: 54.67%;
    top: 53.46%;
    left: 22.67%;
  }
}
#top .billing_en {
  position: absolute;
  width: 36.2%;
  top: 83.45%;
  left: 60.57%;
}
@media screen and (max-width: 768px) {
  #top .billing_en {
    width: 77.87%;
    top: 88.79%;
    left: 11.2%;
  }
}
#top .billing_jp {
  position: absolute;
  width: 53.13%;
  top: 89.36%;
  left: 43.65%;
}
@media screen and (max-width: 768px) {
  #top .billing_jp {
    width: 77.87%;
    top: 93%;
    left: 11.2%;
  }
}
#top .release {
  position: absolute;
  width: 11.2%;
  top: 64.19%;
  left: 4.53%;
}
@media screen and (max-width: 768px) {
  #top .release {
    width: 19.2%;
    top: 76.65%;
    left: 40.53%;
  }
}
#top .copy_yoko {
  position: absolute;
  width: 40.94%;
  top: 73.9%;
  left: 4.53%;
}
@media screen and (max-width: 768px) {
  #top .copy_yoko {
    width: 89.87%;
    top: 82.95%;
    left: 5.07%;
  }
}

#info {
  padding: 0px 50px 40px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 0px 20px 40px;
  }
}
#info .btns {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 30px;
  gap: 20px;
  justify-content: center;
}
#info .bnr_comment {
  width: 100%;
  margin: 0 auto 30px;
  max-width: 480px;
  display: block;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: 0.2s;
}
#info .bnr_comment:hover {
  opacity: 0.7;
}
#info .link-x {
  border: solid 1px #464646;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.32);
  padding-left: 2em;
  transition: 0.2s;
}
#info .link-x::after {
  content: "Official X";
  color: #FFF;
  letter-spacing: 0.2em;
  margin-left: 1em;
  padding: 0 2em 0 1em;
  border-left: dotted 1px rgba(255, 255, 255, 0.5);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#info .link-x img {
  width: 24px;
}
#info .link-x:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
#info .link-theater {
  border: solid 1px #464646;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.32);
  padding-left: 2em;
  transition: 0.2s;
}
#info .link-theater::after {
  content: "劇場情報";
  color: #FFF;
  letter-spacing: 0.2em;
  margin-left: 1em;
  padding: 0 2em 0 1em;
  border-left: dotted 1px rgba(255, 255, 255, 0.5);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#info .link-theater img {
  width: 24px;
}
#info .link-theater:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
#info .tkts {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #info .tkts {
    gap: 10px;
  }
}
#info .tkts li {
  max-width: 200px;
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  #info .tkts li {
    width: calc(50% - 5px);
  }
}
#info .tkts li a {
  display: block;
  transition: 0.2s;
}
#info .tkts li a:hover {
  filter: brightness(80%);
}
#info .mvtk {
  margin: 0 auto;
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto;
}

#news-top {
  font-size: 0.9em;
}
#news-top .tri-yoko {
  transform: rotate(90deg);
  display: inline-block;
}
#news-top .section_inner {
  max-width: 1100px;
  max-width: 940px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner {
    max-width: 500px;
  }
}
#news-top .section_inner .section_main {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main {
    padding: 0 20px;
  }
}
#news-top .section_inner .section_main h2 {
  text-align: center;
  text-transform: uppercase;
}
#news-top .section_inner .section_main .news-items {
  border: 1px solid #666;
  border-radius: 5px;
  margin-top: -1px;
  padding: 30px 50px 10px;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main .news-items {
    padding: 20px 20px 0px;
  }
}
#news-top .section_inner .section_main .news-items .news-item {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: solid 1px rgba(255, 255, 255, 0.32);
  margin-bottom: 20px;
}
#news-top .section_inner .section_main .news-items .news-item a {
  color: #ffcece;
  transition: 0.2s;
  word-break: break-all;
}
#news-top .section_inner .section_main .news-items .news-item a:hover {
  color: #FFF;
}
#news-top .section_inner .section_main .news-items .news-item .news-date {
  margin-bottom: 1em;
  letter-spacing: 0.1em;
  cursor: pointer;
}
#news-top .section_inner .section_main .news-items .news-item .news-title {
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 1em;
  padding-right: 1em;
}
#news-top .section_inner .section_main .news-items .news-item .news-title::after {
  content: "▼";
  font-size: 0.7em;
  position: absolute;
  right: 0.5em;
  top: 10%;
  color: #FF0000;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main .news-items .news-item .news-title::after {
    right: 0;
  }
}
#news-top .section_inner .section_main .news-items .news-item .news-title.active::after {
  content: "▲";
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main .news-items .news-item .news-title {
    font-size: 1.1em;
  }
}
#news-top .section_inner .section_main .news-items .news-item:last-of-type {
  border-bottom: none;
}
#news-top .section_inner .section_main .news-items .news-item .news-body {
  display: none;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main .news-items .news-item .news-body {
    padding: 20px;
  }
}
#news-top .section_inner .section_main .news-items .news-item p {
  line-height: 1.8;
  margin-bottom: 1em;
}
#news-top .section_inner .section_main .news-items .news-item hr {
  margin: 2em auto;
  border: 0;
  background-color: #525252;
  height: 1px;
  width: 100%;
}
#news-top .section_inner .section_main .news-items .news-item .news-img {
  margin: 1em auto;
  display: block;
  width: 100%;
  max-width: 600px;
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_01 div {
  filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.4));
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_01 div:first-of-type {
  width: 62%;
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_01 div:last-of-type {
  width: 32%;
  margin-top: 5px;
  transform: rotate(3deg);
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_02 {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_02 div {
  filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.4));
  width: calc(45% - 5px);
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main .news-items .news-item .news-img .img_02 div {
    width: calc(50% - 5px);
  }
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_03 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_03 div {
  width: calc(50% - 5px);
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main .news-items .news-item .news-img .img_03 div {
    width: 100%;
  }
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_03 div:nth-of-type(5) {
  width: 100%;
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_03 div:nth-of-type(6) {
  width: 100%;
}
#news-top .section_inner .section_main .news-items .news-item .news-img .img_03 div:nth-of-type(2) {
  margin: auto 0 0 0;
}
#news-top .section_inner .section_main .news-items .news-item .news-img.img_04 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
#news-top .section_inner .section_main .news-items .news-item .news-img.img_05 {
  display: block;
  max-width: 300px;
}
#news-top .section_inner .section_main .news-items .news-item p.small {
  font-size: 0.85em;
}
#news-top .section_inner .section_main .news-items .news-item .midashi {
  font-size: 1.1em;
}

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

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

/*-------------------------------*/
#intro {
  padding-bottom: 120px;
  position: relative;
}
#intro .section_inner {
  position: relative;
}
#intro .section_inner .section_header {
  position: relative;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_header {
    position: absolute;
    top: 0;
    left: 0;
  }
}
#intro .section_inner .section_main {
  margin-top: -25vw;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main {
    margin-top: 0;
    padding-top: 0px;
  }
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main {
    position: relative;
  }
}
#intro .section_inner .section_main h2 {
  flex-direction: row;
  gap: 0.25em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main h2 {
    padding-top: 40px;
  }
}
#intro .section_inner .section_main h2 .h2-en, #intro .section_inner .section_main h2 .h2-ja {
  text-orientation: upright;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main h2 {
    position: sticky;
    top: 0px;
    left: 0;
  }
}
#intro .section_inner .section_main h3 {
  margin-bottom: 1em;
}
#intro .section_inner .section_main .text_body {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .text_body {
    padding-left: 60px;
  }
}
#intro .section_inner .section_main .text_body:first-of-type {
  padding-top: 40vw;
  margin-top: -300px;
}
#intro .section_inner .section_main .text_body:last-of-type {
  margin-bottom: 0;
}

#story {
  background-image: url(img/bg_story.jpg);
  background-size: cover;
  background-position: center center;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #story {
    padding: 80px 0;
  }
}
#story .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: 40px;
}
#story .section_inner .section_main h3 {
  max-width: 600px;
  margin: 0 auto 20px;
}
#story .section_inner .section_main p {
  text-align: center;
  line-height: 2.5;
  margin-bottom: 1.5em;
}
#story .section_inner .section_main p span {
  display: inline-block;
}

#cast {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #cast {
    padding-bottom: 80px;
  }
}
#cast .section_inner .section_main {
  margin-top: -10vw;
}
#cast .section_inner .section_main h2 {
  flex-direction: row;
  justify-content: flex-end;
  gap: 0.25em;
  margin-bottom: 40px;
}
#cast .section_inner .section_main h2 .h2-en, #cast .section_inner .section_main h2 .h2-ja {
  text-orientation: upright;
  writing-mode: vertical-lr;
}
#cast .section_inner .section_main .prof_items {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
#cast .section_inner .section_main .prof_items .prof_item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .prof_items .prof_item {
    padding: 20px;
  }
}
#cast .section_inner .section_main .prof_items .prof_item .mae {
  font-size: 0.8em;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_upper {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: solid 1px #D80C18;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .prof_items .prof_item .prof_upper {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
#cast .section_inner .section_main .prof_items .prof_item .prof_upper .prof_img {
  width: 250px;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .prof_items .prof_item .prof_upper .prof_img {
    width: 200px;
    margin: 0 auto 20px;
  }
}
#cast .section_inner .section_main .prof_items .prof_item .prof_upper .prof_texts-ch {
  flex: 1;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_upper .prof_texts-ch .ch-name {
  line-height: 1.3;
  font-size: 2em;
  font-weight: 900;
  color: #D80C18;
  margin-bottom: 0.25em;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_upper .prof_texts-ch .ch-name span.mae {
  display: block;
  color: #FFF;
  font-weight: 400;
  font-size: 0.5em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .prof_items .prof_item .prof_upper .prof_texts-ch .ch-name {
    text-align: center;
  }
}
#cast .section_inner .section_main .prof_items .prof_item .prof_upper .prof_texts-ch .ch-des {
  color: #FF8188;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .prof_items .prof_item .prof_upper .prof_texts-ch .ch-des {
    margin-bottom: 0.5em;
    text-align: center;
  }
}
#cast .section_inner .section_main .prof_items .prof_item .prof_upper .prof_texts-ch .ch-des span {
  display: block;
  line-height: 1.3;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_upper .prof_texts-ch .ch-body p {
  line-height: 2;
  text-align: justify;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_lower .ac-name {
  font-size: 1.5em;
  color: #D80C18;
  font-weight: 900;
  margin-bottom: 0.5em;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_lower .ac-name .mae {
  color: #FFF;
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-right: 0.5em;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_lower .ac-name .aka {
  font-size: 0.8em;
  margin-left: 0.5em;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_lower .ac-body p {
  line-height: 2;
  text-align: justify;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_lower .filmo {
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 0.9em;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_lower .filmo .filmo-title {
  margin-bottom: 0.75em;
  text-transform: uppercase;
}
#cast .section_inner .section_main .prof_items .prof_item .prof_lower .filmo p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .prof_items .prof_item .prof_lower .filmo p {
    display: inline-block;
    line-height: 1.6;
    margin-bottom: 0.5em;
  }
}
#cast .section_inner .section_main .prof_items .prof_item .prof_lower .filmo p span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .prof_items .prof_item .prof_lower .filmo p span {
    display: inline;
  }
}
#cast .section_inner .section_main .prof_items .prof_item .prof_lower .filmo p span.red {
  color: #D80C18;
}

#staff {
  padding: 120px 0;
  background-image: url(img/bg_staff.jpg);
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 768px) {
  #staff {
    padding: 80px 0;
  }
}
#staff .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: 40px;
}
#staff .section_inner .section_main .item_staff {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main .item_staff {
    padding: 20px;
  }
}
#staff .section_inner .section_main .item_staff .img_staff {
  margin: 0 auto 20px;
  max-width: 400px;
}
#staff .section_inner .section_main .item_staff .names {
  text-align: center;
  margin-bottom: 20px;
}
#staff .section_inner .section_main .item_staff .names .name {
  font-size: 2em;
  margin-top: 0.25em;
  color: #D80C18;
}
#staff .section_inner .section_main .item_staff .p-sub {
  font-size: 0.9em;
  letter-spacing: 0.1em;
  text-align: center;
}
#staff .section_inner .section_main .item_staff .uls {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main .item_staff .uls {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
#staff .section_inner .section_main .item_staff ul li {
  display: flex;
  margin-bottom: 0.5em;
}
#staff .section_inner .section_main .item_staff ul li .year {
  width: 70px;
  white-space: nowrap;
}
#staff .section_inner .section_main .item_staff ul li .p-info {
  width: calc(100% - 70px);
}
#staff .section_inner .section_main .item_staff ul li .p-info .award p {
  margin-top: 0.25em;
  font-size: 0.8em;
}

.body_comment {
  background-size: 1920px;
  background-repeat: repeat;
}
.body_comment .fixed_bg {
  position: fixed;
  background-image: url(img/bg_staff.jpg);
  background-size: cover;
}

#comment {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #comment {
    padding: 80px 0;
  }
}
#comment .section_inner .section_main {
  max-width: 1500px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main {
    max-width: 600px;
  }
}
#comment .section_inner .section_main h2 {
  text-align: center;
  margin-bottom: 40px;
}
#comment .section_inner .section_main .cau {
  text-align: center;
  font-size: 0.8em;
  opacity: 0.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .cau {
    margin-bottom: 20px;
  }
}
#comment .section_inner .section_main ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
#comment .section_inner .section_main ul li a {
  line-height: 2;
  padding: 0 1em;
  color: #FFF;
  opacity: 0.8;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main ul li a {
    padding: 0 0.5em;
  }
}
#comment .section_inner .section_main ul li a:hover {
  opacity: 0.32;
}
#comment .section_inner .section_main .grid-sizer,
#comment .section_inner .section_main .grid-item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .grid-sizer,
  #comment .section_inner .section_main .grid-item {
    width: 100%;
  }
}
#comment .section_inner .section_main .grid-item {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .grid-item {
    padding: 20px;
  }
}
#comment .section_inner .section_main .grid-item .grid-comment p {
  line-height: 2em;
  margin-bottom: 0.25em;
}
#comment .section_inner .section_main .grid-item .grid-comment p:last-of-type {
  margin-bottom: 0;
}
#comment .section_inner .section_main .grid-item .grid-comment p span {
  font-size: 1.4em;
  padding-left: 0.1em;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .grid-item .grid-comment p span {
    font-size: 1.3em;
  }
}
#comment .section_inner .section_main .grid-item .grid-by {
  border-top: solid 1px rgba(255, 255, 255, 0.32);
  padding-top: 20px;
  text-align: center;
  font-size: 1.8em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .grid-item .grid-by {
    padding-top: 10px;
    font-size: 1.4em;
  }
}
#comment .section_inner .section_main .grid-item .grid-by span {
  opacity: 0.7;
  font-size: 0.6em;
  display: block;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .grid-item .grid-by span {
    font-size: 0.8em;
  }
}
#comment .section_inner .section_main .grid-item--width2 {
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .grid-item--width2 {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */