@charset "UTF-8";
/* mixin */
/* media-query */
/* root */
:root {
  --vh: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 10px;
  overflow-x: hidden;
}

body {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.61;
  letter-spacing: -0.075em;
  color: #000;
  word-break: keep-all;
  overflow-x: hidden;
}

body.is-pc .ko {
  font-size: 1.8rem;
}

a {
  text-decoration: none;
  color: #000;
}

a:active, a:hover, a:visited, a:focus {
  text-decoration: none;
  color: #000;
}

body, div, section, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, figure, legend, textarea, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.27;
  font-weight: 900;
  letter-spacing: -0.075em;
  font-size: 3rem;
}

em, i, address {
  font-style: normal;
}

ul, li, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

textarea {
  resize: none;
}

img {
  max-width: 100%;
  font-size: 0;
  vertical-align: top;
  line-height: 0;
}

b, strong {
  color: inherit;
  font-weight: 800;
}

/* font-size */
html {
  font-size: 10px;
} /* 브라우저기본 16px 1rem 62.5%(10px) 환산 */
@media (max-width: 1279px) {
  html {
    font-size: 9px !important;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 8px !important;
  }
}
/* text-balance */
@media (max-width: 500px) {
  body > * {
    text-wrap: balance;
  }
  p {
    word-break: keep-all !important;
  }
}
/* color */
.point-color {
  color: #e42f58;
}

.sound-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.maxwidth {
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
}

.br-keep {
  display: block !important;
}

@media (max-width: 991px) {
  .br991 {
    display: none;
  }
}
@media (max-width: 700px) {
  .br700 {
    display: none;
  }
}
/* keyframes */
@keyframes bouncePop {
  0% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-28px) scale(0.98, 1.02);
  } /* 위로 튕김 */
  60% {
    transform: translateY(0) scale(1.06, 0.94);
  } /* 접지 찌그러짐 */
  80% {
    transform: translateY(-15px) scale(1, 1);
  } /* 잔반발 */
  100% {
    transform: translateY(0) scale(1, 1);
  } /* 제자리 고정 */
}
@keyframes bounceIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* animation */
.ani-title {
  opacity: 0;
  transform: scale(1.3);
  transition: all 0.65s ease-in-out;
}

.ani-fade {
  opacity: 0;
  transition: all 0.65s ease-in-out;
}

.ani-fadeUp {
  opacity: 0;
  transition: all 0.65s ease-in-out;
  transform: translateY(50px);
}

.animate .ani-title {
  opacity: 1;
  transform: scale(1);
}

.animate .ani-fade {
  opacity: 1;
}

.animate .ani-fadeUp {
  opacity: 1;
  transform: translateY(0px);
}

.animate .ani-bouncePop {
  animation: bouncePop 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
  will-change: transform;
}/*# sourceMappingURL=common.css.map */