/* Unchanged */
@charset "UTF-8";
/****************************************************************************
　sp_slide.css
--------------------------------------------------------
   Author : Yasuo Tominaga @ penpengusa
   Group : http://www.penpengusa.com
   Creation date : 2017.09.07
   Last up date   : 2017.09.07
****************************************************************************/

#mBlock {
	position: relative;
}


@media screen and (max-width:768px) {
#mBlock .gatefold {
	width: 100%;
	height: 100%;
	z-index: 100;
}

#mBlock .gatefold::before,
#mBlock .gatefold::after {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 350px;
	background: url(../img/mblock_op.jpg) top center no-repeat;
	background-size: cover;
	-webkit-transition: all 4s;
	transition: all 4s;
	z-index: 100;
}

#mBlock .gatefold::before {
	left: 0;
	clip: rect(0px 50vw 100vh 0px);
}

#mBlock .gatefold::after {
	right: 0;
	clip: rect(0px 100vw 100vh 50vw);
}

.contents {
	padding: 0;
}


/* checkbox */
.check {
	display: none;
}

.switch {
	position: fixed;
	left: 0;
	right: 0;
	width: 300px;
	height: 140px;
	margin: auto;
	font-size: 80px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	text-shadow: 5px 5px 10px rgba(0,0,0,.8);
	color: #fff;
	-webkit-transition: all .5s;
	transition: all .5s;
	visibility: visible;
	opacity: 1;
	z-index: 2;
	display: none;
}

.switch.slide {
	top: 10%;
}
.switch.slide::before {
	content: 'slide';
	-webkit-transition: all .5s;
	transition: all .5s;
}


.check.slide:checked ~ .switch.slide::before,
.check.fade:checked ~ .switch.fade::before,
.check.push:checked ~ .switch.push::before,
.check.pull:checked ~ .switch.pull::before {
	content: 'close';
	opacity: .3;
}
.check.slide:checked ~ .switch.push,
.check.slide:checked ~ .switch.fade,
.check.slide:checked ~ .switch.pull,
.check.fade:checked ~ .switch.slide,
.check.fade:checked ~ .switch.push,
.check.fade:checked ~ .switch.pull,
.check.push:checked ~ .switch.slide,
.check.push:checked ~ .switch.fade,
.check.push:checked ~ .switch.pull,
.check.pull:checked ~ .switch.slide,
.check.pull:checked ~ .switch.fade,
.check.pull:checked ~ .switch.push {
	visibility: hidden;
	opacity: 0;
}

.check.slide:checked ~ .gatefold::before {
	-webkit-transform: translate3d(-1000px,0,0);
	transform: translate3d(-1000px,0,0);
}
.check.slide:checked ~ .gatefold::after {
	-webkit-transform: translate3d(1000px,0,0);
	transform: translate3d(1000px,0,0);
}

} /**** END media screen *****/