@charset "UTF-8";
/* CSS Document */
	
body{
	margin:0px;
	background-color:#d2d2d2;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 400;
	font-style: normal;
	color:#222;
	height:100%;
}

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;}



/* 非表示 */
.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: #d2d2d2;
    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 #fff;         /* 線(上下左右)の太さ,形,色 */
  border-top-color: #7f7f70;          /* 線(上)の色 */
  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%;
}



#right_bar_wrapper{
    width:45px;
    height: 100%;
    position: fixed;
    left:0;
    top:0;
	background:#231815;
    z-index: 101;
	box-sizing: border-box;
}
  
#right_bar{
    width:100%;
    height: 100%;
    position: relative;
    z-index: 100;
}

.btn-trigger_wrapper {
  	width: 26px;
	position: absolute;
	top:45%;
	left:10px;
}


.btn-trigger {
  position: relative;
  width: 26px;
  height: 23px;
  cursor: pointer;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 11px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn14.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
#btn14.active span:nth-of-type(1),
#btn14.active span:nth-of-type(3) {
  width: 20px;
}
#btn14.active span:nth-of-type(1) {
  -webkit-transform: translate(-1px,12px) rotate(-45deg);
  transform: translate(-1.9px,3.8px) rotate(-45deg);
}
#btn14.active span:nth-of-type(3) {
  -webkit-transform: translate(-1px,-12px) rotate(45deg);
  transform: translate(-1.9px,-3px) rotate(45deg);
}


nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #222;
  background-color:rgba(240,240,240,0.95);
  width: 43.2%;
  height: 100%;
  margin-left:-40%;
  opacity: 0;
  -webkit-transition-property: all;
     -moz-transition-property: all;
      -ms-transition-property: all;
       -o-transition-property: all;
          transition-property: all;
  -webkit-transition: .6s ease;
     -moz-transition: .6s ease;
      -ms-transition: .6s ease;
       -o-transition: .6s ease;
          transition: .6s ease;
	box-sizing: border-box;
	z-index: 100;
}


nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

nav.globalMenuSp.active {
  opacity: 100;
  margin-left:0;

}

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

.menu{
	width:100%;
	font-size: 16px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 1px;
	line-height: 33px;
  margin-bottom: 2%;
}

.menu a {
  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(210,210,210,1) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: 0.5s;
  text-decoration: none;
  color: #000;
	padding:1%;
	box-sizing: border-box;
}
.menu a:hover {
  background-position: -100% 0;
  color: #fff;
  text-decoration: none;
}






#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%;
	padding-left: 45px;
	box-sizing: border-box;
}

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

#top_wrapper{
    width:100%;
	height: auto;
	position: relative;
}

#top_main{
	width:100%;
}


#top_catch{
    width:3%;
	position: absolute;
	left:2.5%;
	top:2%;
	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 #top_catch{
  opacity:1;
  -webkit-transition-delay:2.0s;
  transition-delay:2.0s;
}

#top_logo{
	width:32%;
	position: absolute;
	left:32%;
	top:6%;
	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;
}
  
.showNavi #top_logo{
  opacity:1;
  -webkit-transition-delay:1.5s;
  transition-delay:1.5s;
}

#top_biling{
	width:30%;
	position: absolute;
	right:0;
	top:5%;
	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 #top_biling{
  opacity:1;
  -webkit-transition-delay:2.3s;
  transition-delay:2.3s;
}

#top_photo{
	width:52%;
	position: absolute;
	right:3%;
	bottom:0%;
	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 #top_photo{
  opacity:1;
  -webkit-transition-delay:2.6s;
  transition-delay:2.6s;
}

#top_netflix{
	width:12%;
	position: absolute;
	left:26%;
	top:7%;
	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 #top_netflix{
  opacity:1;
  -webkit-transition-delay:2.6s;
  transition-delay:2.6s;
}


#top_bottom{
	width:100%;
	overflow: hidden;
	box-sizing: border-box;
	padding:3% 2% 3% 2%;
	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 #top_bottom{
  opacity:1;
  -webkit-transition-delay:3.5s;
  transition-delay:3.5s;
}

