/* 全画面のローディングオーバーレイ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(150, 150, 150, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* ローディングコンテンツのスタイル */
.loading-content {
    text-align: center;
}

/* スピナーアイコンのスタイル */
.loading-spinner {
    font-size: 3em; /* アイコンのサイズ */
    color: #fff; /* アイコンの色 */
    margin-bottom: 1em; /* テキストとの間隔 */
}

/* ローディングテキストのスタイル */
.loading-text , .loading-status , .loadErrorText {
    font-size: 1.2em;
    color: #fff;
}

/* ローディングイメージのスタイル */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
.loading-float {
    animation: floatAnimation 3s ease-in-out infinite;
    width: 200px;
    margin-bottom: 1em; /* テキストとの間隔 */
}
