@charset "UTF-8";
/* CSS Document */
	
body{
	margin:0px;
	background-color:#231815;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	color:#000;
	height:100%;
	font-feature-settings: "palt";
}

html{
	height:100%;
}

img { border-style:none;
	vertical-align: bottom;}

a img { border-style:none;}

a:hover img { border-style:none; }

*{
margin: 0;
padding: 0;
}

ol, ul {
	list-style: none;
}

.cf:before,
.cf:after {
  content: "";
  display: table;}
.cf:after {
  clear: both;}
.cf {
  *zoom: 1;}

.scrollShowEffect {
	-webkit-transition-delay: 1.5s;
	   -moz-transition-delay: 1.5s;
	    -ms-transition-delay: 1.5s;
	     -o-transition-delay: 1.5s;
	        transition-delay: 1.5s;
	-webkit-transition: all 1.5s ease-in-out;
	   -moz-transition: all 1.5s ease-in-out;
	    -ms-transition: all 1.5s ease-in-out;
	     -o-transition: all 1.5s ease-in-out;
	        transition: all 1.5s ease-in-out;
	opacity:0;
}

.scrollShowEffect-R {
	-webkit-transform: translate3d(60%, 0%, 0);
	   -moz-transform: translate3d(60%, 0%, 0);
	    -ms-transform: translate3d(60%, 0%, 0);
	     -o-transform: translate3d(60%, 0%, 0);
	        transform: translate3d(60%, 0%, 0);
}
.scrollShowEffect-L {
	-webkit-transform: translate3d(-60%, 0%, 0);
	   -moz-transform: translate3d(-60%, 0%, 0);
	    -ms-transform: translate3d(-60%, 0%, 0);
	     -o-transform: translate3d(-60%, 0%, 0);
	        transform: translate3d(-60%, 0%, 0);
}
.scrollShowEffect-B {
	-webkit-transform: translate3d(0, 50%, 0);
	   -moz-transform: translate3d(0, 50%, 0);
	    -ms-transform: translate3d(0, 50%, 0);
	     -o-transform: translate3d(0, 50%, 0);
	        transform: translate3d(0, 50%, 0);
}

.scrollShowEffect-T {
	-webkit-transform: translate3d(0, -15%, 0);
	   -moz-transform: translate3d(0, -15%, 0);
	    -ms-transform: translate3d(0, -15%, 0);
	     -o-transform: translate3d(0, -15%, 0);
	        transform: translate3d(0, -15%, 0);
}

.scrollShowEffect-Z {
	-webkit-transform: scale( 0.2,  0.2);
	transform: scale( 0.2,  0.2);
}

.scrollShowEffect.showItem {
	opacity:1;
	-webkit-transform: translate3d(0, 0, 0);
	   -moz-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	     -o-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}


.mb0{
	width:100%;
	overflow: hidden; /* heightを戻す */
}

.mb5{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 5px;
	line-height: 140%;
}

.mb10{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 10px;
}

.mb20{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 20px;
}

.mb30{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 30px;
}

.mb50{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 50px;
}

.pcview{
	width:100%;
}

.spview{
	display: none;
}

/* 非表示 */
.is-hide {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: .9s;
    transition-duration: .8s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: .9s;
    transition-duration: .3s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #fff;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 105;
}

@keyframes spin {
  from{
    transform: rotateZ(0deg);         /* アニメーション開始状態 */
  }
  to{
    transform: rotateZ(360deg);       /* アニメーション終了状態 */
  }
}

.loading {
  position: absolute;                 /* 良くわからなければ無くてもよい */
  width: 50px;                        /* 横幅 */
  height: 50px;                       /*  高さ */
  border: 3px solid #0054a6;         /* 線(上下左右)の太さ,形,色 */
  border-top-color: #cc0000;          /* 線(上)の色 */
  border-radius: 50%;                 /* 円形 */
  animation: 1s spin infinite linear; /* アニメーション指定(1秒1回転で一定の速度で永遠回るように指定) */
	box-sizing:border-box;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    position: fixed;
    top: 50%;
}


.menuarea{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
  	-webkit-transition: .4s;
  	transition: .4s;
  	-webkit-transform: translate3d(0, -100%, 0);
  	transform: translate3d(0, -100%, 0);
	z-index: 100;
    background-color:#222;
}

