/* ローディング画面用CSS */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loading-content {
  text-align: center;
  color: #fff;
}

.loading-percentage {
  font-size: 4rem;
  font-weight: bold;
}

/* ローディング画像のスタイル */
.loading-images {
  width: 100%;
  height: 100px;
}

.loading-images .svg {
  width: auto;
}

.loading-images .svg svg {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}

.loading-images .svg.show svg {
  opacity: 1;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .loading-percentage {
    font-size: 3rem;
  }
}
