/*----------------------------------------
** スターリンの葬送狂騒曲
** 2018.8.3 fri
** style
----------------------------------------*/
img {
	max-width: 100%;
	vertical-align: top;
	margin: 0;
	padding: 0;
}
img[src$=".svg"] {
	max-width: 100%;
	width: 100%; /* IE対応 */
	height: auto;
}


#wrapper {
	width: 100%;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 87.5%;
}
section {
	width: 100%;
	position: relative;
}
.__inner {
	max-width: 1000px;
	width: 97%;
	margin: 0 auto;
	position: relative;
}

.__top {
	/*background: rgba(255,225,0,1.0);
	min-width: 100%;
	width: 100%;
	margin: 0 auto;
	padding-top: 51.5%;
	position: relative;
	overflow: hidden;*/
	width: 100%;
	max-width: 1240px;
	margin: 0 auto 60px;
	position: relative;
	background: url(../img/bg-symbol.png) 10px 60% no-repeat;
	background-size: 10% auto;
}
.__billing {
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 16.5%;
	background: url(../img/ph-btm.png) center bottom no-repeat;
	background-size: 100% auto;
}

/*-----------------------------------------
** header
-----------------------------------------*/
header {
	width: 75%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	/*position: absolute;
	top: 15%;
	right: 50%;
	transform: translateX(50%);
	z-index: 10;*/
	opacity: 1;
}
header h1 {
	margin-top: 0;
	margin-bottom: 0;
}
header h1 img {
	max-width: 100%;
	height: auto;
}

