@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: #FEFEFE;
  background-color: #050402;
  background-size: 100%;
  background-repeat: no-repeat;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  scrollbar-gutter: stable;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

body.noscroll {
  overflow: hidden;
  height: 100vh;
  height: 100lvh;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
@media screen and (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 0px; /* スクロールバーの幅 */
    height: 0px; /* 横スクロール用 */
  }
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #a5a5a5;
}

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.h2_default {
  font-family: "Gravitas One", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: 2em;
}
@media screen and (max-width: 768px) {
  h2.h2_default {
    font-size: 1.7em;
  }
}

section.default .section_inner {
  padding: 120px 50px;
}
@media screen and (max-width: 768px) {
  section.default .section_inner {
    padding: 80px 30px;
  }
}
section.default .section_inner .section_main {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.default .section_inner .section_main {
    max-width: 500px;
  }
}

.imgs_block {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 55vw;
}
@media screen and (max-width: 768px) {
  .imgs_block {
    flex-wrap: wrap;
    height: auto;
  }
}
.imgs_block .right {
  width: 58%;
  order: 2;
}
@media screen and (max-width: 768px) {
  .imgs_block .right {
    width: 100%;
    order: 1;
  }
  .imgs_block .right img {
    height: 80vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.imgs_block .right .sml {
  display: flex;
}
.imgs_block .right .sml div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .imgs_block .right .sml div {
    width: 45%;
  }
  .imgs_block .right .sml div:last-of-type {
    width: 55%;
  }
  .imgs_block .right .sml div img {
    height: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.imgs_block .left {
  order: 1;
  width: 43%;
}
@media screen and (max-width: 768px) {
  .imgs_block .left {
    orphans: 2;
    width: 100%;
  }
  .imgs_block .left .mdl {
    display: flex;
  }
  .imgs_block .left .mdl div {
    width: 55%;
  }
  .imgs_block .left .mdl div:last-of-type {
    width: 45%;
  }
  .imgs_block .left .mdl div img {
    height: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.imgs_block .grad {
  width: 100%;
  height: 10%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 768px) {
  .imgs_block .grad {
    height: 5%;
  }
}

.imgb {
  position: relative;
}
.imgb .imgb_base {
  width: 100%;
  position: relative;
}
.imgb .imgb_base img {
  width: 100%;
  height: 40vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .imgb .imgb_base img {
    height: 120vw;
  }
}
.imgb .text_jigoku {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.2%;
}
@media screen and (max-width: 768px) {
  .imgb .text_jigoku {
    width: 9.5%;
  }
}

footer .footer {
  padding: 80px;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 60px 30px 90px;
  }
}
footer .footer .title {
  max-width: 280px;
  width: 60%;
  margin: 0 auto 20px;
  opacity: 0.5;
}
footer .footer .release {
  max-width: 127px;
  width: 25%;
  margin: 0 auto 40px;
  opacity: 0.5;
}
footer .footer .billing {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  width: 90%;
  opacity: 0.7;
}

.pink {
  color: #E4007F;
  font-weight: 900;
  font-size: 2em;
}
@media screen and (max-width: 768px) {
  .pink {
    font-size: 1.7em;
  }
}

@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;
  background-image: url(img/bg.jpg);
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
}

/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #050402;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loadeing_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loader {
  animation: flash 2s infinite;
  max-width: 200px;
  width: 100%;
}

/*-------------------------------*/
/*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.3;
  overflow: hidden;
}
@keyframes noise {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 800px;
  }
}
@media screen and (max-width: 768px) {
  .noise_overlay {
    background-size: 300px;
  }
}

/*-------------------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@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;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
}
.share_btns-square li {
  cursor: pointer;
  margin: 0 10px 0px;
  width: 24px;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .share_btns-square li {
    margin: 0 10px 10px;
  }
}
.share_btns-square li:hover {
  opacity: 0.5;
}

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

.blurUp {
  opacity: 0;
  transition: 1s;
  filter: blur(10px);
}
.blurUp.is-inview {
  filter: blur(0px);
  opacity: 1;
}

/*-------------------------------*/
/*-keyframes--------------------*/
/*-------------------------------*/
#top {
  overflow: hidden;
  position: relative;
}
#top .main_bg {
  background-image: url(img/bg_p.jpg);
  background-size: cover;
  position: relative;
  width: 100%;
  height: 52vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top .main_bg {
    height: 163vw;
  }
}
#top .ch01 {
  position: absolute;
  width: 54%;
  top: 0%;
  left: 0%;
  z-index: 4;
  opacity: 0;
  transition: 0.4s;
  transform: translateY(-20px);
}
@media screen and (max-width: 768px) {
  #top .ch01 {
    width: 100%;
    top: 0%;
    left: 0%;
    z-index: 3;
  }
}
#top .ch01.inview {
  opacity: 1;
  transform: translateY(0px);
  opacity: 1;
}
#top .ch2 {
  position: absolute;
  width: 30.63%;
  top: 56.97%;
  left: 0%;
  z-index: 4;
  opacity: 0;
  transition: 0.4s;
  transform: translate(-20px, 20px);
}
@media screen and (max-width: 768px) {
  #top .ch2 {
    width: 60.7%;
    top: 38.65%;
    left: 0%;
    z-index: 3;
  }
}
#top .ch2.inview {
  opacity: 1;
  transform: translate(0px, 0px);
  opacity: 1;
}
#top .ch3 {
  position: absolute;
  width: 36.6%;
  top: 54.88%;
  left: 17.41%;
  z-index: 4;
  opacity: 0;
  transition: 0.4s;
  transform: translate(20px, 20px);
}
@media screen and (max-width: 768px) {
  #top .ch3 {
    width: 67.19%;
    top: 35.97%;
    left: 33.22%;
    z-index: 3;
  }
}
#top .ch3.inview {
  opacity: 1;
  transform: translate(0px, 0px);
  opacity: 1;
}
#top .ch4 {
  position: absolute;
  width: 46%;
  bottom: 0%;
  left: 54%;
  z-index: 3;
  opacity: 0;
  transition: 0.4s;
  transform: translateY(20px);
}
@media screen and (max-width: 768px) {
  #top .ch4 {
    width: 100%;
    bottom: 0%;
    left: 0%;
  }
}
#top .ch4.inview {
  opacity: 1;
  transform: translateY(0px);
  opacity: 1;
}
#top .title {
  position: absolute;
  width: 47.45%;
  top: 11.84%;
  left: 53.39%;
  z-index: 2;
  opacity: 0;
  transition: 0.3s;
  transform: scale(2);
}
@media screen and (max-width: 768px) {
  #top .title {
    z-index: 6;
    width: 103.85%;
    top: 24.73%;
    left: -2.05%;
  }
}
#top .title.inview {
  opacity: 1;
  transform: scale(1);
}
#top .copy1 {
  position: absolute;
  width: 6.67%;
  top: 13.44%;
  left: 6.88%;
  z-index: 7;
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
  filter: blur(10px);
}
@media screen and (max-width: 768px) {
  #top .copy1 {
    width: 16.41%;
    top: 6.1%;
    left: 6.92%;
  }
}
#top .copy1.inview {
  filter: blur(0px);
  opacity: 1;
  transform: translateY(0px);
}
#top .copy2 {
  position: absolute;
  width: 41.25%;
  top: 80.34%;
  left: 56.25%;
  z-index: 8;
  opacity: 0;
  transition: 0.5s;
  clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 768px) {
  #top .copy2 {
    width: 95.9%;
    top: 86.07%;
    left: 2.05%;
  }
}
#top .copy2.inview {
  opacity: 1;
  clip-path: inset(0);
}
#top .billing1 {
  position: absolute;
  width: 25.23%;
  top: 55.77%;
  left: 56.41%;
  z-index: 2;
  opacity: 0;
  transition: 0.5s;
  clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 768px) {
  #top .billing1 {
    width: 47.69%;
    top: 70.89%;
    left: 2.82%;
  }
}
#top .billing1.inview {
  opacity: 1;
  clip-path: inset(0);
}
#top .billing2 {
  position: absolute;
  width: 40.16%;
  top: 67.9%;
  left: 56.41%;
  z-index: 2;
  opacity: 0;
  transition: 0.5s;
  clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 768px) {
  #top .billing2 {
    width: 94.1%;
    top: 78.25%;
    left: 2.82%;
  }
}
#top .billing2.inview {
  opacity: 1;
  clip-path: inset(0);
}
#top .release {
  position: absolute;
  width: 15.49%;
  top: 52.66%;
  left: 83%;
  z-index: 2;
  opacity: 0;
  transition: 0.3s;
  transform: scale(2) rotate(10deg);
}
@media screen and (max-width: 768px) {
  #top .release {
    z-index: 2;
    width: 26.03%;
    top: 72%;
    left: 53%;
  }
}
#top .release.inview {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

