body{
	margin:0;
}
.start {
	background:#fff; 
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
	opacity: 1;
	visibility: visible;
}
.start p {
	position: fixed;
	left: 40%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
}

.start.is-active {
	opacity: 0;
	visibility: hidden;
}

/* スマホレスポンシブ
--------------------------------------------------------------------*/
@media screen and (max-width: 599px) {
	.start img {
		max-width: 120%;
	}
}