#top_day{
	width:90%;
	margin:0 auto;
	margin-bottom: 20px;
}

#top_btn_wrapper{
	width:60%;
	margin:0 auto;
	overflow: hidden;
	margin-bottom: 20px;
}

.topbtn{
	width:49%;
	float: left;
	margin-right: 2%;
}

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


.topbtn a{
    display:block;
	width: 100%; /* 横幅 */
	box-sizing: border-box;
	text-decoration: none;
	color: #fff;
	outline: none;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
	background-color: #231815;
	padding:1% 1%;
	text-align:center;
	font-size: 12px;
}

.topbtn a:hover {
	text-decoration: none;
	outline: none;
	background-color:#fff;
	color: #d2d2d2;
}

#snsbtn_wrapper{
	width:435px;
	margin:0 auto;
	overflow: hidden;
	margin-bottom: 30px;
}
  
#snsbtn_wrapper1{
	width:150px;
	float: left;
	margin-right: 20px;
	overflow: hidden;
}

.snsbtn{
	width:30px;
	float: left;
	margin-right:10px;
	outline: none;
	text-align: center;
	box-sizing: border-box;
	border:1px solid #231815;
}

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

.snsbtn a{
    display:block;
	width: 100%; /* 横幅 */
	box-sizing: border-box;
	text-decoration: none;
	color: #fff;
	outline: none;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
}

.snsbtn a:hover {
	text-decoration: none;
	outline: none;
	background-color:#fff;
}


#snsbtn_wrapper2{
	width:265px;
	float: left;
	overflow: hidden; /* heightを戻す */
	padding-top:1%;
}

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

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

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

.pcview{
	width:100%;
}

.spview{
	display: none;
}


.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, -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-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;
}

.pagetitle{
	width:3%;
	float: left;
	font-weight: 600;
	font-style: normal;
	font-size: 14px;
	letter-spacing: 2px;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	padding:1%;
}

.inner_contents{
	width:92%;
	float: right;
	border-left: 1px solid #999;
	box-sizing: border-box;
	padding-left: 4%;
}

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

#intro_inner{
	width:100%;
	margin:0 auto;
	box-sizing: border-box;
	padding:10% 10% 10% 10%;
	background-color:#d2d2d2;
	overflow: hidden;
}

.intromidashi{
	width:100%;
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 900;
	font-style: normal;
	line-height: 36px;
}

#story_wrapper{
	width:100%;
	overflow: hidden;
	background: url("images/story/bg.jpg") 100% 0 no-repeat fixed;
	background-size:cover;
	background-position:  left;
	padding: 10% 7% 10% 53%;
	box-sizing: border-box;
}

#story_inner{
	width:100%;
	box-sizing: border-box;
	padding:5%;
	overflow: hidden;
}

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



#cast_wrapper{
	width:100%;
	overflow: hidden;
	background: url("images/cast/bg.jpg") 100% 0 no-repeat fixed;
	background-size:cover;
	padding-bottom: 40%;
}

#cast_inner{
	width:100%;
	background:#fff;
	box-sizing: border-box;
	padding:7%;
	overflow: hidden;
}

.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;
}