.imgresponsive img{
	width: 100%;
	height: auto;
}
.menubtn{
	z-index: 101;
	position: fixed;
	top:13px;
	right:20px;
	width: 100px;
	cursor: pointer;
}

.showMenu .menuarea{
  	-webkit-transform: translate3d(0, 0, 0);
  	transform: translate3d(0, 0, 0);
}

#menu{
	width:100%;
	z-index: 99;
	overflow: hidden; /* heightを戻す */
	box-sizing: border-box;
	padding:0.8% 7% 0.8% 0.8%;
}

.menu-box img{
  width: 100%;
}

.menu-box li{
  overflow: hidden;
  float: left;
  width: 13.5%;
  margin-right:0.5%;
  position: relative;
}

.menu-box a{
  display: block;
  position: relative;
}
  
.menu-box .hoverimg{
  position: absolute;
  left: -100%;
  bottom:0;
  -webkit-transition: 1s;
     -moz-transition: 1s;
      -ms-transition: 1s;
       -o-transition: 1s;
          transition: 1s;
  z-index: 301;
	outline: none;
	opacity: 0;
}

.menu-box a:hover .hoverimg{
  	left: 0%;
	text-decoration: transparent;
	opacity: 1;
}

#spmain{
	display:none;
}

#sptrailerarea{
	display:none;
}

#contents_wrapper{
	width:100%;
	height: 100%;
	margin:0 auto;
	font-size: 14px;
	text-align: justify;
	word-break: break-all;
	line-height: 175%;
}

#contents_wrapper img{
	width:100%;
	height: auto;
	margin-left:auto;margin-right:auto;display:table;
}

#topline{
	width:100%;
	background: linear-gradient(-135deg, #9e0000, #002d87);
	position: fixed;
	left:0;
	top:0;
	height: 50px;
	box-sizing: border-box;
	padding:10px 20px;
	z-index: 100;
}

#topline_logo{
	width:150px;
}

#top_main{
    width:100%;
	opacity: 0;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    -ms-transition: all 1.5s;
    transition: all 1.5s;
	margin-bottom: 20px;
	margin-top: 50px;
}
  
.showNavi #top_main{
  opacity:1;
  -webkit-transition-delay:1.5s;
  transition-delay:1.5s;
}

#top_daybiling{
    width:60%;
	margin:0 auto;
	opacity: 0;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    -ms-transition: all 1.5s;
    transition: all 1.5s;
	margin-bottom: 20px;
}
  
.showNavi #top_daybiling{
  opacity:1;
  -webkit-transition-delay:2.0s;
  transition-delay:2.0s;
}

#topbtn_wrapper{
	width:40%;
	margin:0 auto;
	overflow: hidden;
	margin-bottom: 10px;
	opacity: 0;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    -ms-transition: all 1.5s;
    transition: all 1.5s;
}
  
.showNavi #topbtn_wrapper{
  opacity:1;
  -webkit-transition-delay:2.2s;
  transition-delay:2.2s;
}

.topbtn{
	width:49%;
	float: left;
	margin-right: 2%;
    position: relative;
	overflow: hidden; /* heightを戻す */
}

.topbtn:nth-child(2) {
  margin-right:0;
}

.topbtn a{
  display: block;
  position: relative;
}
  
.topbtn .hoverimg{
  position: absolute;
  left: -100%;
  bottom:0;
  -webkit-transition: 1s;
     -moz-transition: 1s;
      -ms-transition: 1s;
       -o-transition: 1s;
          transition: 1s;
  z-index: 301;
	outline: none;
	opacity: 0;
}

.topbtn a:hover .hoverimg{
  	left: 0%;
	text-decoration: transparent;
	opacity: 1;
}


#snsbtn_wrapper1{
	width:40%;
	margin:0 auto;
	overflow: hidden; /* heightを戻す */
	opacity: 0;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    -ms-transition: all 1.5s;
    transition: all 1.5s;
	margin-bottom: 20px;
}
  
.showNavi #snsbtn_wrapper1{
  opacity:1;
  -webkit-transition-delay:2.3s;
  transition-delay:2.3s;
}

.snsbtn{
    position: relative;
	width:33%;
	float: left;
	margin-right:0.5%;
	box-sizing: border-box;
	overflow: hidden; /* heightを戻す */
}

.snsbtn:nth-child(3) {
  margin-right:0;
}


.snsbtn a{
  display: block;
  position: relative;
}
  
