@charset "UTF-8";

html,
body {
  font-family: "Pretendard";
  line-height: 160%;
  font-weight: 400;
  color: var(--black);
  word-break: keep-all;
}
section {
  position: relative;
}
.width-wrap {
  position: relative;
  max-width: 1320px;
  width: 100%;
  padding: var(--padding120);
  margin: 0 auto;
}
.width-wrap.mid {
  max-width: 1280px;
  width: 100%;
}
.width-wrap.small {
  max-width: 920px;
  width: 100%;
}

section.main .width-wrap {
  padding: var(--paddingMain);
}

/* responsive class */
.top850,
.top795,
.top500 {
  display: block;
}
.under850,
.under795,
.under500 {
  display: none;
}

/* btn */
.btn {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
}
.btn.po {
  background: var(--po);
  color: var(--white);
}
.btn.gray {
  background: #f3f3f3;
  color: var(--black);
}
.btn.wht {
  background: #fff;
  color: var(--black);
}
.btn.border {
  border: 1px solid var(--black);
  color: var(--black);
}
.btn.border.on {
  background: var(--black);
  color: var(--white);
}
.btn.square {
  border-radius: 8px;
}
.btn.round {
  border-radius: 1000px;
}
.btn.large {
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: -0.4px;
  padding: 18px 0;
  width: 100%;
}
.btn.small {
  padding: 10px 28px;
  width: fit-content;
}

.js-clickPopup .img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.js-clickPopup .img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.25s linear;
}
.js-clickPopup .img:after {
  content: url("../img/icon/icon_zoom_in.svg");
  position: absolute;
  opacity: 0;
  transition: all 0.25s linear;
}
.js-clickPopup:hover .img:after,
.js-clickPopup:hover .img:before {
  opacity: 1;
}

/* tab-area */
.tab-area {
  display: flex;
}
.tab-area button,
.tab-area a {
  padding: 20px 0;
  border: 1.5px solid #fff;
  border-bottom: 1.5px solid #eee;
  color: var(--gray);
  flex: 1;
  font-weight: 500;
}
.tab-area button.on,
.tab-area a.on {
  border: 1.5px solid var(--po);
  border-bottom: 1.5px solid #fff;
  color: var(--po);
}

/* icon */
.icon-zone {
  aspect-ratio: 1/1;
  border-radius: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-zone.po {
  background: var(--po);
}

/* font */
.col-po {
  color: var(--po);
}
.col-wht {
  color: var(--white);
}
.col-orange {
  color: #fd4611;
}
.col-yellow {
  color: var(--yll);
}
.col-black-op5 {
  color: var(--black-op5);
}
.col-gray {
  color: var(--gray);
}

.bold {
  font-weight: 700;
}
.semi-bold {
  font-weight: 600;
}
.medium {
  font-weight: 500;
}

.txt-center {
  text-align: center;
}

h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -1.04px;
}
h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.84px;
}
h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.64px;
}
.font28 {
  font-size: var(--font-28);
  line-height: var(--font-28-ls);
}
.font24 {
  font-size: var(--font-24);
  line-height: var(--font-24-ls);
}
.font20 {
  font-size: var(--font-20);
  line-height: var(--font-20-ls);
}
.font18 {
  font-size: var(--font-18);
  line-height: var(--font-18-ls);
}
.font16 {
  font-size: var(--font-16);
  line-height: var(--font-16-ls);
}
.font14 {
  font-size: var(--font-14);
  line-height: var(--font-14-ls);
}

/* header */
header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid #eaeaea;
}
header .width-wrap {
  padding: var(--paddingHeader);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .width-wrap > a img {
  max-height: 51px;
}
header .width-wrap nav {
  display: flex;
  align-items: center;
}
header .width-wrap nav a {
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.32px;
  padding: 10px 30px;
  box-sizing: border-box;
}
header .width-wrap .btn-mo {
  display: none;
}

/* footer */
footer {
  text-align: start;
  background: var(--black);
}
footer .width-wrap {
  padding: var(--paddingFooter);
}
footer .width-wrap > img {
  max-height: 51px;
  margin-bottom: 40px;
}
footer .width-wrap .bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: -0.24px;
}
footer .width-wrap .bottom-area .info-list li {
  margin-bottom: 10px;
}
footer .width-wrap .bottom-area .info-list li:last-child {
  margin-bottom: 0;
}
footer .width-wrap .bottom-area .info-list li img {
  margin-right: 6px;
}
footer .width-wrap .bottom-area p {
  opacity: 0.5;
}