/*-----------------------------------------
** section.__top
-----------------------------------------*/
/*FILMBY*/
.__filmby {
	width: 63%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	padding-top: 30px;
}
/*CATCH 01*/
.__noconama {
	width: 20%;
	position: absolute;
	top: 15%;
	right: 0%;
	transition: 0.2s all;
}
.__noconama:hover {
	transform: scale(1.15);
}
/*TOMATO*/
.__tomato {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
/*LEAD*/
.__lead {
	width: 9.5%;
	position: absolute;
	top: 3%;
	left: 10px;
}
/*ROADSHOW*/
.__roadshow {
	width: 15%;
	position: absolute;
	top: 55%;
	right: 0%;
}
.__bd-dvd {
	width: 15%;
	position: absolute;
	top: 70%;
	left: 10px;
	transform: rotate(-15deg);
	transition: 0.2s all;
}
.__bd-dvd:hover {
	transform: rotate(-15deg) scale(1.05);
}

/*-----------------------------------------
** section.__billing
-----------------------------------------*/
/*TX-BILLING*/
.__tx-billing {
	width: 65%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.__catch-02 {
	width: 30%;
	position: absolute;
	bottom: 5%;
	right: 50%;
	transform: translateX(50%);
}

.__eirin {
	width: 30px;
	position: absolute;
	bottom: 5%;
	left: 15px;
}

.__btn,
.__btn:visited,
.__btn:active{
	background: rgba(0,0,0,1.0);
	color: rgba(245,182,74,1.0);
	border-radius: 2px;
	padding: 3px 17px 5px;
	font-family: 'Oswald', sans-serif;
	font-size: 28px;
	font-weight: 600;
	width: 200px;
	margin: 0 auto 50px;
	text-align: center;
	display: block;
	overflow: hidden;
	position: relative;
	transition: 0.2s;
}
.__btn:hover{
	background: rgba(0,0,0,1.0);
	color: rgba(231,35,59,1.0);
	width: 230px;
}
.__btn:focus {
	color: rgba(245,182,74,1.0);
}


/*-----------------------------------------
** btn effect
-----------------------------------------*/
/* rumble 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);}
}

/* ripple efect */
.ripple__effect {
	/* 値の変更はエフェクト形体・サイズ・スピードに影響する */
	width: 150px;
	height: 150px;
	/* 必須 */
	position: absolute;
	border-radius: 100%;
	pointer-events: none;
	transform: scale(0);
	opacity: 0;
}
/* エフェクト要素の色を指定 */
.ripple__effect.is-orange { background: #FFB700;}
.ripple__effect.is-blue   { background: #4aa3df;}
.ripple__effect.is-black  { background: #999;}
/* classが付与されたらアニメーションを実行 */
.ripple__effect.is-show {
	animation: ripple 0.75s ease-out;
}
@keyframes ripple {
	from {
		opacity: 1;
		background: rgba(255,255,25,,1.0);
	}
	to {
		transform: scale(2);
		opacity: 0;
		background: rgba(255,255,25,,1.0);
	}
}

@keyframes flash {
	0% {
		background: rgba(255,255,0,1.0);
	}
	20% {
		background: rgba(255,255,255,1.0);
	}
	100% {
		background: rgba(255,255,0,1.0);
	}
}




/*-----------------------------------------
**
** query
**
-----------------------------------------*/
@media screen and (min-width:981px) and (max-width:1080px){
	
}
@media screen and (min-width:801px) and (max-width:980px){
	
}

@media screen and (min-width:641px) and (max-width:800px){
	
}

@media screen and (max-width:640px) {
	.__top {
		background: url(../img/bg-symbol.png) 10px 6% no-repeat;
		background-size: 25% auto;
		min-width: 100%;
		width: 100%;
		margin: 0 auto;
		/*padding-top: 90vh;*/
		position: relative;
		overflow: hidden;
	}
	
	.__billing {
		width: 100%;
		position: relative;
		margin: 0 auto;
		padding-bottom: 17.5%;
		background: url(../img/ph-btm.png) center bottom no-repeat;
		background-size: 100% auto;
	}

	/*-----------------------------------------
	** header
	-----------------------------------------*/
	header {
		width: 95%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 30px;
		/*position: absolute;
		top: 15%;
		right: 50%;
		transform: translateX(50%);
		z-index: 10;*/
		opacity: 1;
	}
	header h1 {
		margin-top: 0;
		margin-bottom: 0;
	}
	header h1 img {
		max-width: 100%;
		height: auto;
	}

	/*-----------------------------------------
	** section.__top
	-----------------------------------------*/
	/*CANNES*/
	.__filmby {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 15px;
		padding-top: 15px;
	}
	/*CATCH 01*/
	.__noconama {
		width: 35%;
		position: absolute;
		top: inherit;
		bottom: 2%;
		right: 8%;
	}
	/*TOMATO*/
	.__tomato {
		width: 95%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 15px;
	}
	/*LEAD*/
	.__lead {
		width: 75%;
		margin: 0 auto 15px;
		position: inherit;
		top: inherit;
		left: inherit;
	}
	/*ROADSHOW*/
	.__roadshow {
		width: 30%;
		position: inherit;
		margin: 0 30% 20px auto;
		top: inherit;
		right: inherit;
		/*width: 26%;
		position: absolute;
		top: 82%;
		left: 8%;*/
	}
	/*.__bd-dvd {
		width: 35%;
		position: inherit;
		margin: 0 auto 15px;
		top: inherit;
		left: inherit;
		transform: rotate(0deg);
	}*/
	.__bd-dvd  {
		width: 26%;
		position: absolute;
		top: 82%;
		left: 8%;
		transform: rotate(0deg);
	}
	.__bd-dvd:hover {
		transform: rotate(0) scale(1);
	}

	/*-----------------------------------------
	** section.__billing
	-----------------------------------------*/
	/*TX-BILLING*/
	.__tx-billing {
		width: 95%;
		max-width: inherit;
		margin-left: auto;
		margin-right: auto;
	}
	.__catch-02 {
		width: 65%;
		position: absolute;
		bottom: 3%;
		right: 50%;
		transform: translateX(50%);
	}

	.__eirin {
		width: 20px;
		position: absolute;
		bottom: 3%;
		left: 10px;
	}
	
	.__btn,
	.__btn:visited,
	.__btn:active{
		background: rgba(0,0,0,1.0);
		color: rgba(245,182,74,1.0);
		border-radius: 2px;
		padding: 3px 17px 5px;
		font-family: 'Oswald', sans-serif;
		font-size: 20px;
		font-weight: 600;
		width: 100%;
		margin: 0 auto 5px;
		text-align: center;
		display: block;
		overflow: hidden;
		position: relative;
		transition: 0.2s;
	}
	.__btn:hover{
		background: rgba(0,0,0,1.0);
		color: rgba(231,35,59,1.0);
		width: 85%;
	}
	
}



/**************************************************/
/*  ADD 180612 GM  */
/**************************************************/

.cont1080{
	max-width: 1080px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.cont800{
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

h4{
	margin-bottom: 50px;
}

.ta_c{
	text-align: center;
}

.text15{
	font-size:15px;
	line-height: 1.8;
}

@media not screen, screen and (min-width:641px){
	
	.vsp{display:none;}
	
}

@media screen and (max-width:640px){
	
	.vpc{display:none;}
	
	.text15{
		font-size:13px;
	}

	h4{
		margin-bottom: 30px;
	}
	
}

/*  PRE */
/**************************************************/

.__pre{
	position: relative;
	background: #000000;
	padding-bottom:72px;
}


.__pre .pre_01{
	background: #fabf13;
	text-align: center;
	padding:30px 10px;
}

.__pre .pre_02{
	text-align: center;
	padding:30px 80px 12%;
	background: url(../img/bg01.jpg) left 50% bottom -2px no-repeat #bc1730;
	background-size:  cover;
}
	
@media screen and (max-width:640px){
	
	.__pre{
		padding-bottom:36px;
	}

	.__pre .pre_02{
		padding:30px 15px 15%;
	}


	.__pre .pre_02{
		background-size:  100% auto;
	}


}


/*  introduction */
/**************************************************/

.__introduction{
	position: relative;
	background: url(../img/bg02.jpg) center top repeat;
	padding:50px 15px 100px;
	overflow: hidden;
}

.__introduction .intro_02{
	position: absolute;
	bottom:20px;
	right:0;
	max-width: 70%;
}

.__introduction .intro_03{
	position: absolute;
	bottom:0;
	left:5%;
	margin: 0;
	max-width: 25%;
}

@media screen and (max-width:1380px){
	
	.__introduction{
		padding:50px 15px 250px;
	}
	
}

@media screen and (	max-width:800px){
	
	.__introduction h4{
		text-align:center;
	}
	
}

@media screen and (	max-width:64px){
	
	.__introduction{
		padding:50px 15px 60%;
	}
	
}

/*  story */
/**************************************************/

.__story{
	position: relative;
	background: #000000;
}

.fix_bg_1{
	position: relative;
	height: 75vh;
	background: url(../img/story_bg01.jpg) top center / cover no-repeat fixed;
	margin: 0;
}

.fix_bg_1 img{
	display: none;
}

.fix_bg_2{
	position: relative;
	transform: skewY(-5deg);
	transform-origin:top left;
	overflow: hidden;
}

.fix_bg_2 img{
	margin: -4.6% 0;
	width:100%;
	transform: skewY(5deg);
}

.black{
	position: relative;
	background: #000000;
	padding:0 15px;
	color: #FFFFFF;
}

.story_ttl{
	display: flex;
	justify-content:   flex-end;
	align-items:center;
	margin-bottom: 50px;
}

.story_ttl h4{
	margin: 0;
	margin-right: 40px;
}

.story_txt{
	text-align: center;
	margin: 0;
}

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

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

	.fix_bg_1{
		overflow: hidden;
		height: auto;
		background:none;
	}

	.fix_bg_1 img{
		display: block;
		margin: 0 -20%;
		max-width: 140%;
	}

	.fix_bg_2{
		position: relative;
		transform: skewY(-5deg);
		transform-origin:top left;
		overflow: hidden;
	}

	.fix_bg_2 img{
		margin: -4.6% 0;
		width:100%;
		transform: skewY(5deg);
	}

	.black{
		position: relative;
		background: #000000;
		padding:0 15px;
		color: #FFFFFF;
	}

	.story_ttl{
		display: block;
	}

	.story_ttl h4{
		margin-bottom: 30px;
		margin-right: 0;
		text-align:center;
	}

	.story_txt{
		text-align: center;
		margin: 0;
	}	

}


/*  gallery */
/**************************************************/


.gallery_slider div.slide{
	padding:30px 20px;
	text-align: center;
	background: center center / cover no-repeat;
	position:relative;
	outline: none;
}

.gallery_slider div.slide.slide01{
	background-image: url(../img/slide01.jpg);
}
.gallery_slider div.slide.slide02{
	background-image: url(../img/slide02.jpg);
}
.gallery_slider div.slide.slide03{
	background-image: url(../img/slide03.jpg);
}
.gallery_slider div.slide.slide04{
	background-image: url(../img/slide04.jpg);
}
.gallery_slider div.slide.slide05{
	background-image: url(../img/slide05.jpg);
}
.gallery_slider div.slide.slide06{
	background-image: url(../img/slide06.jpg);
}

.gallery_slider div.slide:before{
	content:"";
	background: #FFFFFF;
	top: 0;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: 0.5;
}

.gallery_slider div.slide img{
	margin: 0 auto;
	position: relative;
}


/*  cast */
/**************************************************/

.__cast{
	padding:50px 15px;
	position: relative;
	background: #000000;
}

ul.cast_list{







	overflow: hidden;
	list-style: none;
	padding:0;
}

.cast_list li{
	float: left;
	width:24%;
	margin-bottom: 5%;
	margin-right: 1.33%;
}

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

.cast_list li:nth-child(4n+1){
	clear: both;
}

.cast_list li a{
	color: inherit !important;
	display: block;
}

.cast_list li .img{
	text-align: center;
}

.cast_list li .name{
	background: #fabf13;
	font-size:16px;
	padding:1px 3px;
	letter-spacing: -0.1em;
	text-align: center;
}

.cast_list li .roll{
	color: #d70029;
	font-size:16px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 5px;
}

.cast_list li .roll2{
	color: #d70029;
	font-size:13px;
	text-align: center;
	margin: 0;
	font-weight: bold;
}

.fix_bg_3{
	position: relative;
	height: 75vh;
	background: url(../img/production_bg01.jpg) top center / cover no-repeat;
	margin: 0;
	overflow: hidden;
}

.fix_bg_3 img{
	display: none;
}


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

	.cast_list li{
		width:48%;
		margin-right: 4%;
		margin-bottom: 8%;
	}

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

	.cast_list li:nth-child(2n+1){
		clear: both;
	}

	.fix_bg_3{
		overflow:hidden;
		height: auto;
		background:none;
	}

	.fix_bg_3 img{
		display: block;
		max-width:150%;
		margin:-2px -25%;

	}	
	
}

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

	.cast_list li .img{
		padding:0 10%;
	}
	.cast_list li .name{
		font-size:14px;
	}

	.cast_list li .roll{
		font-size:14px;
	}

	.cast_list li .roll2{
		font-size:11px;
	}
	
}


/*  production */
/**************************************************/

.__production h4 img{
	padding:0 70px;	
	background: url( ../img/production_img03.png) bottom -10px right no-repeat;
}


.red{
	position: relative;
	background: #d80029;
	color: #fabf13;
	overflow: hidden;
	padding:50px 15px 80px;
}

.red ul{
	overflow: hidden;
	list-style: none;
	padding:0;
}

.red ul li{
	width:48%;
	float:left;
	margin-right: 4%;
	margin-bottom: 6%;
	padding: 1px;
}

.red ul li:nth-child(2n){
	margin-right: 0;
}

.red ul li:nth-child(2n+1){
	clear:both;
}

.red ul li a{
	color: inherit !important;
	box-sizing: border-box;
	border:solid;
	border-width:1px 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:10px 5px;
	min-height:80px;
	text-align: center;
	font-size:18px;
}

.obj{
	position: absolute;
	bottom:30px;
	right:50px;
	max-width: 60%;
}

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

	.red{
		padding:50px 15px 0px;
	}

	.obj{
		position: static;
		margin-left: auto;
		text-align: right;
		padding:30px 15px 30px;
	}
	
}


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

	.red ul li{
		width:auto;
		float:none;
		margin-right:0;
		margin-bottom: 6%;
	}

	.red ul li a{
		display:block;
		min-height:auto;
		font-size:16px;
	}

}


/*  director */
/**************************************************/

.__director{
	padding:50px 15px;
	background: url(../img/director_bg.jpg) center center / cover no-repeat #000000;
	color: #FFFFFF;
}

.director_wrap{
	margin-bottom: 80px;
}


.director_wrap .left{
	float:left;
	width:33%;
}

.director_wrap .right{
	float:right;
	width:63.75%;
	line-height: 1.8;
	font-size:14px;
	text-align: left;
}

.director_wrap .right h6{
	font-size:20px;
	color: #fabf13;
	line-height: 1.8;
}

.comic_wrap{
	color: #d80029;
	padding:20px 60px;
	border:solid 3px;
}

.comic_wrap .left{
	float:left;
	width:21.77%;
	margin-top: -50px;
}

.comic_wrap .right{
	float:right;
	width:65%;
	font-size:15px;
	text-align: left;
	font-weight: bold;
}

.comic_wrap .right span{
	font-size:11px;
}

.comic_wrap .right h6{
	font-weight: bold;
	font-size:20px;
}

.comic_wrap .right p{
	margin-bottom:0;
}

.comic_wrap p a {
	color: rgba(245,182,74,1.0);
	transition: 0.2s all;
}
.comic_wrap p a:hover {
	color: #d80029;
}


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

	.director_wrap .left{
		float:none;
		width:auto;
		text-align:center;
		padding:0 20% 5px;
	}

	.director_wrap .right{
		float:none;
		width:auto;
		font-size:12px;
	}

	.director_wrap .right h6{
		font-size:16px;
		text-align:center;
	}

	.comic_wrap{
		padding:30px 15px;
	}

	.comic_wrap .left{
		float:none;
		width:auto;
		margin-top: -80px;
		padding:0 30% 20px;
		text-align:center;
	}

	.comic_wrap .right{
		float:none;
		width:auto;
		font-size:12px;
	}

	.comic_wrap .right h6{
		font-size:20px;
	}

}

/*  modal_inner */
/**************************************************/


.modal_inner{
	display: none;
}


.modal_production{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background: url(../img/p_modal_bg.jpg) top center repeat;
}

.modal_production .img{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:50%;
	background: center center / cover no-repeat;
}

.modal_production .img img{
	display: none;
}

.modal_production .txt{
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:50%;
	margin: 50px 80px;
	font-size:15px;
	line-height: 1.8;
	overflow: auto;
}

.modal_production h6{
	color: #fabf13;
	margin-bottom: 50px;
	font-size:24px;
	line-height: 1.8;
}


.modal_cast{
	position:relative;
	min-height:400px;
	background:#d80029;
}

.modal_cast .img{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:50%;
	background: center center / 105% auto no-repeat;
}

.modal_cast .img img{
	display: none;
}

.modal_cast .txt{
	position:relative;
	width: 50%;
	margin-left: 50%;
	padding:30px;
	font-size:12px;
	line-height: 1.5;
}

.modal_cast h5{
	color: #fabf13;
	margin: 0 0 20px;
	font-size:17px;
	text-align: center;
}

.modal_cast h6{
	background: #fabf13;
	color: #222222;
	margin-bottom: 20px;
	font-size:14px;
	text-align: center;
	padding:5px 10px;
}


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

	.modal_production{
		position:relative;
	}

	.modal_production .img{
		position:relative;
		width:100%;
	}

	.modal_production .img img{
		display:block;
		width: 100%;
	}

	.modal_production .txt{
		position:relative;
		left:0;
		margin: 0;
		padding:30px 20px;
	}
	
	
	.modal_cast{
		min-height:0;
	}

	.modal_cast .img{
		position:relative;
		width:100%;
		overflow: hidden;
		background: none !important;
	}

	.modal_cast .img img{
		display:block;
		width: calc(100% + 4px);
		max-width: none;
		margin: -2px;
	}

	.modal_cast .txt{
		position:relative;
		width: auto;
		margin-left: 0;
		padding:20px;
	}

}


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

	.modal_production .txt{
		font-size:13px;
	}

	.modal_production h6{
		margin-bottom: 30px;
		font-size:18px;
	}

	.modal_production h4{
		text-align: center;
		padding:0 20%;
	}

	.modal_cast h5{
		font-size:16px;
	}

	.modal_cast h6{
		font-size:14px;
	}
	
	
}


