.__kv {
	width: 100%;
	padding-top: 58%;
	background: url(../img/bg.jpg) center top no-repeat;
	background-size: cover;
	position: relative;
}
/*-----------------------------------------
** header
-----------------------------------------*/
header {
}
header h1 {
	position:absolute;
	top: auto;
	bottom: 45%;
	left: 6%;
	right:auto;
	margin:auto;
	width: 37%;
}
header h1 img {
	position:absolute;
	top:0;
	bottom:0;
	margin:auto;
	width:100%;
	height:auto;
}

.images{
	width:100%;
	margin:0 auto;
	padding:0;
	position: absolute;
	top: 0;
	left: 0;
}
header img {
	width: 100%;
	height: auto;
}
header img.line_img{
	display:block;
}
header img.mov01
 {
	width: 100%;
	height: auto;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
	transition-delay:1s;
	transition-duration:1.5s;
}
header img.mov02{
	width: 100%;
	height: auto;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
	transition-duration:2s;
	transition-delay:1.5s;
}
header img.mov03{
	width: 100%;
	height: auto;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
	transition-duration:1.5s;
	transition-delay:2.5s;
}
.mov04{
	opacity:0;
	transition-duration:1.5s;
	transition-delay:2.5s;
}
/*-----------------------------------------
** __mainContents
-----------------------------------------*/
.__mainContents {
	position: relative;
	margin: 0;
	padding: 0;
}
.insta {
	position: absolute;
	top: auto;
	bottom: 7%;
	left: auto;
	right: 2%;
	margin: auto;
	text-align: center;
	width: 8%;
	font-size: 24px;
	color:#fff;
	max-width: 300px;
	z-index:1;
}
.insta:hover {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0)
  }
}
@keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0)
  }
}


.special-photo {
	position: absolute;
	top: auto;
	top: 3%;
	left: 2%;
	right: auto;
	margin: auto;
	text-align: center;
	width: 8%;
	font-size: 24px;
	color:#fff;
	/*max-width: 350px;*/
	z-index:1;
}
.disc {
	position: absolute;
	top: auto;
	bottom: 28%;
	right: 2%;
	left: auto;
	margin: auto;
	text-align: center;
	width: 14%;
	font-size: 24px;
	color:#fff;
	z-index:1;
}
.streaming {
	position: absolute;
	top: auto;
	bottom: 16%;
	right: 30%;
	left: auto;
	margin: auto;
	text-align: center;
	width: 11%;
	font-size: 24px;
	color:#fff;
	z-index:1;
}
.special-photo:hover,
.disc:hover,
.streaming:hover{
  -webkit-animation-name: swing;
  animation-name: swing;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg)
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg)
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg)
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg)
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg)
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg)
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg)
  }
}
.japan-premiere {
	position: absolute;
	top: auto;
	bottom: 13%;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	width: 25%;
	font-size: 24px;
	color:#fff;
	max-width: 500px;
}
.comment {
	position: absolute;
	top: auto;
	bottom: 10%;
	left: auto;
	right: 12%;
	margin: auto;
	text-align: center;
	width: 18%;
	font-size: 24px;
	color:#fff;
	max-width: 500px;
}

.japan-premiere:hover,
.comment:hover{
  -webkit-animation-name: shake;
  animation-name: shake;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }
}
.present {
	position: absolute;
	top: auto;
	top: 2%;
	left: 11%;
	right: auto;
	margin: auto;
	text-align: center;
	width: 12%;
	font-size: 24px;
	color:#fff;
	z-index:1;
}
.present:hover {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1)
  }
  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }
  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }
  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    -ms-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1)
  }
  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    -ms-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }
  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    -ms-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }
  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    -ms-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand
}

