@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  font-family: 'Noto Serif JP', sans-serif !important;
font-style: normal;
font-weight: 500;
  background-color: #000;
  overflow-y: scroll;
}
img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
}


/*--------------------
ANIMATION
---------------------*/
.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
	transition: all 2s;
}
.fadeIn {
animation-name: fadeInAnime;
animation-duration:3s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-delay: 0.5s;
animation-direction:normal;
	animation-fill-mode: forwards;
}


@keyframes fadeInAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeUp {
animation-name: fadeUpAnime;
animation-duration:3s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-delay: 0.5s;
animation-direction:normal;
	animation-fill-mode: forwards;
	transform: translateY(-10px);
}


@keyframes fadeUpAnime{
  0% {
  transform: translateY(0);
    opacity: 0;
  }

  100% {
  transform: translateY(10px);
    opacity: 1;
  }
}

/*--------------------
LOADING
---------------------*/

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #000;
}
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  text-align: center;
  z-index: 1000;
  color: #fff;

}
.logo img {
    width: 75%;
}
.blinking {
  display: block;
  -webkit-animation: blink 0.7s ease-in-out infinite alternate;
  -moz-animation: blink 0.7s ease-in-out infinite alternate;
  animation: blink 0.7s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.symbol{
width: 30%;
    position: absolute;
        top: calc(50% - 50px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    mix-blend-mode: plus-lighter;
	  -ms-filter: blur(1px);
  filter: blur(1px);
}


/*-------------------
MENU
--------------------*/
header{
/*opacity: 0;*/
position: relative;
z-index: 299;
}
nav.header_nav{
	background-color: #000;
	height: 60px;
	position: fixed;
	top: 0;
	width: 100%;
	
	z-index: 300;
}
.nav_inner{
	display: flex;
    display: -webkit-flex;
    -webkit-justify-content: center;
    justify-content: space-between;
    align-items: center;
	width: 90%;
    height: 60px;
    margin: 0 auto;
	
}
nav.header_nav ul{
	display: flex;
    display: -webkit-flex;
    -webkit-justify-content: left;
	padding: 0;
    width: auto;
    height: 16px;
	line-height: 16px;
	vertical-align: middle;
    box-sizing: border-box;
    z-index: 300;
	align-items: center;
}
nav.header_nav ul li{
	padding: 0 15px;
	height: 16px;
	line-height: 16px;
	vertical-align: middle;
}
nav.header_nav ul li.gray a{
	color: gray;
	pointer-events: none;
}

nav.header_nav ul li:first-child{
	padding: 0 30px 0 0;
}
nav.header_nav ul li:last-child{
	border: none;
}
nav.header_nav ul li img {
    height: 16px;
}
nav.header_nav ul li:nth-child(1) img, nav.header_nav ul li:nth-child(6) img {
    height: 19px;
}
nav.header_nav ul li a{
	display: block;
	transition: 0.8s;
	color: #444b48;
    font-weight: bold;
	
}
nav.header_nav ul li a:hover{
	color: #b6463c;
	transition: 0.8s;
}


.sns_wrap{
display: flex;
justify-content: center;
align-items: center;
}
.sns_icon a{
	transition: .7s;
	color: #fff;
}
header .sns_icon a img{
	height: 25px;
}
.sns_icon a:hover{
	transition: .7s;
}
.twitter{
    margin: 0 20px 0 0;
}

/*--------------------------
TRAILER（POP）
--------------------------*/



.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    opacity: 0;
    display:none;
    transition-duration: 0.5s;
    
}

.trailer.on{
    opacity: 1;
}


.trailer_overlay{
    position: fixed;
    top: 0;
    width: 100%;
   height: 100svh;
    background: rgba(0, 0, 0, 0.9);
    opacity: 1;
    z-index: 999999997;
    transition-duration: 1s;
    
}

.close_btn{
      position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  z-index: 999999999;
  opacity: 0;
  cursor: pointer;
}
.close_btn_inner{
position: relative;
width: 100%;
height: 100%;
}


.trailer.on .close_btn{
     opacity: 1;
}
.close_btn_inner::before,
.close_btn_inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 30px;
  border-top: 3px solid #ffffff;
}
 
