@charset "UTF-8";
/* CSS Document */


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

body {
font-family: 'Noto Serif JP', sans-serif;
line-height: 1.5;
background-color: #ffffff;
	overflow-y: scroll;
	overflow-x: hidden;
}	
img{
	max-width: 100%;
	height: auto;	
}

.mainSite {
 width: 100%;
 padding: 0;
 margin:  0;
	overflow-x: hidden;
}
.wrapper {
	position: relative;
	text-align: center;
	overflow-x: hidden;
}



/*loading--------------------------*/

.loading_wrap{
	display: block;
position: fixed;
	left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
 background-color: #fff;
	opacity: 1;
}


.logo {
	 width: 30%;
position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 15px 30px;
	text-align: center;
    z-index: 1000;
	color: #fff;
}
.blinking{
	font-weight: bold;
	font-size: 18px;
    letter-spacing: 0.1em;
	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;}
}
/*animation--------------------------*/

.fadeIn {
animation-name: fadeInAnime;/*1で解説*/
/*animation-fill-mode:backwards;*//*2で解説*/
animation-duration:3s;/*3で解説*/
animation-iteration-count:none;/*4で解説*/
animation-timing-function:ease;/*5で解説*/
animation-delay: 0.5s;/*6で解説*/
animation-direction:normal;/*7で解説*/
	animation-fill-mode: forwards;
}

/*1で解説*/
@keyframes fadeInAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


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

.menu_wrap{
	    width: auto;
    position: fixed;
    top: 5%;
    right: 3%;
    z-index: 779;
    display: flex;
}
/*hamburger-menu*/

.menu {
  height: 20px;
    position: absolute;
    right: 13px;
    top: 18px;
    width: 30px;
    z-index: 779;
    cursor: pointer;
	
}
.menu_bg{
	
	background-color: #fff;
	width: 55px;
    height: 55px;
    border-radius: 67px;
	
}
.menu__line {
  background: #000;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}
.menu__line--center {
  top: 9px;
}
.menu__line--bottom {
  bottom: 0;
}
.menu__line--top.active {
  top: 8px;
  transform: rotate(45deg);
}
.menu__line--center.active {
  transform: scaleX(0);
}

.menu__line--bottom.active {
    bottom: 9px;
    transform: rotate(135deg);
}
/*gnav*/

.gnav {/*
     background-image: url("../img/mainbg.jpg");*/
	/*background-position: center;*/
	background-repeat: no-repeat;
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
	left: 0;
	bottom: 0;
    overflow: auto;
    width: 100%;
    z-index: 778;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)),url("../img/mainbg.jpg");
	background-size: cover;
}

.gnav__wrap {
  align-items: center;
  display: flex;
  justify-content: center;
	height: 100%;
	width: 70%;
	margin: 0 auto;
}
.gnav__menu__item {
    width: 100%;
    margin-bottom: 3.5%;
    vertical-align: top;
	text-align: center;
}
.gnav__menu__item:last-child {
  border: none;
	margin-bottom: 0;
}

