@charset "utf-8";

/*!
SVG Spinners
URL: https://github.com/n3r4zzurr0/spinner-wrappers
License: MIT © Utkarsh Verma
License URI: https://opensource.org/licenses/mit-license.php
*/

/* ローディングスピナー */
.spinner-wrapper {
	position: fixed;
	z-index: 9980;
	top: 0;
	width: 100%;
	height: 100vh;
	transition: all 0.7s ease;
	background-color: var(--c-assort-150);
}

.spinner-wrapper.is-loaded {
	opacity: 0;
	visibility: hidden;
}

.spinner-wrapper>.svg-spinner {
	position: relative;
	width: 100%;
	height: 100%;
}

.svg-spinner>img {
	position: absolute;
	z-index: 9990;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 60px;
	height: 60px;
	/* anime : name | duration | easing | delay | count */
	/* animation: spinner-scaleout 1s ease-in-out 0s infinite; */
}

/* ロードアニメーション */
/* @keyframes spinner-scaleout {
	0% {
		transform: scale(0);
	}

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