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

body {
    animation: fadeIn 5s ease 0s 1 alternate;
    -webkit-animation: fadeIn 5s ease 0s 1 alternate;
}

@keyframes fadeIn {
    0% { opacity: 0}
    100% { ;opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


.start {
	background: #FFF url(/images/top/bk_image.jpg) repeat 0 0;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 90px;
}