.gnav__menu__item a{
	display: flex;
	width: 100%;
    justify-content: space-between;
    align-items: center;
	color: #fff;
	font-family: 'Noto Serif JP', sans-serif;
  font-size: 20px;
  text-decoration: none;
  transition: .5s;
	letter-spacing: 0rem;
}
.gnav__menu__item a p{
	cursor: pointer;
	border: 1px solid #fff;
	padding: 10px;
	text-align: center;
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
	line-height: normal;
	flex-shrink: 0; 
}
.gnav__menu__item a:hover {
	opacity: .6;
	transition: .5s;
	
}
.gnav__menu__item a span.line{
	display: inline-block;
    height: 1px;
    width: 50px;
    margin: 0 10px;
    background-color: #fff;
	
}
.gnav__menu__item a span.dottedline{
	display: inline-block;
    height: 3px;
	width: 80%;
    margin: 0 2.5%;
	background-image : linear-gradient(to right, #fff, #fff 2px, transparent 2px, transparent 8px);  /* 幅2の線を作る */
  background-size: 8px 2px;          /* グラデーションの幅・高さを指定 */
  background-position: left bottom;  /* 背景の開始位置を指定 */
  background-repeat: repeat-x;       /* 横向きにのみ繰り返す */
}
.gnav__menu__item i{
	color: #fff;
	margin-right: 5px;
	font-size: 20px;
}


	/*追加*/
	nav ul.gnav__menu{
			width: 80%;
		}
		nav ul.gnav__menu li{
			text-align: left;
		}
		
	.sns_icon_wrap{
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 90;
}

.menu_bg.twitter,.menu_bg.tiktok,.menu_bg.insta{
	    display: flex;
    justify-content: center;
    align-items: center;
	/*position: fixed;*/
    z-index: 779;
	top: 5%;
	margin-right: 10px;
}

i{
	color: #000;
	font-size: 28px;
	margin-top: 3px;
}

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

.top{
	display: flex;
    align-items: center;
	height: 100%;
	/*min-height: 100vh;
  min-height: 100svh;*/
	background-color: #fff;
	
}
.top .inner{
	width: 100%;
	height: auto;
    margin: 0 auto;
	display: flex;
	position: relative;
    overflow-y: hidden;
}
.top_left{
	width: 50%;
	/*background-image: url("../img/mainvisual.jpg");
	background-repeat: no-repeat;
	background-size: 160%;
    background-position: 50% 0%;*/
		background-image: url("../img/mainvisual_sp.jpg");
    padding-bottom: calc(2616 / 1920 * 38%);
		height: 0;
		    background-size: cover;
		position: relative;
	 -webkit-animation: zoom 5s 1;
   animation: zoom 5s 1;
   animation-fill-mode: forwards;
}
@keyframes zoom {
   0% {
      transform: scale(1.5);
   }
   100% {
      transform: scale(1);
   }
}
.butaiaisatsu{
	    width: 25%;
    position: absolute;
    left: 3%;
    bottom: 3%;
}
.butaiaisatsu a{
	transition: .7s;
	display: block;
}
.butaiaisatsu a:hover{
	transition: .7s;
	opacity: .7;
}

.top_right{
	width: 50%;
	background-color: #fff;
	padding: 5%;
	box-sizing: border-box;
	display: flex;
	    justify-content: center;
    align-items: center;
    flex-direction: column;
	
}
.titlelogo{
	/*width: 38%;*/
	text-align: center;
	/*position: absolute;
	left: 50%;
	bottom: 3%;
	transform: translate(-50%, 0);*/
	width: 80%;
    margin: 10% auto 5%;
	opacity: 0;
}
.copy{
	    width: 2.8%;
    height: 100%;
    position: absolute;
    top: 6%;
    left: 8%;
	opacity: 0;
}
.mvtk_w_wrap{
	width: 100%;
    z-index: 5;
}
#mvtk-widgets-container{
	margin: 0 auto;
}
.top_btm{
	width: 100%;
	background-color: #fff;
	overflow: hidden;
	background-image: url("../img/copo_bg.jpg");
	background-size: contain;
	box-sizing: border-box;
}
.top_btm.trailer_wrap{
	background-color: #515c65;
	background-image: none;
	border: 1px solid #515c65;
}
.trailer_wrap .midashi_title{
	color: #fff;
	    
}
.trailer_wrap .jp_midashi{
	border: 1px solid #fff;
}
.top_btm .inner{
	width: 55%;
    margin: 5% auto;
}
.square_ver{
	margin-top: 10%;
	opacity: 0;
}
.square_ver img{
	vertical-align: bottom;
}
.bnr_wrap{
	width: 50%;
    display: flex;
    margin: 3% auto 0;
}


.mvtk_bnr{
	width: 49%;
    margin-right: 2%;
}
.mvtk_bnr img {
    width: 88%;
}
.mjr_bnr{
	width: 49%;
}
.mvtk_bnr a, .mjr_bnr a{
	display: block;
	transition: .7s;
}
.mvtk_bnr a{
	background-color: rgb(229,1,18);
	display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    box-sizing: border-box;
}
.mvtk_bnr a:hover, .mjr_bnr a:hover{
	opacity: .7;
	transition: .7s;
}

