#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* ローディング画面の背景色 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* 他の要素より前面に表示 */
    /* ... その他のスタイル ... */
}

#loading img {
    width: 414px; /* 画像の幅 */
    height: auto;
    animation: fadeInOut 2s ease-in-out infinite alternate; /* フェードイン・フェードアウトのアニメーション */
}

@keyframes fadeInOut {
    0% { opacity: 0.1; }
    100% { opacity: 1; }
}
.loading-spinner {
    display: none; /* スピナーを非表示 */
}

.loaded #loading {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
}