a.cast_modal,
a.production_modal{
	transition: all 0.3s ease-in-out 0s;
}

a.cast_modal:hover,
a.production_modal:hover{
	opacity: 0.6;
}














/* palallax */


.parallax{
}

body:not(.mobile) .fadeup{
	transition: opacity 0.6s ease-in-out 0s,transform 0.8s ease-in-out 0s;
	opacity: 0;
	transform: translateY(50px);
}

body:not(.mobile) .fadeup.paraview{
	opacity:1;
	transform:translateY(0px);
}

body:not(.mobile) .fadeup2{
	transition: opacity 0.6s ease-in-out 0s,transform 0.8s ease-in-out 0s;
	opacity: 0;
	transform: translateY(100px);
}

body:not(.mobile) .fadeup2.paraview{
	opacity:1;
	transform:translateY(0px);
}

body:not(.mobile) .fadeleft{
	transition: opacity 0.6s ease-in-out 0s,transform 0.8s ease-in-out 0s;
	opacity: 0;
	transform: translateX(-50px);
}

body:not(.mobile) .fadeleft.paraview{
	opacity:1;
	transform:translateX(0px);
}

body:not(.mobile) .faderight{
	transition: opacity 0.6s ease-in-out 0s,transform 0.8s ease-in-out 0s;
	opacity: 0;
	transform: translateX(50px);
}

