@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
* {
  font-family: "Noto Sans KR", "Montserrat", "Pretendard", system-ui, "Roboto", "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif !important;
  white-space: nowrap;
  font-weight: 400;
  line-height: 1.3;
}
*:focus-visible {
  outline: none;
}

label, input, button, select, img {
  font-family: "Noto Sans KR", "Montserrat", "Pretendard", system-ui, "Roboto", "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif !important;
}

.fa {
  font-family: "FontAwesome" !important;
}

blockquote, body, dd, dl, dt, fieldset, figure, h1, h2, h3, h4, h5, h6, hr, html, iframe, legend, li, ol, p, pre, textarea, ul {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400;
}

ul {
  list-style: none;
  padding-left: 0;
}

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

button, input, select {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  display: block;
  color: inherit;
}
button:focus-visible, input:focus-visible, select:focus-visible {
  outline: none;
  border-width: inherit;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
}

*, :after, :before {
  box-sizing: inherit;
}

img, video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

button, a {
  cursor: pointer;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus {
  box-shadow: none !important;
  border: none !important;
}

.fp-watermark {
  display: none !important;
}

header {
  position: fixed;
  width: 100%;
  height: 72px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  top: 0;
  z-index: 100;
}
header .wrap {
  padding: 0 26px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header .wrap .box-link {
  display: flex;
  gap: 58px;
}
header .wrap .box-link .link {
  font-size: 15px;
  font-weight: 400;
}
header .wrap .box-link .link.active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-position: under;
}
header .wrap .box-link .link:hover {
  text-decoration: underline;
  text-underline-position: under;
}
header .wrap .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
}
header .wrap .logo-white {
  opacity: 0;
}
header .wrap .btn-download {
  width: 130px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 22px;
  border: 1px solid #707070;
  font-size: 12px;
  font-weight: 700;
}

.header.mo {
  display: none;
}

@media screen and (max-width: 820px) {
  .header.pc {
    display: none;
  }
  .header.mo {
    display: block;
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
  }
  .header.mo .header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 100%;
  }
  .header.mo .img {
    width: 123.3333333333px;
    height: 24px;
    background: url(../images/logo-black.svg) no-repeat;
    background-size: contain;
    z-index: 9999;
    position: relative;
  }
  .header.mo .menuButton {
    position: relative;
    width: 26px;
    height: 26px;
    z-index: 9999;
  }
  .header.mo .menuButton div {
    background: #000;
    height: 2px;
    width: 26px;
    position: absolute;
  }
  .header.mo .menuButton div:nth-child(1) {
    top: 3px;
    transition: top 0.3s 0.2s, transform 0.2s;
  }
  .header.mo .menuButton div:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
  }
  .header.mo .menuButton div:nth-child(3) {
    bottom: 3px;
    transition: bottom 0.3s 0.2s, transform 0.2s;
  }
  .header.mo .menuButton.active div:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: top 0.3s, transform 0.2s 0.3s;
  }
  .header.mo .menuButton.active div:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  .header.mo .menuButton.active div:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    transition: bottom 0.3s, transform 0.2s 0.3s;
  }
  .header.mo .box-link {
    padding: 0 32px;
    overflow: hidden;
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9990;
    height: 100%;
    padding-top: 72px;
    width: 100%;
    transition: 0.3s ease;
  }
  .header.mo .box-link a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
  }
  .header.mo.green .img {
    background: url(../images/logo-green.svg);
    background-size: contain;
  }
  .header.mo.green .menuButton div {
    background: #16433B;
  }
  .header.mo.green.active .img {
    background: url(../images/logo-white.svg);
    background-size: contain;
  }
  .header.mo.green.active .menuButton div {
    background: #fff;
  }
  .header.mo.active .img {
    background: url(../images/logo-white.svg) no-repeat;
    background-size: contain;
  }
  .header.mo.active .menuButton div {
    background: #fff;
  }
}
.wrap {
  width: 100%;
  max-width: 1266px;
  margin: 0 auto;
}

.container {
  width: calc(100% - 52px);
  margin: 0 auto;
}/*# sourceMappingURL=common.css.map */