@charset "UTF-8";

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

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

/* btn */
.btn {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
  width: 100%;
}
.btn.po {
  background: var(--po);
  color: var(--white);
}
.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;
}
.btn.small {
  padding: 10px 24px;
  width: fit-content;
}

.btn.tel{
  width: fit-content;
  background: var(--white);
  border-radius: 8px;
  color: var(--po);
  padding: 18px 36px;
  box-sizing: border-box;
  margin: 62px auto 0;
}

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

.semi-bold {
  font-weight: 600;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.96px;
}
h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.64px;
}
.font24 {
  font-size: var(--font-24);
  line-height: var(--font-24-ls);
}
.font20 {
  font-size: var(--font-20);
  line-height: var(--font-20-ls);
  line-height: 160%;
}
.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);
}
.hidden{
  color: var(--white);
  position: absolute;
}

/* 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 > p{
  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: 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: 850px) {
  .top850 {
    display: none;
  }
  .under850 {
    display: block;
  }

  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: -0.64px;
  }

  header:before {
    width: 50%;
  }
  header .width-wrap nav {
    right: 28%;
    transform: translateX(335%);
  }
}
@media all and (max-width: 815px) {
  .width-wrap.small {
    width: 90%;
  }
}
@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) {
  .top500 {
    display: none;
  }
  .under500 {
    display: block;
  }

  .btn.large {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

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

  header:before {
    width: 100%;
    height: calc(100vh - 79px);
    top: 79px;
  }
  header .width-wrap nav {
    right: auto;
    pointer-events: none;
  }
  header.on .width-wrap nav {
    pointer-events: all;
  }
}