#info {
  padding: 40px 20px 60px;
  width: 100%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 20px 40px;
  }
}
#info .haishin {
  margin: 0 auto 30px;
  max-width: 800px;
  display: block;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #info .haishin {
    margin: 0 auto 30px;
    max-width: 410px;
    border: solid 1px #E4007F;
  }
}
#info .haishin:hover {
  filter: brightness(130%);
}
#info h2 {
  margin-bottom: -0.25em;
  color: #E4007F;
  text-align: center;
}
#info .bnr_ever {
  width: 80%;
  margin: 0 auto 20px;
  display: block;
  max-width: 280px;
  transition: 0.2s;
}
#info .bnr_ever:hover {
  filter: grayscale(80%);
}
#info .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
#info .btns a {
  overflow: hidden;
  position: relative;
  margin: 0 10px;
  display: block;
  max-width: 200px;
  width: 100%;
  border-top: solid 1px #a5a5a5;
  border-bottom: solid 1px #a5a5a5;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #info .btns a {
    margin: 0 10px -1px;
  }
  #info .btns a:last-of-type {
    margin: 0 10px;
  }
}
#info .btns a:hover {
  border-top: solid 1px #494949;
  border-bottom: solid 1px #494949;
}
#info .mvtk {
  width: 100%;
}
#info .mvtk #mvtk-widgets-container {
  margin: 0 auto 30px;
}

