@charset "UTF-8";
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media only screen and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  font-family: 'Hina Mincho', serif;
	font-weight: 500;
  line-height: 1.5;
  background-color: #fff;
  overflow-y: scroll;
	scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom;
}
a {
  color: beige;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
}

/*LOADING------------------------------------------------*/

.loading_wrap{
position: fixed;
	left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
	/*width: 100%;
 height: 100vh;*/
 background-color: #141c1e;
	
}


.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: 40%;
}

.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;}
}


/*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;
  }
}

.slideIn{
  animation-name: slideInAnime;
animation-duration:3s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-delay: 0.5s;
animation-direction:normal;
	animation-fill-mode: forwards;
/*  animation: slideIn 5s ease 1s 1 normal backwards;*/
}
 
@keyframes slideInAnime{
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
	
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*.btmIn{
  animation-name: btmInAnime;
animation-duration:3s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-delay: 0.5s;
animation-direction:normal;
	animation-fill-mode: forwards;
}
 
@keyframes btmInAnime {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}*/


/*アニメーション--------------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
}

.fadeIn {
animation-name: fadeInAnime;
animation-duration:2s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-delay: 0.8s;
animation-direction:normal;
	animation-fill-mode: forwards;
}


@keyframes fadeInAnime{
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
/*nav---------------------------------------------*/

.sns_item{
	position: fixed;
    right: 30px;
    top: 2px;
    font-size: 28px;
}
.sns_item a{
	padding-right: 0;
	transform: translate(0, 0px);
}
.sns_item a i{
    line-height: 1;
    vertical-align: middle;
}
#nav_box{
	width: 100%;
    height: 4vw;
    position: fixed;
    top: 0;
    z-index: 300;
   background: linear-gradient(0deg, rgb(0, 0, 0, 0), rgb(0, 0, 0, 0.8));
   
}

