@charset "UTF-8";
/* CSS Document */
html,
body{
	width: 100%;
	height: 100%;
}

body{
	padding:0;
	margin:0 auto;
}

#wrapper{
	position: relative;
	width:100%;
	height: 100%;
	margin:0;
}

.preparation{
	position: absolute;
	top:50%;
	left:50%;
	padding:0;
	margin:0;
	transform: translateX(-50%) translateY(-50%);
	width: 400px;
}

.preparation img{
	width: 100%;
	height: auto;
}

@media screen and (max-width: 600px) {
	.preparation{
		width: 70%; 
	}
	
	.preparation img{
		width: 100%;
		height: auto;
	}
}