/** Shopify CDN: Minification failed

Line 76:4 Expected "}" to go with "{"

**/
/**---------------------
ローディングアニメーション
----------------------**/

.loaded {
    opacity: 0;
    visibility: hidden;
}

#loading-wrapper {
    z-index: 1000;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: #fff;
  }
  
  .loading {
    position: absolute;
    width: 48px;
    height: 48px;
    left: 50%;
    top: 35%;
    /* transform: translateX(50%); */
    margin: -24px 0 0 -24px;
  }
  @media screen and (min-width:768px),print {
    .loading {
      top: 40%;
    }
  }
  .loading span {
    animation-name: loading;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    display: block;
    margin: 2px;
    width: 20px;
    height: 20px;
    float: left;
  }
  .loading span:nth-child(1) {
    animation-delay: 0s;
    background-color: #171F12;
  }
  .loading span:nth-child(2) {
    animation-delay: 0.25s;
    background-color: #C6BB90;
  }
  .loading span:nth-child(3) {
    clear: both;
    float: right;
    animation-delay: 0.5s;
    background-color: #4B6C4E;
  }
  .loading span:nth-child(4) {
    animation-delay: 0.75s;
    background-color: #4F3F00;
  }
  
  @keyframes loading {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    