.snsbtn .hoverimg{
  position: absolute;
  left: -100%;
  bottom:0;
  -webkit-transition: 1s;
     -moz-transition: 1s;
      -ms-transition: 1s;
       -o-transition: 1s;
          transition: 1s;
  z-index: 301;
	outline: none;
	opacity: 0;
}

.snsbtn a:hover .hoverimg{
  	left: 0%;
	text-decoration: transparent;
	opacity: 1;
}


#snsbtn_wrapper2{
	width:264px;
	margin:0 auto;
	overflow: hidden; /* heightを戻す */
	opacity: 0;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    -ms-transition: all 1.5s;
    transition: all 1.5s;
	margin-bottom: 20px;
}
  
.showNavi #snsbtn_wrapper2{
  opacity:1;
  -webkit-transition-delay:2.6s;
  transition-delay:2.6s;
}

.tweet{
	width:85px;
	float:left;
	margin-right:5px;
	line-height: 100%;
}

.like{
	width:86px;
	float:left;
	margin-right:5px;
	line-height: 100%;
	overflow: hidden;
}

.line{
	width:83px;
	float:right;
	line-height: 100%;
}

#top_ticket_wrapper{
	width:15%;
	margin:0 auto;
	margin-bottom: 15px;
}

.top_ticket{
	width:100%;
}

#topbnr_wrapper{
	width:30%;
	margin:0 auto;
	overflow: hidden;
	padding-bottom: 50px;
}


.topbnr{
	width:32%;
	float: left;
	margin-right: 2%;
	box-sizing: border-box;
	text-align: center;
	padding:1%;
	background-color: #fff;
	opacity: 1.0;
}

.topbnr img:hover{
	opacity: 0.5;
}

.topbnr:nth-child(3n) {
  margin-right:0;
}


.loop{
	width:100%;
	overflow: hidden;
}

.loop_wrapper{
  display: flex;
  align-items: center;
  height: 200px;
　overflow: hidden;	
}

.loop_content {
  width: 451px;
  height: 200px;
}

.loop_wrap {
  display: flex;
  animation: loop-slide 20s infinite linear 1s both;
}

@keyframes loop-slide {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(-100%);
  }
}

.loop_wrap2 {
  display: flex;
  animation: loop-slide2 20s infinite linear 1s both;
}

@keyframes loop-slide2 {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(-50%);
  }
}

.pagetitle{
	width:300px;
	margin:0 auto;
	padding-bottom: 20px;
	border-bottom: 1px solid #000;
	margin-bottom: 50px;
}

.pagetitle2{
	width:300px;
	padding-bottom: 20px;
	border-bottom: 1px solid #000;
	margin-bottom: 50px;
}

.pagetitle3{
	width:300px;
	padding-bottom: 20px;
	border-bottom: 1px solid #fff;
	margin-bottom: 50px;
}


#intro_wrapper{
	width:100%;
	background: url("images/intro/bg.jpg") 100% 0 no-repeat fixed;
	background-size:cover;
	background-position:  left top;
    overflow: hidden;
	box-sizing: border-box;
	padding-left:50%;
}

#intro_inner{
	width:100%;
    padding:15% 12%;
	background-color: #fff;
	box-sizing: border-box;
    overflow: hidden;
}

#story_wrapper{
	width:100%;
	background:#fff;
}

#story_inner{
	width:100%;
    padding:10% 20%;
	box-sizing: border-box;
}

.storyphoto{
	width:50%;
	float: left;
}



#artist_wrapper{
	width:100%;
	background:#f5f1df;
}

#artist_inner{
	width:100%;
    padding:10% 5%;
	box-sizing: border-box;
}

.directorphoto{
	width:33.333333%;
	float: left;
}

.wrapperline{
	width:100%;
	overflow: hidden; /* heightを戻す */
	padding:0;
	display:-webkit-box;
display:-moz-box;
display:-ms-box;
display:-webkit-flexbox;
display:-moz-flexbox;
display:-ms-flexbox;
display:-webkit-flex;
display:-moz-flex;
display:-ms-flex;
display:flex;
-webkit-box-lines:multiple;
-moz-box-lines:multiple;
-webkit-flex-wrap:wrap;
-moz-flex-wrap:wrap;
-ms-flex-wrap:wrap;
flex-wrap:wrap;
}



