@charset "UTF-8";
/* CSS Document */

/* ローディング画面全体 */
.loading {
  position: fixed;
  inset: 0;
  background: #fefff6;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loading__logo {
  width: 120px; /* ロゴサイズは調整可能 */
  height: auto;
  margin-bottom: 20px;
}

.loading__text {
  font-size: 1.2rem;
  color: #555;
}

/* ドットアニメーション */
.dot-animation::after {
  content: "";
  animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
  0%   { content: ""; }
  33%  { content: "."; }
  66%  { content: ".."; }
  100% { content: "..."; }
}