body:not(.mobile) .faderight.paraview{
	opacity:1;
	transform:translateX(0px);
}


body:not(.mobile) .paraimg{
	transition: all 0.8s ease-in-out 0s;
	overflow: hidden;
	transform: translateX(-100%);
}

body:not(.mobile) .paraimg>*{
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
	transition: all 0.8s ease-in-out 0s;
	overflow: hidden;
	transform: translateX(100%);
}

body:not(.mobile) .paraimg.paraview{
	transform:translateX(0px);
}

body:not(.mobile) .paraimg.paraview>*{
	transform:translateX(0px);
}



body:not(.mobile) .paraimg.rev{
	transform: translateX(100%);
}

body:not(.mobile) .paraimg.rev>*{
	transform: translateX(-100%);
}

body:not(.mobile) .paraimg.rev.paraview{
	transform:translateX(0px);
}

body:not(.mobile) .paraimg.rev.paraview>*{
	transform:translateX(0px);
}





/*-----------------------------------------
** #__pf デジタル配信
-----------------------------------------*/
/*.__bn-pf-pc {
	position: absolute;
	width: 9%;
	left: 30px;
	bottom: 20%;
}*/
.__bn-pf-pc {
	width: 14%;
	position: absolute;
	top: 72%;
	right: 4%;
}
#__pf {
	background: rgba(212,14,25,1.0);
}
#__pf .__inner {
	max-width: 1050px;
	width: 90%;
	margin: 0 auto;
	padding: 30px 0;
	color: rgba(255,255,255,1.0);
}
#__pf h2 {
	margin: 0 0 20px 0;
	text-align: center;
	font-weight: 700;
	font-family: 'Noto Sans', sans-serif;
}
#__pf ul {
	list-style: none;
	letter-spacing: -.4em;
	padding: 0;
	margin: 0;
}
#__pf ul li {
	display: inline-block;
	letter-spacing: normal;
	width: calc(100% / 8);
	border-radius: 3px;
	padding: 0.15%;
}
#__pf ul li a {
	display: block;
	background: rgba(255,255,255,1.0);
	border-radius: 3px;
	padding: 10px;
}
#__pf ul li img {
	max-width: 100%;
	transition: 0.2s linear;
}
#__pf ul li a:hover img {
	opacity: 0.6;
}
#__pf p {
	font-size: 75%;
	text-indent: -1em;
	padding-left: 1em;
	margin: 0;
}
#__pf .__50on {
	text-align: right;
	margin-bottom: 0.5em;
}

