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

body {
    background: #e2e3de;
}

/* gatefold */
.gatefold {
	width: 100%;
	height: 100%;
}

.gatefold::before,
.gatefold::after {
	content: '';
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	background: url("../img/opening/tobira.png") top center no-repeat;
	background-size: cover;
	-webkit-transition: all 1s;
	transition: all 1s;
	z-index: 1;
}

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

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

/* contents */
.contents {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0;
	text-align: center;
}

.contents {
	padding: 0;
}

/*.contents ul {
    max-width: 1200px!important;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

.contents ul li:nth-last-child(1)  ,.contents ul li:nth-last-child(3)  {
    width: 25%;
}

.contents ul li:nth-last-child(2)  {
    width: 50%;
}

.contents ul li img {
    width: 100%;
    height: auto;
}*/

.contents ul {
    display: table;
    height: 100vh;
}

.contents ul li {
    display: table-cell;
    height: 100vh;
}

.contents ul li:nth-child(1)  ,.contents ul li:nth-child(3)  {
    width: 25%;
    vertical-align: middle;
}

.contents ul li:nth-child(2)  {
    width: 50%;
    vertical-align: bottom;
}

.contents ul li img {
    width: 100%;
    height: auto;
}

@media only screen and (max-width:800px){
    .contents ul li:nth-child(1) ,.contents ul li:nth-child(2),.contents ul li:nth-child(3)  {
        vertical-align: middle;
    }
}


.btn__box {
	text-align: center;
}

.btn__box a {
	display: inline-block;
	width: 250px;
	height: 50px;
	margin: 0 auto;
	line-height: 50px;
	font-size: 13px;
	color: #000;
	border: 1px solid #000;
}

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

.switch {
	position: fixed;
	left: 0;
	right: 0;
	width: auto;
	height: auto;
	margin: auto;
    font-family: 'Dela Gothic One', cursive;
    font-weight: 400;
	font-size: 6.0rem;
	text-align: center;
	cursor: pointer;
	text-shadow: 5px 5px 10px rgba(255,255,255,.8);
	color: #111;
	-webkit-transition: all .5s;
	transition: all .5s;
	visibility: visible;
	opacity: 1;
	z-index: 2;
}



.switch.fade {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.switch.fade::before {
	content: "よぅ見つけてきんさったの\Aいらっしゃいませ";
    white-space: pre;
	-webkit-transition: all .5s;
	transition: all .5s;
}

@media only screen and (max-width:768px){
    .switch {
        font-size: 3.0rem;
    }
    
    .switch.fade::before {
        white-space: normal;
    }
}


.check.fade:checked ~ .switch.fade::before {
	/*content: 'close';
	opacity: .3;*/
    display: none;
}



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

