@charset "UTF-8";

/* default */
html,
body,
input,
input::placeholder,
textarea,
textarea::placeholder,
select {
  font-family: "Pretendard";
  color: var(--black);
}
html,
body {
  font-weight: 300;
  word-break: keep-all;
}
.section {
  position: relative;
}
.width-wrap {
  position: relative;
  width: 100%;
  max-width: 1300px;
  padding: 100px 0;
  margin: 0 auto;
}
.width-wrap.min-small {
  max-width: 740px;
}
.width-wrap.small {
  max-width: 920px;
}
.width-wrap.no-bottom {
  padding: 100px 0 0;
}
.width-wrap.header {
  padding: 20px 0;
}

/* point */
.po-color {
  color: var(--point-color);
}
.color-white {
  color: #fff;
}
.color-gray {
  color: #777;
}
.color-black {
  color: var(--dark-gray);
}
.po-semibold {
  font-weight: 600;
}
.po-bold {
  font-weight: 700;
}
.po-line {
  position: relative;
  z-index: 1;
}
.po-line:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 14px;
  background: var(--point-color-op4);
  z-index: -1;
  bottom: -1px;
}
.po-line.small:before {
  height: 8px;
}
.po-line.light:before {
  background: var(--point-color-op25);
}
.po-dot {
  position: relative;
}
.po-dot:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 1000px;
  background: var(--point-color);
  right: 50%;
  transform: translateX(50%);
}
.po-dot.small:before {
  content: "";
  width: 3px;
  height: 3px;
}

/* btn */
.btn {
  width: fit-content;
  border-radius: 1000px;
  padding: 10px 20px;
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.48px;
  text-align: center;
  transition: all 0.25s linear;
}
.btn.large {
  width: 100%;
  box-sizing: border-box;
}
.btn.color {
  background: var(--point-color);
}
.btn.dark {
  background: var(--black);
}
.btn.hover:hover {
  background: var(--point-color);
}

/* square-btn */
.square-btn {
  padding: 16px 24px;
  border-radius: 10px;
  background: #f6f6f6;
  font-size: 16px;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: -0.48px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.square-btn.large {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
.square-btn.small {
  padding: 8px 12px;
  border-radius: 6px;
  line-height: normal;
  gap: 4px;
}
.square-btn.dark {
  background: #eee;
}
.square-btn.white {
  background: #fff;
}

/* label */
.label {
  width: fit-content;
  border-radius: 5px;
  padding: 4px 6px;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.39px;
}
.label.color {
  background: var(--point-color-op1);
  color: var(--point-color);
}
.label.light-dark {
  background: #f1f1f1;
  color: #888;
}
.label.mid-dark {
  background: #f1f1f1;
}
.label.dark {
  background: var(--dark-gray);
  color: #fff;
}

/* messege */
.messege {
  position: absolute;
  background: var(--dark-gray);
  color: #fff;
  padding: 5px 10px;
  border-radius: 1000px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.42px;
  animation: move 2s ease-in-out infinite;
  display: flex;
  justify-content: center;
}
.messege:before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-bottom: 7.5px solid var(--dark-gray);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.messege.dark-gray {
  background: #555;
}
.messege.top {
  top: -39px;
}
.messege.top:before {
  bottom: -6.5px;
  transform: rotate(180deg);
}
.messege.under {
  bottom: -50px;
}
.messege.under:before {
  top: -6.5px;
}

@keyframes move {
  0% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(2px);
  }
}

/* title-font */
h1 {
  font-size: 48px;
  line-height: 150%;
  letter-spacing: -1.44px;
}
h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -1.2px;
}
h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.72px;
}

/* responsive class */
.top1150 {
  display: block;
}
.top950 {
  display: block;
}
.top805 {
  display: block;
}
.top740 {
  display: block;
}
.top455 {
  display: block;
}
.under1380 {
  display: none;
}
.under1150 {
  display: none;
}
.under1030 {
  display: none;
}
.under950 {
  display: none;
}
.under805 {
  display: none;
}
.under790 {
  display: none;
}
.under740 {
  display: none;
}
.under685 {
  display: none;
}
.under580 {
  display: none;
}
.under525 {
  display: none;
}
.under500 {
  display: none;
}
.under455 {
  display: none;
}