#comment {
  background-color: #050402;
}
#comment .section_inner .section_main h2 {
  color: #E4007F;
  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 .ocomment_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}
#comment .section_inner .section_main .ocomment_list li {
  padding: 0.5em;
}
#comment .section_inner .section_main .ocomment_list li a {
  color: #CCC;
}
#comment .section_inner .section_main .ocomment_items .ocomment_item {
  margin-bottom: 60px;
}
#comment .section_inner .section_main .ocomment_items .ocomment_item:last-of-type {
  margin-bottom: 0;
}
#comment .section_inner .section_main .ocomment_items .ocomment_item .ocomment_names {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}
#comment .section_inner .section_main .ocomment_items .ocomment_item .ocomment_names::before {
  content: "―――";
  opacity: 0.5;
  margin-right: 0.25em;
}
#comment .section_inner .section_main .ocomment_items .ocomment_item .ocomment_names .ocomment_name {
  font-size: 1.5em;
  color: #E4007F;
  text-align: right;
  font-weight: 700;
  margin-right: 0.25em;
}
#comment .section_inner .section_main .ocomment_items .ocomment_item .ocomment_names .ocomment_role {
  opacity: 0.8;
  font-size: 0.9em;
  text-align: right;
}
#comment .section_inner .section_main .ocomment_items .ocomment_item .occomment_body {
  margin-bottom: 20px;
}
#comment .section_inner .section_main .ocomment_items .ocomment_item .occomment_body p {
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.8em;
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .ocomment_items .ocomment_item .occomment_body p {
    margin-bottom: 0.4em;
  }
}
#comment .section_inner .section_main .ocomment_items .ocomment_item .occomment_body p:last-of-type {
  margin-bottom: 0;
}

