body {
	overflow: hidden;
}

body.loaded {
	overflow: visible;
}

body.loaded .page-loading {
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: ease 0.3s;
	transition-delay: 0.5s;
}

body.loaded .left-panel {
	opacity: 1;
	pointer-events: auto;
	transition-delay: 1.5s;
}

body.loaded .center-content {
	opacity: 1;
	pointer-events: auto;
	transition-delay: 2s;
}

body.loaded .right-panel {
	opacity: 1;
	pointer-events: auto;
	transition-delay: 1s;
}

.page-loading {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
}

.page-loading.loading .page-loading__image img {
	opacity: 1;
	scale: 1;
}

.page-loading__first {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 38px;
	width: 100%;
	height: 100%;
	position: relative;
}

.page-loading__text {
	width: 100%;
	margin: 0 auto;
	position: relative;
	animation-name: fadeIn;
	animation-duration: 2s;
	animation-fill-mode: both;
	animation-timing-function: ease;
}

.page-loading__text--01 {
	max-width: 150px;
}

.page-loading__text--02 {
	max-width: 240px;
}

.page-loading__image {
	width: 150px;
	aspect-ratio: 150/198;
	margin-top: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
	animation-name: fadeIn;
}

.page-loading__image.loaded {
	animation-duration: 2s;
	animation-fill-mode: both;
	animation-timing-function: ease;
}

.page-loading__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: 0.6s ease;
}

.page-loading__image img:nth-child(1) {
	transition-delay: 0.1s;
}

.page-loading__image img:nth-child(2) {
	transition-delay: 0.5s;
}

.page-loading__image img:nth-child(3) {
	transition-delay: 0.9s;
}

.page-loading__image img:nth-child(4) {
	transition-delay: 1.3s;
}

.page-loading__image img:nth-child(5) {
	transition-delay: 1.7s;
}

.page-loading__image img:nth-child(6) {
	transition-delay: 2.1s;
}

.page-loading__image img:nth-child(7) {
	transition-delay: 2.5s;
}

@media (min-width: 768px) {

.page-loading__first {
	gap: 37px;
}

.page-loading__text--01 {
	max-width: 250px;
}

.page-loading__text--02 {
	max-width: 393px;
}

.page-loading__image {
	width: 250px;
	aspect-ratio: 250/330;
	margin-top: 15px;
}

}

@media (max-width: 767px) {

body.loaded .center-content {
	transition-delay: 1s;
}

}

@keyframes fadeIn {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