/* fixed-btn */
#fixed {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 99;
  background: #fff;
  border-radius: 12px 0px 0px 12px;
  box-shadow: -2px 2px 30px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#fixed a {
  padding: 15px 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.42px;
  border-top: 1px solid #eee;
}
#fixed a:first-child {
  background: var(--point-color);
  border-top: none;
}
#fixed a:nth-child(n + 2) {
  color: #666;
  font-weight: 500;
}

/* popup */
#popup-wrap {
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  display: none;
  align-items: center;
  justify-content: center;
}
#popup-wrap.open {
  display: flex;
}
.popup {
  pointer-events: all;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
  max-width: 1300px;
}
.popup button {
  position: relative;
  height: 30px;
}
.popup div {
  width: 30px;
  height: 1.5px;
  background: var(--black);
  border-radius: 50px;
}
.popup button div:first-child {
  transform: translate(1px, 1px) rotate(46deg);
}
.popup button div:last-child {
  position: absolute;
  transform: translate(0px, 0px) rotate(-46deg);
}
.popup a {
}

/* ani */
#main01 .width-wrap .left-area,
#main03 .width-wrap .left-area {
  visibility: visible;
  -webkit-transform: translateX(-100px) scale(1);
  opacity: 0;
  transform: translateX(-100px) scale(1);
  opacity: 0;
}
#data .width-wrap .bottom-area img {
  visibility: visible;
  -webkit-transform: translateY(100px) scale(1);
  opacity: 0;
  transform: translateY(100px) scale(1);
  opacity: 0;
}

#main01 .width-wrap .left-area.ani,
#main03 .width-wrap .left-area.ani {
  visibility: visible;
  -webkit-transform: translateX(0) scale(1);
  opacity: 1;
  transform: translateX(0) scale(1);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s,
    opacity 1.4s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s;
}
#data .width-wrap .bottom-area img.ani {
  visibility: visible;
  -webkit-transform: translateY(0) scale(1);
  opacity: 1;
  transform: translateY(0) scale(1);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s,
    opacity 1.4s cubic-bezier(0.6, 0.2, 0.1, 1) 0.5s;
}

