.loading {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: #000 url("/img/loading_bg.jpg") no-repeat center bottom/cover;
 /*  font-family: "Noto Serif KR", serif; */
  color: #fff;
  -webkit-animation: loading_fadeOut linear 1s forwards;
          animation: loading_fadeOut linear 1s forwards;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.loading_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

.loading h4 {
  font-size: 32px;
  margin: 2px 0;
  font-weight: 300;
}

.loading h4 span {
  position: relative;
  overflow: hidden;
  display: inline-block;
  line-height: 1.2;
  vertical-align: -11px;
}

.loading h4 span:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-animation: a-ltr-after 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
          animation: a-ltr-after 1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
}

.loading h4 span:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: a-ltr-before 1.5s cubic-bezier(0.77, 0, 0.18, 1) forwards;
          animation: a-ltr-before 1.5s cubic-bezier(0.77, 0, 0.18, 1) forwards;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.loading h4 b {
  font-weight: 600;
}

.loading h4:nth-child(1) span:after {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.loading h4:nth-child(2) span:after {
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

.loading p {
  position: relative;
  margin-bottom: 20px;
}

.loading p img {
  position: relative;
  z-index: 1;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  width: 100%;
}

.loading p::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  height: 10%;
  background: url("/img/loading_symbol.png") no-repeat center bottom;
  background-size: 100% auto;
  -webkit-animation: loading 2.5s ease 1 forwards;
          animation: loading 2.5s ease 1 forwards;
}


@media screen and (max-width: 639px) {
	.loading{

	  background: #000 url("/img/loading_bg.jpg") no-repeat left -370px bottom/cover;
	}
}


@-webkit-keyframes loading {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes loading {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@-webkit-keyframes a-ltr-after {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}

@keyframes a-ltr-after {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
  }
}

@-webkit-keyframes a-ltr-before {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@keyframes a-ltr-before {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@-webkit-keyframes loading_fadeOut {
  from {
    opacity: 1;
    pointer-events: all;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes loading_fadeOut {
  from {
    opacity: 1;
    pointer-events: all;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}
/*# sourceMappingURL=loading.css.map */