.nav_box_inner{
	padding: 0;
    width: auto;
    height: 4vw;
    margin: 0px auto 0 auto;
    box-sizing: border-box;
    z-index: 300;
}
.nav_box_inner ul{
	display: flex;
	display: -webkit-flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.nav_item{
	height: 4vw;
    font-size: 1.3vw;
    color: #fff;
    border: 0;
    overflow: hidden;
    position: relative;
    transition: 0.7s;
    -webkit-transition: 0.7s;
	display: flex;
	justify-content: center;
    align-items: center;
	
}

.nav_item a{
	height: auto;
	display: inline-block;
	padding-left: 50px;
    padding-right: 50px;
	color: gray;
	cursor: default;
	vertical-align: middle;
	line-height: 55px;
	border-right: 1px solid #fff;
}
.nav_item:last-child a{
	border-right: none;
}
.nav_item a:hover{
	transition: 1s;
}
.nav_item_hover a{
	    color: #fff;
    cursor: pointer;
    transition: 1s;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
	line-height: 1.3;
	letter-spacing: 0.1rem;
}

.nav_item_hover a:hover{
	color: #fff;
	transition: 1s;
	opacity: .7;
}
.nav_item_hover a span{
	    font-size: 0.7vw;
	color: #f7b849;
}



/*TOP------------------------------------------------*/

.top{
	width: 100%;
	height: 55vw;
	background-image: url("../img/top_main_pc_.jpg");
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	
	position: relative;
		
}
.top .inner{
	width: 60%;
	height: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}


.bnr_wrap{
	   position: absolute;
    width: 12%;
    bottom: 3%;
    right: 3%;
	    z-index: 301;
	opacity: 0;
}

/*NEWS------------------------------------*/
.news{
	background-color: #fff;
	width: 100%;
    height: 100%;
	min-height: 100vh;
	padding: 5%;
    box-sizing: border-box;
}

.news .wrapper{
	width: 80%;
	padding: 3% 0;
	box-sizing: border-box;
	margin: 0 auto;
	background-image: url("../img/news_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}
.officialsite_btn{
	  margin: 3% auto 0;
	    width: 40%;

/*	position: fixed;
	bottom: 5%;
	right: 5%;*/
}
.officialsite_btn a{
    display: block;
    padding: 20px;
    text-align: center;
    transition: .7s;
    background-color: #0D7F81;
    color: #fff;
	font-weight: bold;
 /*   width: 55px;
    height: 55px;
    margin: 0 auto;
    border-radius: 50px;
    font-size: 14px;*/
	  
}
.officialsite_btn a:hover{
	transition: .7s;
	opacity: .7;
}

.news_text{
	width: 100%;
    margin: 0 auto;
}
.news_text_01{
	    margin: 0 auto 2%;
}
.news_text_02{
	    margin: 0 auto 4%;
}
.news_text_05, .news_text_07{
	margin: 5px 0 0;
}
.news_text_05 a, .news_text_07 a{
	transition: .7s;
	height: auto;
    line-height: 1;
}
.news_text_05 a:hover, .news_text_07 a:hover{
	transition: .7s;
 opacity: .7;
}
.news_text_09{
	    margin: 3% auto 0;
}



/*NEWS------------------------------------*/

.news_bnr{
	margin: 0 auto 15px;
}
.news_bnr a{
	transition: .7s;
	
}
.news_bnr a:hover{
	transition: .7s;
	opacity: .7;
}
.taiwan_bnr a{
	transition: .7s;
	
}
.taiwan_bnr a:hover{
	transition: .7s;
	opacity: .7;
}
.inner_top{
	width: 90%;
        margin: 8% auto 0;

	display: flex;
    align-items: flex-start;
        justify-content: space-between;
}

.copyright_01{
	width: 2.3%;
	opacity: 0;
}
.award{
	width: 18%;
	opacity: 0;
}

.inner_btm{
	width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.titlelogo{
	       width: 55%;
    margin: -1% auto 0;
	opacity: 0;
}

.copyright_02{
	    width: 53%;
    margin: -1% 0 0 auto;
	opacity: 0;
}
.date{
	width: 20%;
    margin: 3% 16% 0 auto;
	opacity: 0;
}
.copyright_03{
	    width: 90%;
    margin: 0 auto 2%;
opacity: 0;
}

	


/*TRAILER------------------------------------------------*/

.trailer{
	    width: 100%;
    height: auto;
    min-height: calc(100vh - 55vw);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.trailer::before{
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: 95%;
    margin-bottom: 5%;
    background-color: #080606;
    display: block;
    border-bottom-left-radius: 50px;
}


.trailer .inner{
	width: 60%;
	margin: 0 auto;
	padding: 5% 0;
	position: relative;
    z-index: 2;
}
.billing{
	width: 60%;
	margin: 0 auto;
}


.youtube{
    margin: 5% auto;
    position: relative;
	z-index: 1;
            width: 85%;
    padding-bottom: 48%;
    box-shadow: inset 15px 25px 25px rgba(20, 28, 30, .5), inset -15px -25px 25px rgba(20, 28, 30, .5);
    box-sizing: border-box;
}
/*.youtube::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	box-shadow: inset 15px 25px 25px rgba(20, 28, 30, .5), inset -15px -25px 25px rgba(20, 28, 30, .5);
    box-sizing: border-box;
}*/
.youtube iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}
.trailer_box{
	position: relative;
	
}


/*INTRO------------------------------------------------*/

.intro_bg_wrap{
	width: 100%;
	height:100%;
	background-image: url("../img/intro_bg.jpg");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
}

.intro{
	width: 100%;
    height: auto;
	position: relative;
}

.intro::before{
	content: "";
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    bottom: 0;
    width: 95%;
    margin-bottom: 5%;
    background-color: #080606;
    display: block;
    border-bottom-left-radius: 50px;
	border-top-right-radius: 50px;
}
.intro .inner{
	width: 80%;
	height: 100%;
	margin: 0 auto;
	padding: 5% 0;
	position: relative;
    z-index: 2;
	    display: flex;
        align-items: flex-start;
   justify-content: space-between;
    flex-direction: column;
}
.intro_logo{
position: absolute;
    bottom: 5%;
    right: -9%;
    width: 5%;
    text-align: right;
}



.intro_text_wrap{
	    width: 100%;
    display: flex;
    justify-content: center;
       align-items: flex-end;
    height: 100%;
    
}

h1.midashi_title{
	width: 45%;
}

.intro_left{
	width: 60%;
    text-align: left;
    height: 600px;
    overflow-y: scroll;
    padding: 0 4% 0% 0;
    margin: 3% 0 5%;
}
.intro_left::-webkit-scrollbar {
  background: #F1F1F1;
  width: 5px;
  height: 5px;
}
.intro_left::-webkit-scrollbar-thumb {
  background-color: #0D7F81;
	
}


.intro_right{
	position: relative;
	 
}

.intro_right::after {
    content:"";
    position:absolute;
    top:0; right:0; bottom:0; left:0;
    border-radius:15px;
    box-shadow:inset 0 1px 5px rgba(0,0,0,.5);
}
.intro_right{
	    width: 40%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.intro_right img{
	    width: 120%;
	max-width: inherit;
}

h2.lead{
	color: #5dbeb3;
	font-size: 20px;
	margin: 0 auto 20px;
	letter-spacing: 0.05rem;
    line-height: 1.8;
}
.text{
	    color: #fff;
       text-align: justify;
    text-align-last: left;
	font-size: 16px;
	letter-spacing: 0.05rem;
    line-height: 1.8;
}
.intro .text{
	margin: 0 auto 20px;
}
.intro .text.last{
	    margin: 0 auto 10%;
}
.ruby {
    font-size: 48%;
    text-align: center;
	/*transform: translateY(-2px);*/
    transform: translateY(-0.2rem);
	-webkit-transform: translateY(-0.2rem);
}
[data-ruby] {
    position: relative;
	z-index: 1;
}
[data-ruby]::before {
      letter-spacing: 0.01rem;
    content: attr(data-ruby);
    position: absolute;
    width: max-content;
    top: -1em;
    left: 50%;
    transform: translate(-50%, 0);
    right: 0;
    margin: auto;
    font-size: 0.5em;
    z-index: 2;
}

/*CAST------------------------------------------------*/

section.cast{
	width: 100%;
	background-color: #a2d2ac;
	position: relative;
	/*z-index: 555;*/
	border-bottom: 1px solid transparent;
}

.cast_list_wrap{
	 display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);


}
/*.cast_list_wrap::before{
	    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background-image: url(../img/cast_bg_01.jpg);
    background-repeat: no-repeat;
    background-position: center;
	
}
.cast_list_wrap::after{
	content: "";
	 width: 50%;
    height: 100%;
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	background-image: url("../img/cast_bg_02.jpg");
	background-repeat: no-repeat;
	background-position: center;
	
}*/

.sp_line_top{
	position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -8px);
    z-index: 3;
    width: 100%;
    margin: 0 auto;
}
.sp_line_btm{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 8px) rotate(180deg);
    z-index: 3;
    width: 100%;
    margin: 0 auto;
}

.cast .inner{
	width: 100%;
   /* padding: 5% 0;*/
        margin: 3% auto 6%;
	position: relative;

	border-bottom: 1px solid transparent;
}

.cast h1.midashi_title {
   width: 45%;
    margin: 0 0 0 5%;
        padding: 3.3% 0 0 0;
}


ul.cast_list{
	width: 65%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
   /* z-index: 4;*/
	padding: 3% 0 5%;
}
ul.sec{
	margin: 0 auto 5%;
	 z-index: 3;
}
li.cast_list_item {
        width: 20%;
    margin: 0 15% 8% 0;
    position: relative;
}

ul.first li.cast_list_item:nth-of-type(2), li.cast_list_item:last-child{
	margin-right: 0;
	}

ul.first li.cast_list_item:nth-of-type(4){
	       margin: 7% 15% 0 0;
}

.name_wrap{
	display: flex;
    align-items: end;
    justify-content: center;
    margin: 10% 0 0 5%;
    font-weight: bold;
    width: 100%;
}
.name_wrap .cast_name{
	position: absolute;
    top: 0;
    width: 29%;
    left: -25%;
    text-align: left;
}

.name_wrap .cast_name.liu{
	width: 26%;
}
.cast_name_chs{
    width: 85%;
}
.cast_left .cast_name_chs {
    width: 60%;
	    margin: 0 auto 0 10%;
}


.cast li:nth-of-type(1) .cast_name_chs{
	    width: 80%;
}
.cast li:nth-of-type(1) .cast_left .cast_name_chs{
	    width: 55%;
}
.cast li:nth-of-type(3) .cast_name_chs{
	    width: 80%;
	margin: 0 auto 0 10%;
}
.cast  li:nth-of-type(3) .cast_left .cast_name_chs{
	    width: 55%;
}
.cast li:last-child .cast_name_chs{
	     width: 91%;
    margin: 0 auto 0 9%;
}

#modal05 .cast_left .cast_name_chs {
    width: 70%;
}

.cast_bg{
	width: 100%;
	height: 500px;
	background-image: url("../img/cast_bg.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}



.cast_profile .text{
	color: #0d7f81;
}


/*modal---------------------------*/


.md-scroll{
		width: 100%;
		display: flex;
	    flex-wrap: wrap;
	}
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  z-index: 301;
}
 
.md-contents{
  display: none;
  position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*width: 80%;*/
    height: auto;
    z-index: 302;
	width: 100%;

}

.md-inner {
 display: flex;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
		background-image: url(../img/cast_frame.png);
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: center;
	position: relative;

}
.md-inner-wrap{
    overflow-y: scroll;
    max-height: 50vh;
    box-sizing: border-box;
    width: 50%;
    position: relative;
 
	

	}
/*.md-inner::before{
    content: "";
    width: 70%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/cast_frame.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    z-index: 5;
}*/

.md-inner-wrap::-webkit-scrollbar{
  display: none;
}
.md-inner .profile_img {
    width: 100%;
}

.profile_img a{
	transition: .7s;
}
.profile_img a:hover{
	transition: .7s;
	opacity: .6;
}
.md-inner .cast_left {
    width: 28%;
    margin: 0 5% 15px 7%;
}
.cast_info{
	width: 60%;
	text-align: left;
}

	
	.chara_profile.first {
	margin-bottom: 20px !important;
	}

.cast_name{
	font-size: 1.4vw;
    font-weight: bold;
    color: #000;
	margin-bottom: 10px;
	text-align: left;
	
		display: flex;
    flex-wrap: wrap;
	flex-flow: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.md-inner .cast_profile {
    margin: 10% 0 0 0;
}

ul.first li:nth-child(2) .md-inner .cast_profile {
    margin: 15% 0 0 0;
}

.cast_profile .cast_name {
           justify-content: flex-start;
    margin-bottom: 0.6rem;
    align-items: center;
    width: fit-content;
}
.cast_left .name_wrap .cast_name {
    position: absolute;
    top: 0;
    width: 8.3%;
    left: 0;
    text-align: left;
    z-index: 6;
}

#modal01 .cast_left .name_wrap .cast_name{
	width: 8%;
}

#modal02 .cast_left .name_wrap .cast_name, #modal03 .cast_left .name_wrap .cast_name{
	width: 8%;
}
#modal04 .cast_left .name_wrap .cast_name{
	    width: 7.2%;
    top: 6%;
    left: 0.1%;
}
 ul.first li:last-child .cast_left .name_wrap .cast_name {
    top: 6%;
	
}