.close_btn_inner::before {
      transform: translate(-50%, -50%) skewY(-45deg);
}
 
.close_btn_inner::after {
     transform: translate(-50%, -50%) skewY(45deg);
}

.close_btn:hover{
    opacity: 0.5 !important;
}

.trailer.on .trailer_overlay{
    opacity: 1;
}

.trailer .trailer_inner{
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 67%;
    aspect-ratio: 16 / 9;
    height: 1;
    z-index: 999999998;
    transition-duration: 0.5s;
}
.trailer .trailer_tab{
    position: absolute;
    color: #fff;
    top: 100%;
    display:flex;
    width: 100%;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 10px;
	z-index: 999999998;
}

.trailer .trailer_tab li{
      display: flex;
    justify-content: center;
    width: calc(100% / 2 - 3px);
    padding: 10px;
    font-weight: bold;
    text-align: center;
        background: #fff;
	color: #000;
    margin-right: 0;
    font-size: 1rem;
    margin: 0 6px 0 0;
    flex-wrap: wrap;
    box-sizing: border-box;
	border: 1px solid #fff; 
}
.trailer_tab li:nth-child(2n){
	margin-right: 0;
}
.trailer_tab li.f_act{
	cursor: pointer;
	
	background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.trailer_tab li.f_act:hover{
   
}
#youtube1,#youtube2{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    transition-duration: 1s;
    opacity: 1;
	z-index: 2;
}

.trailer.on #youtube1, .trailer.on #youtube2{
    transform: scale(1,1);
    opacity: 1;
}


.youtube_wrapper{
		width: 48%;
	
	}
.youtube_wrapper:first-child{
		margin-right: 4%;
	}
.youtube_inner{
position: relative;
 padding-bottom: 56.25%;
  overflow: hidden;
	
}
.youtube_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------
メインセクション共通
---------------------*/
section{
width: 100%;
padding: 5% 0;
position: relative;
}
.inner{
    width: 70%;
    margin: 0 auto;
}
h1.midashi_title{
    text-align: left;
    margin: 0 auto 3%;
}
h1.midashi_title img {
    height: 1.3vw;
	min-height: 20px;
}
.text{
color: #fff;
text-align: justify;
text-align-last: left;
    line-height: 1.8;
	letter-spacing: 0.05rem;
	font-size: 18px;
	  font-family: 'Noto Serif JP', sans-serif !important;
}

/*--------------------
TOP
---------------------*/

section.top{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	/*margin: 60px auto 0;*/
	padding: 60px 0 0;
}
.top_bg{
position: relative;
	z-index: 1;
}
.top .inner{
width: 100%;
height: 100%;
	position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
	padding: 60px 0 0 0;
}
.logo_wrap{
width: 100%;
opacity: 0;
}
section.top_btm{
    padding: 0 0 5%;
	position: relative;
	z-index: 1;
}

section.top::before{
     content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.top_btm .inner{
width: 40%;
}

.billing_copy{
width: 95%;
    margin: 1% auto 0;
}

.widgets_wrap{
    margin: 3% auto 0;
}
#mvtk-widgets-container{
margin: 0 auto 3%;
}
.mvtk_bnr{
    width: 20%;
    margin: 0 auto;
}
.mvtk_bnr a{
	transition: .7s;

}
.mvtk_bnr a:hover{
	transition: .7s;
	opacity: .7;
}


/*--------------------------
TRAILER_S
--------------------------*/