#intro .section_inner {
  background-image: url(img/img_intro.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  #intro .section_inner {
    background-size: 200%;
    background-position: 50% 0%;
  }
}
#intro .section_inner .section_main {
  margin: 0 auto;
  padding: 5vw 50px 120px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main {
    max-width: 500px;
    padding: 40px 30px 80px;
  }
}
#intro .section_inner .section_main h2 {
  text-align: center;
  color: #E4007F;
  margin-bottom: 30vw;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main h2 {
    margin-bottom: 60vw;
  }
}
#intro .section_inner .section_main .section_body h3 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
}
#intro .section_inner .section_main .section_body h4 {
  text-align: center;
  color: #E4007F;
  font-weight: 700;
  line-height: 1.6;
  font-size: 2.5em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .section_body h4 {
    font-size: 1.2em;
  }
}
#intro .section_inner .section_main .section_body .story_body {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 40px;
}
#intro .section_inner .section_main .section_body .story_body p {
  font-size: 1.125em;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .section_body .story_body p {
    font-size: 1em;
  }
}
#intro .section_inner .section_main .section_body .story_body p:last-of-type {
  margin-bottom: 0;
}
#intro .section_inner .section_main .section_body .story_body p span {
  color: #E4007F;
  font-weight: 900;
}
#intro .section_inner .section_main .section_body .diamond {
  text-align: center;
  color: #E4007F;
  margin-bottom: 40px;
}
#intro .section_inner .section_main .section_body .intro_body {
  max-width: 900px;
  margin: 0 auto;
}
#intro .section_inner .section_main .section_body .intro_body p {
  font-size: 1.125em;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main .section_body .intro_body p {
    font-size: 1em;
  }
}
#intro .section_inner .section_main .section_body .intro_body p:last-of-type {
  margin-bottom: 0;
}

#imagesong .section_inner .section_main h2 {
  color: #a5a5a5;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #imagesong .section_inner .section_main h2 {
    margin-bottom: 40px;
  }
}
#imagesong .section_inner .section_main h3 {
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 1em;
  color: #E4007F;
  line-height: 1.6;
}
#imagesong .section_inner .section_main .music_img {
  max-width: 400px;
  width: 100%;
  margin: 40px auto 40px;
}
#imagesong .section_inner .section_main p {
  line-height: 2;
}
#imagesong .section_inner .section_main .center {
  text-align: center;
}
#imagesong .section_inner .section_main .ar_comment {
  font-style: italic;
  margin-bottom: 40px;
}
#imagesong .section_inner .section_main .ar_comment .com_by {
  text-align: right;
  font-size: 1.1em;
  margin-top: 0.5em;
}
#imagesong .section_inner .section_main .ar_comment .com_by span {
  font-size: 0.9em;
  color: #CCC;
  margin-left: 0.5em;
}
#imagesong .section_inner .section_main .cds {
  background-color: rgba(217, 217, 217, 0.1);
  padding: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #imagesong .section_inner .section_main .cds {
    padding: 30px 20px;
    font-size: 0.9em;
  }
}
#imagesong .section_inner .section_main .cds .block {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #727272;
}
#imagesong .section_inner .section_main .cds .block:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#imagesong .section_inner .section_main .cds .block ul {
  margin-bottom: 20px;
}
#imagesong .section_inner .section_main .cds .block ul:last-of-type {
  margin-bottom: 0;
}
#imagesong .section_inner .section_main .cds .block ul li.sub_title {
  font-weight: 700;
}
#imagesong .section_inner .section_main .cds .block ul .song_title {
  margin: 10px 0;
  line-height: 1.4;
}
#imagesong .section_inner .section_main .cds .block ul .song_title span:first-of-type {
  font-size: 1.2em;
}
#imagesong .section_inner .section_main .cds .block ul li.subsub_title {
  font-weight: 700;
}
#imagesong .section_inner .section_main .cds .block ul li.strong {
  font-weight: 700;
}