.md-xmark{
	position: absolute;
	top: 0;
    right: 0;
    width: 6%;
    height: auto;
    z-index: 99;
    cursor: pointer;
	transform: rotate(45deg);
}






/*STAFF------------------------------------------------*/
section.staff{
	width: 100%;
	height: auto;
	background-image: url("../img/staff_bg_01.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.staff ul.cast_list {
    width: 65%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
}
.staff li.cast_list_item {
	    width: 80%;
    margin: 10.3% auto 7%;
    display: flex;
    flex-wrap: nowrap;
}
.staff .cast_list_item_wrap{
	    width: 30%;
	margin: 0 5% 0 auto;
}
.staff .name_wrap .cast_name {
     position: absolute;
    top: -12%;
    width: 6.3%;
    left: -1%;
    text-align: left;
}

.staff h1.midashi_title{
	    width: 45%;
    margin: 0 0 0 5%;
    padding: 3.3% 0 0 0;
}
.staff .cast_profile .text {
    color: #000;
}

.staff_imgs{
	    width: 100%;
    display: flex;
justify-content: space-between;
}
.staff_imgs .left{
	    width: 49.75%;
    display: flex;
    flex-wrap: wrap;
}
.staff_imgs .left p{
	width: 49.5%;
	display: flex;
	 flex-wrap: wrap;
}
 .staff_imgs .right p{
	width: 100%;
	display: flex;
}



.staff_imgs_06{
	width: 100%;
}
 .staff_imgs .right p img{
	width: 49.5%;
}
.staff_imgs .right{
	    width: 49.75%;
    display: flex;
    flex-wrap: wrap;
}
 .staff_imgs .right p.staff_imgs_06 img{
	width: 100%;
}
.staff_imgs_01{
	margin: 0 1% 0 0;
}
.staff_imgs_02 img.staff_imgs_02_img{
	margin-bottom: 2%;
}
.staff_imgs_03 img{
	margin: 0 1% 1% 0;
}

section.staff_btm{
	width: 100%;
	height: auto;
	background-image: url("../img/staff_bg_02.jpg");
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
	    padding: 5% 0 25%;
	position: relative;
}

.staff_btm .cast_list_item_wrap {
    width: 0%;
    margin: 0 3% 0 0;
}

.staff_btm ul.cast_list {
    width: 65%;
    margin: 0px auto;
    display: block;
	
}
.staff li:nth-of-type(2).cast_list_item {
    width: 80%;
    margin: 10.3% 0 7% auto;
}
.staff_btm li:last-child.cast_list_item {
    width: 90%;
}
.staff_btm .cast_name_chs {
    /*width: 30%;*/
        margin: 0 0 3% 0;
}

.staff_btm .cast_info {
    width: 90%;
}

.staff_btm .name_wrap .cast_name {
    top: -14%;
    width: 5%;
    left: -7%;
    text-align: left;
}


.staff_btm .cast_name_chs img{
	height: 50px;
}
.staff_btm h1.midashi_title{
	    width: 45%;
    margin: 0 0 0 5%;
    padding: 0 0 2% 0;
    position: absolute;
    bottom: 1.5%;
}
.staff_btm .cast_profile .text {
    color: #0d7f81;
}

footer{
	width: 100%;
	height: 100%;
	position: relative;
}
footer::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translate(-50%, 0);
	background-image: url("../img/footer_date.png");
	background-repeat: no-repeat;
	background-size: 40%;
	background-position: bottom;
}

