.loading{
  position: fixed;
  top: 0;
  left: 0;
    padding:0;
    margin:0;
    width:100%;
    height:100%;
    background-color: rgba(102,102,102,0.7);
}
.anime_loading{
    width:200px;
    height:250px;
    position: relative;
    left:50%;
    top:57%;
    transform: translate(-50%, -50%);
}
.anime_loading_kagetaisaku{
    width:200px;
    height:250px;
    position: absolute;
    left:0;
    top:0;
}
.circle{
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: #ffffaa;
    left:15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle{
    0%{
        top:145px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top:85px;
    }
}
.circle:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.circle:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.shadow{
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:147px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow{
    0%{
        transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.shadow:nth-child(4){
    left: 45%;
    animation-delay: .2s
}
.shadow:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
}


.rogo_loading{
  margin-top: 0%;
  animation: rogo_loading .5s alternate infinite ease;
}

@keyframes rogo_loading{
    0%{
        top:60px;
/*         height:5px; */
/*         border-radius: 50px 50px 25px 25px; */
        transform: scaleY(1.1);
    }
    40%{
/*         height:20px; */
/*         border-radius: 50%; */
        transform: scaleY(1);
    }
    100%{
        top:0%;
    }
}