section.trailer_s{
	background: #1a1a1a;
	position: relative;
	z-index: 1;
}
section.trailer_s::before{
content: "";
width: 100%;
height: 100%;
background-image: url("../img/noize.webp");
background-repeat: no-repeat;
background-size: cover;
position: absolute;
z-index: 2;
top: 0;
left: 0;
}
section.trailer_s .inner{
	position: relative;
	z-index: 3;
}
  ul.trailer_list{
      width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  li.trailer_item{
  width: 48%;
  margin: 0 4% 0 0;
  }
   li.trailer_item:last-child{
  margin: 0 auto;
  }
  
  .trailer_item_midashi{
      font-size: 18px;
    color: #fff;
    margin: 5% auto 0;
  }

.trailer_pop_btn{
	    margin: 0 auto;
    width: 100%;
	border: 1px solid #fff;
	box-sizing: border-box;
}
.trailer_pop_btn a{
    display: flex;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    text-align: center;
}
.trailer_pop_btn a::before{
	    content: "";
    width: 70px;
    height: 70px;
    background-image: url(../img/trailer_btn.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.trailer_pop_btn iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    line-height: 1;
}

/*--------------------------
INTRO
--------------------------*/

section.intro{
	background-image: url("../img/intro_bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	padding: 5% 0 25%;
}
.intro_read{
    width: 100%;
    margin: 0 auto 5%;
}
.intro .text{
font-size: 1vw;
}
.intro_copy_right{
width: 25%;
    position: absolute;
    bottom: 25%;
    right: 10%;
        height: fit-content;
}
.intro_copy_left{
width: 25%;
    position: absolute;
    bottom: 25%;
    left: 10%;
        height: fit-content;
}
.intro_copy_right img, .intro_copy_left img{
opacity: 0.6;
}

.intro_imgs{
    width: 100%;
    margin: -10% 0 0;
    position: relative;
}

/*--------------------------
STORY
--------------------------*/

section.story{
	padding: 0 0 5%;;
}
.story .text{
font-size: 1vw;
}
.story_copy{
    width: 20%;
    position: absolute;
    top: 10%;
    right: 10%;
}
.story .inner{
    margin: -7% auto 0;
}

/*--------------------------
CAST
--------------------------*/


ul.cast_list{
	width: 70%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	    justify-content: center;
}

li.cast_list_item {
       width: 47.5%;
    margin: 0 5% 10% 0;
}

li.cast_list_item:nth-child(2){
	margin-right: 0;
	}
	li.cast_list_item:nth-child(3){
	margin: 0;
	}
.name_wrap{
	    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 7% 0 0 0;
    font-weight: bold;
}
.name_wrap .chara_name {
    margin: 0 auto 15px;
	font-weight: bold;
}
.name_wrap .cast_name{
	margin: 0 auto;
	font-weight: bold;
}

/*modal---------------------------*/


.md-scroll{
	    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	}
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1;
  z-index: 400;
}
 
.md-contents{
  display: none;
  position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 401;
	width: 100%;
    height: 100svh;
}

.md-inner {
	    width: 70%;
    height: 80vh;
    min-height: 500px;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}
.md-inner-wrap{
    width: 90%;
	height: 100%;
    box-sizing: border-box;
	}

.md-inner-wrap::-webkit-scrollbar{
  display: none;
}
.md-inner .profile_img {
    width: 50%;
	margin: 0 auto;
	
}
.profile_img a{
	transition: .7s;
}
.profile_img a:hover{
	transition: .7s;
	opacity: .6;
}

.cast_icon{
	position: relative;
	z-index: 1;
}
.ci-xmark{
	width: 40px;
	height: 40px;
	position: absolute;
	z-index: 2;
	right: 0;
	top: 0;
	background-image: url("../img/btn_bg.png");
	background-size: cover;
}
.ci-xmark span {
position: absolute;
	z-index: 3;
	  top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
   transform-origin: center;
    background-color: #000;
}
.ci-xmark span:nth-of-type(1) {
    transform: translateX(-50%);
}

.ci-xmark span:nth-of-type(2) {
    transform: translateX(-50%) rotate(90deg);
}


.cast_img_wrap{
    width: 100%;
    margin: 0 auto 3%;
}
.cast_img_wrap .name_wrap{
margin: 3% auto 0;
}

.chara_name{
     font-size: clamp(10px, 1.2vw, 18px);
	margin-top: 0.2rem;
	display: flex;
    flex-wrap: wrap;
	flex-flow: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
	color: #fff;
}
.cast_name{
      font-size: clamp(10px, 1.4vw, 20px);
    color: #fff;
	margin-bottom: 10px;
	text-align: left;
	
		display: flex;
    flex-wrap: wrap;
	flex-flow: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.md-scroll .cast_name{
   font-size: clamp(10px, 2.2vw, 20px);

}
.md-scroll .chara_name {
    font-size: clamp(16px, 2vw, 18px);
}

.cast_info{
	    width: 80%;
    height: 100%;
    text-align: left;
    overflow-y: scroll;

}

.cast_info::-webkit-scrollbar {

  width: 3px;
  height: 3px;
  border-radius: 20px;
}
.cast_info::-webkit-scrollbar-thumb {
  background-color: #BE2522;
  opacity: 0.7;
  border-radius: 20px;
}

.cast_profile{
	    margin: 0 20px 0 auto;
}
.cast_profile .text{
	font-size: 16px;
}

.md-xmark{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 400;
    cursor: pointer;
    background-image: url("../img/btn_bg.png");
	background-size: cover;
}
.md-xmark span {
position: absolute;
	  top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
   transform-origin: center;
    background-color: #000;
}
.md-xmark span:nth-of-type(1) {

    transform: translateX(-50%) rotate(-45deg);
}

.md-xmark span:nth-of-type(2) {

    transform: translateX(-50%) rotate(45deg);
}


.cast_imgs{
width: 100%;
height: 600px;
background-image: url("../img/cast_imgs.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}

/*--------------------------
STAFF
--------------------------*/

.staff li.cast_list_item {
    margin: 0 auto;
}

/*--------------------------
FOOTER
--------------------------*/

footer{
padding: 5% 0;
}
footer .inner{
width: 40%;
}
.footer_titlelogo{

margin: 0 auto 5%;
}
.footer_copy{
width: 60%;
margin: 0 auto;
}
.copyright{
width: 100%;
padding: 20px 0;
box-sizing: border-box;
background-color: #be2522;
    color: #000;
    font-size: 0.8vw;
    font-weight: bold;
}



@media screen and (max-width: 960px) {

    .logo {
        width: 95%;
    }
	.logo img {
    width: 100%;
}
.symbol {
    width: 70%;
	}

.trailer .trailer_inner {
    width: 90%;

}


/*-------------------
MENU
--------------------*/

/*hamburger-menu*/

.menu_bg{
	width: 100%;
        height: 45px;
        background-color: #000;
        position: fixed;
        top: 0px;
        right: 0px;
        z-index: 779;
}
.menu {
  height: 15px;
        position: absolute;
        right: 25px;
        top: 50%;
        width: 35px;
        z-index: 779;
        cursor: pointer;
        transform: translateY(-50%);
}

.menu__line {
  background: #fff;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}
.menu__line--top {
  top: 0;
}
.menu__line--center {
  top: 50%;
  transform: translateY(-50%);
}
.menu__line--bottom {
  bottom: 0;
}
.menu__line--top.active {
  top: 8px;
  transform: rotate(40deg);
}
.menu__line--center.active {
	
  transform: scaleX(0);
}
.menu__line--bottom.active {
	bottom: 5px;
    transform: rotate(-40deg);
}
/*gnav*/

.gnav {
  background-color: #000;
	background-repeat: no-repeat;
	background-size: cover;
  display: none;
  height: 100%;
  position: fixed;
	        top: 45px;
	bottom: 0;
	overflow: auto;
  width: 100%;
  z-index: 778;
}
    .gnav__wrap {
        flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
	        height: calc(100% - 14vh);
	min-height: inherit;
}
.gnav__menu__item {
        width: 100%;
        height: 6vh;
        vertical-align: middle;
        line-height: 6vh;
		margin: 0 auto;
}
.gnav__menu__item:last-child {
  border: none;
}
.gnav__menu__item a {
            color: #fff;
        font-size: clamp(14px, 1vw, 16px);
        font-weight: 700;
        text-decoration: none;
        transition: .5s;
        cursor: default;
        padding: 0 20px;
        width: auto;
        height: 100%;
        display: flex;
        margin: 10px auto auto;
        justify-content: center;
        align-items: center;
}
.gnav__menu__item.gray a {
	color: gray;
	pointer-events: none;
	}
	
	
	/*追加*/
	nav ul.gnav__menu{
			width: 80%;
		
		}
		nav ul.gnav__menu li{
			text-align: center;
			
		}
		nav ul.gnav__menu li:first-child{
			border-left: none;
		}
	
	
	nav ul.sns_icon{
			display: flex;
		justify-content: center;
		align-items: center;
		width: 80%;
		    margin: 20% auto 0;
		}
	nav ul.sns_icon li{
			width: auto;
		    margin: 0 12% 0 0;
		}
		nav ul.gnav__menu li img {
        height: 20px;
    }
	
		nav ul.gnav__menu li:nth-child(1) img, nav ul.gnav__menu li:nth-child(6) img {
                height: 6vw;
        max-height: 25px;
    }
	
	nav ul.sns_icon li:last-child{
		    margin: 0;
		}
	ul.sns_icon{
		margin-top: 30px;
	}
	nav ul.sns_icon li img {
    height: 26px;
}
	
	ul.sns_icon li:nth-child(2) a, ul.sns_icon li:nth-child(3) a {
    display: inline-block;
    width: auto;
}


   nav .sns_wrap {
        position: inherit;
        top: inherit;
        right: inherit;
                margin: 5vh auto 0;
}
   nav .sns_icon a img {
    height: 30px;
}
	
/*humberger-menuここまで*/

/*--------------------
共通
---------------------*/

h1.midashi_title {
    margin: 0 auto 10%;
	position: relative;
        z-index: 3;
	}
	section {
    padding: 15% 0;
	}
	.inner {
    width: 80%;
    margin: 0 auto;
}
	.text {
    font-size: 16px;
		letter-spacing: inherit;
	}
	
/*--------------------
TOP
---------------------*/
section.top{
        box-sizing: border-box;
}
.sns_wrap {
    position: inherit;
    top: inherit;
    right: inherit;
	margin: 0 auto 30%;
	}
	.sns_icon a {
    font-size: 35px;
	}

.top .inner {
    flex-direction: column;
	    padding: 45px 0 0 0;
	}
	

    .logo_wrap {
        width: 100%;
    }
	    section.top_btm {
        padding: 0 0 10%;
    }
.top_btm .inner {
    width: 90%;
}
.billing {
        width: 100%;
    }
.date{
width: 100vw;
position: relative; left: 50%; transform: translateX(-50%);
opacity: 0;
}
    .top_btm .sns_wrap {
        position: inherit;
        margin: 10% auto 7%;
    }
.top_btm .sns_wrap .sns_icon a img {
    height: 35px;
}
.billing_logo{
    width: 60%;
    margin: 0 auto;
}
.billing_copy {
    margin: 2% auto 0;
	}
	
	
	.widgets_wrap {
    margin: 10% auto 0;
}
.mvtk_bnr {
    width: 40%;
	}

/*--------------------
TRAILER
---------------------*/

	ul.trailer_list {
    width: 100%;
    flex-direction: column;
	}
li.trailer_item {
    width: 100%;
    margin: 0 auto 8%;
}
.trailer_item_midashi {
    font-size: clamp(12px, 4vw, 16px);
	}
.trailer .trailer_tab li {
    font-size: clamp(10px, 3.8vw, 14px);
	}
close_btn {
    position: fixed;
    top: 2%;
    right: 4%;
    width: 30px;
    height: 30px;
	}


/*--------------------
INTRO
---------------------*/

section.intro {
    background: none #000;
            padding: 0 0 15%;
			        overflow-x: hidden;
}
/*#story:before, #intro:before {
    content: " ";
           margin-top: -90px;
        height: 90px;
    display: block;
    visibility: hidden;
}*/

.intro_read{
width: 90%;
    margin: 0 auto;
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
	z-index: 3;
}
.intro .text{
font-size: 16px;
}
.intro_copy_left {
          width: 45%;
                bottom: 25%;
        left: -2%;
        z-index: 3;
	}
	.intro_copy_right {
    width: 49%;
           bottom: 25%;
    right: -2%;
	z-index: 3;
	}

    .intro h1.midashi_title {
	margin: 0 auto 10%;
}


.intro_bg{
width: 100%;
position: relative;
z-index: 1;
overflow: hidden;
        /*aspect-ratio: 3 / 2;*/
		padding-top: 67%;

}
.intro_bg img{
           width: 120%;
        max-width: none;
        transform: translate(-50%, -50%);
        position: absolute;
        top: 50%;
        left: 50%;
}
.intro_bg::before{
            content: "";
        background: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        width: 100%;
        height: 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
}
.intro_imgs {
    width: 100%;
    margin: 0 auto;
	}

/*--------------------
STORY
---------------------*/

section.story {
    padding: 0 0 15%;
}
.story .text{
font-size: 16px;
}
.story_bg{
overflow: hidden;
                  /*aspect-ratio: 3 / 2;*/
		padding-top: 67%;
		position: relative;
		   width: 100%;
}
.story_bg img{
width: 140%;
        max-width: none;
        transform: translate(-50%, -50%);
        position: absolute;
        top: 50%;
        left: 50%;
}

.story_copy {
        width: 31%;
        top: 2%;
        right: 5%;
        filter: drop-shadow(0 0 10px black) drop-shadow(0 0 10px black);
	}



/*--------------------
CAST
---------------------*/

ul.cast_list {
    width: 90%;
    flex-direction: column;
	}
	li.cast_list_item {
    width: 100%;
    margin: 0 auto 15%;
}

.md-inner {
    width: 80%;
	}
.cast_img_wrap {
    width: 100%;
    margin: 0 auto 10%;
	}
		.md-inner .profile_img {
    width: 100%;
	}
.cast_img_wrap .name_wrap {
    margin: 8% auto 0;
}
	.cast_info {
	width: 100%;
}
/*.cast_name{
   font-size: clamp(10px, 2.2vw, 18px);

}
.chara_name {
    font-size: clamp(16px, 2vw, 20px);
}*/
.name_wrap .cast_name {
    margin: 0 auto;
           font-size: clamp(14px, 4.2vw, 18px);
	}
	.name_wrap .chara_name {

           font-size: clamp(14px, 4vw, 16px);
	}
    .md-scroll .cast_name {
        font-size: clamp(16px, 4.3vw, 18px);

}
.md-scroll .chara_name {
            font-size: clamp(15px, 4vw, 17px);
}


/*--------------------
STAFF
---------------------*/

/*--------------------
FOOTER
---------------------*/

footer {
    padding: 15% 0;
}
.footer_titlelogo{
    width: 90%;
	}
footer .inner {
    width: 95%;
}
.copyright {
    font-size: clamp(10px, 2.5vw, 14px);
	}


}	
	

@media screen and (max-width: 500px) {
	
/*--------------------
TOP
---------------------*/
	
}



	
	
	
	