html,
body {
  font-family: "Pretendard";
  letter-spacing: -0.04em;
  word-break: keep-all;
  color: var(--black);
}

/* area */
.section {
  width: 100%;
  position: relative;
  background: #fff;
}
.width-wrap {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
}
.margin {
  margin: 0 23px;
}

/* font */
h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
}
h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
}
h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

/* point */
.po-price {
  color: var(--po-price);
}
.po-purple {
  color: var(--po-purple);
}
.po-orange {
  color: var(--po-orange);
}
.po-bold {
  font-weight: 600;
}

/* btn */
.btn-wrap {
  display: flex;
  justify-content: center;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: var(--white);
  bottom: 24px;
  transition: all 0.25s linear;
}
.btn.text {
  padding: 10px 76px;
}
.btn.default {
  padding: 10px 129px;
  width: fit-content;
}
.btn.light-purple {
  background: var(--po-purple40);
}
.btn.purple {
  background: var(--po-purple);
}
.btn.orange {
  background: var(--po-orange);
}
.btn.inquery {
  position: fixed;
  background: var(--po-purple);
  padding: 12px 111px;
  z-index: 999;
}

/* badge */
.badge {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: var(--white);
  padding: 2px 5px;
  background: #f27c38;
  border-radius: 3px;
}

/* header */
header {
  position: fixed;
  width: 100%;
  background: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: all 0.25s linear;
  top: 0px;
}
header .width-wrap {
  padding: 0;
}
header .width-wrap .gnb {
  height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .width-wrap .gnb li:nth-child(1) a img {
  width: 28px;
}
header .width-wrap .gnb li:nth-child(3) a img {
  width: 24px;
}
header .width-wrap .gnb li a h4 {
  font-weight: 600;
  line-height: 16px;
}

/* footer */
footer {
  background: #fafafa;
}
footer .width-wrap {
  padding: 30px 0px 80px;
}
footer .width-wrap h5:first-child {
  margin-bottom: 5px;
}
footer .width-wrap h5 {
  text-align: center;
  color: #767676;
}

/* responsive */
@media all and (max-width: 600px) {
  .width-wrap {
    width: 90%;
  }
  .margin {
    margin: 0;
  }

  .btn.text,
  .btn.default {
    padding: 7px 0;
    width: 100%;
  }
  .btn.inquery {
    padding: 12px 0;
    width: 90%;
  }
}
@media all and (max-width: 375px) {
  h3 {
    font-size: 21px;
  }
  h4 {
    font-size: 17px;
  }
  h5 {
    font-size: 14px;
  }
}
