@charset "UTF-8";



.g-wrapper:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.pace {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 2000;
	position: fixed;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 600px;
	height: 120px;
	overflow: hidden;
}

.pace:after {
	content: "";
	background: url(../img/cmn/logo.png) top center no-repeat;
	background-size: 252px auto;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.pace-inactive {
	display: none;
}

.pace-done .g-wrapper:before {
	opacity: 0;
	pointer-events: none;
}

.pace-done .q-top-mv .movie {
	display: block;
}

.pace-done .q-top-mv .catch {
	-webkit-animation: textleft 1s ease-in-out .5s forwards;
	animation: textleft 1s ease-in-out .5s forwards;
}

.pace-done .q-top-mv .text01 {
	-webkit-animation: textleft 1s ease-in-out 1.5s forwards;
	animation: textleft 1s ease-in-out 1.5s forwards;
}

.pace-running {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pace-running .g-wrapper {
	position: relative;
	z-index: 1;
}

.pace-progress {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	display: block;
	position: absolute;
	right: 100%;
	width: 100%;
	top: 72px;
	height: 4px;
	background: #007C36;
	z-index: 2;
}

.pace-activity:before {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	position: absolute;
	top: 73px;
	left: 0;
	background: #F2F2F2;
	z-index: -1;
}

.pace-activity:after {
	content: "";
	background: url(../img/cmn/loading.png) center center no-repeat;
	background-size: 100%;
	width: 60px;
	height: 16px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {

.pace {
	width: 80%;
	height: auto;
	padding-top: 25%;
	bottom: auto;
	top: 35%;
}

.pace:after {
	background-size: 60% auto;
}

.pace-progress {
	top: 60%;
}

.pace-activity:before {
	top: calc(60% + 1px);
}

}

@-webkit-keyframes textleft {

0% {
	left: -70px;
}

100% {
	left: 0;
	opacity: 1;
}

}

@keyframes textleft {

0% {
	left: -70px;
}

100% {
	left: 0;
	opacity: 1;
}

}

