@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://hangeul.pstatic.net/hangeul_static/css/nanum-square.css");
@import url("/css/fonts/Angelle/font-face.css");
@import url("/css/fonts/GmarketSans/font-face.css");
@import url("/css/fonts/NanumGothic/font-face.css");
@import url("/css/fonts/Pretendard/font-face.css");
/* ==================== 공통 변수 선언 ==================== */
:root {
  --noto: "Noto Sans KR", Noto Sans, "Malgun Gothic", dotum, sans-serif;
  --serif: "Noto Serif KR", "Noto Sans KR", Noto Sans, "Malgun Gothic", dotum, sans-serif;
  --Angelle: "Angelle", "Noto Serif KR", "Noto Sans KR", Noto Sans, "Malgun Gothic", dotum, sans-serif;
  --GmarketSans: "GmarketSans", "Noto Serif KR", "Noto Sans KR", Noto Sans, "Malgun Gothic", dotum, sans-serif;
  --nanum: "NanumGothic", "Noto Sans KR", Noto Sans, "Malgun Gothic", dotum, sans-serif;
  --NanumSquare: "NanumSquare", "Noto Sans KR", Noto Sans, "Malgun Gothic", dotum, sans-serif;
  --Pretendard: "Pretendard Variable", Noto Sans, "Malgun Gothic", dotum, sans-serif;
  --theme-color: #9c1c2b;
  --theme-color-rgb: 156, 28, 43;
  --body-bg: #9c1c2b0d;
  --lh-20: 2.0;
  --lh-17: 1.7;
  --lh-14: 1.4;
  --lh-12: 1.2;
}

.slick-slide, .slick-slide * {
  outline: none;
}

::selection {
  background: var(--theme-color);
  color: #fff;
}

/* ==================== 공통 클래스 선언 ==================== */
.--font-noto,
.--font-noto * {
  font-family: var(--noto);
}

.--font-serif,
.--font-serif * {
  font-family: var(--serif);
}

.--font-Angelle,
.--font-Angelle * {
  font-family: var(--Angelle);
  letter-spacing: -0.03em;
}

.--font-GmarketSans,
.--font-GmarketSans * {
  font-family: var(--GmarketSans);
}

.--font-nanum,
.--font-nanum * {
  font-family: var(--nanum);
}

.--font-nanumsquare,
.--font-nanumsquare * {
  font-family: var(--NanumSquare);
}

.--c-theme,
.--c-theme * {
  color: var(--theme-color);
}

.--c-black,
.--c-black * {
  color: #000;
}

.--c-white,
.--c-white * {
  color: #fff;
}

.--fw-lighter,
.--fw-lighter * {
  font-weight: lighter;
}

.--fw-normal,
.--fw-normal * {
  font-weight: normal;
}

.--fw-bold,
.--fw-bold * {
  font-weight: bold;
}

.--fw-bolder,
.--fw-bolder * {
  font-weight: bolder;
}

.--fw-100,
.--fw-100 * {
  font-weight: 100;
}

.--fw-200,
.--fw-200 * {
  font-weight: 200;
}

.--fw-300,
.--fw-300 * {
  font-weight: 300;
}

.--fw-400,
.--fw-400 * {
  font-weight: 400;
}

.--fw-500,
.--fw-500 * {
  font-weight: 500;
}

.--fw-600,
.--fw-600 * {
  font-weight: 600;
}

.--fw-700,
.--fw-700 * {
  font-weight: 700;
}

.--fw-800,
.--fw-800 * {
  font-weight: 800;
}

.--fw-900,
.--fw-900 * {
  font-weight: 900;
}

.--lh-20 {
  line-height: var(--lh-20);
}

.--lh-17 {
  line-height: var(--lh-17);
}

.--lh-14 {
  line-height: var(--lh-14);
}

.--lh-12 {
  line-height: var(--lh-12);
}

.--fs-14 {
  font-size: 14px;
}

.--fs-16 {
  font-size: 16px;
}

.--fs-18 {
  font-size: 18px;
}

.--fs-20 {
  font-size: 20px;
}

.--fs-22 {
  font-size: 22px;
}

.--fs-24 {
  font-size: 24px;
}

.--fs-26 {
  font-size: 26px;
}

.--fs-40 {
  font-size: 40px;
}

.--ls-1 {
  letter-spacing: -1px !important;
}

.--ls-2 {
  letter-spacing: -2px !important;
}

.--ls-3 {
  letter-spacing: -3px !important;
}

@media (max-width: 768px) {
  .--ls-1 {
    letter-spacing: -0.2vw !important;
  }
  .--ls-2 {
    letter-spacing: -0.3vw !important;
  }
  .--ls-3 {
    letter-spacing: -0.5vw !important;
  }
}
.--fs-normal,
.--fs-normal * {
  font-style: normal;
}

.--ta-l {
  text-align: left;
}

.--ta-c {
  text-align: center;
}

.--ta-r {
  text-align: right;
}

.--bg-theme,
.--bg-theme * {
  background-color: var(--theme-color);
}

.--df {
  display: flex;
}

.--fld-c {
  flex-direction: column;
}

.--fld-rr {
  flex-direction: row-reverse;
}

.--flw-wrap {
  flex-wrap: wrap;
}

.--jc-c {
  justify-content: center;
}

.--jc-sb {
  justify-content: space-between;
}

.--jc-fe {
  justify-content: flex-end;
}

.--ai-c {
  align-items: center;
}

.--ai-fe {
  align-items: flex-end;
}

.--width-fc {
  width: fit-content;
}

.--width-max {
  width: max-content;
}

.--width-min {
  width: min-content;
}

.--height-fc {
  height: fit-content;
}

.--height-max {
  height: max-content;
}

.--height-min {
  height: min-content;
}

.--po-rel {
  position: relative;
}

.--po-abs {
  position: absolute;
}

/* ==================== COMMON ==================== *//*# sourceMappingURL=reset.min.css.map */