#director_wrapper{
	width:100%;
	background: url("images/director/bg.jpg") 100% 0 no-repeat fixed;
	background-size:cover;
	background-position:  left top;
    overflow: hidden;
	box-sizing: border-box;
	padding-right:50%;
}

#director_inner{
	width:100%;
    padding:15% 12%;
	background-color: #fff;
	box-sizing: border-box;
    overflow: hidden;
}

.director_name{
	width:40%;
	margin-bottom: 30px;
}

.director_photo{
	width:30%;
	float: left;
}

.director_text{
	width:65%;
	float: right;
}

.director_filmo{
	width:100%;
	font-size: 12px;
}

.director_filmo_midashi{
	width:100%;
	padding-bottom: 5px;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
	border-bottom: 1px solid #000;
}

#footer_wrapper{
	width:100%;
	overflow: hidden;
	padding:5% 0;
	background-color: #111;
}

#footer_inner{
	width:30%;
	margin:0 auto;
}

.container {
  margin: 0 auto;
  width: 100%;
  column-count: 3;
  column-gap: 2;
}

.grid {
  padding: 5%;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  box-sizing: border-box;
  background-color:#fff;
  margin-bottom: 10px;
  border:1px solid #000;
}

.artistnamel{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
	border-bottom: 1px solid #000;
	padding-bottom: 5px;
}

.artistnames{
	font-size: 13px;
	font-weight: bold;
}


.commentbox{
    width:100%;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #ccc;
	color: #fff;
}

.commenttext{
	width:100%;
	font-size: 20px;
	line-height: 35px;
	font-weight: 400;
	margin-bottom: 20px;
}

.commentname1{
	width:100%;
	font-size: 25px;
	font-weight: bold;
	color: rgba(62,122,235,1.00);
}

.commentname2{
	font-size: 12px;
	font-weight: bold;
	vertical-align: middle;
	font-feature-settings: "palt";
	padding-left: 10px;
	color: rgba(248,66,69,1.00);
}
.commentpush{
	font-size: 22px;
	font-weight: bold;
	color: rgba(225,153,9,1.00);
}

.pcbr {
display:inline;
}

#comment_wrapper{
	width:100%;
    overflow: hidden;
	box-sizing: border-box;
	background: #000;
}

#comment_inner{
	width:100%;
    padding:15% 20%;
	box-sizing: border-box;
    overflow: hidden;
}

#top_inter{
width:20%;
margin:0 auto;
margin-bottom: 20px;
	opacity: 0;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    -ms-transition: all 1.5s;
    transition: all 1.5s;s
}
  
.showNavi #top_inter{
  opacity:1;
  -webkit-transition-delay:2.3s;
  transition-delay:2.3s;
}

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

.pcview{
	display: none;
}

.spview{
	display: inherit;
	width:100%;
}
	
body{
	margin:0px;
	color:#000;
	height:100%;
	background:none;
	background-color:#1a0f13;
}
	

.menuarea{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
  	-webkit-transition: .4s;
  	transition: .4s;
  	-webkit-transform: translate3d(0, -100%, 0);
  	transform: translate3d(0, -100%, 0);
	z-index: 100;
    background-color:#222;
}

#menu{
	width:100%;
	z-index: 99;
	overflow: hidden; /* heightを戻す */
	box-sizing: border-box;
	padding:20% 15%;
}

.menu-box img{
  width: 100%;
}

.menu-box li{
  overflow: hidden;
  float: none;
  width: 100%;
  margin-right:0;
  margin-bottom:10px;
  position: relative;
}

.menu-box a{
  display: block;
  position: relative;
}
  
.menu-box .hoverimg{
  position: absolute;
  left: -100%;
  bottom:0;
  -webkit-transition: 1s;
     -moz-transition: 1s;
      -ms-transition: 1s;
       -o-transition: 1s;
          transition: 1s;
  z-index: 301;
	outline: none;
	opacity: 0;
}

.menu-box a:hover .hoverimg{
  	left: 0%;
	text-decoration: transparent;
	opacity: 1;
}

#spmain{
	display: inherit;
	width:100%;
	margin-bottom: 10px;
	margin-top:50px;
}

div.sptrailer {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
	margin-bottom: 20px;
}
 
div.sptrailer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#sptrailerarea{
	width:90%;
	margin:0 auto;
	margin-bottom:30px;
	display: inherit;
	margin-top:30px;
}

#top_main{
	display: none;
}

#top_daybiling{
	display: none;
}
	