/* header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 999;
}
header .width-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .width-wrap > a img {
  width: 106.11px;
}
header .width-wrap .gnb {
  display: flex;
  align-items: center;
  gap: 48px;
}
header .width-wrap .gnb li {
  position: relative;
}
header .width-wrap .gnb li a {
  font-size: 18px;
  letter-spacing: -0.54px;
}
header .width-wrap .lnb {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* footer */
footer {
  background: var(--background);
}
footer .width-wrap {
  padding: 60px 0;
}
footer .width-wrap .top-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
footer .width-wrap .top-area .left-zone {
  display: flex;
  align-items: center;
  gap: 6px;
}
footer .width-wrap .top-area .left-zone span {
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.6px;
}
footer .width-wrap .top-area .left-zone p {
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.78px;
}
footer .width-wrap .top-area .right-zone img {
  width: 114.6px;
}
footer .width-wrap .terms-zone {
  display: flex;
  margin-bottom: 24px;
}
footer .width-wrap .terms-zone li a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
  color: #777;
}
footer .width-wrap .terms-zone li {
  margin-right: 8px;
}
footer .width-wrap .list-zone {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
footer .width-wrap .list-zone.last {
  margin-bottom: 24px;
}
footer .width-wrap .list-zone li,
footer .width-wrap .copy {
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.48px;
}
footer .width-wrap .list-zone li i {
  font-weight: 500;
}

/* responsive */
@media all and (max-width: 1380px) {
  .width-wrap,
  .popup {
    width: 90%;
  }

  .under1380 {
    display: block;
  }
}
@media all and (max-width: 1150px) {
  .top1150 {
    display: none;
  }
  .under1150 {
    display: block;
  }
}
@media all and (max-width: 1030px) {
  .under1030 {
    display: block;
  }
}
@media all and (max-width: 950px) {
  .width-wrap.header {
    padding: 18px 0;
  }

  .top950 {
    display: none;
  }
  .under950 {
    display: block;
  }

  .btn {
    padding: 8px 14px;
  }
  .mo-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6.6px;
    cursor: pointer;
  }
  .mo-btn div {
    height: 1.4px;
    border-radius: 1000px;
    background: var(--black);
    transition: all 0.25s linear;
  }
  .mo-btn div:nth-child(1),
  .mo-btn div:nth-child(2) {
    width: 28px;
  }
  .mo-btn div:nth-child(3) {
    width: 20px;
  }
  .mo-btn.open div:nth-child(1) {
    transform: translate(0px, 8px) rotate(45deg);
    width: 28px;
  }
  .mo-btn.open div:nth-child(2) {
    opacity: 0;
  }
  .mo-btn.open div:nth-child(3) {
    transform: translate(-2px, -7.3px) rotate(-45deg);
    width: 26.5px;
  }

  header .width-wrap > a img {
    width: 93.376px;
  }
  header .width-wrap .gnb {
    gap: 20px;
  }
  header .width-wrap .gnb .lnb-area {
    display: none;
  }
  header .width-wrap .lnb-area.open .lnb li a {
    color: #999;
  }
  header .width-wrap .lnb-area.open .lnb li.on a {
    color: var(--black);
    position: relative;
  }
  header .width-wrap .lnb-area.open .lnb li.on:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 1000px;
    background: var(--point-color);
    right: -11px;
    top: 0;
  }
  header .width-wrap .gnb .lnb-area.open {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: calc(-100% - 1px);
  }
  header .width-wrap .gnb .lnb-area.open::before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: #fff;
    left: -6%;
  }
  header .width-wrap .lnb-area.open .lnb {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 55px;
  }
  header .width-wrap .lnb-area.open .lnb .messege-zone {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  header .width-wrap .lnb-area.open .lnb .messege {
    animation: none;
    position: relative;
    bottom: 0;
  }
  header .width-wrap .lnb-area.open .lnb .messege:before {
    display: none;
  }

  footer .width-wrap .list-zone.first {
    flex-wrap: wrap;
  }
  footer .width-wrap .list-zone.last {
    flex-direction: column;
  }
}
@media all and (max-width: 805px) {
  .top805 {
    display: none;
  }
  .under805 {
    display: block;
  }
}
@media all and (max-width: 790px) {
  .under790 {
    display: block;
  }
}
@media all and (max-width: 768px) {
  h1 {
    font-size: 43px;
  }
  h2 {
    font-size: 35px;
  }

  footer .width-wrap .top-area {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 24px;
  }
}
@media all and (max-width: 740px) {
  .top740 {
    display: none;
  }
  .under740 {
    display: block;
  }
}
@media all and (max-width: 690px) {
  #popup-wrap.open {
    align-items: flex-start;
    padding-top: 90px;
    box-sizing: border-box;
  }
  header .width-wrap .gnb li:nth-child(3) img {
    width: 100%;
    margin-bottom: -3px;
  }
  .popup a img {
    width: 100%;
  }
}
@media all and (max-width: 685px) {
  .under685 {
    display: block;
  }
}
@media all and (max-width: 580px) {
  .under580 {
    display: block;
  }
}
@media all and (max-width: 525px) {
  h1,
  h2 {
    font-size: 30px;
  }

  .under525 {
    display: block;
  }
}
@media all and (max-width: 500px) {
  .under500 {
    display: block;
  }
}
@media all and (max-width: 455px) {
  .width-wrap {
    padding: 60px 0;
  }
  .width-wrap.no-bottom {
    padding: 60px 0 0;
  }

  .top455 {
    display: none;
  }
  .under455 {
    display: block;
  }

  footer .width-wrap .top-area {
    gap: 21px;
    margin-bottom: 12px;
  }
  footer .width-wrap .top-area .left-zone span {
    font-size: 16px;
    letter-spacing: -0.48px;
  }
  footer .width-wrap .top-area .left-zone p {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
  footer .width-wrap .top-area .right-zone img {
    width: 122.098px;
  }
  footer .width-wrap .terms-zone,
  footer .width-wrap .list-zone.last {
    margin-bottom: 21px;
  }
  footer .width-wrap .list-zone li {
    font-size: 14px;
    letter-spacing: -0.42px;
  }
  footer .width-wrap .copy {
    font-size: 12px;
    letter-spacing: -0.36px;
  }
}
@media all and (max-width: 400px) {
  h1 {
    font-size: 23px;
  }
}
@media all and (max-width: 375px) {
  h1 {
    font-size: 18px;
    letter-spacing: -0.54px;
  }
  h2 {
    letter-spacing: -0.9px;
  }

  .btn {
    font-size: 14px !important;
    letter-spacing: -0.42px !important;
  }

  header .width-wrap .gnb {
    gap: 10px;
  }
}
