/* ▼　ロゴアニメ挑戦　▼ */

.loading-screen {
  position: fixed;
  inset: 0;
  background: #fff;  /* 背景も白で揃える */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.loading-screen.fadeout {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  width: 200px; /* ロゴの大きさは自由に調整 */
  height: auto;
}

/* ▲　ロゴアニメ挑戦　▲ */