@charset "UTF-8";

/*ローディングここから*/
#loader-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;

background: rgb(255,255,255);
background: linear-gradient(135deg, rgba(220,236,255,1) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 90%, rgba(220,236,255,1) 100%);

    z-index: 1000;
 }
 
#loading{
    position: relative;
    width: 100%;
    height: 100%;
  }
#loading svg {
  position: absolute;
  margin: auto;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 700px) {
  #loading svg {
    left:11.5%;
  }
}

/*svgアニメーションここから*/
path {
  fill-opacity: 0;
  transition: fill-opacity 0.5s;
}
.done .st0{fill:#F94362; fill-opacity: 1;}
.done .st1{fill:#19417B; fill-opacity: 1;}
.done .st2{fill:#000; fill-opacity: 1;}
.done path {
  stroke: none;
}
.dnone{
  display: none !important;
}