@media screen and (max-width: 1250px) {
.md-inner {
    background-size: 85%;

}
	.sns_item {
    position: fixed;
    right: 2%;
    top: -0.5%;
	}
	
	.md-inner-wrap{
		width: 65%;

	}
	
}

@media screen and (max-width: 960px) {
	
/*LOADING------------------------------------------------*/
	.logo {

    padding: 0;
	}
	.logo img {
    width: 100%;
}
	.fa-brands, .fab {
    font-weight: 400;
    font-size: 4.5vw;
	}
	
	/*HUNBARGER MENU-------------------------------------------*/
	
	#nav_box {
    width: 100%;
    height: 16vw;
	}
.menu {
  height: 20px;
  position: fixed;
  right: 25px;
  top: 27px;
  width: 30px;
  z-index: 779;
	cursor: pointer;
	
}
.menu_bg{
	    display: block;
    background-color: rgba(0,0,0,0.6);
    width: 50px;
    height: 45px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 779;
    border-radius: 5px;
}
.menu__line {
  background: #fff;
  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: 10px;
  transform: rotate(135deg);
}
/*gnav*/

.gnav {
  background-color: #141c1e;
  display: none;
  height: 100%;
  position: fixed;
	top: 0;
	bottom: 0;
	overflow: auto;
  width: 100%;
  z-index: 778;
}
.gnav__wrap {
  align-items: center;
  display: flex;
  justify-content: center;
	height: 100%;
	min-height: inherit;
	flex-flow: column;
}
.gnav__menu__item {
	
  width: 100%;
  height: auto;
  vertical-align: middle;
  line-height: 75px;
	text-align: center;
	
    margin: 0 auto 8%;
}
.gnav__menu__item:last-child {
  border: none;
	    margin: 0 auto;
}
.gnav__menu__item a {
  color: #fff;
      font-size: 5vw;

	font-weight: 500;
  text-decoration: none;
  transition: .5s;
	
}
	.nav_item{
	height: auto;
	}
	
	.nav_item_hover a span {
    font-size: 3.9vw;

	}