.billing{
	opacity: 0;
}
	.billing_date {
    width: 100%;
	opacity: 0;
    
	}



/*INTRO----------------------------------------------*/
.intro{
	    padding: 10% 0;
	background-color: #fff;
	position: relative;
}
.intro .inner{
	width: 65%;
	margin: 0 auto;
}
.intro .en_midashi {
    width: 100%;
    margin: 0 auto;
    flex-shrink: 1;
    letter-spacing: 0.4rem;
    padding-left: 9px;
}
.lead{
	    width: 80%;
    margin: 0 auto 3%;
}
.text{
	margin-bottom: 3%;
	text-align: justify;
}
.intro_btm{
	width: 100%;
	height: 600px;
	
}
.intro_btm::before{
		    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 18% 58%;
    background-image: url("../img/intro_btm.jpg");
    background-size: 112%;
	}


.ashtray{
	position: absolute;
	    width: 8%;
    top: 200px;
    right: 10%;
}
.post{
	position: absolute;
	width: 11%;
        bottom: 70px;
    left: 4%;
}



/*STORY----------------------------------------------*/
.story{
	    padding: 10% 0;
		background-color: #fff;
}

.story .inner{
	width: 65%;
	margin: 0 auto;
}
.story .en_midashi {
    width: 100%;
    margin: 0 auto;
    flex-shrink: 1;
        letter-spacing: 0.8rem;
    padding-left: 9px;
}
.story_item{
	    display: flex;
    width: 100%;
	margin-bottom: 5%;
}
.story_item:nth-child(odd){
	flex-direction: row-reverse;
}
.story_item.item01{
	margin-top: 5%;
}
.story_item.item04{
	margin-bottom: 8%;
}
.story_name{
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 10px;
}
.story_img{
	width: 40%;
	margin-right: 3%;
	height: 300px;
	display: flex;
    align-items: flex-start;
}
.story_img.img02, .story_img.img04{
	margin-right: 0;
	margin-left: 3%;
}
.img01::before{
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-image: url("../img/story_img01.jpg");
	background-position: 100% 0;
    background-size: 110%;
}
.img02{
	width: 41%;
}
.img02::before{
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-image: url("../img/story_img02.jpg");
	background-position: 62% 0;
    background-size: 110%;
}
.img03{
	width: 40%;
}
.img03::before{
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
	 background-image: url("../img/story_img03.jpg");
   background-position: 26% 0;
    background-size: 110%;
}
.img04{
	width: 40%;
}
.img04::before{
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-image: url("../img/story_img04.jpg");
	background-position: 50% 0;
    background-size: 110%;
}
.story_text{
	width: 48%;
	margin-bottom: 10%;
}
.story .text{
	margin-bottom: 1%;
}
.story_btm{
	position: relative;
	width: 100%;
	margin-top: 8%;
}
.illust{
	position: absolute;
    width: 12%;
    top: -111%;
    right: 0;
}



/*CAST＆STAFF----------------------------------------------*/
#cast:before {
    content: " ";
    margin-top: -100px;
    height: 100px;
    display: block;
    visibility: hidden;
}
.cast{
	       padding: 0px 0 10% 0;
		background-color: #fff;
}

.cast .inner{
	width: 45%;
	margin: 0 auto;
}
h1.midashi_title{
	margin-bottom: 5%;
	display: flex;
	justify-content: center;
	flex-flow: column; 
	width: fit-content;
	margin: 0 auto 5%;
}
.jp_midashi{
	    border: 1px solid #000;
    width: fit-content;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 5px;
    font-size: 20px;
}
.en_midashi{
	    width: 100%;
    margin: 0 auto;
    flex-shrink: 1;
        letter-spacing: 0.1rem;
    text-align: justify;
}
.cast .en_midashi {
    width: 100%;
    margin: 0 auto;
    flex-shrink: 1;
    letter-spacing: 0.65rem;
    padding-left: 9px;
}
.cast_btn a{
	display: block;
    background-color: #000;
    color: #fff;
    width: auto;
    padding: 15px 0;
	    text-align: center;
}
.cast_icon{}
ul.cast_list{
	display: flex;
	flex-flow: wrap;
}
li.cast_item{
	    width: 47.5%;
    margin-bottom: 5%;
}
li.cast_item:nth-child(2n+1){
	margin-right: 5%;
}
li.cast_item:last-child {
	margin-bottom: 0;
}
.cast_profile {
	    border: 3px solid #000;
    padding: 5%;
    text-align: justify;
    text-align-last: left;
	margin-bottom: 20px;
	box-sizing: border-box;
}

