@charset "utf-8";

* {
	margin: 0;
	padding: 0
}
body {
	background-color: #000;
	width: 100%;
	height: 100%;
	-webkit-text-size-adjust: none;
}

.upper {
	text-transform: uppercase;
}
.nw {
	display: inline-block;
	white-space: nowrap;
}

.contents {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	color: #fff;
	text-align: center;
}
.contents p {
	line-height: 1;
}
.contents #link {
	transition: opacity .5s ease;
}
.contents #link.active {
	cursor: pointer;
}
.contents #link.active:hover {
	opacity: 0.7;
}
.contents #link img:nth-of-type(2) {
	position: relative;
	left: 0;
	margin-top: 20px;
	transition: left .5s ease;
}
.contents #link.active:hover img:nth-of-type(2) {
	left: 8px;
}

#copyright {
	position: absolute;
	left: 0;
	bottom: 15px;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	letter-spacing: 1px;
}

.main {
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0
}

@media screen and (max-width:767px) {
	.contents #link {
		padding-bottom: 45px;
		transition: none;
		opacity: 1 !important;
	}
	.contents #link img:nth-of-type(1) {
		width: 174px;
		height: auto;
	}
	.contents #link img:nth-of-type(2) {
		left: 0 !important;
		transition: none;
	}
	
	#copyright {
		font-size: 10px;
		white-space: normal;
	}
}