.gnav__menu__item a:hover {
	transition: .5s;
	cursor: pointer;
}


/*humberger-menuここまで*/

/*TOP------------------------------------------------*/
	
	.top{
	    height: 148vw;

	background-image: url("../img/top_main_sp.jpg");
}
	.top .inner {
    width: 100%;
	}
	.inner_top {
    width: 85%;
	margin: 16% auto 0;
	}
	.copyright_01 {
    width: 4%;
}
	
.award {
    width: 25%;
    margin: 4% 0 auto 0;
}
	
	.titlelogo {
    width: 67%;
    margin: -16% auto 0 7%;
}
.copyright_02 {
    width: 56%;
    margin: -1% 0% 0 auto;
}
	
	.date {
    width: 30%;
    margin: 5% 16% 0 auto;
}
	.copyright_03 {
    margin: 0 auto 3%;
}
	.billing {
    width: 80%;
	}
	
.taiwan_bnr {
           position: inherit;
        width: 48%;
        bottom: inherit;
        right: inherit;
        
}
	
	.bnr_wrap {
    position: inherit;
    width: 80%;
    bottom: inherit;
    right: inherit;
		        display: flex;
        justify-content: center;
        align-items: center;
		margin: 7% auto 0;
	}
	.news_bnr{
		width:48%; 
		margin: 0 4% 0 auto;
	}
	
	
/*NEWS------------------------------------------------*/
	
	
.news {
    padding: 5% 10px 0;
    box-sizing: border-box;
		height: auto;
}
	
	.news .wrapper {
    width: 95%;
		padding: 6% 0;
	}
	.officialsite_btn {
    margin: 3% auto;
	}
	
	.news_text_02 {
    margin: 5% auto 4%;
    width: 50%;
}
	
	.news_text_03{
		
    width: 68%;
    margin: 0 auto 5%;
	}
	.news_text_09{
                width: 95%;
	}
	
	.news_text_sns{
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 5% auto 0;
	}
	.news_text_10{
                width: 25%;
            margin: 0 auto;
	}
	.news_text_11{
		    width: 60%;
    margin: 0 0 0 auto;
    text-align: right;
	}
	
	
/*TRAILER------------------------------------------------*/
	.trailer{
		height: auto;
		min-height: auto;
	}
.trailer .inner {
    width: 85%;
    margin: 0 auto;
    padding: 10% 0;
}
	.youtube {
    width: 100%;
    padding-bottom: 65%;
	}
	
		.trailer::before {
    width: 97%;
    margin-bottom: 2%;
	}
	
	