.castsn1{
	width:48.5%;
	float: left;
	margin-right: 3%;
	margin-bottom: 3%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

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

.castsn1 a{
  display: block;
  position: relative;
}
  
.castsn1 .hoverimg{
  position: absolute;
  left:0;
  bottom:0;
  -webkit-transition: .4s;
     -moz-transition: .4s;
      -ms-transition: .4s;
       -o-transition: .4s;
          transition: .4s;
  z-index: 301;
	opacity: 0;
}

.castsn1 a:hover .hoverimg{
  bottom: 0%;
  opacity: 1;
}

.castsn2{
	width:32%;
	float: left;
	margin-right: 2%;
	margin-bottom: 3%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.castsn2 a{
  display: block;
  position: relative;
}
  
.castsn2 .hoverimg{
  position: absolute;
  left:0;
  bottom:0;
  -webkit-transition: .4s;
     -moz-transition: .4s;
      -ms-transition: .4s;
       -o-transition: .4s;
          transition: .4s;
  z-index: 301;
	opacity: 0;
}

.castsn2 a:hover .hoverimg{
  bottom: 0%;
  opacity: 1;
}

.castsn3{
	width:32%;
	float: left;
	margin-right: 2%;
	margin-bottom: 3%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

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

.castsn3 a{
  display: block;
  position: relative;
}
  
.castsn3 .hoverimg{
  position: absolute;
  left:0;
  bottom:0;
  -webkit-transition: .4s;
     -moz-transition: .4s;
      -ms-transition: .4s;
       -o-transition: .4s;
          transition: .4s;
  z-index: 301;
	opacity: 0;
}

.castsn3 a:hover .hoverimg{
  bottom: 0%;
  opacity: 1;
}


.castsn4{
	width:23.5%;
	float: left;
	margin-right: 2%;
	margin-bottom: 3%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.castsn4:nth-child(4n) {
  margin-right:0;
}

.castsn4 a{
  display: block;
  position: relative;
}
  
.castsn4 .hoverimg{
  position: absolute;
  left:0;
  bottom:0;
  -webkit-transition: .4s;
     -moz-transition: .4s;
      -ms-transition: .4s;
       -o-transition: .4s;
          transition: .4s;
  z-index: 301;
	opacity: 0;
}

.castsn4 a:hover .hoverimg{
  bottom: 0%;
  opacity: 1;
}


.castname1{
	width:100%;
	margin-bottom: 5px;
	font-size:18px;
	font-weight: 600;
	font-style: normal;
	line-height: 100%;
}

.castname2{
	width:100%;
	font-size: 12px;
	font-weight: 600;
	font-style: normal;
	line-height: 14px;
}

.castname3{
	width:100%;
	margin-bottom: 5px;
	font-size: 26px;
	font-weight: 600;
	font-style: normal;
	line-height: 100%;
}

.castname3 a{
	color: #fff;
	text-decoration: none;
}

.castname3 a:hover{
	color:rgba(210,206,98,1.00);
}

.castname4{
	width:100%;
	font-size: 20px;
	font-weight: 600;
	font-style: normal;
	line-height: 20px;
	margin-bottom: 20px;
}



#contents_wrapper img.cast-sntitle-name{
  width: 80%;
}

.removebtn{
  position: fixed;
  top: 2%;
  right: 2%;
  width: 50px;
  cursor: pointer;
}
.cast-popup>div{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255,255,255,1.0);
}
.cast-pop-box{
  z-index: 10;
  width:70%;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10%;
  color:#222;
	font-size: 14px;
	line-height: 175%;
  box-sizing: border-box;
}

.cast-pop-box a{
	color: rgba(30,105,90,1.00);
	text-decoration: underline;
}

.cast-pop-box a:hover{
	color: #999;
	text-decoration: none;
}

body.modal-open {
  height: 100vh;
  overflow-y: hidden;
}


.cast_l{
	width:45%;
	float: left;
}

.cast_r{
	width:52%;
	float: right;
}

.castphoto1{
	width:100%;
	margin-bottom: 20px;
	border:6px solid #fff;
	box-sizing: border-box;
	box-shadow: 7px 12px 9px -10px rgba(0,0,0,0.6);
}

.castphoto2{
	width:100%;
	border:6px solid #fff;
	box-sizing: border-box;
	box-shadow: 7px 12px 9px -10px rgba(0,0,0,0.6);
	margin-top:20px;
}

.castcomment{
	width:100%;
	padding-top:20px;
	border-top:1px solid #ccc;
	font-style: italic;
	font-size: 13px;
}


#book_wrapper{
	width:100%;
	overflow: hidden;
	background: url("images/book/bg.jpg") 100% 0 no-repeat fixed;
	background-size:cover;
	background-position:  right;
	padding: 10% 40% 10% 3%;
	box-sizing: border-box;
	color: #fff;
}

#book_inner{
	width:100%;
	box-sizing: border-box;
	padding:5%;
	overflow: hidden;
}

.book_l{
	width:27%;
	float: left;
}

