/* Loading Block */
/* #loading {
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
} */


.spinner_box {
	position: absolute;
	top: 35vh;
	left: 50%;
}

.spinner {
	width: 100px;
	height: 100px;
	margin: 200px auto;
	background-color: #fff;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}


/* .spinner_text {
	position: relative;
	left: calc(50% - 2em);
	top: 50vh;
	color: #444;
	font-size: 2em;
	font-family: 'Fredoka One', cursive;
	letter-spacing: 0.05em;
} */

/* Loading Animation */
@keyframes sk-scaleout {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1.0);
		opacity: 0;
	}
}


.spinner,
.spinner:before,
.spinner:after {
	background: #70b954;
	-webkit-animation: load1 1s infinite ease-in-out;
	animation: load1 1s infinite ease-in-out;
	width: 1em;
	height: 4em;
	border-radius: 5px;
}

.spinner {
	color: #70b954;
	text-indent: -9999em;
	margin: 0px auto;
	position: relative;
	font-size: 11px;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

.spinner:before,
.spinner:after {
	position: absolute;
	top: 0;
	content: '';
}

.spinner:before {
	left: -1.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner:after {
	left: 1.5em;
}

@keyframes load1 {

	0%,
	80%,
	100% {
		box-shadow: 0 0;
		height: 4.5em;
	}

	40% {
		box-shadow: 0 -2em;
		height: 2.5em;
	}
}


/* Hide Loading Block */
.loaded {
	animation: 1s loaded ease forwards;
}


/*progressバーの記述*/
.progress {
	background: #fff;
	color: rgb(255, 255, 255);
	position: fixed;
	height: 100vh;
	width: 100%;
	z-index: 10001;
}

.progress_item_box {
	width: 12em;
	position: relative;
	top: calc(100% - 10em);
	margin: 0 auto;
}

.progress_bar_box {
	width: 12em;
	height: calc(1.5em + 10px);
	position: relative;
	border: 5px solid #70b954;
	background: #485a41;
	border-radius: 20px;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2) inset;
	top: 0;
}

.progress_bar {
	position: absolute;
	top: 0;
	width: 0%;
	height: 1.55em;
	background: #70b954;
	border-radius: 15px;
	transform: scale(1.02);
}

.progress_text_box {
	font-family: 'Fredoka One', cursive;
	font-size: 1.2em;
	text-align: center;
	position: absolute;
	top: 0.27em;
	left: 1.5em;
}

.progress_text {
	margin-left: 0.2em;
}

.progress_text::after {
	content: "%";
	font-size: 0.8em;
	margin-left: 2px;
}

.progress_complete {
	animation: 1s loaded ease forwards 1s;
}

@keyframes loaded {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		visibility: hidden;
	}
}