/*Intro------------------------------------------------*/	
	
	.intro_logo {
    position: absolute;
    bottom: 1.5%;
    right: -12%;
	}
	
	.intro::before {
    width: 97%;
	}
	h2.lead {
    color: #5dbeb3;
  
	}
		.intro .inner {
    width: 80%;
    margin: 0 auto;
    padding: 10% 0;
	}
	.intro {
    width: 100%;
    

	}
.intro_text_wrap {
    flex-direction: column;
	}
	.intro_left {
    width: 100%;
	}


	h1.midashi_title {
    width: 45%;
    margin: 0 0 20px;
}
	.intro_left {
		position: relative;
		z-index: 3;
	}
	.intro_right {
    width: 100%;
    height: 100%;
     
		    margin: -15% 0 -6.4% 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}
	.intro .text{
		text-shadow: 0 0 10px black;
	}
	[data-ruby]::before {
    letter-spacing: 0rem;
		    left: 0;
    transform: none;
	}
	
	
/*CAST------------------------------------------------*/
	.cast{
		    margin-bottom: -1px;
	}
	.cast h1.midashi_title {
    width: 45%;
    margin: 0 0 0 10%;
    padding: 7% 0 0 0;
}
ul.cast_list {
    width: 30%;
    margin: 5% auto 12%;
}
	li.cast_list_item {
    width: 100%;
    margin: 0 0 8% 0;
	}
	li.cast_list_item {
    width: 100%;
    margin: 0 0 30% 0;
}
	.first li:nth-child(3).cast_list_item, .first li:nth-child(4).cast_list_item, .first li:nth-child(5).cast_list_item, .first li.cast_list_item:last-child {
    display: none;
}
	
.sp_line_top {
    position: absolute;
    top: 0;
    left: 50%;
     transform: translate(-50%, 0);
    z-index: 3;
    width: 98%;	
	
}	
.sp_line_btm {
    position: absolute;
    bottom: 0;
    left: 50%;
   transform: translate(-50%, 0) rotate(180deg);
    z-index: 3;
    width: 98%;	
	
}
	.cast_list_wrap{
		background-size: cover;
	}
	
	.cast_list_wrap::before {
    content: "";
    width: 100%;
	}
		.cast_list_wrap::after {
    content: "";
    width: 100%;
	}
	
	
	.sc_cast02{
	border-top: 1px solid transparent;
}
.sc_cast02 li.cast_list_item:last-child {
    margin: 0;
}


	
.sc_cast02 .sp_line_top {
    transform: translate(-50%, 0);
}
	.sc_cast02 .sp_line_btm{
	        transform: translate(-50%, 0) rotate(180deg);
	}
	
	
ul.cast_list.first {
    padding: 15% 0 10%;
}
	.sc_cast02 ul.cast_list {
    padding: 15% 0 7%;
		    margin: 0 auto 10%;
}
	
	
.md-scroll {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    align-items: center;
	}
		.md-inner-wrap {
     transform: none; 
		    width: 60%;
    max-height: 50vh;
	overflow-x: hidden;
}
	.md-xmark {

    width: 10%;
		
	}
	.md-inner {
    transform: none;
		    background-size: 70%;
		    background-image: url(../img/cast_frame_ip.png);
		min-height: 800px;
	}
	.md-inner .cast_left {
    width: 50%;
    margin: 0 0 15px 0;
}
	.md-inner .cast_profile {
    margin: 7% 0 0 0;
}
	
	.cast_left .name_wrap .cast_name {
   position: absolute;
    top: 0;
    width: 14.3%;
    left: 13%;
    text-align: left;
    z-index: 6;
}
	.cast_left .cast_name_chs {
    width: 65%;
	}
	
#modal01 .cast_left .name_wrap .cast_name{
	width: 14.3%;
}
	li:nth-of-type(1) .cast_left .cast_name_chs {
    width: 55%;
}
		li:nth-of-type(3) .cast_left .cast_name_chs {
    width: 75%;
}
	#modal02 .cast_left .name_wrap .cast_name {
    width: 12.3%;
}

	.sc_cast02 li:nth-child(2) .cast_left .name_wrap .cast_name{
		    top: 5%;
    width: 13%;
	}
	.sc_cast02 li:nth-child(3) .cast_left .name_wrap .cast_name{
		    top: 5%;

	}

	
	
	.name_wrap .cast_name.akio{
		    width: 29%;
	}
	.name_wrap .cast_name.liu {
    width: 23%;
}
	
	.cast_name_chs {
    width: 60%;
    margin: 0 auto 0 10%;
}

	.cast_info {
    width: 100%;
    margin: 0 0 0 auto;
    text-align: left;
}
	
