@charset "UTF-8";

/*@import "../../dist/css/vendor/normalize/normalize.css";*/
/*@import "../../common/css/snc-normalize.css";*/
@import "../../common/css/snc-reset.css";

html, body {
  font-family: 'Spoqa Han Sans Neo', 'Helvetica Neue', 'Apple SD Gothic Neo', 'Roboto', 'Noto Sans KR', sans-serif;
  font-size: 16px;
  font-weight: normal;
  height: 100%;
  line-height: 1.5;
  color: #000;
  word-break: keep-all;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* 공통 클래스 */
.ov-hidden {
  overflow: hidden !important;
}

.dp-none {
  display: none !important;
}

.dp-block {
  display: block !important;
}

.dp-inline-block {
  display: inline-block !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

/* 인트로 */
.intro-area {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  color: #000;
  background: #eee;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

.intro-area .text-area {
  width: 100%;
  margin-top: 10.2%;
  margin-bottom: 5.2%;
}

.intro-area .text-area h1 {
  font-size: 34px;
  line-height: 1.5;
}

.intro-area .text-area h1 img {
  width: 64px;
  vertical-align: middle;
  margin-right: 15px;
}

.intro-area .text-area p {
  margin-top: 55px;
  font-size: 24px;
}

.intro-area .sub {
  width: 100%;
  position: absolute;
  bottom: 187px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  opacity: 0;
  -webkit-animation-name: aniShow;
          animation-name: aniShow;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.intro-area .sub span {
  margin-top: 10px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 25px;
  line-height: 24px;
  padding: 0 16px;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
}

.intro-area .btn-area {
  margin: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: flex;
  margin-left: -2px;
}

.intro-area .btn-area [class^="btn-t"] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 2px;
}

.intro-area .btn-area .btn-t1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.intro-area .btn-area + button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  padding-bottom: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}

.intro-area .btn-area + button .icon-scroll {
  display: inline-block;
  position: absolute;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 17px;
  height: 12px;
  background: url(./img/common/icon_scroll.png) no-repeat;
  background-size: 100%;
}

/* iframe */
.iframe-area {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 30px;
  overflow: hidden;
}

/* 버튼 */
.btn-area {
  margin: 50px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.btn-area [class^="btn-t"] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* 버튼 */
.btn-t1,
.btn-t2 {
  position: relative;
  height: 50px;
  line-height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  padding: 0 20px;
  background: #fff;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.btn-t1 [class^="icon-"],
.btn-t2 [class^="icon-"] {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-t2 {
  background-color: #000;
  color: #fff;
  text-align: center;
}

.btn-t3 {
  border: 1px solid #000;
  border-radius: 25px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 45px;
  line-height: 45px;
  color: #000;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}

.btn-icon-close {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(./img/common/icon_close.png) no-repeat;
  background-size: 15px auto;
  background-position: center;
}

.btn-icon-close i {
  font-size: 0;
  color: transparent;
}

/* 버텀 */
.wrap > .bottom-area.fixed {
  background: #fff;
  position: fixed;
  left: 0;
  z-index: 10;
  -webkit-box-shadow: 0 2px 7px 7px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 7px 7px rgba(0, 0, 0, 0.05);
  -webkit-animation-name: moveTop;
          animation-name: moveTop;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes moveTop {
  from {
    bottom: -82px;
  }
  to {
    bottom: 0;
  }
}

@keyframes moveTop {
  from {
    bottom: -82px;
  }
  to {
    bottom: 0;
  }
}

@-webkit-keyframes aniShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes aniShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.ly-pop-dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 30;
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  pointer-events: none;
}

.ly-pop-dim.active {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 1;
  pointer-events: all;
}