/*-----------------------------------------
** streaming-logo
-----------------------------------------*/
ul.streaming-logo{
	padding: 0;
	letter-spacing: -.4em;
	text-align: center;
	width: 90%;
	margin: 0 auto 0;
	font-size: 12px;
}
ul.streaming-logo li{
    margin: 0.8% 1% 0 0;
    padding: 0;
    width: 11.5%;
	display:inline-block;
	list-style:none;
	letter-spacing: normal;
}
ul.streaming-logo li a{
	margin:0;
	padding: 5px 0;
	width:100%;
	display:block;
	border:#ddd 1px solid;
	text-align:center;
	background:#fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}
ul.streaming-logo p{
	letter-spacing: normal;
}
/*-----------------------------------------
** introduction
-----------------------------------------*/
.__intro {
	background: url(../img/intro/bg.jpg) no-repeat top center;
	background-size: 100% auto;
}
.__intro .__cont {
	width: 34%;
	margin-left: 5%;
	padding: 15% 0;
	box-sizing: content-box;
}
.__intro > img.illust-1{
	position: absolute;
	top: 0;
	left: 0;
	width: 12%;
}
.__intro > img.illust-2{
	position: absolute;
	bottom: 1%;
	right: 0;
	width: 8%;
}
/*-----------------------------------------
** story
-----------------------------------------*/
.__story {
	padding-top: 55%;
	z-index: 2;
	margin-top: -100px;
}
.__story .__bg-1{
	position: absolute;
	top: 0;
}
.__story .__bg-2{
	position: absolute;
	bottom: 0;
}
.__story .__bg-1 img{
	position: absolute;
	top: 0;
	left: 0;
	width: 54%;
}
.__story .__bg-2 img{
	position: absolute;
	right: 0;
	width: 47%;
	bottom: 0;
}
.__story .__cont {
	position: absolute;
	width: 45%;
	left: 0;
	right: 0;
	top: auto;
	bottom: 5%;
	margin: auto;
}
.__story > img.illust-1{
	position: absolute;
	bottom: 15%;
	left: 0;
	width: 12%;
}

/*-----------------------------------------
** photos
-----------------------------------------*/
.__photos{
	padding: 50px 0;
	overflow: hidden;
}
.__photo-1,
.__photo-2{
	width: 110%;
	max-width: 110%;
	height: 200px;
	margin: 20px auto 0 -5%;
	padding: 0;
	transform: rotate(2deg);
}

.__photo-1{
	background: url(../img/photos/photo-1.jpg);
	-webkit-background-size: auto 200px;
	background-size: auto 200px;
	background-repeat-y: no-repeat;
	animation: bgscroll-1 50s linear infinite;
}
@-webkit-keyframes bgscroll-1 {
 0% {background-position: 0 0;}
 100% {background-position: 1950px 0;}
}
@keyframes bgscroll-1 {
 0% {background-position: 0 0;}
 100% {background-position: 1950px 0;}
}

.__photo-2{
	background: url(../img/photos/photo-2.jpg);
	-webkit-background-size: auto 200px;
	background-size: auto 200px;
	background-repeat-y: no-repeat;
	animation: bgscroll-2 50s linear infinite;
}
@-webkit-keyframes bgscroll-2 {
 0% {background-position: 0 0;}
 100% {background-position: -1950px 0;}
}
@keyframes bgscroll-2 {
 0% {background-position: 0 0;}
 100% {background-position: -1950px 0;}
}

/*-----------------------------------------
** production note
-----------------------------------------*/
.__note {
	background: url(../img/note/bg.jpg) top center;
	background-size: cover;
	margin-bottom: 0;
}
.__note ul{
	margin: 0 auto;
	padding-top: 25%;
	padding-bottom: 5%;
	width: 40%;
	list-style: none;
}
.__note ul li{
	margin-bottom: 5%;
}
#note #cboxClose {
	position: absolute;
	top: 20px;
	right: 20px;
	display: block;
	background: url(../img/close.png) center center no-repeat;
	width: 27px;
	height: 27px;
	text-indent: -9999px;
	transition: 0.2s all;
	z-index: 200;
}
/*-----------------------------------------
** photo
-----------------------------------------*/
.__photo{
	background: url(../img/photo.jpg) no-repeat top center;
	background-size: cover;
	background-attachment: fixed;
	height: 400px;
	margin-bottom: 0;
}
/*-----------------------------------------
** cast
-----------------------------------------*/
.__cast {
	background: url(../img/cast/bg.jpg) no-repeat top center;
	background-size: cover;
	background-attachment: fixed;
	margin-bottom: 0;
	padding: 75px 0 30px;
}

.__cast h2 {
	text-align: center;
	margin: 0;
}
.__cast h2 img {
	width: auto;
	height: 50px;
}
.__cast ul{
	list-style: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
}
.__cast ul li{
	margin-bottom: 8%;
}
.__cast ul li img{
    -moz-transition: -moz-transform 0.3s linear;
    -webkit-transition: -webkit-transform 0.3s linear;
    -o-transition: -o-transform 0.3s linear;
    -ms-transition: -ms-transform 0.3s linear;
    transition: transform 0.3s linear;
}
.__cast ul li:hover img{
    -webkit-transform: scale(1.02);  
    -moz-transform: scale(1.02);
}
.__cast .__left {
	width: 25%;
	margin-left: 8%;
	margin-right: 33%;
}
.__cast .__right {
	width: 25%;
	margin-right: 8%;
}