.md-scroll {
    width: 100%;
	}
/*	.md-inner-wrap {
    width: 70%;
	}
	.md-inner {
    background-size: 145%, contain;
}*/
	.name_wrap .cast_name {
    position: absolute;
    top: 0;
    width: 26%;
	}
	.cast_name_chs {
    width: 90%;
	}
	.md-contents .name_wrap {
    width: 100%;
	}
	.cast_left .md-contents .name_wrap .cast_name {
    width: 19.3%;
    left: -1%;
}
		.cast_list_wrap{
	 display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	
	background: url("../img/cast_bg_01.jpg")no-repeat top, url("../img/cast_bg_02.jpg") no-repeat bottom;
	background-position: top left, bottom right;

	}
	
	
/*STAFF------------------------------------------------*/	
	.staff ul.cast_list {
    width: 90%;
	}
	.staff li.cast_list_item {
    flex-direction: column;
		
	}
	.staff .cast_list_item_wrap {
    width: 45%;
    margin: 0 auto 7%;
}
	
	
.staff .name_wrap .cast_name {
  position: absolute;
    top: -3%;
    width: 9%;
    left: 19%;
    text-align: left;;
}
	.staff_btm .name_wrap .cast_name {
    position: absolute;
    top: 0;
		width: 7%; 
	left: 0;
	}
	
	

	
	.cast h1.midashi_title h1.midashi_title, .staff h1.midashi_title {
    width: 45%;
    margin: 0 0 0 10%;
 padding: 10% 0 0 0;
}
}
	
@media screen and (max-width: 650px) {
	}
	
	

@media screen and (max-width: 500px) {
	
/*LOADING------------------------------------------------*/

.gnav__menu__item {
    margin: 0 auto 13%;
	}
	li.gnav__menu__item:nth-child(6) {
    margin: 0 auto 20%;
	}

/*TOP------------------------------------------------*/
.gnav__menu__item a {

    font-size: 7vw;
		
	}
	
	.nav_item_hover a span {
    font-size: 2.8vw;
}
	
/*NEWS------------------------------------------------*/
	.news {
    padding: 10px 10px 0;
    box-sizing: border-box;
		height: auto;
}
	
	.news .wrapper {
    width: 100%;
		padding: 6% 0;
	}
	
	.officialsite_btn {
    margin: 5% auto;
		width: 80%;
}
	.news_text{
		box-sizing: border-box;
	}
	
	.news_text_02{
		    width: 55%;
    margin: 5% auto;
	}
	
	.news_text_03{
		    width: 75%;
    margin: 0 auto 6%;
	}
	.news_text_05, .news_text_07 {
    display: flex;
		margin: 5px 0;
}
	.news_text_07 {
    margin: 5px 0;
}
	.news_text_09 {
    width: 95%;
}
	
	.news_text_sns{
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 5% auto 0;
	}
	.news_text_10{
                width: 25%;
            margin: 0 auto;
	}
	.news_text_11{
		    width: 60%;
    margin: 0 0 0 auto;
    text-align: right;
	}
	
	
/*TRAILER------------------------------------------------*/
	.trailer::before{
    border-bottom-left-radius: 30px;
	}
	
	[data-ruby]::before {
    letter-spacing: 0rem;
		    left: 0;
    transform: none;
	}
	.intro_logo {
    position: absolute;
    bottom: 0.5%;
    right: -10%;
		width: 9%;
}
	.intro::before{
		  border-bottom-left-radius: 30px;
		    border-top-right-radius: 30px;
	}
	.intro .inner{
		    padding: 15% 0;
	}
	
	h2.lead {
    line-height: 1.9;
		    font-size: 5vw;
	}
	.intro h1.midashi_title{
		width: 70%;
	}
	.intro_right{
		margin: -15% 0 -12.4% 0;
	}
	
/*CAST------------------------------------------------*/	
	ul.cast_list {
    width: 50%;
	}
		
	.cast h1.midashi_title {
    width: 70%;
    margin: 0 0 0 10%;
    padding: 10% 0 0 0;
}

	
	.md-inner-wrap{
    width: 65%;
	}
	.md-inner {
    transform: none;
		    background-size: 90%;
		    background-image: url(../img/cast_frame_sp.png);
	}
	
	.md-xmark {
    position: absolute;
    width: 12%;
	}
	.md-inner .profile_img {
    width: 85%;
		margin: 0 auto;
}
	
	
	.md-inner .cast_left {
    width: 80%;
	}

	
	
	.cast_left .name_wrap .cast_name {
    position: absolute;
    top: 0;
    width: 17.3%;
    left: 0%;
	}
	.md-inner .cast_profile {
    margin: 5% 0 0 0;
}
	
	.sc_cast02 ul.cast_list {
    padding: 15% 0;
	}
	
	#modal01 .cast_left .name_wrap .cast_name {
    width: 18%;
}
	.first li:nth-child(1) .cast_left .name_wrap .cast_name {
    width: 18%;
	}