.cast_comment{
	padding: 5%;
    text-align: justify;
    text-align-last: left;
    background-color: #000;
    color: #fff;
    border-radius: 20px;
	position: relative;
}
.cast_comment::before{
        content: "";
    position: absolute;
    top: 10%;
    left: -8%;
    transform: translateY(-35%);
    border: 15px solid transparent;
    border-right: 50px solid #000;
    transform: rotate(10deg);
}
h2.comment_midashi{
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
}
.profile_img{
	width: 40%;
}
.cast_info{
	width: 60%;
	margin-right: 2%;
}
.arrow {
  position: relative;
  display: inline-block;
}
.arrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
      left: 5px;
    top: -11px;
	transform: rotate(45deg);
}




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

.md-inner-wrap{
		overflow-y: scroll;
		max-height: 70vh;
	box-sizing: border-box;
    width: 100%;
	}
	.md-scroll{
		width: 100%;
		display: flex;
	}
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  z-index: 9999;
}
 
.md-contents{
  display: none;
  position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    /*overflow: scroll;*/
    z-index: 10000;
}
 
 
/*.md-inner{
  padding: 0 5%;
    max-height: 85vh;
    display: flex;
}*/
.md-inner {
    padding: 0 5%;
    max-height: 85vh;
    display: flex;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.md-inner .profile_img{
	width:35%;
	margin-right: 3%;
}
.profile_info{
	width: 80%;
	text-align: left;
}
.profile_info .name span{
	color: gray;
}
.profile_info .role_name{
	color:#000;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 10px;
	font-weight: 500;
}
.profile_info .role_name span{
	font-weight: 500;
}
.profile_info .text{
	margin-bottom: 20px;
}
.profile_info .text h4 a{
	color: #0000ee;
	transition: .7s;
}
.profile_info .text a:hover{
	opacity: .6;
	transition: .7s;
}
.profile_info .text.instagram{
	font-weight: 600;
    vertical-align: middle;
    line-height: 24px;
    height: 24px;
	margin-bottom: 5px;
}
p.instagram img{
	margin: 0 10px -5px 0;
}

 
.md-xmark{
  position: absolute;
    top: 0px;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 9999;
    background-color: #000;
    cursor: pointer;
}
 
.md-xmark span {
  position: absolute;
  left: 6px;
  width: 70%;
  height: 3px;
  background-color: #fce000;
}
 
.md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(24px) rotate(-45deg);
}
 
 
.md-xmark span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-23px) rotate(45deg);
}
.instagram .fa-twitter{
	font-size: 24px;
	margin-right: 0.5rem;
	color:#1DA1F2;
}
.profile_img a{
	transition: .7s;
}
.profile_img a:hover{
	transition: .7s;
	opacity: .6;
}
h2.comment_midashi{
	font-family: Arial, 游ゴシック体, YuGothic, メイリオ, Meiryo, sans-serif;
	font-weight: 700;
}


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

.trailer{
	background-image: url("../img/trailer_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	padding: 7%;
}

.youtube{
    margin: 0 auto;
	position: relative;
    width: 70%;
    padding-bottom: 39%;
	border: 2px solid #fff;
	box-sizing: border-box;
}
.youtube iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}
.trailer_box{
	position: relative;
	margin: 5% 0 0 0;
}
.trailer_tab2 {
  color: #fff;
  display: flex;
 flex-direction: column;
  justify-content: center;
	    width: 50%;
    margin: 20px auto 0;
	box-sizing: border-box;
}
.trailer_tab2 ul{
	display: block;
	width: 100%;
}
.trailer_tab2 li {
  display: flex;
  justify-content: center;
  padding: 10px;
  border: solid 1px #fff;
  font-size: 1.2rem;
  text-align: center;
  background: #fff;
  color: #333;
  border-radius: 4px;
}
.trailer_tab2 li.f_act {
  background: #000;
  color: #fff;
  cursor: pointer;
}
.trailer_tab2 li.f_act:hover {
  background: #aaa;
}


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

