@charset "utf-8";
/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
トラステック標準WEBサイト PHP + BootStrap
新潟県ゴルフ連盟　カスタム対応
	ver.2025.08.22.n-golfrenmei.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: 13.5em;
    height: auto;
    margin-bottom: 1em;
}
/*.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: #00633C;
    font-weight: 600;
    font-size: 1.2em;
    animation: animation-loading-5 1s infinite;
}*/
@media (max-width: 767px) {
	.logo-img img{
		/*width: 100px;*/
	}
/*	.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);
    }
}
*/


/* HTML: <div class="loader"></div> */
/*.loader {
	width: fit-content;
	font-family: "futura-pt", sans-serif, system-ui;
	color: #00633C;
	font-weight: 600;
	font-size: 30px;
	clip-path: inset(0 100% 0 0);
	animation: l5 2s steps(11) infinite;
}
.loader:before {
  content:"Loading..."
}
@keyframes l5 {to{clip-path: inset(0 -1ch 0 0)}}


/* HTML: <div class="loader"></div> */
.loader {
	width: fit-content;
	padding-bottom: 5px;
	font-weight: bold;
	font-family: "futura-pt", sans-serif, system-ui;
	font-size: 1em;
	overflow: hidden;
	color: #0000;
	text-shadow: 0 0 0 #00633C,24ch 0 0 #00633C;
	background: linear-gradient(#00633C 0 0) bottom left/0% 2px no-repeat;
	animation: l14 1.5s infinite;
}
.loader:before {
  content:"NIIGATA GOLF ASSOCIATION"
}
@keyframes l14 {
    80%  {text-shadow:    0  0 0 #00633C,24ch 0 0 #00633C;background-size:100% 2px}
    100% {text-shadow: -24ch 0 0 #00633C,0    0 0 #00633C}
}