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


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

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

.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
/*ここまで--------------------------*/

body {
font-family: 'Noto Serif JP', sans-serif;
line-height: 1.5;
background-color: #ffff;
}	

img{
	max-width: 100%;
	height: auto;	
}

a{
 color: beige;
}

.mainSite {
 width: 100%;
 padding: 0;
 margin:  0;
}
.wrapper {
	position: relative;
	max-height: 1980px;
	text-align: center;
	margin: 0 auto;
}
section{
	padding: 5% 0;
	z-index: 2;
}
.inner{
	width: 70%;
	margin: 0 auto;
}
.midashi_title{
	width: auto;
	display: inline-block;
	font-size: 22px;
	padding-bottom: 2px;
	margin-bottom: 60px;
	border-bottom: 1px solid #000;
}
.text{
	font-size: 16px;
	text-align: justify;
	text-align-last: left;
	line-height: 1.7;
	letter-spacing: 0.5px;
}
/*--------------------
TRAILER
--------------------*/

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

.trailer.on{
    opacity: 1;
}


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

.close_btn{
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  z-index: 999999999;
  transition-duration: 0.1s;
  opacity: 0;
  cursor: pointer;
}



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

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

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

.trailer .trailer_inner{
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    transform: translate(-50%,-50%) scale(0.9,0.9);
    width: 60%;
	padding-bottom: 33%;
    height: 1;
    z-index: 999999998;
    transition-duration: 0.5s;
}

.trailer.on .trailer_inner{
    transform: translate(-50%,-50%) scale(1,1);
}

.trailer_tab{
    position: absolute;
    color: #fff;
    top: 100%;
    display:flex;
    width: 100%;
    justify-content: center;
	margin-top: 5px;
}

.trailer_tab li{
	display: flex;
	justify-content: center;
    width: 50%;
	margin-right: 4px;
	padding: 7px 10px;
    border:solid 1px #fff;
    font-size: 1rem;
    text-align: center;
    background:rgba(255, 255, 255, 1);
    color: #000;
	/*border-radius: 4px;*/
}
.trailer_tab li:last-child{
	margin-right: 0;
}

.trailer_tab li.f_act{
    background: #000;
    color: #fff;
	cursor: pointer;
}

.trailer_tab li.f_act:hover{
    background: #aaa;
}

#youtube1,#youtube2{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    transition-duration: 1s;
    opacity: 1;
}

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

/*LODING---------------------------------------------*/
.anime {
	width: 100%; 
  height: 100%;
 position: fixed;
	top: 0; 
  left: 0; 
 background: #fff;
	z-index: 9999999999;
}

.logo_wrapper {
position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 15px 30px;
	text-align: center;
    z-index: 7777;
}
.logo img{
	width: 60%;
}
.logo{
  overflow: hidden;
  position: relative;
	z-index: 7;
}
.logo::before{
	animation: logo 6s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}
@keyframes logo {
  100% {
    transform: translateX(100%);
  }
}

/*HUNBARGER MENU---------------------------------------------*/
.menu {
  height: 20px;
  position: fixed;
  right: 25px;
  top: 27px;
  width: 30px;
  z-index: 779;
	cursor: pointer;
	
}
.menu_bg{
	background-color: rgba(0,0,0,0.6);
	width: 60px;
	height: 55px;
	position: fixed;
	top: 10px;
	right: 10px;
	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: #EA5514;
  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;
}
.gnav__menu__item {
  width: 100%;
  height: 50px;
  vertical-align: middle;
  line-height: 75px;
	text-align: center;
}
.gnav__menu__item:last-child {
  border: none;
}
.gnav__menu__item a {
  color: #fff;
  font-size: 16px;
	font-weight: 500;
  text-decoration: none;
  transition: .5s;
	
}
.gnav__menu__item a:hover {
  color: #FFF100;
	transition: .5s;
	cursor: pointer;
}
	nav ul.sns_icon li:first-child{
			margin-left: 0;
		}
		nav ul.gnav__menu li img{
			height: 22px;
		}