#cast {
  overflow: hidden;
  background-color: #000;
}
#cast .section_inner {
  padding: 0px 0 120px;
  max-width: 1700px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #cast .section_inner {
    padding: 0px 0 80px;
  }
}
#cast .section_inner .section_main {
  position: relative;
}
#cast .section_inner .section_main h2 {
  color: #E4007F;
  text-align: center;
  margin: 0 -50% 0 auto;
  transform: translateY(80px);
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main h2 {
    margin: 0;
    transform: translateY(0);
    writing-mode: vertical-lr;
    position: absolute;
    top: 0px;
    right: calc(66.66% + 20px);
  }
}
#cast .section_inner .section_main .prof_btns {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
#cast .section_inner .section_main .prof_btns .prof_btn {
  position: relative;
  width: 12.5%;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .prof_btns .prof_btn {
    width: 33.33%;
  }
}
#cast .section_inner .section_main .prof_btns .prof_btn:nth-of-type(n+5) {
  margin-top: 10%;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .prof_btns .prof_btn:nth-of-type(n+5) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main .prof_btns .prof_btn:first-of-type {
    margin-left: 33.33%;
  }
}
#cast .section_inner .section_main .prof_btns .prof_btn .prof_btn-base {
  position: relative;
  overflow: hidden;
}
#cast .section_inner .section_main .prof_btns .prof_btn .prof_btn-base img {
  transition: 0.2s;
}
#cast .section_inner .section_main .prof_btns .prof_btn .prof_btn-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.2s;
}
#cast .section_inner .section_main .prof_btns .prof_btn .corner {
  transition: 0.2s;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 20px;
  width: 20px;
  background-color: #E4007F;
  clip-path: polygon(0 100%, 100% 100%, 100% 0%);
}
#cast .section_inner .section_main .prof_btns .prof_btn:hover .prof_btn-base img {
  transform: scale(1.1);
}
#cast .section_inner .section_main .prof_btns .prof_btn:hover .prof_btn-text {
  filter: brightness(0) invert(1);
}
#cast .section_inner .section_main .prof_btns .prof_btn:hover .corner {
  right: -20px;
  bottom: -20px;
}

.prof_window_bg {
  z-index: 1100;
  position: fixed;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  display: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 0;
  visibility: hidden;
}
.prof_window_bg.active {
  opacity: 1;
  display: block;
  visibility: visible;
}

