/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 28 2025 | 00:26:42 */
/* ローディング背景 */
#loading {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  opacity: 1;
  visibility: visible;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* コンテンツ中央寄せ */
.loader-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loader-box img {
	margin-bottom: 20px;
	width: 150px;
}

/* ロゴに上下アニメーション */
.loader-logo {
  width: 120px;
  margin-bottom: 24px;
  animation: float 1s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* テキスト部分 */
.loader-text {
	display: flex;
	align-items: flex-end;
	gap: 3px;
	margin-bottom: 20px;
	line-height: 1;
}
.loader-text > span {
  font-family: "Arial Black", "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #4C2A52;
}

/* 点滅ドット */
.loader-dot.blink {
  width: 4px;
  height: 4px;
  background: #4C2A52;
  border-radius: 50%;
  animation: blink 1.4s infinite;
}

.loader-dot.blink:nth-child(2) { animation-delay: 0s; }
.loader-dot.blink:nth-child(3) { animation-delay: 0.2s; }
.loader-dot.blink:nth-child(4) { animation-delay: 0.4s; }

@keyframes blink {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* 下のスケールドットアニメーション */
.loader-dots {
  display: flex;
  gap: 20px;
}

.loader-dot.scale {
  width: 18px;
  height: 18px;
  background: #4C2A52;
  border-radius: 50%;
  animation: scaleDot 1.2s infinite ease-in-out;
}

.loader-dot.scale:nth-child(1) { animation-delay: 0s; }
.loader-dot.scale:nth-child(2) { animation-delay: 0.2s; }
.loader-dot.scale:nth-child(3) { animation-delay: 0.4s; }

@keyframes scaleDot {
  0%, 100% { transform: scale(0); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 1; }
}