.book_r{
	width:68%;
	float: right;
}

.book_r a{
	color: #fff;
}

.book_r a:hover{
	color:rgba(210,206,98,1.00);
}


#staff_wrapper{
	width:100%;
	overflow: hidden;
	background:#f2e7e3;
	box-sizing: border-box;
}

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

.staff_l{
	width:32%;
	float: left;
}

.staff_r{
	width:63%;
	float: right;
}

.staffbox{
	width:47%;
	float: left;
	margin-right: 6%;
}

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

#comment_wrapper{
	width:100%;
	overflow: hidden;
	background: url("images/comment/bg.jpg") 100% 0 no-repeat fixed;
	background-size:cover;
	box-sizing: border-box;
}

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

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

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

#top_aisatsu{
	width:10%;
	position: absolute;
	top:59%;
	right: 30%;
}


#top_aisatsu img:hover{
	transition:0.5s all;
	opacity: 0.5;
}

#bnr_wrapper{
	width:100%;
	margin:0 auto;
}

.bnr{
	width:15%;
	float: left;
	margin-right: 2%;
}

.bnr:nth-child(6n) {
  margin-right:0;
}


.bnr img:hover{
	transition:0.5s all;
	opacity: 0.5;
}


.comment_box{
	width:100%;
	box-sizing: border-box;
	padding:3%;
	border-top:1px solid #666;
	margin-bottom: 30px;
}

.comment_text{
	width:100%;
	font-size: 18px;
	margin-bottom: 10px;
}

.comment_name1{
	width:100%;
	font-size: 20px;
	color: #28422a;
	font-weight: 900;
	font-style: normal;
	text-align: right;
}

.comment_name2{
	width:100%;
	font-size: 12px;
	color: #28422a;
	font-weight: 700;
	text-align: right;
}

.comment_push{
	color:rgba(134,66,0,1.00);
	font-size: 20px;
	font-weight: bold;
}

.keisyo{
	text-align: right;
	font-size: 12px;
	margin-top:30px;
}

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


#spmain{
	display: inherit;
	width:100%;
}
	

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #222;
  background-color:rgba(240,240,240,0.95);
  width: 100%;
  height: 100%;
  margin-left:-100%;
  opacity: 0;
  -webkit-transition-property: all;
     -moz-transition-property: all;
      -ms-transition-property: all;
       -o-transition-property: all;
          transition-property: all;
  -webkit-transition: .6s ease;
     -moz-transition: .6s ease;
      -ms-transition: .6s ease;
       -o-transition: .6s ease;
          transition: .6s ease;
	box-sizing: border-box;
	z-index: 100;
}


nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

nav.globalMenuSp.active {
  opacity: 100;
  margin-left:0;

}

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

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:100%;
	margin:0 auto;
	margin-bottom:20px;
	display: inherit;
	margin-top:20px;
}

.pcview{
	display: none;
}

.spview{
	display: inherit;
	width:100%;
}

#top_wrapper{
    width:100%;
	height: auto;
	position: inherit;
}

#top_main{
	display: none;
}


#top_catch{
	display: none;
}

#top_logo{
	display: none;
}
 
#top_biling{
	display: none;
}

#top_photo{
	display: none;
}
	
#top_netflix{
	display: none;
}
  
#top_bottom{
	width:100%;
	overflow: hidden;
	box-sizing: border-box;
	padding:5%;
	opacity: 1;
}

#top_day{
	width:100%;
	margin:0 auto;
	margin-bottom: 20px;
}

#top_btn_wrapper{
	width:100%;
	margin:0 auto;
	overflow: hidden;
	margin-bottom: 10px;
}
	
.topbtn{
	width:100%;
	float:none;
	margin-right: 0;
	margin-bottom: 5px;
}
	

.topbtn a{
    display:block;
	width: 100%; /* 横幅 */
	box-sizing: border-box;
	text-decoration: none;
	color: #fff;
	outline: none;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
	background-color: #231815;
	padding:1.5% 1%;
	text-align:center;
	font-size: 12px;
}

