/* ローディング画面の背景 */
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-image: linear-gradient(101deg, rgba(204, 229, 239, 1) 10%, rgba(222, 243, 247, 1) 40%, rgba(213, 238, 249, 1) 68%, rgba(232, 247, 254, 1) 90%);
  z-index: 9999;
  font-family: 'Cormorant Infant', serif;
  color: #5F5E5E;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 150%;
}
.loader-1 {
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 4px;
  border-color: #777778 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
  position: relative;
  animation-name: spin;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-display {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (min-width:900px) {
  .loading-display {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .loading-logo img {
    width: 200px;
  }
  .loader-1 {
    width: 60px;
    height: 60px;
  }
}
/* アニメーション */
.loading-blink {
  margin-top: 20px;
  text-align: center;
  font-family: 'Cormorant Infant', serif;
  color: #656565;
  font-weight: 400;
  -webkit-animation: loading-blink-animation 2000ms ease-out forwards infinite;
  animation: loading-blink-animation 2000ms ease-out forwards infinite;
}
@keyframes loading-blink-animation {
  from, to {
    opacity: 0;
  }
  30% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.7;
  }
}