/* cssに別途以下を記載するか、ファイル名を変更してしかるべき記述を追加した上でインクルードさせてください */
/*--- loader ---*/
#loader-bg {
    position: fixed;
    width: 100%;
    height: 100% !important;
    top: 0px;
    left: 0px;
    background-color: #fff;
    z-index: 7000;
}

#loader {
    position: relative;
    width: 100%;
    top: calc(50% - 65px);
    height: 30px;
    text-align: center;
    color: #fff;
    z-index: 2000;
    display: none;
    padding: 0 3%;
}

#loader img {
    height: auto;
    max-width:100px;
    width: 100%;
}

.loader_ani {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 11em;
    height: 11em;
    border-radius: 50%;
    background: #ffffff;
    background: -moz-linear-gradient(left, #191919 10%, rgba(0, 132, 154, 0) 42%);
    background: -webkit-linear-gradient(left, #191919 10%, rgba(0, 132, 154, 0) 42%);
    background: -o-linear-gradient(left, #191919 10%, rgba(0, 132, 154, 0) 42%);
    background: -ms-linear-gradient(left, #191919 10%, rgba(0, 132, 154, 0) 42%);
    background: linear-gradient(to right, #191919 10%, rgba(0, 132, 154, 0) 42%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.loader_ani:before {
    width: 50%;
    height: 50%;
    background: #191919;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.loader_ani:after {
    background: #FFF;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/*-- loading bar --*/
#loadingBar {
    width: 100%;
    height: 1px;
    margin: 30px 0 0;
}

@-webkit-keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}