@charset "utf-8";
/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
トラステック標準WEBサイト PHP + BootStrap
宮川動物病院　カスタム対応
	ver.2025.07.09.miyagawa-ah.com
	ローディングアニメーション　スタイルシート
────────────────────────────────────────
FileName:		/resources/css/loading.css
Editor:			TRUSTEC
Description:	ローディングアニメーションのcss
────────────────────────────────────────
2025/05/30:		サンプル開発開始。
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/



/* :::::  [SECTION : MAIN] ::::: */
:root {



}


/* :::::  [SECTION : PRIVACYPOLICY] ::::: */
/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1050;
    background-color: #ffffff;
	text-align:center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.setBlur{
	opacity: 0 !important;
	transition: all 1s !important;
}

/* Loading画像中央配置　*/
#splash_logo {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-img{
    object-fit: contain;
    object-position: center;
    display: block;
}
.logo-img img{
    width: 80px;
    height: auto;
    margin-bottom: .5em;
}
.loading-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "futura-pt", sans-serif, system-ui;
}
.loading-5 span {
    display: inline-block;
    color: #6a9e5e;
    font-weight: 600;
    font-size: 1.2em;
    animation: animation-loading-5 1s infinite;
}
@media (max-width: 767px) {
	.logo-img img{
		width: 60px;
	}
	.loading-5 span {
		font-size: 1em;
	}
}

.loading-5 span:nth-of-type(2) {
    animation-delay: .1s;
}

.loading-5 span:nth-of-type(3) {
    animation-delay: .2s;
}

.loading-5 span:nth-of-type(4) {
    animation-delay: .3s;
}

.loading-5 span:nth-of-type(5) {
    animation-delay: .4s;
}

.loading-5 span:nth-of-type(6) {
    animation-delay: .5s;
}

.loading-5 span:nth-of-type(7) {
    animation-delay: .6s;
}

.loading-5 span:nth-of-type(8) {
    animation-delay: .7s;
}

.loading-5 span:nth-of-type(9) {
    animation-delay: .8s;
}

.loading-5 span:nth-of-type(10) {
    animation-delay: .9s;
}

@keyframes animation-loading-5 {
    50% {
        transform: translateY(10px);
    }
}