@charset "UTF-8";

article .contents {
	position: relative;
}

#loadingArea {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: rgb(180, 180, 180, .5);
	z-index: 2;
}
#loadingArea .loader-wrap {
	position: fixed;
	width: 100%;
	height: 100vh;
	margin: 0 auto;
}
#loadingArea .loader,
#loadingArea .loader:before,
#loadingArea .loader:after {
	/*border-radius: 50%;*/
	width: 2.5em;
	height: 2.5em;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: load7 1.8s infinite ease-in-out;
	animation: load7 1.8s infinite ease-in-out;
}
#loadingArea .loader {
	color: rgb(100, 100, 100, .5);
	font-size: 10px;
	margin: calc(50vh - 2.5em - 10px - 83px) auto;
	position: relative;
	text-indent: -9999em;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
#loadingArea .loader:before,
#loadingArea .loader:after {
	content: '';
	position: absolute;
	top: 0;
}
#loadingArea .loader:before {
	left: -3.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
#loadingArea .loader:after {
	left: 3.5em;
}
@-webkit-keyframes load7 {
	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em;
	}
	40% {
		box-shadow: 0 2.5em 0 0;
	}
}
@keyframes load7 {
	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em;
	}
	40% {
		box-shadow: 0 2.5em 0 0;
	}
}
