#loading {
    z-index: 99999;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
  }
  
  #vegering-loading {
    transform: translate(-22.5vw, -22.5vw);
    margin: 0 auto;
    width: 45vw;
    height: auto;
  }
  
  #logo-loading {
    position: absolute;
    transform: translate(-10vw, -12.2vw);
    margin: 0 auto;
    width: 20vw;
    height: calc(20vw * 1.22);
  }
  
  #symbol-loading {
    position: relative;
    top: 50%;
    left: 50%;
  }
  
  .loaded {
    display: none;
  }
  
  @media screen and (max-width:1399px) {
    #symbol-loading {
      position: relative;
      top: 40%;
    }
  }
  
  .cls-1,
  .cls-2,
  .cls-3 {
    fill: url(#gradient);
  }
  
  .cls-2,
  .cls-3 {
    opacity: 0.3;
  }
  
  #stop1 {
    animation: step1 0.6s ease-in-out infinite alternate;
  }
  
  #stop2 {
    animation: step2 0.6s ease-in-out infinite alternate;
  }
  
  @keyframes step1 {
    0% {
      /* 宇陀市章の青 */
      stop-color: #2e59a7;
    }
  
    100% {
      /* 宇陀市章の緑 */
      stop-color: #22ac38;
    }
  }
  
  @keyframes step2 {
    0% {
      stop-color: #22ac38;
    }
  
    100% {
      stop-color: #2e59a7;
    }
  }
  