footer{
	background-color: #515c65;
	padding: 3% 0;
}
.date{
	width: 50%;
	margin: 0 auto;
}


/*アニメーション--------------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
}


.hll-animation {
  visibility: hidden;
  opacity: 0;
    transform: translateX(-64px);
  transition: all 1s;
}
.hll-animation.Headline{
	opacity: 1;
	 visibility: visible;
    transform: translateX(0);
}
.hlr-animation {
  visibility: hidden;
  opacity: 0;
	transform: translateX(64px);
	
  transition: all 1s;
}
.hlr-animation.Headline2{
	opacity: 1;
	 visibility: visible;
    transform: translateX(0);
}


/*------------------
TopBTN
------------------*/

.btn-pageTop{
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0,0,0,0.8); 
	border-radius: 50%;
	z-index: 777;
	transition: 0.2s;
}

.btn-pageTop:hover{
	opacity: .7;
	transform: scale(1.1);
	transition: 0.2s;
}

.top_btn_inner{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
}



.btn-pageTop a{
	color: #fff;
}
.fa-solid, .fas {
    color: #fff;
}

.btn-pageTop a:hover{
	cursor: pointer;
}

.btn-pageTop a:active{
}

@media screen and (max-width: 960px) {
	.intro .inner{
	width: 80%;
}
	.ashtray {
    top: 130px;
	}
	.post {
    bottom: 15px;
	}
	.story .inner{
	width: 80%;
}
.cast .inner{
	width: 60%;
	margin: 0 auto;
}
	.img01::before, .img02::before, .img03::before, .img04::before{
    height: 100%;
	}
	.story_item.item01 {
    margin-top: 10%;
}
	.story_text {
    width: 48%;
    margin-bottom: 2%;
}
	.story_btm {
    position: relative;
    width: 100%;
    margin-top: 15%;
}
	.youtube {
    width: 100%;
    padding-bottom: 57%;
	}
	.bnr_wrap {
    width: 60%;
	}

}


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


	/*MENU----------------------------------------------*/
	
	.gnav__wrap {
    width: 100%;
	}

.menu_wrap {
    top: 2.5%;
	}
	

	.menu {
    right: 10px;
    top: 12px;
    width: 20px;
}
	.menu__line--center {
    top: 7px;
}
	.menu__line--bottom {
    bottom: 3px;
}
	.menu__line--bottom.active {
    bottom: 10px;
	}
	.menu_bg {
    width: 40px;
    height: 40px;
	}
	i {
    font-size: 24px;
	}
	.gnav__menu__item {
    margin-bottom: 5%;
}
	
	/*TOP----------------------------------------------*/
	