#topbtn_wrapper{
	width:90%;
	margin:0 auto;
	overflow: hidden;
	opacity: 1;
	margin-bottom: 10px;
}

#snsbtn_wrapper1{
	width:90%;
	margin:0 auto;
	overflow: hidden; /* heightを戻す */
	opacity: 1;
	margin-bottom: 20px;
}


#snsbtn_wrapper2{
	width:264px;
	margin:0 auto;
	overflow: hidden; /* heightを戻す */
	opacity: 1;
	margin-bottom: 20px;
}


#topbnr_wrapper{
	width:80%;
	margin:0 auto;
	overflow: hidden;
	padding-bottom: 50px;
}

#top_ticket_wrapper{
	width:40%;
	margin:0 auto;
	margin-bottom: 15px;
}
	


.loop_wrapper{
  display: flex;
  align-items: center;
  height: 100px;
　overflow: hidden;	
}

.loop_content {
  width: 226px;
  height: 100px;
}
	
	
#intro_wrapper{
	width:100%;
	background:none;
    overflow: hidden;
	box-sizing: border-box;
	padding-left:0;
}

#intro_inner{
	width:100%;
    padding:10%;
	background-color: #fff;
	box-sizing: border-box;
    overflow: hidden;
}

#story_inner{
	width:100%;
    padding:10%;
	box-sizing: border-box;
}

.storyphoto{
	width:100%;
	float: none;
}

.directorphoto{
	width:33.333333%;
	float: left;
}

.artistbox{
	width:70%;
	float: none;
	margin-right: 0;
	margin:0 auto;
	margin-bottom: 50px;
	box-sizing: border-box;
	text-align: center;
}

.artistbox:nth-child(3n) {
  margin-right:auto;
}

.artistnamel{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 3px;
	border-bottom: 1px solid #000;
	padding-bottom: 3px;
}

.artistnames{
	font-size: 13px;
	font-weight: bold;
}

#director_wrapper{
	width:100%;
	background:none;
    overflow: hidden;
	box-sizing: border-box;
	padding-right:0;
}

#director_inner{
	width:100%;
    padding:10%;
	background-color: #fff;
	box-sizing: border-box;
    overflow: hidden;
}

.director_name{
	width:40%;
	margin-bottom: 30px;
}

.director_photo{
	width:30%;
	float: left;
}

.director_text{
	width:65%;
	float: right;
}

.director_filmo{
	width:100%;
	font-size: 12px;
}

.director_filmo_midashi{
	width:100%;
	padding-bottom: 5px;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
	border-bottom: 1px solid #000;
}

#footer_wrapper{
	width:100%;
	overflow: hidden;
	padding:5% 0;
	background-color: #111;
}

#footer_inner{
	width:70%;
	margin:0 auto;
}

.container {
  margin: 0 auto;
  width: 100%;
  column-count: 1;
  column-gap: 1;
}	
	
.pcbr {
display:none;
}
	
.brtext::before {
	content: "\A" ;
	white-space: pre ;
}

#comment_inner{
	width:100%;
    padding:15% 10%;
	box-sizing: border-box;
    overflow: hidden;
}

#top_inter{
width:40%;
margin:0 auto;
margin-bottom: 20px;
	opacity: 1;
}
	
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

*:focus {
  outline: none;
}