/*-----------------------------------------
** staff
-----------------------------------------*/
.__staff {
	background: url(../img/staff/bg.jpg) no-repeat top center;
	background-size: cover;
	background-attachment: fixed;
	margin-bottom: 0;
	padding: 75px 0;
}
.__staff h2 {
	text-align: center;
	margin: 0;
}
.__staff h2 img {
	width: auto;
	height: 50px;
}
.__staff ul{
	list-style: none;
	vertical-align: top;
	padding: 0;
	text-align: center;
	margin: 100px auto;
}
.__staff ul li{
	display: inline-block;
	width: 20%;
	margin: 0 10%;
}

/*-----------------------------------------
** outroduction
-----------------------------------------*/
.__outro {
	background: rgba(0,0,0,1.0);
}
.__outro .__comic{
	padding: 75px 0;
	text-align: center;
}
.__outro .__comic img{
	width: 50%;
}
.__outro .__outro-image{
	background: url(../img/outro/image-1.jpg) no-repeat bottom center;
	background-size: cover;
	background-attachment: fixed;
	height: 400px;
}
.__outro h2 {
	padding: 75px 0 0;
	text-align: center;
}
.__outro h2 img {
	width: 40%;
}

/*-----------------------------------------
** btn effect
-----------------------------------------*/
.__rumble:hover{
	animation: rumble 0.12s linear 2;
}

@keyframes rumble{
	0%	{transform:rotate(0deg)	translate(0,0);}
	12.5%	{transform:rotate(0.4deg)	translate(1px,-1px);}
	25%	{transform:rotate(0.8deg)	translate(0px,1px);}
	37.5%	{transform:rotate(0.4deg)	translate(-1px,0);}
	50%	{transform:rotate(0deg)	translate(0,0);}
	62.5%	{transform:rotate(-0.4deg)	translate(1px,0);}
	75%	{transform:rotate(-0.8deg)	translate(0,1px);}
	87.5%	{transform:rotate(-0.4deg)	translate(-1px,-1px);}
	100%	{transform:rotate(0deg)	translate(0,0);}
}
/*-----------------------------------------
** news
-----------------------------------------*/
#news{
	color: #fff;
	line-height: 1;
}
#news h1{
	color: #E85298;
	font-size: 40px;
	font-weight: 500;
    margin-bottom: 20px;
	margin: 30px 0 0 0;
	border-bottom: #999 solid 1px;
	padding-bottom:10px;
}
#news h1 > img{
	width: 125px;
}
#news h1 span{
	font-family: YakuHanJP, 'Noto Sans Japanese', 'Nunito', sans-serif;
	font-size: 13px;
	padding: 0 0 0 20px;
}
#news a {
    /*color: #E85298;*/
	color: #54d5af;
}
#news a:hover {
    color: #ee86a1;
}
#news dl {
	width: 100%;
	height:auto;
	margin: 0;
	padding: 30px 0;
	border-bottom: #999 dotted 1px;
}
#news dl:nth-last-of-type(1) {
	border-bottom: none;
}
#news dl dt {
	font-size: 18px;
	font-weight: 900;
	line-height: 1.5em;
	margin: 0;
	padding: 30px 0 20px 0;
    color: #E85298;
}
#news dl dt:first-child {
	padding: 0 0 20px 0;
}
#news dl dd {
	margin: 0;
}
#news dl dd:last-child {
	border-bottom: none;
}
#news dl dt span {
	font-size: 13px;
	font-weight: 200;
	display: block;
	padding: 0 0 10px 0;
	float: right;
	color: #fff;
}
#news img {
	width: auto;
	max-width: 100%;
	height:auto !important;
	vertical-align: top;
}
#news img.size_m {
	width: 49%;
}
#news img.size_s {
	width: 32%;
}
#news img.size_m:nth-child(n+2) {
	margin-left: 1%;
}
#news img.size_s:nth-child(n+2) {
	margin-left: 1%;
}
#news p{
	margin: 1em 0;
}
#news .button{
	display: none;
}

@media screen and (max-width:640px) {
	#news dl {height:auto;}
	#news dl dt span {
		float: none;
		clear: both;
		padding: 0;
    	color: #E85298;
	}
	#news img.size_s,
	#news img.size_m{
		max-width:100%;
		width: auto;
		margin: 0 0 1% 0 !important;
	}
	#news .button{
		display: block;
		margin: 30px auto 0;
		border: solid 2px #E85298;
		color: #E85298;
		text-align: center;
		width: 250px;
		border-radius: 3px;
		padding: 15px 0;
	}
	#news .button a{
		display: block;
		width: 100%;
		height: 100%;
		color: #E85298;
	}
	#news .button a img{
		width: 80px;
		display: block;
		margin: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
}