.first li:nth-child(2) .md-contents .name_wrap .cast_name {
    position: absolute;
    top: 0%;
    width: 16%;
	}
	.name_wrap .cast_name.liu {
    width: 24%;
}
	
	
	ul.first li:nth-child(2) .md-inner .cast_profile {
    margin: 27% 0 0 0;
}
	#modal02 .cast_left .name_wrap .cast_name {
    width: 18.3%;
}

	.sc_cast02 li:nth-child(1) .cast_left .name_wrap .cast_name {
    width: 18%;
}
	.sc_cast02 li:nth-child(1) .cast_left .name_wrap .cast_name{
		     width: 27%;
	}
	
	
	.sc_cast02 li:nth-child(3) .cast_left .name_wrap .cast_name{
		    width: 20%;
		    top: 5%;

	}
	.sc_cast02 li:nth-child(3) .cast_name_chs {
    width: 91%;
	}

	
	.cast .cast_name_chs {
    margin: 0 auto 0 6%;
	}
	
	
	.cast .cast_left .cast_name_chs {
    margin: 0 auto 0 13%;
    width: 72%;
}
	
	.first li:nth-child(2) #modal02 .cast_name_chs {
    width: 58%;
	}
	
	.sc_cast02 li:nth-child(1) .cast_left .name_wrap .cast_name {
		    top: 0;
        width: 19.5%;
}
	
	.sc_cast02 li:nth-of-type(1) .cast_left .cast_name_chs {
    width: 50%;
}
	
	.sc_cast02 li:nth-child(2) .cast_left .name_wrap .cast_name {
    width: 17%;
		top: 5%;
}
	.sc_cast02 li:nth-of-type(2) .cast_left .cast_name_chs {
    width: 57%;
	}
	.sc_cast02 li:nth-child(3) .cast_name_chs {
    width: 91%;
	}
	.sc_cast02 li:nth-of-type(3) .cast_left .cast_name_chs {
    width: 70%;
	}
	
	
/*STAFF------------------------------------------------*/	
	.staff h1.midashi_title {
    width: 70%;
    margin: 0 0 0 10%;
    padding: 10% 0 0 0;
}
	.staff_imgs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.staff_imgs .left {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
	margin: 0 0 1% 0;
}
	.staff_imgs .right {
    width: 100%;
	}
	.staff_btm .cast_info {
    width: 84%;
		color: #0d7f81;
}
	
	.staff ul.cast_list{
		padding: 15% 0 10%;
	}
	.staff_btm ul.cast_list{
		padding: 0;
	}
	
	
.staff_btm .cast_profile .text {
    color: #0d7f81;
}.staff_btm .cast_name_chs img {
    height: auto;
}
	
	.staff_btm li:nth-child(1) .cast_name_chs {
    width: 50%;
}
	.staff_btm li:nth-child(2) .cast_name_chs {
    width: 100%;
}
	.staff_btm li:nth-child(3) .cast_name_chs {
    width: 75%;
}
	
	.staff_btm li:nth-child(3){
		margin: 10.3% auto 25%;
	}
    
	.staff .name_wrap{
		    margin: 10% 0 10% 5%;
	}

	.staff .name_wrap .cast_name {
    position: absolute;
    top: -4%;
    width: 14%;
    left: 4%;
    text-align: left;
}
	.staff .cast_list_item_wrap {
    width: 65%;
	}
	.staff_btm .name_wrap .cast_name {
    position: absolute;
    top: 0;
    width: 11%;
		left: 0;
	}
	
	.staff_btm .cast_name_chs {
    width: 70%;
		margin: 0 0 6% 0;
}
	
	.staff li:nth-of-type(2).cast_list_item {
    margin: 0 auto;
		    width: 90%;
}

	
	.staff_btm h1.midashi_title {
    width: 70%;
    margin: 0 0 0 10%;
    padding: 3.3% 0 0 0;
    position: absolute;
    bottom: 1%;
}
	.staff .cast_list_item_wrap {
    margin: 0 auto;
}
	.staff_btm li.cast_list_item {
    width: 90%;
    margin: 10.3% auto 15%;
	}
	
	
	footer::before{
		    background-size: 80%;
	}
	
	
	
	
	
	
}

@media screen and (max-width: 300px) {


/*LOADING------------------------------------------------*/

/*TOP------------------------------------------------*/

/*TRAILER------------------------------------------------*/	
	
}





	
	
	