/* responsive */
@media all and (max-width: 1420px) {
  .width-wrap {
    width: 90%;
  }
}
@media all and (max-width: 1350px) {
  .width-wrap.mid {
    width: 90%;
  }
}
@media all and (max-width: 1120px) {
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 29px;
  }
}
@media all and (max-width: 1030px) {
  .tab-area button,
  .tab-area a {
    padding: 16px 0;
  }
}
@media all and (max-width: 1000px) {
  .width-wrap.small {
    width: 90%;
  }
}
@media all and (max-width: 950px) {
  header:before {
    content: "";
    position: absolute;
    width: 28%;
    height: calc(100vh - 80px);
    background: var(--white);
    right: 0;
    top: 80px;
    z-index: 1;
    opacity: 0;
    transition: all 0.25s linear;
    pointer-events: none;
  }
  header:after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(28, 28, 28, 0.3);
    left: 0;
    backdrop-filter: blur(3px);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }
  header .width-wrap nav {
    align-items: flex-start;
    position: absolute;
    flex-direction: column;
    top: 100px;
    right: 9%;
    z-index: 1;
    transform: translateX(210%);
    transition: all 0.25s linear;
    opacity: 0;
  }
  header .width-wrap .btn-mo {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }
  header .width-wrap .btn-mo div {
    width: 20px;
    height: 2px;
    border-radius: 500px;
    background: var(--black);
    transition: all 0.25s linear;
  }
  header.on .width-wrap .btn-mo div:first-child {
    transform: rotate(45deg) translate(3px, 3px);
    width: 25px;
  }
  header.on .width-wrap .btn-mo div:last-child {
    transform: rotate(-45deg) translate(2px, -1.5px);
    width: 25px;
  }

  header.on:before,
  header.on:after {
    opacity: 1;
    pointer-events: all;
  }
  header.on .width-wrap nav {
    transform: translateX(0);
    opacity: 1;
  }
}
@media all and (max-width: 880px) {
  .tab-area button,
  .tab-area a {
    padding: 16px 0;
  }
}
@media all and (max-width: 850px) {
  .top850 {
    display: none;
  }
  .under850 {
    display: block;
  }

  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 27px;
  }

  header:before {
    width: 50%;
  }
  header .width-wrap nav {
    right: 28%;
    transform: translateX(335%);
  }
}
@media all and (max-width: 795px) {
  .top795 {
    display: none;
  }
  .under795 {
    display: block;
  }
}
@media all and (max-width: 655px) {
  header .width-wrap nav {
    right: 20%;
    transform: translateX(229%);
  }

  footer .width-wrap .bottom-area {
    align-items: flex-start;
    flex-direction: column;
  }
  footer .width-wrap .bottom-area p {
    margin-top: 32px;
  }
}
@media all and (max-width: 500px) {
  section.main .width-wrap p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  .top500 {
    display: none;
  }
  .under500 {
    display: block;
  }

  .btn.large {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  .btn.small {
    padding: 8px 20px;
  }

  .js-clickPopup .img:after {
    transform: scale(0.75);
  }

  .tab-area button,
  .tab-area a {
    padding: 12px 0;
  }

  h1 {
    font-size: 28px;
    letter-spacing: -0.56px;
  }
  h2,
  h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  header:before {
    width: 100%;
    height: calc(100vh - 74px);
    top: 74px;
  }
  header .width-wrap > a img {
    max-height: 45px;
  }
  header .width-wrap nav {
    right: auto;
    pointer-events: none;
  }
  header.on .width-wrap nav {
    pointer-events: all;
  }
}