.sns_icon{
	margin-top: 25px;
}
.sns_icon a{
	display: block;
    color: #EA5514;
    background-color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    margin: 0 auto;
}
.sns_icon a:hover{
	color: #EA5514;
	background-color: #FFF100;
}
.menu_logo{
	width: 350px;
	margin: 0 auto;
	padding-bottom: 30px;
}
/*humberger-menuここまで*/
/*------------------
TopBTN
------------------*/

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

.btn-pageTop:hover{
	background: #ff6900;
	transform: scale(1.1);
	transition: 0.2s;
}

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



.btn-pageTop a{
	color: #fff;
}

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

.btn-pageTop a:active{
}

/*TOP-------------------------------------------------------*/
.top{
	width: 100%;
	display: flex;
	padding: 0;
	background-color: #fff;
}
.top_left{
	width: 50%;
}
.top_right{
	width: 38%;
	padding: 5% 6%;
}

.billing{
	width: 90%;
    margin: 0 auto;
	margin-bottom: 30px;
}
.trailer_btn{
	overflow: hidden;
	/*width: 75%;*/
	width: 90%;
 	margin:0 auto;
	cursor: pointer;
}
.trailer_btn img{
	transition:1s all;
}
.trailer_btn img:hover{
	 transform:scale(1.1,1.1);
  transition:1s all;
}
.bnr_wrap{
	/*width: 75%;*/
	width: 90%;
	margin: 0 auto;
	display: flex;
}
.cmt_bnr{
	/*width: auto;*/
	width: 420px;
    margin: 0 auto;
    margin-bottom: 20px;
	margin-right: 2%;
}
.cmt_bnr:last-child{
	margin-right: 0;
}
.cmt_bnr a{
	display: block;
	transition: .5s;
}
.cmt_bnr a:hover{
	transition: .5s;
	opacity: .8;
}

/*NEWS------------------------------------------------------*/
.news{
	padding-top: 0;
}
.news_wrap{
	background-color: #fff;
	padding-bottom: 10%;
}
.news_window{
	width: 600px;
	margin: 0 auto;
	box-shadow: 2px 2px 10px -5px #000;
	padding: 20px 30px;
	background-color: #fff;
}
.timeline-Footer.u-cf {
    display: none;
}
.news_img{
	background-image: url("../img/news_comment/news_img.jpg");
    padding-bottom: calc(1016 / 1920 * 100%);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: scroll;
    width: 100%;
    height: 0;
}

/*.news_img:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background:url("../img/news_comment/news_img.jpg") center no-repeat;
  background-size:cover;
}*/

/*INTRO------------------------------------------------------*/
.intro{
	background-color: #fff;
}

.intro_img_wrap{
	display: flex;
	width: 100%;
	margin-top: 80px;
	align-items: baseline;
	background-color: #fff;
}
.intro p{
	text-align: justify;
	text-align-last: left;
	line-height: 1.7;
	letter-spacing: 0.5px;
}
.intro_img_wrap p img{
	display: inline-block;
	box-shadow: 2px 2px 10px -5px #000;
}
.intro_img_wrap p:first-child{
	width: 45%;
}
.intro_img_wrap p:first-child img{
	transform:rotate(-3deg);
}
.intro_img_wrap p:last-child{
	width: 55%;
}
.intro_img_wrap p:last-child img{
	transform:rotate(3deg);
	margin-bottom: 40px;
}
.intro_img_02{
	z-index: 1;
}
/*STORY------------------------------------------------------*/
.story{
		background-color: #fff;
}
.story .inner{
	padding: 5% 0;

}
.story_bg_inner{
	background-image: url("../img/intro_story/story_bg_pc01.jpg");
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
}
.story p{
	text-align: justify;
	text-align-last: left;
	line-height: 1.7;
	letter-spacing: 0.5px;
}

/*CAST------------------------------------------------------*/
.cast{
	background-color: #fff;
}
.cast_box{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	margin-bottom: 20px;
}
.cast_box:last-child{
	margin-bottom: 0;
}
.cast_box.even {
		flex-flow: row-reverse;
	}