.modal-contents {
  display:none;
  position: fixed;
  width: 100%;
  height: 100%;
	font-weight: bold;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9998; }
  .modal-contents .modal-contents-inner {
    position: relative;
    width: 100%;
    height: 100%; }
    .modal-contents .modal-contents-inner .modal-contents-iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 9998;
      width: 100%; }
      .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-player {
        width: 80%;
        text-align: center;
        position: relative;
        padding-top: 45.5%;
        height: 0;
        overflow: hidden;
        display: block;
        margin: 0 auto; }
        .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-player iframe {
          width: 100%;
          height: 100%;
          display: block;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
      .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn {
        width: 80%;
        margin: 0.5% auto 0;
        font-size: 0;
        text-align: center;
        /* visibility: hidden; */
      }
        .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
          border: 1px solid #fff;
          width: 49%;
          display: inline-block;
          vertical-align: middle;
          line-height: 3vw;
          height: 3vw;
          text-align: center;
          font-size: 24px;
          color: #fff;
          cursor: pointer;
          -webkit-transition: all .3s;
          transition: all .3s; }
          @media screen and (min-width: 769px) {
            .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
              font-size: 1.25vw; } }
          @media screen and (max-width: 1024px) and (min-width: 768px) {
            .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
              font-size: 1.40625vw; } }
          @media screen and (max-width: 768px) {
            .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
              font-size: 6.4vw; } }
        .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li:hover,
        .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li.current {
          border: 1px solid #fff;
          background-color: #83e1dc;
          color: #fff;  }
    .modal-contents .modal-contents-inner .modal-close {
      width: 3%;
      display: block;
      position: absolute;
      top: 3.5%;
      right: 1.5%;
      z-index: 9999;
      cursor: pointer; }

 li.mbtn {
          border: 1px solid #fff;
          background-color: #333333;
          color: #fff; }


@media screen and (max-width: 768px) {
  .modal-contents .modal-contents-inner {
    position: absolute;
    width: 100%;
    height: auto;
    padding: 0 5%;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%); }
    .modal-contents .modal-contents-inner .modal-contents-iframe {
      position: static;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; }
      .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-player {
        padding-bottom: 26%;
        padding-top: 30%;
        width: 100%; }
      .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn {
        width: 100%; }
        .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
          display: block;
          width: 100%;
          text-align: center;
          line-height: 50px;
          height: 50px;
          font-size: 14px; } }
        @media screen and (max-width: 768px) and (min-width: 769px) {
          .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
            font-size: 0.72917vw; } }
        @media screen and (max-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
          .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
            font-size: 0.82031vw; } }
        @media screen and (max-width: 768px) and (max-width: 768px) {
          .modal-contents .modal-contents-inner .modal-contents-iframe .modal-contents-iframe-btn li {
            font-size: 3.73333vw; } }

@media screen and (max-width: 768px) {
    .modal-contents .modal-contents-inner span.modal-close {
      width: 7%;
      top: -15%;
      right: 5.5%; }
  .cast-modal .modal-close {
    width: 7%;
    top: 3%;
    right: 5.5%; }
  .cast-modal .modal-list ul li {
    overflow-y: scroll;
    height: 175vw; }
    .cast-modal .modal-list ul li .inner {
      top: 12%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%); }
      .cast-modal .modal-list ul li .inner > * {
        display: block;
        width: 100%; }
      .cast-modal .modal-list ul li .inner .text {
        padding: 6% 0%; }
        .cast-modal .modal-list ul li .inner .text h2 {
          font-size: 20px; } }
        @media screen and (max-width: 768px) and (min-width: 769px) {
          .cast-modal .modal-list ul li .inner .text h2 {
            font-size: 1.04167vw; } }
        @media screen and (max-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
          .cast-modal .modal-list ul li .inner .text h2 {
            font-size: 1.17188vw; } }
        @media screen and (max-width: 768px) and (max-width: 768px) {
          .cast-modal .modal-list ul li .inner .text h2 {
            font-size: 5.33333vw; } }

@media screen and (max-width: 768px) {
          .cast-modal .modal-list ul li .inner .text h2 span {
            font-size: 12px; } }
          @media screen and (max-width: 768px) and (min-width: 769px) {
            .cast-modal .modal-list ul li .inner .text h2 span {
              font-size: 0.625vw; } }
          @media screen and (max-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
            .cast-modal .modal-list ul li .inner .text h2 span {
              font-size: 0.70313vw; } }
          @media screen and (max-width: 768px) and (max-width: 768px) {
            .cast-modal .modal-list ul li .inner .text h2 span {
              font-size: 3.2vw; } }

@media screen and (max-width: 768px) {
        .cast-modal .modal-list ul li .inner .text p {
          font-size: 12px; } }
        @media screen and (max-width: 768px) and (min-width: 769px) {
          .cast-modal .modal-list ul li .inner .text p {
            font-size: 0.625vw; } }
        @media screen and (max-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
          .cast-modal .modal-list ul li .inner .text p {
            font-size: 0.70313vw; } }
        @media screen and (max-width: 768px) and (max-width: 768px) {
          .cast-modal .modal-list ul li .inner .text p {
            font-size: 3.2vw; } }