.prof_window {
  z-index: 1101;
  color: #050402;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .prof_window {
    padding: 0;
  }
}
.prof_window.active {
  pointer-events: unset;
  opacity: 1;
  visibility: visible;
}
.prof_window .window_inner {
  background-color: #FEFEFE;
  max-width: 1500px;
  width: 100%;
  height: calc(100% - 100px);
  max-height: 90vw;
  overflow: auto;
  position: relative;
  display: flex;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .prof_window .window_inner {
    height: 100%;
    display: block;
    max-height: unset;
  }
}
.prof_window .window_inner .window_close {
  cursor: pointer;
  z-index: 104;
  position: sticky;
  top: 0px;
  right: 0px;
  background-image: url(img/nav_icon-close.svg);
  background-size: 100%;
  width: 60px;
  height: 60px;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .prof_window .window_inner .window_close {
    position: fixed;
  }
}
.prof_window .window_inner .window_img {
  width: 27%;
  height: 100%;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .prof_window .window_inner .window_img {
    width: 100%;
    position: relative;
    height: auto;
  }
}
.prof_window .window_inner .window_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .prof_window .window_inner .window_img img {
    height: 90vw;
  }
}
.prof_window .window_inner .window_texts {
  position: relative;
  width: 73%;
  margin: 0 0 0 auto;
  display: flex;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .prof_window .window_inner .window_texts {
    width: 100%;
  }
}
.prof_window .window_inner .window_texts .window_text_inner {
  padding: 80px 20px 0 80px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .prof_window .window_inner .window_texts .window_text_inner {
    padding: 30px 30px 160px;
  }
}
.prof_window .role {
  color: #E4007F;
  font-weight: 900;
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 10px;
}
.prof_window .role span {
  font-size: 0.8em;
  margin-left: 0.1em;
}
.prof_window .names {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prof_window .names .line {
  height: 1px;
  width: calc(50% - 8em);
  background-color: #A5A5A5;
}
@media screen and (max-width: 768px) {
  .prof_window .names .line {
    width: calc(50% - 6em);
  }
}
.prof_window .names .name {
  font-size: 2em;
}
.prof_window .cast_body p {
  line-height: 2;
  text-align: justify;
}
.prof_window .cast_comment {
  background-color: rgba(217, 217, 217, 0.1);
  padding: 30px 40px;
  margin-top: 30px;
  line-height: 1.8;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .prof_window .cast_comment {
    margin-bottom: 0;
  }
}
.prof_window .cast_comment p {
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .prof_window .cast_comment {
    padding: 20px;
  }
}
.prof_window .cast_comment h5 {
  text-align: center;
  color: #E4007F;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.8em;
}

.window_nav {
  padding-bottom: 80px;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  display: flex;
  justify-content: space-between;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #FEFEFE;
  padding: 25px 20px;
  align-items: center;
  border-top: 1px solid #A5A5A5;
  margin-top: auto;
  margin-bottom: 1px;
}
@media screen and (max-width: 768px) {
  .window_nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #FEFEFE;
    padding: 0 40px;
    align-items: center;
    margin-bottom: 0;
  }
}
.window_nav .window_nav_prev {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  width: 33.33%;
  transition: 0.4s;
}
.window_nav .window_nav_prev::before {
  color: #E4007F;
  content: "≪";
}
.window_nav .window_nav_prev:hover {
  opacity: 0.4;
}
.window_nav .window_nav_close {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  cursor: pointer;
  width: 33.33%;
  text-align: center;
}
.window_nav .window_nav_close::before {
  content: "×";
  color: #E4007F;
}
.window_nav .window_nav_close:hover {
  opacity: 0.4;
}
.window_nav .window_nav_next {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: 0.4s;
  cursor: pointer;
  width: 33.33%;
  text-align: right;
}
.window_nav .window_nav_next::after {
  content: "≫";
  color: #E4007F;
}
.window_nav .window_nav_next:hover {
  opacity: 0.4;
}
.window_nav .invalid {
  opacity: 0.3;
  pointer-events: none;
  filter: grayscale(100%);
}

.prof_window#w01 .window_inner .window_img img {
  -o-object-position: 52% 50%;
     object-position: 52% 50%;
}
.prof_window#w02 .window_inner .window_img img {
  -o-object-position: 57% 50%;
     object-position: 57% 50%;
}
@media screen and (max-width: 768px) {
  .prof_window#w02 .window_inner .window_img img {
    -o-object-position: 100% 50%;
       object-position: 100% 50%;
  }
}
.prof_window#w03 .window_inner .window_img img {
  -o-object-position: 38% 50%;
     object-position: 38% 50%;
}
@media screen and (max-width: 768px) {
  .prof_window#w03 .window_inner .window_img img {
    -o-object-position: 0% 50%;
       object-position: 0% 50%;
  }
}
.prof_window#w04 .window_inner .window_img img {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.prof_window#w05 .window_inner .window_img img {
  -o-object-position: 59% 50%;
     object-position: 59% 50%;
}
@media screen and (max-width: 768px) {
  .prof_window#w05 .window_inner .window_img img {
    -o-object-position: 100% 50%;
       object-position: 100% 50%;
  }
}
.prof_window#w06 .window_inner .window_img img {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.prof_window#w07 .window_inner .window_img img {
  -o-object-position: 58% 50%;
     object-position: 58% 50%;
}
.prof_window#w08 .window_inner .window_img img {
  -o-object-position: 58% 50%;
     object-position: 58% 50%;
}
@media screen and (max-width: 768px) {
  .prof_window#w08 .window_inner .window_img img {
    -o-object-position: 37% 50%;
       object-position: 37% 50%;
  }
}