.cast_img{
	width: 30%;
}
.cast_img img{
	box-shadow: 2px 2px 10px -5px #000;
	transform:rotate(-3deg);
}
.cast_img.even img{
	transform:rotate(3deg);
}
/*.profile{
	margin-left: 5%;
	width: 50%;
}*/
.cast .profile.even{
	margin-right: 5%;
	margin-left: 0;
}
.name{
	width: 100%;
	font-size: 22px;
	text-align: left;
	padding-bottom: 5px;
	border-bottom: 1px solid #000;
	margin-bottom: 10px;
}
.name span{
	font-size: 16px;
	margin-left: 10px;
	color: gray;
}
/*.cast_cmt_box{
	width: 85%;
}*/
.cast_cmt_box.even{
	margin-left: auto;
}
.cmt_title{
	text-align: left;
	font-weight: bold;
	font-family: 'Noto Serif JP', sans-serif;
	font-size: 18px;
	margin: 30px 0 10px;
	/*border-bottom: 1px solid #000;
	padding-bottom: 10px;*/
}
.cmt_title.even{
	margin: 20px 0 10px;
}
.cast_cmt{
	text-align: justify;
	text-align-last: left;
	line-height: 1.7;
    letter-spacing: 0.5px;
	margin-bottom: 140px;
}
.cast_cmt.even{
	margin-bottom: 0;
}
/*STAFF------------------------------------------------------*/
.staff{
	background-color: #fff;
}
.staff .profile{
	width: 100%;
	margin: 0 0 40px 0;
}
.staff_imgs{
	width: 100%;
	display: flex;
	margin-top: 10%;
}
.staff_imgs img{
	width: 33.3333333%;
}
	.staff .name span {
    margin-left: 0;
		color: #000;
}

/*COMMENT------------------------------------------------------*/
.comment{
	background-color: #fff;
}
.cmt_box{
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #000;
}
.cmt_box:last-child{
	border-bottom: none;
}
.cmt_box p.text{
	margin-bottom: 15px;
}
.cmt_box .name{
	text-align: right;
	font-size: 20px;
	padding-bottom: 0;
	border-bottom: none;
}
.order{
	text-align: right;
	color: gray;
}

/*THEATER----------------------------------------------*/

.theater{
	padding: 5% 15% 10%;
	background-color: #fefefe;
	/*background-color: #614644;*/
}
.theater_wrap{
	/*background-color: #fefefe;*/
}
.theater_inner{
	/*max-width: 840px;*/
    margin: 0 auto;
}
.theater h1.midashi{
	margin-bottom: 70px;
	color: #342426;
	font-weight: bold;
}
table{
	width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: .9em;
    /*margin-bottom: 20px;*/
}
tbody{
	display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
	border-collapse: separate;
  border-spacing: 0;
}
tr {
	background-color: #fff;
}
th {
    padding: 10px 10px;
    padding-right: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #000;
    color: #fff;
}
table .tb1 {
    width: 20%;
}
table .tb2 {
    width: 30%;
}
table .tb3 {
    width: 20%;
}
table .tb4 {
    width: 15%;
}
table .tb5 {
    width: 14%;
}
td {
    padding: 8px 10px;
    padding-right: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #333;
	vertical-align: middle;
	border-bottom: 1px solid #ddd;
}

.pref {
    height: 52px;
	padding-top: 10px;
}
.multi{
	vertical-align: top;
}
.theater_name a{
    color: #342426;
	border-bottom: 1px solid #342426;
}
.theater_name a:hover{
    color: gray;
}

.theater_cs{
	text-align: center;
	font-weight: 600;
}

