@charset "UTF-8";
/* CSS Document */
/* Loader背景 */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

/* 非表示 */
#loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* 中央 */
.loader-inner {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ロゴ */
.loader-logo {
  width: 90px;
  height: auto;
  position: absolute;
  z-index: 2;

  /* ふわっと */
  animation: pulse 2s ease-in-out infinite;
}

/* 回転 */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ロゴの呼吸 */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}