#staff .section_inner {
  background-color: #000;
}
#staff .section_inner .section_main h2 {
  color: #E4007F;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main h2 {
    margin-bottom: 40px;
  }
}
#staff .section_inner .section_main .staff_items .staff_item {
  margin-bottom: 80px;
}
#staff .section_inner .section_main .staff_items .staff_item:last-of-type {
  margin-bottom: 0;
}
#staff .section_inner .section_main .staff_items .staff_item .role {
  color: #E4007F;
  font-weight: 900;
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 10px;
}
#staff .section_inner .section_main .staff_items .staff_item .role span {
  font-size: 0.8em;
  margin-left: 0.1em;
}
#staff .section_inner .section_main .staff_items .staff_item .names {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#staff .section_inner .section_main .staff_items .staff_item .names .line {
  height: 1px;
  width: calc(50% - 8em);
  background-color: #A5A5A5;
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main .staff_items .staff_item .names .line {
    width: calc(50% - 6em);
  }
}
#staff .section_inner .section_main .staff_items .staff_item .names .name {
  font-size: 2em;
}
#staff .section_inner .section_main .staff_items .staff_item .staff_body p {
  line-height: 2;
  text-align: justify;
}
#staff .section_inner .section_main .staff_items .staff_item .staff_comment {
  background-color: rgba(217, 217, 217, 0.1);
  padding: 30px 40px;
  margin-top: 20px;
  line-height: 1.8;
}
#staff .section_inner .section_main .staff_items .staff_item .staff_comment p {
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #staff .section_inner .section_main .staff_items .staff_item .staff_comment {
    padding: 20px;
  }
}
#staff .section_inner .section_main .staff_items .staff_item .staff_comment h5 {
  text-align: center;
  color: #E4007F;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.8em;
}

/*nav----------------------------*/
.nav_bar {
  z-index: 100;
  height: 50px;
  width: 100%;
  background-color: rgb(0, 0, 0);
  position: fixed;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(-50px);
}
@media screen and (max-width: 768px) {
  .nav_bar {
    background-image: linear-gradient(to right, #E4007F 0px, #E4007F 60px, #000 60px, #000 100%);
    height: 60px;
    clip-path: polygon(0 0, 101% 0, 101% 60px, calc(100% - 40px) 60px, calc(100% - 60px) 50px, 60px 50px, 40px 60px, 0 60px);
  }
}
.nav_bar.visible {
  transform: translateY(0px);
  opacity: 1;
}

.nav_btn {
  z-index: 104;
  display: none;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(-50px);
}
@media screen and (max-width: 768px) {
  .nav_btn {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }
  .nav_btn span {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #E4007F;
    display: block;
    top: 18px;
    right: 18px;
    transition: all 0.2s ease;
  }
  .nav_btn span:nth-of-type(2) {
    top: 28px;
  }
  .nav_btn span:last-of-type {
    width: 15px;
    top: 38px;
    right: 27px;
  }
  .nav_btn::before {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #E4007F;
    position: fixed;
    top: 60px;
    right: 14px;
  }
  .nav_btn::after {
    font-family: "Gravitas One", serif;
    font-weight: 400;
    font-style: normal;
    content: "Menu";
    text-transform: uppercase;
    writing-mode: vertical-rl;
    top: 80px;
    right: 10px;
    position: fixed;
    font-size: 10px;
    letter-spacing: 0.3em;
    transition: 0.4s;
  }
}
.nav_btn.visible {
  transform: translateY(0px);
  opacity: 1;
}
.nav_btn.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
  transform-origin: center;
}
.nav_btn.active span:nth-of-type(2) {
  transform: translateY(-2px) rotate(-45deg);
  transform-origin: center;
}
.nav_btn.active span:last-of-type {
  opacity: 0;
  transform: scale(0);
}
.nav_btn.active::before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #FEFEFE;
  position: fixed;
  top: 60px;
  right: 14px;
}
.nav_btn.active::after {
  transform: rotateY(360deg);
  content: "Close";
  text-transform: uppercase;
  writing-mode: vertical-rl;
  top: 82px;
  right: 10px;
  position: fixed;
  font-size: 10px;
}

