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

/* ローディング画面全体 */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-size: 100% 100%;
  padding: 20px;
  background-color: #fff;
}
.loading__innerWrap{
  width: 100%;
  height: 100%;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
  
}

.loading__logo {
  width: 200px; /* ロゴサイズは調整可能 */
  height: auto;
}

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

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

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

