/* ローディング画面の背景 */
.loading {
  top: 0px;
  left: 0px;
  background: #330101;
  z-index: 9999;
  font-family: 'Cormorant Infant', serif;
  color: #c5b899;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2px;
    line-height: 150%;
     position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: auto !important;
    height: auto !important;
     margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  overflow: hidden !important;
}

.loader-1 {
    margin: 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 4px;
  border-color: #c5b899 rgba(255,255,255,0.18) rgba(255,255,255,0.18);
  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%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width:900px) {
  .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: #c5b899;
  font-weight: 400;
  -webkit-animation: loading-blink-animation 1500ms ease-out forwards infinite;
  animation: loading-blink-animation 1500ms ease-out forwards infinite;
}
@keyframes loading-blink-animation {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
}