.title_nav {
  z-index: 102;
  max-width: 200px;
  position: fixed;
  left: 20px;
  top: 10px;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(-50px);
}
.title_nav.visible {
  transform: translateY(0px);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .title_nav {
    max-width: 100px;
    left: 50%;
    top: 8px;
    transform: translateX(-50%) translateY(-50px);
  }
  .title_nav.visible {
    transform: translateX(-50%) translateY(0px);
    opacity: 1;
  }
}

.nav_list {
  z-index: 103;
  display: flex;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(-50px);
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-left: 220px;
}
.nav_list.visible {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (max-width: 768px) {
  .nav_list {
    margin-left: 0;
    flex-wrap: nowrap;
    padding: 60px 20px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    transition: 0.5s;
    opacity: 1;
  }
  .nav_list.visible {
    opacity: 1;
    transform: translateY(0px);
  }
  .nav_list.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.nav_list a {
  height: 50px;
  padding: 0 0.5em;
  font-family: "Gravitas One", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  color: #FEFEFE;
  display: flex;
  align-items: center;
  font-size: 1.1em;
}
@media screen and (max-width: 768px) {
  .nav_list a {
    height: 50px;
    line-height: 60px;
  }
}
.nav_list a span {
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.nav_list a .icon_menu {
  width: 18px;
}
.nav_list a.nav_theater {
  padding: 0 2em;
  background-color: #E4007F;
  margin-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .nav_list a.nav_theater {
    margin-top: 0.5em;
    margin-left: 0;
  }
}
.nav_list a:hover span {
  opacity: 0.6;
}

.nav_theater_icon {
  z-index: 101;
  display: none;
}
@media screen and (max-width: 768px) {
  .nav_theater_icon {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2px;
    padding-bottom: 2px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(-50px);
  }
  .nav_theater_icon img {
    width: 25px;
  }
  .nav_theater_icon.visible {
    transform: translateY(0px);
    opacity: 1;
  }
}
.nav_theater_icon::before {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #E4007F;
  position: fixed;
  top: 60px;
  left: 14px;
}
.nav_theater_icon::after {
  content: "Theater";
  font-family: "Gravitas One", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  top: 80px;
  left: 10px;
  position: fixed;
  color: #FEFEFE;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.nav_top {
  z-index: 101;
  position: fixed;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0px;
  right: 0px;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.nav_top span {
  font-size: 14px;
  color: #E4007F;
  transform: scale(1, 0.5);
  display: block;
}
.nav_top.visible {
  transform: translateY(0px);
  opacity: 1;
}

/*-------------------------------*/
/*trailer------------------------*/
#trailer .section_inner {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: solid 1px #3c3c3c;
}
#trailer .section_inner .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer_tab {
  color: #d1d1d1;
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trailer_tab li {
  width: calc(20% - 5px);
  margin: 0;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .trailer_tab li {
    width: calc(50% - 2.5px);
  }
}
.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;
  background-color: #535353;
  color: var(--mainColor);
}
@media screen and (max-width: 768px) {
  .trailer_tab li a {
    height: 2.7em;
  }
}
.trailer_tab .tab.active a {
  color: #FEFEFE;
  background-color: rgba(255, 255, 255, 0.1);
}
.trailer_tab .tab.active a::before {
  content: "● ";
}
.trailer_tab .tab.active a:hover {
  transition: 0.4s;
}

/*-------------------------------*//*# sourceMappingURL=style.css.map */