@media screen and (max-width: 768px) {
        .cast-modal .modal-list ul li .inner .text .comment h3 {
          font-size: 17px; } }
        @media screen and (max-width: 768px) and (min-width: 769px) {
          .cast-modal .modal-list ul li .inner .text .comment h3 {
            font-size: 0.88542vw; } }
        @media screen and (max-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
          .cast-modal .modal-list ul li .inner .text .comment h3 {
            font-size: 0.99609vw; } }
        @media screen and (max-width: 768px) and (max-width: 768px) {
          .cast-modal .modal-list ul li .inner .text .comment h3 {
            font-size: 4.53333vw; } }

@media screen and (max-width: 768px) {
        .cast-modal .modal-list ul li .inner .text .comment p {
          font-size: 12px;
          line-height: 2.1; } }
        @media screen and (max-width: 768px) and (min-width: 769px) {
          .cast-modal .modal-list ul li .inner .text .comment p {
            font-size: 0.625vw; } }
        @media screen and (max-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
          .cast-modal .modal-list ul li .inner .text .comment p {
            font-size: 0.70313vw; } }
        @media screen and (max-width: 768px) and (max-width: 768px) {
          .cast-modal .modal-list ul li .inner .text .comment p {
            font-size: 3.2vw; } }

@media screen and (max-width: 768px) {
        .cast-modal .modal-list ul li .inner .text .profile {
          font-size: 10px;
          margin-top: 5%; } }
        @media screen and (max-width: 768px) and (min-width: 769px) {
          .cast-modal .modal-list ul li .inner .text .profile {
            font-size: 0.52083vw; } }
        @media screen and (max-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
          .cast-modal .modal-list ul li .inner .text .profile {
            font-size: 0.58594vw; } }
        @media screen and (max-width: 768px) and (max-width: 768px) {
          .cast-modal .modal-list ul li .inner .text .profile {
            font-size: 2.66667vw; } }

section.trailer {
  margin-top: -5%; }
  section.trailer h2 {
    width: 14%;
    margin: 0 auto; }
  section.trailer .player {
    margin-top: 3.8%;
    position: relative;
    padding-top: 35.3%;
    height: 0;
    overflow: hidden; }
    section.trailer .player iframe {
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
      transform: translate(-50%, 0%);
      width: 62.5%;
      height: 100%;
      border: none; }
  section.trailer .btns {
    font-size: 0;
    text-align: center;
    margin-top: 2.5%;
    width: 62.5%;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0; }
    section.trailer .btns li {
      width: 29.5%;
      display: inline-block;
      vertical-align: middle;
      font-size: 20px;
      border: 1px solid #333333;
        background-color: #333333;
		color: #fff;
      letter-spacing: .1vw;
      height: 3.5vw;
      line-height: 3.5vw;
      margin: 0 1.5% 1.5%;
      cursor: pointer;
      -webkit-transition: all .3s;
      transition: all .3s;
      text-align: center; }
      @media screen and (min-width: 769px) {
        section.trailer .btns li {
          font-size: 1.04167vw; } }
      @media screen and (max-width: 1024px) and (min-width: 768px) {
        section.trailer .btns li {
          font-size: 1.17188vw; } }
      @media screen and (max-width: 768px) {
        section.trailer .btns li {
          font-size: 5.33333vw; } }
      section.trailer .btns li:hover {
        opacity: 1;
        background-color: #83e1dc;
        border: 1px solid #fff;
        color: #fff; }
    section.trailer .btns li.current {
      background-color: #83e1dc;
      border: 1px solid #fff;
      color: #fff; }



@media screen and (max-width: 768px) {
  section.trailer {
    margin-top: 0; }
    section.trailer h2 {
      width: 36%; }
    section.trailer .player {
      width: 90%;
      padding-top: 50.5%;
      margin: 0% auto 0%; }
      section.trailer .player iframe {
        width: 100%; }
    section.trailer .btns {
      width: 90%;
      margin-top: 0; }
      section.trailer .btns li {
        display: block;
        width: 100%;
        margin: 0% auto;
        height: 50px;
        line-height: 50px;
        font-size: 14px; } }
      @media screen and (max-width: 768px) and (min-width: 769px) {
        section.trailer .btns li {
          font-size: 0.72917vw; } }
      @media screen and (max-width: 768px) and (max-width: 1024px) and (min-width: 768px) {
        section.trailer .btns li {
          font-size: 0.82031vw; } }
      @media screen and (max-width: 768px) and (max-width: 768px) {
        section.trailer .btns li {
          font-size: 3.73333vw; } }

            
.remodal-is-opened{
    display:block;
}