/* ローディング画面 - 手書き風テキストアニメーション */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    position: relative;
}

/* テキスト表示 */
.loading-text {
    font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "MS P明朝", "MS PMincho", serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.1em;
    line-height: 1.8;
    font-weight: 400;
}

.loading-dots {
    display: inline-block;
    width: 3em;
    text-align: left;
}

/* レスポンシブデザイン - モバイル最適化 */
@media (max-width: 768px) {
    .loading-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