footer{
	width: 100%;
  height: 0;
  padding-bottom: calc(1007 / 1920 * 100%);
  background-image: url("../img/top_footer/footer_img_pc.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}




@media screen and (max-width: 950px) {
	
	section {
    padding: 10% 0;
}
	.midashi_title{
		margin-bottom: 50px;
		font-size: 20px;
	}
	.inner{
		width: 80%;
	}
	
	/*--------------------
TRAILER
--------------------*/
	
.trailer .trailer_inner {
    width: 80%;
	padding-bottom: 50%;
	}

/*TOP-------------------------------------------------------*/
.top{
	display: block;
}
.top_left{
	width: 100%;
}
.top_right{
	width: auto;
	padding: 0;
}
	/*.top_right{
		background-color: #EA5514;
	}*/
	.top_right_inner{
		width: 80%;
		margin: 0 auto;
		position: relative;
	}	
	.date{
		    width: 90%;
    margin: 5% auto;
	}
	.menu_logo {
   		 width: 220px;
    padding-bottom: 10px;
	}
	.trailer_btn{
		width: auto;
		padding: 5% 0;
	}
	.bnr_wrap{
	width: auto;
	margin: 40px auto 0;
	display: block;
}
	.cmt_bnr {
    width: auto;
    margin: 0 auto;
    margin-bottom: 0px;
		margin-top: 10px;
}
	
/*NEWS-------------------------------------------------------*/
	.news{
		/*padding-top: 10%;*/
	}
	.news .inner{
		padding-top: 10%;
	}
	.news_window {
		/*width: 80%;*/
		width: auto;
		margin-bottom: 20%;
	}
	.news_img{
		background-image: url("../img/news_comment/news_img.jpg");
		background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
	}
.news_img:before{
  position:inherit;
  background: none;
	background-size: cover;
	height: 100vh;
}
	.news_wrap{
		padding-bottom: 0;
	}
/*INTRO-------------------------------------------------------*/
	.intro_img_wrap{
		margin-top: 40px;
	}
	.intro_img_wrap p:first-child {
    width: 51%;
    margin-right: -50px;
}
	.intro_img_wrap p:last-child {
    width: 67%;
}
	
/*STORY-------------------------------------------------------*/
	.story_bg_inner{
		background-image: url("../img/intro_story/story_bg_mbl01.jpg");
		padding-bottom: 0;
		    
	}
	.story{
		padding-top: 0;
	}
	.story_bg {
    position: inherit;
}
	.story .inner {
		position: inherit;
		-webkit-transform:inherit;
		    transform: inherit;
		z-index: 2;
		padding-top: 15%;
	}
	.story .inner .text{
		z-index: 2;
		padding-bottom: 5%;
	}
	
/*CAST-------------------------------------------------------*/
	.cast_box {
    width: 100%;
		display: block;
		margin-bottom: 60px;
	}
	.cast_box .cast_img{
		    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
	}
	.cast_box .profile{
		width: auto;
		margin-left: 0;
	}
	.cast_cmt_box{
	width: auto;
}
	.cast_box {
		margin-bottom: 20px;
	}

/*COMMENT-------------------------------------------------------*/
	.cmt_box .name {
    text-align: right;
		font-size: 18px;
	}
	
/*THEATER-------------------------------------------------------*/
	table{
		table-layout: fixed;
	}
	tbody{
		font-size: 13px;
	}
	th{
		padding: 10px 6px;
		vertical-align: middle;
	}
	.theater_name{
		font-size: 13px;
	}
	table .tb1 {
    width: 15%;
}
	table .tb2 {
    width: 40%;
}
	table .tb3 {
    width: 8%;
}
	table .tb4 {
    width: 15%;
}
	table .tb5 {
    width: 8%;
}
	.tell a{
		color: #000;
	}
	.theater {
		padding: 10% 10% 20%;
	}

	
/*FOOTER-------------------------------------------------------*/
	footer{
  padding-bottom: calc(1005 / 1125 * 100%);
  background-image: url("../img/top_footer/footer_img_mbl.jpg");
}
	
/*ROADING-------------------------------------------------------*/	
    .logo_wrapper{
		padding: 0;
	}
    .logo img{
	width:auto;
}	
	.logo::before{
	animation: logo 4s cubic-bezier(.4, 0, .2, 1) forwards;
	
	
}

}


@media screen and (max-width: 460px) {
	
	.news_window{
		padding: 20px 15px;
	}
	
	iframe.twitter-timeline-rendered {
width: 50px !important;
margin:0 auto;}
	
		.pref {
    vertical-align: top;
}
	.sapporo {
    vertical-align: top;
		padding-top: 10px;
}
	
	
}