.top{
		background-size: cover;
    background-position: 50% 0%;
	}
	.top .inner {
        width: 91%;
    padding: 0 0 3% 0;
    box-sizing: border-box;
    height: 500px;
		min-height: inherit;
		/*max-height: 530px;*/
    justify-content: end;
    align-items: center;
    flex-flow: column;
	}
	

	
	
	.copy{
		    width: 6%;
    text-align: left;
    margin-left: 0%;
    justify-content: flex-start;
    align-items: baseline;
    top: 3%;
    left: 14%;
	}

	.mvtk_w_wrap {
    width: 80%;
    position: inherit;
    bottom: 0;
    left: 0;
	}
	.mvtk_bnr a {
    border: 2px solid #fff;
	}
	.youtube{
		    width: 80%;
    padding-bottom: 46%;
	}
	.top_left{
		width: 100%;
		background-image: url("../img/mainvisual_sp.jpg");
    padding-bottom: calc(2616 / 1920 * 94%);
		height: 0;
		    background-size: cover;
		position: relative;
	}
	.top_left_inner{
		width: 78%;
		position: absolute;
    left: 50%;
		bottom: 2%;
    transform: translate(-50%, 0);
	}
	.titlelogo {
    width: 85%;
		    margin: 0 auto 3%;
	}
	.billing {
    width: 100%;
		margin-bottom: 0;
		margin-top: 2%;
    
	}
	.billing img {
    width: 100%;
		min-width: inherit;
	}

	.top .inner {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
		overflow: hidden;
	}
	.top_right {
    width: 100%;
	padding: 10% 10% 5% 10%;
		background-image: url("../img/copo_bg.jpg");
	background-size: contain;
		overflow: hidden;
	}
	.square_ver {
    margin-top: 0;
}
	.mvtk_w_wrap {
    width: 100%;
	}
	
	.top_btm .inner {
    width: 80%;
    margin: 10% auto;
}
	.top_btm{
		overflow: hidden;
		border: none;
		
	}
	
	.top_btm .inner{
    margin: 0 auto 10%;
}
	.top_btm.trailer_wrap .inner{
    margin: 10% auto;
}
	
	.butaiaisatsu {
        width: 23%;
    position: absolute;
    left: inherit;
    bottom: inherit;
    top: 13%;
    right: 5%;}
	
	/*INTRO----------------------------------------------*/
	.intro {
    padding: 10% 0 15% 0;
	}
	.intro .inner {
    width: 70%;
	}
	.ashtray {
    width: 12%;
    top: 100px;
	}
	.post {
    position: absolute;
    width: 14%;
        bottom: 20px;
    left: 4%;
}
	.intro_btm {
    width: 100%;
    height: 40vh;
}
	.intro_btm::before{
		    background-size: cover;
	}
	.lead {
    width: 90%;
		margin: 0 auto 5%;
	}
	
	
	
	/*STORY----------------------------------------------*/
	
	.story{
		padding:  10% 0 0 0;
	}
	.story .inner {
    width: 70%;
	}
	.img01::before{
		    background-position: 71% 31%;
    background-size: 110%;
	}
	.img02::before{
		background-position: 62% 39%;
    background-size: 120%;
	}
	.img03::before{
		        background-position: 40% 49%;
    background-size: 120%;
	}
	.img04::before{
		background-position: 50% 26%;
    background-size: 130%;
	}
	/*.story_img {
    margin-right: 5%;
}*/
	.story_img.img02, .story_img.img04 {
    margin-right: 0;
    margin-left: 0%;
}
	.story_item{
		    flex-direction: column;
	}
	.story_item:nth-child(odd) {
    flex-direction: column;
}
	.story_img {
    width: 100%;
    margin-right: 0;
		margin-bottom: 5%;
    height: 260px;
}

	
	.illust{
		    width: 18%;
		top: -168%;
	}
	.story_btm {
		
    margin-top: 20%;
	}
	.story_text {
    width: 100%;
		margin-bottom: 5%;
	}
	.story .text {
    margin-bottom: 3%;
}
	.story_item.item01 {
    margin-top: 10%;
}
	
	
	/*CAST----------------------------------------------*/
	.cast {
    padding: 15%
	}
	.cast .inner {
    width: 100%;
	}
	.cast_btn a {
    padding: 10px 0;
    font-size: 14px;
}
	.cast_comment::before {
    /*top: -7%;*/
	top: -35px;
    left: 70%;
    border: 15px solid transparent;
    border-right: 35px solid #000;
    transform: rotate(90deg);
	}
	.cast_comment {
    padding: 8%;
	}
	.cast_profile {
    padding: 8%;
	}
	.md-xmark {
    position: absolute;
    top: 0px;
    right: -15px;
	}
	
	/*TRAILER----------------------------------------------*/
	
	.trailer .inner {
    width: 100%;
	}
	
	.trailer {
    padding: 15%;
	}
	
/*FOOTER----------------------------------------------*/
	.date {
    width: 80%;
	}
	
}




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

	.gnav__wrap {
    width: 80%;
}
	nav ul.gnav__menu {
    width: 100%;
}
	
	.gnav__menu__item a {
    font-size: 15px;
		/*display: block;*/
	}
	.gnav__menu__item a span.line {
    width: 15px;
    margin: 0 5px;
	}
