/* loading
--------------------------------------- */
/* html,
body {
  width: 100%;
  height: 100%;
}
#anv40th {
  opacity: 0;
  -webkit-animation: fade 0.3s cubic-bezier(0.65, 0.05, 0.36, 1) 9s forwards;
  animation: fade 0.3s cubic-bezier(0.65, 0.05, 0.36, 1) 9s forwards;
}
#anv40th.skip {
  animation: none;
  opacity: 1;
}

#loading {
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
}
#loading.ready {
  -webkit-animation: fade 0.5s cubic-bezier(0.65, 0.05, 0.36, 1) forwards,
    fadeOutAll 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 6.7s forwards;
  animation: fade 0.5s cubic-bezier(0.65, 0.05, 0.36, 1) forwards,
    fadeOutAll 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 6.7s forwards;
  position: fixed;
}
#loading.skip {
  animation: none;
}

.l-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.l-bg {
  position: relative;
  width: 670px;
  height: 469px;
  background-size: 10%;
  background-position-y: center;
  background-position-x: center;
  transform-origin: 50% 50%;
    opacity: 0;
}
.ready .l-bg {
  -webkit-animation: fade 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 1s forwards,
    fadeOut 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 6.7s forwards;
  animation: fade 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 1s forwards,
    fadeOut 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 6.7s forwards;
}

.l-logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 670px;
  height: 469px;
  z-index: 1;
  opacity: 0;
}
.ready .l-logo {
  -webkit-animation: fade 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) 3.2s forwards;
  animation: fade 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) 3.2s forwards
}


.l-skip {
  padding-top: 40px;
}

.l-skip a {
  position: relative;
  bottom: 0;
  left: 50%;
  width: 160px;
  margin-left: -80px;
  padding: 8px 0;
  border: 2px solid #e2eeec;
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #fff;
  line-height: 1.6;
  text-align: center;
}

.l-skip a:before {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  content: "";
  border-right: #4b4b4b 2px solid;
  border-top: #4b4b4b 2px solid;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOutAll {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@media screen and (max-width: 800px) {
  .l-logo,
  .shadow,
  .l-bg {
    transform: none;
  }

  .l-bg,
  .l-wrap {
    width: 100%;
    height: 100%;
  }

  .ready .l-bg {
    -webkit-animation: fade 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 1s forwards;
    animation: fade 1.5s cubic-bezier(0.65, 0.05, 0.36, 1) 1s forwards;
  }
  .ready .l-logo , .ready .shadow {
    -webkit-animation: fade 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) 2.5s forwards;
    animation: fade 1.2s cubic-bezier(0.65, 0.05, 0.36, 1) 2.5s forwards;
  }

  .l-skip {
    padding: 0;
  }

  .l-skip a {
    position: absolute;
    bottom: 20%;
  }

  @keyframes seeyou {
    0% {
      opacity: 1;
    }

    100% {
      opacity: 0;
    }
  }
} */

body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
