﻿@charset 'utf-8';

body {
    /*font-family: "MS Gothic", "MS PGothic", sans-serif;*/
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.backScreen {
    background-color: rgba(57, 54, 54, 0.39);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.loadingSpinner {
    position: absolute;
    top: calc(50% - 12.5px);
    left: calc(50% - 12.5px);
    width: 50px;
    height: 50px;
    border-top: 8px solid aliceblue;
    border-right: 8px solid aliceblue;
    border-bottom: 8px solid aliceblue;
    border-left: 8px solid #8c618d;
    border-radius: 50%;
    animation-name: spin;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: 999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        border-left: 8px solid deeppink;
    }

    25% {
        transform: rotate(360deg);
        border-left: 8px solid gold;
    }

    50% {
        transform: rotate(720deg);
        border-left: 8px solid palegreen;
    }

    75% {
        transform: rotate(1080deg);
        border-left: 8px solid aqua;
    }

    100% {
        transform: rotate(1440deg);
        border-left: 8px solid deeppink;
    }
}

.compLogo {
    position: absolute;
    top: calc(50% + 35px);
    left: calc(50% - 25px);
    /*font-family: sans-serif;*/
    color: gray;
    letter-spacing: 0.1em;
    z-index: 9999;
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