@media screen and (min-width:641px) and (max-width:800px){
	/*-----------------------------------------
	** #__pf デジタル配信
	-----------------------------------------*/
	.__bn-pf-pc {
		width: 14%;
		position: absolute;
		top: 72%;
		right: 4%;
	}
	#__pf .__inner {
		max-width: 90%;
		margin: 0 auto;
		padding: 20px 0;
		color: rgba(255,255,255,1.0);
	}
	#__pf h2 {
		margin: 0 0 20px 0;
		text-align: center;
	}
	#__pf ul {
		list-style: none;
		letter-spacing: -.4em;
		padding: 0;
		margin: 0;
	}
	#__pf ul li {
		display: inline-block;
		letter-spacing: normal;
		width: calc(100% / 4);
		border-radius: 3px;
		padding: 0.25%;
	}
	#__pf ul li a {
		display: block;
		background: rgba(255,255,255,1.0);
		border-radius: 3px;
		padding: 10px;
	}
	#__pf ul li img {
		max-width: 100%;
		transition: 0.2s linear;
	}
	#__pf ul li a:hover img {
		opacity: 0.6;
	}
	#__pf p {
		font-size: 75%;
	}
	#__pf .__50on {
		text-align: right;
	}
}

@media screen and (max-width:640px) {
	/*-----------------------------------------
	** #__pf デジタル配信
	-----------------------------------------*/
	.__bn-pf-pc {
		width: 25%;
		position: absolute;
		top: 82%;
		right: 4%;
	}
	#__pf .__inner {
		max-width: 95%;
		margin: 0 auto;
		padding: 15px 0;
		color: rgba(255,255,255,1.0);
	}
	#__pf h2 {
		margin: 0 0 20px 0;
		text-align: center;
	}
	#__pf ul {
		list-style: none;
		letter-spacing: -.4em;
		padding: 0;
		margin: 0;
	}
	#__pf ul li {
		display: inline-block;
		letter-spacing: normal;
		width: calc(100% / 2);
		border-radius: 3px;
		padding: 0.5%;
	}
	#__pf ul li a {
		display: block;
		background: rgba(255,255,255,1.0);
		border-radius: 3px;
		padding: 15px;
	}
	#__pf ul li img {
		max-width: 100%;
		transition: 0.2s linear;
	}
	#__pf ul li a:hover img {
		opacity: 0.6;
	}
	#__pf p {
		font-size: 70%;
	}
	#__pf .__50on {
		text-align: right;
	}
}