#snsbtn_wrapper{
	width:100%;
	margin:0 auto;
	overflow: hidden;
}
  
#snsbtn_wrapper1{
	width:100%;
	float: none;
	margin-right: 0;
	margin:0 auto;
	overflow: hidden;
	margin-bottom: 20px;
}

.snsbtn{
	width:24%;
	float: left;
	margin-right:1.333333%;
	outline: none;
	text-align: center;
	box-sizing: border-box;
	border:1px solid #231815;
}

.snsbtn:nth-child(4n) {
  margin-right:0;
}
	
.snsbtn a{
    display:block;
	width: 100%; /* 横幅 */
	box-sizing: border-box;
	text-decoration: none;
	color: #fff;
	outline: none;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
	padding:3% 30%;
}

.snsbtn a:hover {
	text-decoration: none;
	outline: none;
	background-color:#fff;
}

#snsbtn_wrapper2{
	width:265px;
	float: none;
	margin:0 auto;
	overflow: hidden; /* heightを戻す */
	padding-top:0;
	margin-bottom: 30px;
}

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

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

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

	
.pagetitle{
	width:100%;
	float: none;
	font-weight: 600;
	font-style: normal;
	font-size: 14px;
	letter-spacing: 2px;
	-ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
	padding:0;
	margin-bottom: 10px;
}

.inner_contents{
	width:100%;
	float: none;
	border-left: none;
	border-top: 1px solid #999;
	box-sizing: border-box;
	padding-left: 0;
	padding-top:20px;
}

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

#intro_inner{
	width:100%;
	margin:0 auto;
	box-sizing: border-box;
	padding:10% 10% 10% 10%;
	background-color:#d2d2d2;
	overflow: hidden;
}

.intromidashi{
	width:100%;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 900;
	font-style: normal;
	line-height: 36px;
}

#story_wrapper{
	width:100%;
	overflow: hidden;
	background:none;
	background-color: #fdfdfd;
	padding:0;
	box-sizing: border-box;
}

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

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

#cast_wrapper{
	width:100%;
	overflow: hidden;
	background: none;
	padding-bottom: 0%;
}

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

.castsn1{
	width:100%;
	float: none;
	margin-right: 0%;
	margin-bottom: 5%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
	
.castsn2{
	width:100%;
	float: none;
	margin-right: 0;
	margin-bottom: 5%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
	
.castsn3{
	width:100%;
	float: none;
	margin-right: 0%;
	margin-bottom: 5%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
	
.castsn4{
	width:100%;
	float: none;
	margin-right: 0;
	margin-bottom: 5%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.cast-pop-box{
  z-index: 10;
  width:80%;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10%;
  color:#222;
	font-size: 14px;
	line-height: 175%;
  box-sizing: border-box;
}


.cast_l{
	width:100%;
	float: none;
	margin-bottom: 20px;
}

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

.castphoto1{
	width:100%;
	margin-bottom: 20px;
	border:6px solid #fff;
	box-sizing: border-box;
	box-shadow: 7px 12px 9px -10px rgba(0,0,0,0.6);
}

.castphoto2{
	width:100%;
	border:6px solid #fff;
	box-sizing: border-box;
	box-shadow: 7px 12px 9px -10px rgba(0,0,0,0.6);
	margin-top:20px;
}


#book_wrapper{
	width:100%;
	overflow: hidden;
	background:none;
	padding:0;
	box-sizing: border-box;
	color: #fff;
}

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

.book_l{
	width:100%;
	float: none;
	margin-bottom: 20px;
}

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


#staff_wrapper{
	width:100%;
	overflow: hidden;
	background:#f2e7e3;
	box-sizing: border-box;
}

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

.staff_l{
	width:100%;
	float: none;
	margin-bottom: 20px;
}

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

.staffbox{
	width:100%;
	float: none;
	margin-right: 0;
	margin-bottom: 50px;
}


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

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

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

#footer_inner{
	width:30%;
	margin:0 auto;
}
	
#top_aisatsu{
	width:20%;
	position: absolute;
	top:4%;
	right: 30%;
}
	
.bnr{
	width:49%;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
}

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


}