@charset "UTF-8";

/* =========================================================
   Pretendard 웹폰트
========================================================= */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");


/* =========================================================
   기본 폰트
========================================================= */
html,
body,
button,
input,
select,
textarea {
  font-family:
    "Pretendard",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    Arial,
    sans-serif;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.035em;
  word-break: keep-all;
}


/* =========================================================
   폰트 크기
========================================================= */
.fs35 {
  font-size: 35px;
  line-height: 1.3;
}

.fs34 {
  font-size: 34px;
  line-height: 1.3;
}

.fs32 {
  font-size: 32px;
  line-height: 1.35;
}

.fs30 {
  font-size: 30px;
  line-height: 1.35;
}

.fs28 {
  font-size: 28px;
  line-height: 1.4;
}

.fs26 {
  font-size: 26px;
  line-height: 1.4;
}

.fs24 {
  font-size: 24px;
  line-height: 1.45;
}

.fs22 {
  font-size: 22px;
  line-height: 1.45;
}

.fs20 {
  font-size: 20px;
  line-height: 1.5;
}

.fs19 {
  font-size: 19px;
  line-height: 1.5;
}

.fs18 {
  font-size: 18px;
  line-height: 1.55;
}

.fs17 {
  font-size: 17px;
  line-height: 1.55;
}

.fs16 {
  font-size: 16px;
  line-height: 1.6;
}

.fs15 {
  font-size: 15px;
  line-height: 1.6;
}

.fs14 {
  font-size: 14px;
  line-height: 1.6;
}

.fs13 {
  font-size: 13px;
  line-height: 1.6;
}

.fs12 {
  font-size: 12px;
  line-height: 1.6;
}

.fs11 {
  font-size: 11px;
  line-height: 1.6;
}


/* =========================================================
   폰트 굵기
========================================================= */
.fw100 {
  font-weight: 100;
}

.fw200 {
  font-weight: 200;
}

.fw300 {
  font-weight: 300;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.fw900 {
  font-weight: 900;
}


/* =========================================================
   글자 색상
========================================================= */
.fc-black {
  color: #111111;
}

.fc-dark {
  color: #333333;
}

.fc-gray {
  color: #666666;
}

.fc-light-gray {
  color: #999999;
}

.fc-white {
  color: #ffffff;
}

/* 럭스골드 포인트 색상 */
.fc-point {
  color: var(--color-point);
}


/* =========================================================
   글자 정렬
========================================================= */
.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}


/* =========================================================
   자간
========================================================= */
.ls0 {
  letter-spacing: 0;
}

.ls-1 {
  letter-spacing: -0.01em;
}

.ls-2 {
  letter-spacing: -0.02em;
}

.ls-3 {
  letter-spacing: -0.03em;
}

.ls-4 {
  letter-spacing: -0.04em;
}

.ls-5 {
  letter-spacing: -0.05em;
}


/* =========================================================
   줄 높이
========================================================= */
.lh1 {
  line-height: 1;
}

.lh12 {
  line-height: 1.2;
}

.lh13 {
  line-height: 1.3;
}

.lh14 {
  line-height: 1.4;
}

.lh15 {
  line-height: 1.5;
}

.lh16 {
  line-height: 1.6;
}

.lh17 {
  line-height: 1.7;
}


/* =========================================================
   줄바꿈 설정
========================================================= */
.keep-all {
  word-break: keep-all;
}

.break-all {
  word-break: break-all;
}

.nowrap {
  white-space: nowrap;
}


/* =========================================================
   한 줄 말줄임
========================================================= */
.ellipsis {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


/* =========================================================
   여러 줄 말줄임
========================================================= */
.ellipsis-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ellipsis-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


/* =========================================================
   태블릿 반응형
========================================================= */
@media screen and (max-width: 1024px) {
  .fs35 {
    font-size: 32px;
  }

  .fs34 {
    font-size: 31px;
  }

  .fs32 {
    font-size: 29px;
  }

  .fs30 {
    font-size: 28px;
  }

  .fs28 {
    font-size: 26px;
  }

  .fs26 {
    font-size: 24px;
  }

  .fs24 {
    font-size: 22px;
  }

  .fs22 {
    font-size: 21px;
  }
}


/* =========================================================
   모바일 반응형
========================================================= */
@media screen and (max-width: 768px) {
  .fs35 {
    font-size: 28px;
  }

  .fs34 {
    font-size: 28px;
  }

  .fs32 {
    font-size: 27px;
  }

  .fs30 {
    font-size: 26px;
  }

  .fs28 {
    font-size: 24px;
  }

  .fs26 {
    font-size: 23px;
  }

  .fs24 {
    font-size: 22px;
  }

  .fs22 {
    font-size: 20px;
  }

  .fs20 {
    font-size: 19px;
  }

  .fs19 {
    font-size: 18px;
  }

  .fs18 {
    font-size: 17px;
  }

  .fs17 {
    font-size: 16px;
  }

  .fs16 {
    font-size: 15px;
  }

  .fs15 {
    font-size: 14px;
  }

  .fs14 {
    font-size: 13px;
  }

  .fs13 {
    font-size: 12px;
  }
}



.blue{color:#0066cc;}