.gnav__menu__item a p {
    cursor: pointer;
    border: 1px solid #fff;
    padding: 5px;
    text-align: left;
    width: fit-content;
	letter-spacing: 0.01rem;
	margin-bottom: 2%;
	}
	.gnav__menu__item a span.dottedline {
    width: 65%;
    margin: 0 2.5%;
	}


	.logo {
    width: 60%;
	}
	
	/*.menu_wrap{
    right: 5%;
	    flex-flow: column-reverse;
	}*/
/*	.menu_bg.twitter, .menu_bg.tiktok, .menu_bg.insta {
    margin-right: 0;
    margin-top: 7px;
	}

	.menu_bg.twitter {
    right: 3%;
    top: 11%;
}

	.menu_bg.tiktok {
    right: 3%;
    top: 19%;
}*/
	.menu_bg.twitter,.menu_bg.tiktok,.menu_bg.insta{
	    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 779;
	top: 5%;
	margin-right: 5px;
}
	
	


			
	/*TOP----------------------------------------------*/
	
.top{
		background-size: cover;
    background-position: 50% 0%;
	}
	.top .inner {
        width: 91%;
    padding: 0 0 3% 0;
    box-sizing: border-box;
    height: 500px;
		min-height: inherit;
		/*max-height: 530px;*/
    justify-content: end;
    align-items: center;
    flex-flow: column;
	}
	

	
	
	.copy{
		    width: 6%;
    text-align: left;
    margin-left: 0%;
    justify-content: flex-start;
    align-items: baseline;
    top: 3%;
    left: 14%;
	}

	.mvtk_w_wrap {
    width: 80%;
    position: inherit;
    bottom: 0;
    left: 0;
	}
	
	.youtube{
    width: 100%;
    padding-bottom: 60%;
	}
	.top_left{
		width: 100%;
		background-image: url("../img/mainvisual_sp.jpg");
padding-bottom: calc(2616 / 1920 * 94%);
		height: 0;
		    background-size: cover;
		position: relative;
	}
	.top_left_inner{
		width: 78%;
		bottom: 2%;
		/*position: absolute;
    left: 50%;

    transform: translate(-50%, 0);*/
	}
	
	.billing {
    width: 100%;
		margin-bottom: 0;
		margin-top: 2%;
    
	}
	.billing img {
    width: 100%;
		min-width: inherit;
	}

	.top .inner {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
	}
	.top_right {
    width: 100%;
		background-image: url("../img/copo_bg.jpg");
	background-size: contain;
	}
	.square_ver {
    margin-top: 0;
}
	.mvtk_w_wrap {
    width: 100%;
	}
	.bnr_wrap {
    width: 100%;
	}

.mvtk_bnr a {
    border: 2px solid #fff;
	}
	.top_btm .inner {
    width: 80%;
    margin: 10% auto;
}
	.top_btm{
		overflow: hidden;
		border: none;
		
	}
	
	.top_btm .inner{
    margin: 0 auto 10%;
}
	.top_btm.trailer_wrap .inner{
    margin: 10% auto;
}
	
	/*INTRO----------------------------------------------*/
	
	.intro {
    padding: 20% 0;

	}
	.intro_btm {
    width: 100%;
    height: 240px;
}
	.intro_btm::before{
		background-size: cover;
	}
	.intro .inner {
    width: 80%;
	    margin: 0 auto 10%;
	}
	.ashtray {
    width: 18%;
        top: 120px;
    right: 5%;
}
	.lead {
    width: 100%;
    margin: 0 auto 5%;
}
	.post {
    position: absolute;
    width: 25%;
        bottom: 15px;
    left: 4%;
}
	.text {
	margin-bottom: 5%;
    text-align: justify;
}

	
	
	
	
	/*STORY----------------------------------------------*/
	.story {
    padding: 20% 0 0 0;
	}
	.story .inner {
    width: 80%;
	}
	.story_item{
		    flex-direction: column;
	}
	.story_item:nth-child(odd) {
    flex-direction: column;
}
	.story_img {
    width: 100%;
    margin-right: 0;
		margin-bottom: 5%;
    height: 240px;
}
	.img01::before{
		    background-position: 78% 35%;
    background-size: 120%;
	}
	.img02::before{
		  background-size: 120%;
    background-position: 62% 63%
	}
		.img03::before {
    background-position: 40% 65%;
    background-size: 140%;
}
	.img04::before{
		    background-position: 52% 36%;
    background-size: 130%;
	}
	.story_text {
    width: 100%;
	}
	.illust{
		    width: 25%;
		top: -230%;
	}
	.story_btm {
    margin-top: 39%;
}
	h1.midashi_title {
    margin: 0 auto 10%;
}
	
	.story .text {
    margin-bottom: 5%;
}
	.story_img.img02, .story_img.img04 {
    margin: 0 auto 5%;
	}
	

	
	  
	/*CAST----------------------------------------------*/
	
	.cast{
		padding: 20%;
	}
	.cast .inner {
    width: 100%;
	}
	.cast_btn a {
    font-size: 14px;
		display: flex;
    align-items: center;
    justify-content: center;
	}
	li.cast_item {
    width: 100%;
		margin-bottom: 10%;
	}
	li.cast_item:nth-child(2n+1) {
    margin-right: 0;
}

	.jp_midashi {
    font-size: 18px;
		padding: 5px 10px;
	}
	.en_midashi {
    font-size: 14px;
	letter-spacing: 0.1rem;
	}
	.cast .en_midashi{
		letter-spacing: 0.6rem;
    text-align: justify;
    padding-left: 5px;
	}
	.cast_btn a {
    padding: 10px 0;
	}
	
	li.cast_item:last-child {
		
		margin-bottom: 0;
	}
	.arrow::before {
    left: 10px;
    top: -3px;
}
	.md-scroll {
    display: block;
	}
	.md-inner .profile_img {
    width: 100%;
    margin-right: 0;
	}
	.md-inner {
    padding: 0 5%;
    max-height: 90vh;
	}
	.md-inner-wrap {
    overflow-y: scroll;
    max-height: 80vh;
	}
	.cast_info {
    width: 100%;
	}
	.md-inner .profile_img {
    margin-bottom: 1%;
	}
	.cast_comment {
    padding: 10%;
	}

	.md-xmark {
        top: -45px;
    right: 16px;
    width: 40px;
    height: 40px;
	}
	.md-xmark span:nth-of-type(2) {
    bottom: 0;
    transform: translateY(-19px) rotate(45deg);
}
	.md-xmark span:nth-of-type(1) {
    top: 0;
    transform: translateY(19px) rotate(-45deg);
}
	.cast_profile {
    padding: 10%;
	}
	
	/*TRAILER----------------------------------------------*/
	
	.comingsoon{
		    width: 50%;
    position: absolute;
    top: -8%;
    right: -8%;
    z-index: 2;
	}
	.iframe_wrap::before {
    background-size: 6.5%;
	}
	
	/*FOOTER----------------------------------------------*/
	
	footer{
		    padding: 7% 0;
	}
	
	
	
	
	
	
	
}



@media screen and (max-width: 280px){
	
	.menu_bg{
		width: 40px;
		height: 40px;
	}
	.menu {
    right: 10px;
    top: 12px;
    width: 20px;
}
	.menu__line--center {
    top: 7px;
}
	.menu__line--bottom {
    bottom: 3px;
}
	.menu__line--bottom.active {
    bottom: 10px;
	}
	.menu__line--top.active {
    top: 7px;

	}
.gnav__menu__item a span.dottedline {
    margin: 0 2.5% 0 20%;
}
	.gnav__menu__item a {
    font-size: 10px;
    display: block;
}
	.date {
    width: 80%;
}
	h1.midashi_title {
    margin: 0 auto 10%;
}
.ashtray {
    top: 95px;
}
	.post {
    bottom: 10px;
	}
	.img02::before {
    background-size: 155%;
}
	.img04::before {
    background-size: 155%;
	}
	.jp_midashi {
    font-size: 16px;
	}
	.story .en_midashi {
    letter-spacing: 0.5rem;
	}
	.intro .en_midashi {
    letter-spacing: 0.2rem;
	}
	.cast .en_midashi {
    letter-spacing: 0.4rem;
	}
	
	
	
	
}


	

