@charset "UTF-8";
/* =================================================================
   1. [SCSS Variables] Raw Data Definition
   * 이곳은 '순수 값'만 정의합니다. 실제 코드에서는 사용하지 않는 것을 권장합니다.
   * 브랜드 컬러 코드가 바뀌면 여기만 수정하세요.
   ================================================================= */
/* 드롭다운,멀티포함 */
/**
 * @mixin responsive
 * 모바일 시안(375px) 기준의 수치를 입력받아 모바일~태블릿 구간을 처리합니다.
 * @param $property : CSS 속성 (font-size, margin, padding 등)
 * @param $values : 적용할 값 (375px 시안 기준 px값 입력)
 * * [구간별 동작]
 * 1. Mobile (~767px): 375px 기준 VW 단위 (화면 폭에 비례하여 유동적 스케일링)
 * 2. Tablet (768px ~ 1199px): REM 단위 (가독성 유지를 위해 폰트 베이스로 고정)
 * 3. PC (1200px~): PX 단위 (원래는 고정되나, 보통 이 구간부터는 pc-scale 믹스인으로 덮어씀)
 */
/**
 * @mixin pc-scale
 * PC 시안(1440px) 기준의 수치를 입력받아 노트북 배율 환경에 대응합니다.
 * @param $property : CSS 속성
 * @param $value : 적용할 값 (1440px 시안 기준 px값 입력)
 * * [구간별 동작]
 * 1. Laptop (1200px ~ 1439px): 1440px 기준 VW 단위 적용. (노트북 150% 배율 등에서 가로 스크롤 없이 축소됨)
 * 2. Desktop (1440px~): 시안 원본 PX 단위로 완벽하게 고정.
 */
html,
body {
  font-size: var(--text-base);
  font-family: Alexandria, Pretendard, sans-serif;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-family: Alexandria, Pretendard, sans-serif;
  font-size: inherit;
  vertical-align: baseline;
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  letter-spacing: -0.02em;
  word-break: keep-all;
  line-height: 1.5;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, div {
  position: relative;
  display: block;
}

body {
  line-height: 1;
  color: black;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

strong {
  font: inherit;
}

label,
button,
input[type=submit],
input[type=checkbox],
input[type=radio],
input[type=button] {
  padding: 0px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}

input[type=text],
input[type=password],
input[type=number] {
  padding: 0px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input,
button,
textarea,
select {
  box-sizing: border-box;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

input[type=submit],
button[type=submit] {
  font-family: inherit;
  font-size: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

button:focus,
textarea:focus,
input:focus {
  outline: none;
}

button,
textarea,
input,
select,
a,
label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

img {
  vertical-align: middle;
}

button {
  background: transparent;
  color: inherit;
}

input,
textarea {
  border: 1px solid transparent;
  transition: border 0.3s ease-in-out;
}

::-moz-placeholder {
  color: var(--PlaceColor);
  font-family: inherit;
  font-size: inherit;
}

::placeholder {
  color: var(--PlaceColor);
  font-family: inherit;
  font-size: inherit;
}

.no-scroll {
  overflow: hidden !important;
}
.no-scroll .scroll-frame {
  overflow: hidden !important;
}

span,
h1, h2, h3, h4, h5, h6,
p, a, strong, b,
dt, dd, li {
  padding: 0.1em 0;
  line-height: 1.5;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

/* =================================================================
   [Utility] Helper Classes
   * 모바일/PC 시안 공통 1배수 수치를 클래스명으로 사용합니다.
   * 내부적으로 responsive() 믹스인을 호출하여 모바일 vw, 태블릿 rem, PC px로 자동 변환합니다.
   ================================================================= */
.m-0 {
  margin: 0vw;
}
@media (min-width: 768px) {
  .m-0 {
    margin: 0rem;
  }
}
@media (min-width: 1200px) {
  .m-0 {
    margin: 0px;
  }
}

.mt-0 {
  margin-top: 0vw;
}
@media (min-width: 768px) {
  .mt-0 {
    margin-top: 0rem;
  }
}
@media (min-width: 1200px) {
  .mt-0 {
    margin-top: 0px;
  }
}

.mb-0 {
  margin-bottom: 0vw;
}
@media (min-width: 768px) {
  .mb-0 {
    margin-bottom: 0rem;
  }
}
@media (min-width: 1200px) {
  .mb-0 {
    margin-bottom: 0px;
  }
}

.ml-0 {
  margin-left: 0vw;
}
@media (min-width: 768px) {
  .ml-0 {
    margin-left: 0rem;
  }
}
@media (min-width: 1200px) {
  .ml-0 {
    margin-left: 0px;
  }
}

.mr-0 {
  margin-right: 0vw;
}
@media (min-width: 768px) {
  .mr-0 {
    margin-right: 0rem;
  }
}
@media (min-width: 1200px) {
  .mr-0 {
    margin-right: 0px;
  }
}

.mx-0 {
  margin-left: 0vw;
}
@media (min-width: 768px) {
  .mx-0 {
    margin-left: 0rem;
  }
}
@media (min-width: 1200px) {
  .mx-0 {
    margin-left: 0px;
  }
}
.mx-0 {
  margin-right: 0vw;
}
@media (min-width: 768px) {
  .mx-0 {
    margin-right: 0rem;
  }
}
@media (min-width: 1200px) {
  .mx-0 {
    margin-right: 0px;
  }
}

.my-0 {
  margin-top: 0vw;
}
@media (min-width: 768px) {
  .my-0 {
    margin-top: 0rem;
  }
}
@media (min-width: 1200px) {
  .my-0 {
    margin-top: 0px;
  }
}
.my-0 {
  margin-bottom: 0vw;
}
@media (min-width: 768px) {
  .my-0 {
    margin-bottom: 0rem;
  }
}
@media (min-width: 1200px) {
  .my-0 {
    margin-bottom: 0px;
  }
}

.p-0 {
  padding: 0vw;
}
@media (min-width: 768px) {
  .p-0 {
    padding: 0rem;
  }
}
@media (min-width: 1200px) {
  .p-0 {
    padding: 0px;
  }
}

.pt-0 {
  padding-top: 0vw;
}
@media (min-width: 768px) {
  .pt-0 {
    padding-top: 0rem;
  }
}
@media (min-width: 1200px) {
  .pt-0 {
    padding-top: 0px;
  }
}

.pb-0 {
  padding-bottom: 0vw;
}
@media (min-width: 768px) {
  .pb-0 {
    padding-bottom: 0rem;
  }
}
@media (min-width: 1200px) {
  .pb-0 {
    padding-bottom: 0px;
  }
}

.pl-0 {
  padding-left: 0vw;
}
@media (min-width: 768px) {
  .pl-0 {
    padding-left: 0rem;
  }
}
@media (min-width: 1200px) {
  .pl-0 {
    padding-left: 0px;
  }
}

.pr-0 {
  padding-right: 0vw;
}
@media (min-width: 768px) {
  .pr-0 {
    padding-right: 0rem;
  }
}
@media (min-width: 1200px) {
  .pr-0 {
    padding-right: 0px;
  }
}

.px-0 {
  padding-left: 0vw;
}
@media (min-width: 768px) {
  .px-0 {
    padding-left: 0rem;
  }
}
@media (min-width: 1200px) {
  .px-0 {
    padding-left: 0px;
  }
}
.px-0 {
  padding-right: 0vw;
}
@media (min-width: 768px) {
  .px-0 {
    padding-right: 0rem;
  }
}
@media (min-width: 1200px) {
  .px-0 {
    padding-right: 0px;
  }
}

.py-0 {
  padding-top: 0vw;
}
@media (min-width: 768px) {
  .py-0 {
    padding-top: 0rem;
  }
}
@media (min-width: 1200px) {
  .py-0 {
    padding-top: 0px;
  }
}
.py-0 {
  padding-bottom: 0vw;
}
@media (min-width: 768px) {
  .py-0 {
    padding-bottom: 0rem;
  }
}
@media (min-width: 1200px) {
  .py-0 {
    padding-bottom: 0px;
  }
}

.m-4 {
  margin: 1.0667vw;
}
@media (min-width: 768px) {
  .m-4 {
    margin: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .m-4 {
    margin: 4px;
  }
}

.mt-4 {
  margin-top: 1.0667vw;
}
@media (min-width: 768px) {
  .mt-4 {
    margin-top: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .mt-4 {
    margin-top: 4px;
  }
}

.mb-4 {
  margin-bottom: 1.0667vw;
}
@media (min-width: 768px) {
  .mb-4 {
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .mb-4 {
    margin-bottom: 4px;
  }
}

.ml-4 {
  margin-left: 1.0667vw;
}
@media (min-width: 768px) {
  .ml-4 {
    margin-left: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .ml-4 {
    margin-left: 4px;
  }
}

.mr-4 {
  margin-right: 1.0667vw;
}
@media (min-width: 768px) {
  .mr-4 {
    margin-right: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .mr-4 {
    margin-right: 4px;
  }
}

.mx-4 {
  margin-left: 1.0667vw;
}
@media (min-width: 768px) {
  .mx-4 {
    margin-left: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-4 {
    margin-left: 4px;
  }
}
.mx-4 {
  margin-right: 1.0667vw;
}
@media (min-width: 768px) {
  .mx-4 {
    margin-right: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-4 {
    margin-right: 4px;
  }
}

.my-4 {
  margin-top: 1.0667vw;
}
@media (min-width: 768px) {
  .my-4 {
    margin-top: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .my-4 {
    margin-top: 4px;
  }
}
.my-4 {
  margin-bottom: 1.0667vw;
}
@media (min-width: 768px) {
  .my-4 {
    margin-bottom: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .my-4 {
    margin-bottom: 4px;
  }
}

.p-4 {
  padding: 1.0667vw;
}
@media (min-width: 768px) {
  .p-4 {
    padding: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .p-4 {
    padding: 4px;
  }
}

.pt-4 {
  padding-top: 1.0667vw;
}
@media (min-width: 768px) {
  .pt-4 {
    padding-top: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .pt-4 {
    padding-top: 4px;
  }
}

.pb-4 {
  padding-bottom: 1.0667vw;
}
@media (min-width: 768px) {
  .pb-4 {
    padding-bottom: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .pb-4 {
    padding-bottom: 4px;
  }
}

.pl-4 {
  padding-left: 1.0667vw;
}
@media (min-width: 768px) {
  .pl-4 {
    padding-left: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .pl-4 {
    padding-left: 4px;
  }
}

.pr-4 {
  padding-right: 1.0667vw;
}
@media (min-width: 768px) {
  .pr-4 {
    padding-right: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .pr-4 {
    padding-right: 4px;
  }
}

.px-4 {
  padding-left: 1.0667vw;
}
@media (min-width: 768px) {
  .px-4 {
    padding-left: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .px-4 {
    padding-left: 4px;
  }
}
.px-4 {
  padding-right: 1.0667vw;
}
@media (min-width: 768px) {
  .px-4 {
    padding-right: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .px-4 {
    padding-right: 4px;
  }
}

.py-4 {
  padding-top: 1.0667vw;
}
@media (min-width: 768px) {
  .py-4 {
    padding-top: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .py-4 {
    padding-top: 4px;
  }
}
.py-4 {
  padding-bottom: 1.0667vw;
}
@media (min-width: 768px) {
  .py-4 {
    padding-bottom: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .py-4 {
    padding-bottom: 4px;
  }
}

.m-5 {
  margin: 1.3333vw;
}
@media (min-width: 768px) {
  .m-5 {
    margin: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .m-5 {
    margin: 5px;
  }
}

.mt-5 {
  margin-top: 1.3333vw;
}
@media (min-width: 768px) {
  .mt-5 {
    margin-top: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .mt-5 {
    margin-top: 5px;
  }
}

.mb-5 {
  margin-bottom: 1.3333vw;
}
@media (min-width: 768px) {
  .mb-5 {
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .mb-5 {
    margin-bottom: 5px;
  }
}

.ml-5 {
  margin-left: 1.3333vw;
}
@media (min-width: 768px) {
  .ml-5 {
    margin-left: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .ml-5 {
    margin-left: 5px;
  }
}

.mr-5 {
  margin-right: 1.3333vw;
}
@media (min-width: 768px) {
  .mr-5 {
    margin-right: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .mr-5 {
    margin-right: 5px;
  }
}

.mx-5 {
  margin-left: 1.3333vw;
}
@media (min-width: 768px) {
  .mx-5 {
    margin-left: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .mx-5 {
    margin-left: 5px;
  }
}
.mx-5 {
  margin-right: 1.3333vw;
}
@media (min-width: 768px) {
  .mx-5 {
    margin-right: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .mx-5 {
    margin-right: 5px;
  }
}

.my-5 {
  margin-top: 1.3333vw;
}
@media (min-width: 768px) {
  .my-5 {
    margin-top: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .my-5 {
    margin-top: 5px;
  }
}
.my-5 {
  margin-bottom: 1.3333vw;
}
@media (min-width: 768px) {
  .my-5 {
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .my-5 {
    margin-bottom: 5px;
  }
}

.p-5 {
  padding: 1.3333vw;
}
@media (min-width: 768px) {
  .p-5 {
    padding: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .p-5 {
    padding: 5px;
  }
}

.pt-5 {
  padding-top: 1.3333vw;
}
@media (min-width: 768px) {
  .pt-5 {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .pt-5 {
    padding-top: 5px;
  }
}

.pb-5 {
  padding-bottom: 1.3333vw;
}
@media (min-width: 768px) {
  .pb-5 {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .pb-5 {
    padding-bottom: 5px;
  }
}

.pl-5 {
  padding-left: 1.3333vw;
}
@media (min-width: 768px) {
  .pl-5 {
    padding-left: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .pl-5 {
    padding-left: 5px;
  }
}

.pr-5 {
  padding-right: 1.3333vw;
}
@media (min-width: 768px) {
  .pr-5 {
    padding-right: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .pr-5 {
    padding-right: 5px;
  }
}

.px-5 {
  padding-left: 1.3333vw;
}
@media (min-width: 768px) {
  .px-5 {
    padding-left: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .px-5 {
    padding-left: 5px;
  }
}
.px-5 {
  padding-right: 1.3333vw;
}
@media (min-width: 768px) {
  .px-5 {
    padding-right: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .px-5 {
    padding-right: 5px;
  }
}

.py-5 {
  padding-top: 1.3333vw;
}
@media (min-width: 768px) {
  .py-5 {
    padding-top: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .py-5 {
    padding-top: 5px;
  }
}
.py-5 {
  padding-bottom: 1.3333vw;
}
@media (min-width: 768px) {
  .py-5 {
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .py-5 {
    padding-bottom: 5px;
  }
}

.m-8 {
  margin: 2.1333vw;
}
@media (min-width: 768px) {
  .m-8 {
    margin: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .m-8 {
    margin: 8px;
  }
}

.mt-8 {
  margin-top: 2.1333vw;
}
@media (min-width: 768px) {
  .mt-8 {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .mt-8 {
    margin-top: 8px;
  }
}

.mb-8 {
  margin-bottom: 2.1333vw;
}
@media (min-width: 768px) {
  .mb-8 {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .mb-8 {
    margin-bottom: 8px;
  }
}

.ml-8 {
  margin-left: 2.1333vw;
}
@media (min-width: 768px) {
  .ml-8 {
    margin-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .ml-8 {
    margin-left: 8px;
  }
}

.mr-8 {
  margin-right: 2.1333vw;
}
@media (min-width: 768px) {
  .mr-8 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .mr-8 {
    margin-right: 8px;
  }
}

.mx-8 {
  margin-left: 2.1333vw;
}
@media (min-width: 768px) {
  .mx-8 {
    margin-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-8 {
    margin-left: 8px;
  }
}
.mx-8 {
  margin-right: 2.1333vw;
}
@media (min-width: 768px) {
  .mx-8 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-8 {
    margin-right: 8px;
  }
}

.my-8 {
  margin-top: 2.1333vw;
}
@media (min-width: 768px) {
  .my-8 {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .my-8 {
    margin-top: 8px;
  }
}
.my-8 {
  margin-bottom: 2.1333vw;
}
@media (min-width: 768px) {
  .my-8 {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .my-8 {
    margin-bottom: 8px;
  }
}

.p-8 {
  padding: 2.1333vw;
}
@media (min-width: 768px) {
  .p-8 {
    padding: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .p-8 {
    padding: 8px;
  }
}

.pt-8 {
  padding-top: 2.1333vw;
}
@media (min-width: 768px) {
  .pt-8 {
    padding-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pt-8 {
    padding-top: 8px;
  }
}

.pb-8 {
  padding-bottom: 2.1333vw;
}
@media (min-width: 768px) {
  .pb-8 {
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pb-8 {
    padding-bottom: 8px;
  }
}

.pl-8 {
  padding-left: 2.1333vw;
}
@media (min-width: 768px) {
  .pl-8 {
    padding-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pl-8 {
    padding-left: 8px;
  }
}

.pr-8 {
  padding-right: 2.1333vw;
}
@media (min-width: 768px) {
  .pr-8 {
    padding-right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pr-8 {
    padding-right: 8px;
  }
}

.px-8 {
  padding-left: 2.1333vw;
}
@media (min-width: 768px) {
  .px-8 {
    padding-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .px-8 {
    padding-left: 8px;
  }
}
.px-8 {
  padding-right: 2.1333vw;
}
@media (min-width: 768px) {
  .px-8 {
    padding-right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .px-8 {
    padding-right: 8px;
  }
}

.py-8 {
  padding-top: 2.1333vw;
}
@media (min-width: 768px) {
  .py-8 {
    padding-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .py-8 {
    padding-top: 8px;
  }
}
.py-8 {
  padding-bottom: 2.1333vw;
}
@media (min-width: 768px) {
  .py-8 {
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .py-8 {
    padding-bottom: 8px;
  }
}

.m-10 {
  margin: 2.6667vw;
}
@media (min-width: 768px) {
  .m-10 {
    margin: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .m-10 {
    margin: 10px;
  }
}

.mt-10 {
  margin-top: 2.6667vw;
}
@media (min-width: 768px) {
  .mt-10 {
    margin-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .mt-10 {
    margin-top: 10px;
  }
}

.mb-10 {
  margin-bottom: 2.6667vw;
}
@media (min-width: 768px) {
  .mb-10 {
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .mb-10 {
    margin-bottom: 10px;
  }
}

.ml-10 {
  margin-left: 2.6667vw;
}
@media (min-width: 768px) {
  .ml-10 {
    margin-left: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .ml-10 {
    margin-left: 10px;
  }
}

.mr-10 {
  margin-right: 2.6667vw;
}
@media (min-width: 768px) {
  .mr-10 {
    margin-right: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .mr-10 {
    margin-right: 10px;
  }
}

.mx-10 {
  margin-left: 2.6667vw;
}
@media (min-width: 768px) {
  .mx-10 {
    margin-left: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .mx-10 {
    margin-left: 10px;
  }
}
.mx-10 {
  margin-right: 2.6667vw;
}
@media (min-width: 768px) {
  .mx-10 {
    margin-right: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .mx-10 {
    margin-right: 10px;
  }
}

.my-10 {
  margin-top: 2.6667vw;
}
@media (min-width: 768px) {
  .my-10 {
    margin-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .my-10 {
    margin-top: 10px;
  }
}
.my-10 {
  margin-bottom: 2.6667vw;
}
@media (min-width: 768px) {
  .my-10 {
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .my-10 {
    margin-bottom: 10px;
  }
}

.p-10 {
  padding: 2.6667vw;
}
@media (min-width: 768px) {
  .p-10 {
    padding: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .p-10 {
    padding: 10px;
  }
}

.pt-10 {
  padding-top: 2.6667vw;
}
@media (min-width: 768px) {
  .pt-10 {
    padding-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .pt-10 {
    padding-top: 10px;
  }
}

.pb-10 {
  padding-bottom: 2.6667vw;
}
@media (min-width: 768px) {
  .pb-10 {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .pb-10 {
    padding-bottom: 10px;
  }
}

.pl-10 {
  padding-left: 2.6667vw;
}
@media (min-width: 768px) {
  .pl-10 {
    padding-left: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .pl-10 {
    padding-left: 10px;
  }
}

.pr-10 {
  padding-right: 2.6667vw;
}
@media (min-width: 768px) {
  .pr-10 {
    padding-right: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .pr-10 {
    padding-right: 10px;
  }
}

.px-10 {
  padding-left: 2.6667vw;
}
@media (min-width: 768px) {
  .px-10 {
    padding-left: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .px-10 {
    padding-left: 10px;
  }
}
.px-10 {
  padding-right: 2.6667vw;
}
@media (min-width: 768px) {
  .px-10 {
    padding-right: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .px-10 {
    padding-right: 10px;
  }
}

.py-10 {
  padding-top: 2.6667vw;
}
@media (min-width: 768px) {
  .py-10 {
    padding-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .py-10 {
    padding-top: 10px;
  }
}
.py-10 {
  padding-bottom: 2.6667vw;
}
@media (min-width: 768px) {
  .py-10 {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .py-10 {
    padding-bottom: 10px;
  }
}

.m-12 {
  margin: 3.2vw;
}
@media (min-width: 768px) {
  .m-12 {
    margin: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .m-12 {
    margin: 12px;
  }
}

.mt-12 {
  margin-top: 3.2vw;
}
@media (min-width: 768px) {
  .mt-12 {
    margin-top: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .mt-12 {
    margin-top: 12px;
  }
}

.mb-12 {
  margin-bottom: 3.2vw;
}
@media (min-width: 768px) {
  .mb-12 {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .mb-12 {
    margin-bottom: 12px;
  }
}

.ml-12 {
  margin-left: 3.2vw;
}
@media (min-width: 768px) {
  .ml-12 {
    margin-left: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .ml-12 {
    margin-left: 12px;
  }
}

.mr-12 {
  margin-right: 3.2vw;
}
@media (min-width: 768px) {
  .mr-12 {
    margin-right: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .mr-12 {
    margin-right: 12px;
  }
}

.mx-12 {
  margin-left: 3.2vw;
}
@media (min-width: 768px) {
  .mx-12 {
    margin-left: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .mx-12 {
    margin-left: 12px;
  }
}
.mx-12 {
  margin-right: 3.2vw;
}
@media (min-width: 768px) {
  .mx-12 {
    margin-right: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .mx-12 {
    margin-right: 12px;
  }
}

.my-12 {
  margin-top: 3.2vw;
}
@media (min-width: 768px) {
  .my-12 {
    margin-top: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .my-12 {
    margin-top: 12px;
  }
}
.my-12 {
  margin-bottom: 3.2vw;
}
@media (min-width: 768px) {
  .my-12 {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .my-12 {
    margin-bottom: 12px;
  }
}

.p-12 {
  padding: 3.2vw;
}
@media (min-width: 768px) {
  .p-12 {
    padding: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .p-12 {
    padding: 12px;
  }
}

.pt-12 {
  padding-top: 3.2vw;
}
@media (min-width: 768px) {
  .pt-12 {
    padding-top: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .pt-12 {
    padding-top: 12px;
  }
}

.pb-12 {
  padding-bottom: 3.2vw;
}
@media (min-width: 768px) {
  .pb-12 {
    padding-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .pb-12 {
    padding-bottom: 12px;
  }
}

.pl-12 {
  padding-left: 3.2vw;
}
@media (min-width: 768px) {
  .pl-12 {
    padding-left: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .pl-12 {
    padding-left: 12px;
  }
}

.pr-12 {
  padding-right: 3.2vw;
}
@media (min-width: 768px) {
  .pr-12 {
    padding-right: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .pr-12 {
    padding-right: 12px;
  }
}

.px-12 {
  padding-left: 3.2vw;
}
@media (min-width: 768px) {
  .px-12 {
    padding-left: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .px-12 {
    padding-left: 12px;
  }
}
.px-12 {
  padding-right: 3.2vw;
}
@media (min-width: 768px) {
  .px-12 {
    padding-right: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .px-12 {
    padding-right: 12px;
  }
}

.py-12 {
  padding-top: 3.2vw;
}
@media (min-width: 768px) {
  .py-12 {
    padding-top: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .py-12 {
    padding-top: 12px;
  }
}
.py-12 {
  padding-bottom: 3.2vw;
}
@media (min-width: 768px) {
  .py-12 {
    padding-bottom: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .py-12 {
    padding-bottom: 12px;
  }
}

.m-15 {
  margin: 4vw;
}
@media (min-width: 768px) {
  .m-15 {
    margin: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .m-15 {
    margin: 15px;
  }
}

.mt-15 {
  margin-top: 4vw;
}
@media (min-width: 768px) {
  .mt-15 {
    margin-top: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .mt-15 {
    margin-top: 15px;
  }
}

.mb-15 {
  margin-bottom: 4vw;
}
@media (min-width: 768px) {
  .mb-15 {
    margin-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .mb-15 {
    margin-bottom: 15px;
  }
}

.ml-15 {
  margin-left: 4vw;
}
@media (min-width: 768px) {
  .ml-15 {
    margin-left: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .ml-15 {
    margin-left: 15px;
  }
}

.mr-15 {
  margin-right: 4vw;
}
@media (min-width: 768px) {
  .mr-15 {
    margin-right: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .mr-15 {
    margin-right: 15px;
  }
}

.mx-15 {
  margin-left: 4vw;
}
@media (min-width: 768px) {
  .mx-15 {
    margin-left: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .mx-15 {
    margin-left: 15px;
  }
}
.mx-15 {
  margin-right: 4vw;
}
@media (min-width: 768px) {
  .mx-15 {
    margin-right: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .mx-15 {
    margin-right: 15px;
  }
}

.my-15 {
  margin-top: 4vw;
}
@media (min-width: 768px) {
  .my-15 {
    margin-top: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .my-15 {
    margin-top: 15px;
  }
}
.my-15 {
  margin-bottom: 4vw;
}
@media (min-width: 768px) {
  .my-15 {
    margin-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .my-15 {
    margin-bottom: 15px;
  }
}

.p-15 {
  padding: 4vw;
}
@media (min-width: 768px) {
  .p-15 {
    padding: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .p-15 {
    padding: 15px;
  }
}

.pt-15 {
  padding-top: 4vw;
}
@media (min-width: 768px) {
  .pt-15 {
    padding-top: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .pt-15 {
    padding-top: 15px;
  }
}

.pb-15 {
  padding-bottom: 4vw;
}
@media (min-width: 768px) {
  .pb-15 {
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .pb-15 {
    padding-bottom: 15px;
  }
}

.pl-15 {
  padding-left: 4vw;
}
@media (min-width: 768px) {
  .pl-15 {
    padding-left: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .pl-15 {
    padding-left: 15px;
  }
}

.pr-15 {
  padding-right: 4vw;
}
@media (min-width: 768px) {
  .pr-15 {
    padding-right: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .pr-15 {
    padding-right: 15px;
  }
}

.px-15 {
  padding-left: 4vw;
}
@media (min-width: 768px) {
  .px-15 {
    padding-left: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .px-15 {
    padding-left: 15px;
  }
}
.px-15 {
  padding-right: 4vw;
}
@media (min-width: 768px) {
  .px-15 {
    padding-right: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .px-15 {
    padding-right: 15px;
  }
}

.py-15 {
  padding-top: 4vw;
}
@media (min-width: 768px) {
  .py-15 {
    padding-top: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .py-15 {
    padding-top: 15px;
  }
}
.py-15 {
  padding-bottom: 4vw;
}
@media (min-width: 768px) {
  .py-15 {
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .py-15 {
    padding-bottom: 15px;
  }
}

.m-16 {
  margin: 4.2667vw;
}
@media (min-width: 768px) {
  .m-16 {
    margin: 1rem;
  }
}
@media (min-width: 1200px) {
  .m-16 {
    margin: 16px;
  }
}

.mt-16 {
  margin-top: 4.2667vw;
}
@media (min-width: 768px) {
  .mt-16 {
    margin-top: 1rem;
  }
}
@media (min-width: 1200px) {
  .mt-16 {
    margin-top: 16px;
  }
}

.mb-16 {
  margin-bottom: 4.2667vw;
}
@media (min-width: 768px) {
  .mb-16 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .mb-16 {
    margin-bottom: 16px;
  }
}

.ml-16 {
  margin-left: 4.2667vw;
}
@media (min-width: 768px) {
  .ml-16 {
    margin-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .ml-16 {
    margin-left: 16px;
  }
}

.mr-16 {
  margin-right: 4.2667vw;
}
@media (min-width: 768px) {
  .mr-16 {
    margin-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .mr-16 {
    margin-right: 16px;
  }
}

.mx-16 {
  margin-left: 4.2667vw;
}
@media (min-width: 768px) {
  .mx-16 {
    margin-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .mx-16 {
    margin-left: 16px;
  }
}
.mx-16 {
  margin-right: 4.2667vw;
}
@media (min-width: 768px) {
  .mx-16 {
    margin-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .mx-16 {
    margin-right: 16px;
  }
}

.my-16 {
  margin-top: 4.2667vw;
}
@media (min-width: 768px) {
  .my-16 {
    margin-top: 1rem;
  }
}
@media (min-width: 1200px) {
  .my-16 {
    margin-top: 16px;
  }
}
.my-16 {
  margin-bottom: 4.2667vw;
}
@media (min-width: 768px) {
  .my-16 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .my-16 {
    margin-bottom: 16px;
  }
}

.p-16 {
  padding: 4.2667vw;
}
@media (min-width: 768px) {
  .p-16 {
    padding: 1rem;
  }
}
@media (min-width: 1200px) {
  .p-16 {
    padding: 16px;
  }
}

.pt-16 {
  padding-top: 4.2667vw;
}
@media (min-width: 768px) {
  .pt-16 {
    padding-top: 1rem;
  }
}
@media (min-width: 1200px) {
  .pt-16 {
    padding-top: 16px;
  }
}

.pb-16 {
  padding-bottom: 4.2667vw;
}
@media (min-width: 768px) {
  .pb-16 {
    padding-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .pb-16 {
    padding-bottom: 16px;
  }
}

.pl-16 {
  padding-left: 4.2667vw;
}
@media (min-width: 768px) {
  .pl-16 {
    padding-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .pl-16 {
    padding-left: 16px;
  }
}

.pr-16 {
  padding-right: 4.2667vw;
}
@media (min-width: 768px) {
  .pr-16 {
    padding-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .pr-16 {
    padding-right: 16px;
  }
}

.px-16 {
  padding-left: 4.2667vw;
}
@media (min-width: 768px) {
  .px-16 {
    padding-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .px-16 {
    padding-left: 16px;
  }
}
.px-16 {
  padding-right: 4.2667vw;
}
@media (min-width: 768px) {
  .px-16 {
    padding-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .px-16 {
    padding-right: 16px;
  }
}

.py-16 {
  padding-top: 4.2667vw;
}
@media (min-width: 768px) {
  .py-16 {
    padding-top: 1rem;
  }
}
@media (min-width: 1200px) {
  .py-16 {
    padding-top: 16px;
  }
}
.py-16 {
  padding-bottom: 4.2667vw;
}
@media (min-width: 768px) {
  .py-16 {
    padding-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .py-16 {
    padding-bottom: 16px;
  }
}

.m-20 {
  margin: 5.3333vw;
}
@media (min-width: 768px) {
  .m-20 {
    margin: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .m-20 {
    margin: 20px;
  }
}

.mt-20 {
  margin-top: 5.3333vw;
}
@media (min-width: 768px) {
  .mt-20 {
    margin-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .mt-20 {
    margin-top: 20px;
  }
}

.mb-20 {
  margin-bottom: 5.3333vw;
}
@media (min-width: 768px) {
  .mb-20 {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .mb-20 {
    margin-bottom: 20px;
  }
}

.ml-20 {
  margin-left: 5.3333vw;
}
@media (min-width: 768px) {
  .ml-20 {
    margin-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .ml-20 {
    margin-left: 20px;
  }
}

.mr-20 {
  margin-right: 5.3333vw;
}
@media (min-width: 768px) {
  .mr-20 {
    margin-right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .mr-20 {
    margin-right: 20px;
  }
}

.mx-20 {
  margin-left: 5.3333vw;
}
@media (min-width: 768px) {
  .mx-20 {
    margin-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-20 {
    margin-left: 20px;
  }
}
.mx-20 {
  margin-right: 5.3333vw;
}
@media (min-width: 768px) {
  .mx-20 {
    margin-right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-20 {
    margin-right: 20px;
  }
}

.my-20 {
  margin-top: 5.3333vw;
}
@media (min-width: 768px) {
  .my-20 {
    margin-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .my-20 {
    margin-top: 20px;
  }
}
.my-20 {
  margin-bottom: 5.3333vw;
}
@media (min-width: 768px) {
  .my-20 {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .my-20 {
    margin-bottom: 20px;
  }
}

.p-20 {
  padding: 5.3333vw;
}
@media (min-width: 768px) {
  .p-20 {
    padding: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .p-20 {
    padding: 20px;
  }
}

.pt-20 {
  padding-top: 5.3333vw;
}
@media (min-width: 768px) {
  .pt-20 {
    padding-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .pt-20 {
    padding-top: 20px;
  }
}

.pb-20 {
  padding-bottom: 5.3333vw;
}
@media (min-width: 768px) {
  .pb-20 {
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .pb-20 {
    padding-bottom: 20px;
  }
}

.pl-20 {
  padding-left: 5.3333vw;
}
@media (min-width: 768px) {
  .pl-20 {
    padding-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .pl-20 {
    padding-left: 20px;
  }
}

.pr-20 {
  padding-right: 5.3333vw;
}
@media (min-width: 768px) {
  .pr-20 {
    padding-right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .pr-20 {
    padding-right: 20px;
  }
}

.px-20 {
  padding-left: 5.3333vw;
}
@media (min-width: 768px) {
  .px-20 {
    padding-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .px-20 {
    padding-left: 20px;
  }
}
.px-20 {
  padding-right: 5.3333vw;
}
@media (min-width: 768px) {
  .px-20 {
    padding-right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .px-20 {
    padding-right: 20px;
  }
}

.py-20 {
  padding-top: 5.3333vw;
}
@media (min-width: 768px) {
  .py-20 {
    padding-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .py-20 {
    padding-top: 20px;
  }
}
.py-20 {
  padding-bottom: 5.3333vw;
}
@media (min-width: 768px) {
  .py-20 {
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .py-20 {
    padding-bottom: 20px;
  }
}

.m-24 {
  margin: 6.4vw;
}
@media (min-width: 768px) {
  .m-24 {
    margin: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .m-24 {
    margin: 24px;
  }
}

.mt-24 {
  margin-top: 6.4vw;
}
@media (min-width: 768px) {
  .mt-24 {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .mt-24 {
    margin-top: 24px;
  }
}

.mb-24 {
  margin-bottom: 6.4vw;
}
@media (min-width: 768px) {
  .mb-24 {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .mb-24 {
    margin-bottom: 24px;
  }
}

.ml-24 {
  margin-left: 6.4vw;
}
@media (min-width: 768px) {
  .ml-24 {
    margin-left: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .ml-24 {
    margin-left: 24px;
  }
}

.mr-24 {
  margin-right: 6.4vw;
}
@media (min-width: 768px) {
  .mr-24 {
    margin-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .mr-24 {
    margin-right: 24px;
  }
}

.mx-24 {
  margin-left: 6.4vw;
}
@media (min-width: 768px) {
  .mx-24 {
    margin-left: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-24 {
    margin-left: 24px;
  }
}
.mx-24 {
  margin-right: 6.4vw;
}
@media (min-width: 768px) {
  .mx-24 {
    margin-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-24 {
    margin-right: 24px;
  }
}

.my-24 {
  margin-top: 6.4vw;
}
@media (min-width: 768px) {
  .my-24 {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .my-24 {
    margin-top: 24px;
  }
}
.my-24 {
  margin-bottom: 6.4vw;
}
@media (min-width: 768px) {
  .my-24 {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .my-24 {
    margin-bottom: 24px;
  }
}

.p-24 {
  padding: 6.4vw;
}
@media (min-width: 768px) {
  .p-24 {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .p-24 {
    padding: 24px;
  }
}

.pt-24 {
  padding-top: 6.4vw;
}
@media (min-width: 768px) {
  .pt-24 {
    padding-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .pt-24 {
    padding-top: 24px;
  }
}

.pb-24 {
  padding-bottom: 6.4vw;
}
@media (min-width: 768px) {
  .pb-24 {
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .pb-24 {
    padding-bottom: 24px;
  }
}

.pl-24 {
  padding-left: 6.4vw;
}
@media (min-width: 768px) {
  .pl-24 {
    padding-left: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .pl-24 {
    padding-left: 24px;
  }
}

.pr-24 {
  padding-right: 6.4vw;
}
@media (min-width: 768px) {
  .pr-24 {
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .pr-24 {
    padding-right: 24px;
  }
}

.px-24 {
  padding-left: 6.4vw;
}
@media (min-width: 768px) {
  .px-24 {
    padding-left: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .px-24 {
    padding-left: 24px;
  }
}
.px-24 {
  padding-right: 6.4vw;
}
@media (min-width: 768px) {
  .px-24 {
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .px-24 {
    padding-right: 24px;
  }
}

.py-24 {
  padding-top: 6.4vw;
}
@media (min-width: 768px) {
  .py-24 {
    padding-top: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .py-24 {
    padding-top: 24px;
  }
}
.py-24 {
  padding-bottom: 6.4vw;
}
@media (min-width: 768px) {
  .py-24 {
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .py-24 {
    padding-bottom: 24px;
  }
}

.m-30 {
  margin: 8vw;
}
@media (min-width: 768px) {
  .m-30 {
    margin: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .m-30 {
    margin: 30px;
  }
}

.mt-30 {
  margin-top: 8vw;
}
@media (min-width: 768px) {
  .mt-30 {
    margin-top: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .mt-30 {
    margin-top: 30px;
  }
}

.mb-30 {
  margin-bottom: 8vw;
}
@media (min-width: 768px) {
  .mb-30 {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .mb-30 {
    margin-bottom: 30px;
  }
}

.ml-30 {
  margin-left: 8vw;
}
@media (min-width: 768px) {
  .ml-30 {
    margin-left: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .ml-30 {
    margin-left: 30px;
  }
}

.mr-30 {
  margin-right: 8vw;
}
@media (min-width: 768px) {
  .mr-30 {
    margin-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .mr-30 {
    margin-right: 30px;
  }
}

.mx-30 {
  margin-left: 8vw;
}
@media (min-width: 768px) {
  .mx-30 {
    margin-left: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .mx-30 {
    margin-left: 30px;
  }
}
.mx-30 {
  margin-right: 8vw;
}
@media (min-width: 768px) {
  .mx-30 {
    margin-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .mx-30 {
    margin-right: 30px;
  }
}

.my-30 {
  margin-top: 8vw;
}
@media (min-width: 768px) {
  .my-30 {
    margin-top: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .my-30 {
    margin-top: 30px;
  }
}
.my-30 {
  margin-bottom: 8vw;
}
@media (min-width: 768px) {
  .my-30 {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .my-30 {
    margin-bottom: 30px;
  }
}

.p-30 {
  padding: 8vw;
}
@media (min-width: 768px) {
  .p-30 {
    padding: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .p-30 {
    padding: 30px;
  }
}

.pt-30 {
  padding-top: 8vw;
}
@media (min-width: 768px) {
  .pt-30 {
    padding-top: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .pt-30 {
    padding-top: 30px;
  }
}

.pb-30 {
  padding-bottom: 8vw;
}
@media (min-width: 768px) {
  .pb-30 {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .pb-30 {
    padding-bottom: 30px;
  }
}

.pl-30 {
  padding-left: 8vw;
}
@media (min-width: 768px) {
  .pl-30 {
    padding-left: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .pl-30 {
    padding-left: 30px;
  }
}

.pr-30 {
  padding-right: 8vw;
}
@media (min-width: 768px) {
  .pr-30 {
    padding-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .pr-30 {
    padding-right: 30px;
  }
}

.px-30 {
  padding-left: 8vw;
}
@media (min-width: 768px) {
  .px-30 {
    padding-left: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .px-30 {
    padding-left: 30px;
  }
}
.px-30 {
  padding-right: 8vw;
}
@media (min-width: 768px) {
  .px-30 {
    padding-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .px-30 {
    padding-right: 30px;
  }
}

.py-30 {
  padding-top: 8vw;
}
@media (min-width: 768px) {
  .py-30 {
    padding-top: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .py-30 {
    padding-top: 30px;
  }
}
.py-30 {
  padding-bottom: 8vw;
}
@media (min-width: 768px) {
  .py-30 {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .py-30 {
    padding-bottom: 30px;
  }
}

.m-40 {
  margin: 10.6667vw;
}
@media (min-width: 768px) {
  .m-40 {
    margin: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .m-40 {
    margin: 40px;
  }
}

.mt-40 {
  margin-top: 10.6667vw;
}
@media (min-width: 768px) {
  .mt-40 {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .mt-40 {
    margin-top: 40px;
  }
}

.mb-40 {
  margin-bottom: 10.6667vw;
}
@media (min-width: 768px) {
  .mb-40 {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .mb-40 {
    margin-bottom: 40px;
  }
}

.ml-40 {
  margin-left: 10.6667vw;
}
@media (min-width: 768px) {
  .ml-40 {
    margin-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .ml-40 {
    margin-left: 40px;
  }
}

.mr-40 {
  margin-right: 10.6667vw;
}
@media (min-width: 768px) {
  .mr-40 {
    margin-right: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .mr-40 {
    margin-right: 40px;
  }
}

.mx-40 {
  margin-left: 10.6667vw;
}
@media (min-width: 768px) {
  .mx-40 {
    margin-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-40 {
    margin-left: 40px;
  }
}
.mx-40 {
  margin-right: 10.6667vw;
}
@media (min-width: 768px) {
  .mx-40 {
    margin-right: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .mx-40 {
    margin-right: 40px;
  }
}

.my-40 {
  margin-top: 10.6667vw;
}
@media (min-width: 768px) {
  .my-40 {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .my-40 {
    margin-top: 40px;
  }
}
.my-40 {
  margin-bottom: 10.6667vw;
}
@media (min-width: 768px) {
  .my-40 {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .my-40 {
    margin-bottom: 40px;
  }
}

.p-40 {
  padding: 10.6667vw;
}
@media (min-width: 768px) {
  .p-40 {
    padding: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .p-40 {
    padding: 40px;
  }
}

.pt-40 {
  padding-top: 10.6667vw;
}
@media (min-width: 768px) {
  .pt-40 {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .pt-40 {
    padding-top: 40px;
  }
}

.pb-40 {
  padding-bottom: 10.6667vw;
}
@media (min-width: 768px) {
  .pb-40 {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .pb-40 {
    padding-bottom: 40px;
  }
}

.pl-40 {
  padding-left: 10.6667vw;
}
@media (min-width: 768px) {
  .pl-40 {
    padding-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .pl-40 {
    padding-left: 40px;
  }
}

.pr-40 {
  padding-right: 10.6667vw;
}
@media (min-width: 768px) {
  .pr-40 {
    padding-right: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .pr-40 {
    padding-right: 40px;
  }
}

.px-40 {
  padding-left: 10.6667vw;
}
@media (min-width: 768px) {
  .px-40 {
    padding-left: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .px-40 {
    padding-left: 40px;
  }
}
.px-40 {
  padding-right: 10.6667vw;
}
@media (min-width: 768px) {
  .px-40 {
    padding-right: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .px-40 {
    padding-right: 40px;
  }
}

.py-40 {
  padding-top: 10.6667vw;
}
@media (min-width: 768px) {
  .py-40 {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .py-40 {
    padding-top: 40px;
  }
}
.py-40 {
  padding-bottom: 10.6667vw;
}
@media (min-width: 768px) {
  .py-40 {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .py-40 {
    padding-bottom: 40px;
  }
}

.m-50 {
  margin: 13.3333vw;
}
@media (min-width: 768px) {
  .m-50 {
    margin: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .m-50 {
    margin: 50px;
  }
}

.mt-50 {
  margin-top: 13.3333vw;
}
@media (min-width: 768px) {
  .mt-50 {
    margin-top: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .mt-50 {
    margin-top: 50px;
  }
}

.mb-50 {
  margin-bottom: 13.3333vw;
}
@media (min-width: 768px) {
  .mb-50 {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .mb-50 {
    margin-bottom: 50px;
  }
}

.ml-50 {
  margin-left: 13.3333vw;
}
@media (min-width: 768px) {
  .ml-50 {
    margin-left: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .ml-50 {
    margin-left: 50px;
  }
}

.mr-50 {
  margin-right: 13.3333vw;
}
@media (min-width: 768px) {
  .mr-50 {
    margin-right: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .mr-50 {
    margin-right: 50px;
  }
}

.mx-50 {
  margin-left: 13.3333vw;
}
@media (min-width: 768px) {
  .mx-50 {
    margin-left: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .mx-50 {
    margin-left: 50px;
  }
}
.mx-50 {
  margin-right: 13.3333vw;
}
@media (min-width: 768px) {
  .mx-50 {
    margin-right: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .mx-50 {
    margin-right: 50px;
  }
}

.my-50 {
  margin-top: 13.3333vw;
}
@media (min-width: 768px) {
  .my-50 {
    margin-top: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .my-50 {
    margin-top: 50px;
  }
}
.my-50 {
  margin-bottom: 13.3333vw;
}
@media (min-width: 768px) {
  .my-50 {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .my-50 {
    margin-bottom: 50px;
  }
}

.p-50 {
  padding: 13.3333vw;
}
@media (min-width: 768px) {
  .p-50 {
    padding: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .p-50 {
    padding: 50px;
  }
}

.pt-50 {
  padding-top: 13.3333vw;
}
@media (min-width: 768px) {
  .pt-50 {
    padding-top: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .pt-50 {
    padding-top: 50px;
  }
}

.pb-50 {
  padding-bottom: 13.3333vw;
}
@media (min-width: 768px) {
  .pb-50 {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .pb-50 {
    padding-bottom: 50px;
  }
}

.pl-50 {
  padding-left: 13.3333vw;
}
@media (min-width: 768px) {
  .pl-50 {
    padding-left: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .pl-50 {
    padding-left: 50px;
  }
}

.pr-50 {
  padding-right: 13.3333vw;
}
@media (min-width: 768px) {
  .pr-50 {
    padding-right: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .pr-50 {
    padding-right: 50px;
  }
}

.px-50 {
  padding-left: 13.3333vw;
}
@media (min-width: 768px) {
  .px-50 {
    padding-left: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .px-50 {
    padding-left: 50px;
  }
}
.px-50 {
  padding-right: 13.3333vw;
}
@media (min-width: 768px) {
  .px-50 {
    padding-right: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .px-50 {
    padding-right: 50px;
  }
}

.py-50 {
  padding-top: 13.3333vw;
}
@media (min-width: 768px) {
  .py-50 {
    padding-top: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .py-50 {
    padding-top: 50px;
  }
}
.py-50 {
  padding-bottom: 13.3333vw;
}
@media (min-width: 768px) {
  .py-50 {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .py-50 {
    padding-bottom: 50px;
  }
}

.m-60 {
  margin: 16vw;
}
@media (min-width: 768px) {
  .m-60 {
    margin: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .m-60 {
    margin: 60px;
  }
}

.mt-60 {
  margin-top: 16vw;
}
@media (min-width: 768px) {
  .mt-60 {
    margin-top: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .mt-60 {
    margin-top: 60px;
  }
}

.mb-60 {
  margin-bottom: 16vw;
}
@media (min-width: 768px) {
  .mb-60 {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}

.ml-60 {
  margin-left: 16vw;
}
@media (min-width: 768px) {
  .ml-60 {
    margin-left: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .ml-60 {
    margin-left: 60px;
  }
}

.mr-60 {
  margin-right: 16vw;
}
@media (min-width: 768px) {
  .mr-60 {
    margin-right: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .mr-60 {
    margin-right: 60px;
  }
}

.mx-60 {
  margin-left: 16vw;
}
@media (min-width: 768px) {
  .mx-60 {
    margin-left: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .mx-60 {
    margin-left: 60px;
  }
}
.mx-60 {
  margin-right: 16vw;
}
@media (min-width: 768px) {
  .mx-60 {
    margin-right: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .mx-60 {
    margin-right: 60px;
  }
}

.my-60 {
  margin-top: 16vw;
}
@media (min-width: 768px) {
  .my-60 {
    margin-top: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .my-60 {
    margin-top: 60px;
  }
}
.my-60 {
  margin-bottom: 16vw;
}
@media (min-width: 768px) {
  .my-60 {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .my-60 {
    margin-bottom: 60px;
  }
}

.p-60 {
  padding: 16vw;
}
@media (min-width: 768px) {
  .p-60 {
    padding: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .p-60 {
    padding: 60px;
  }
}

.pt-60 {
  padding-top: 16vw;
}
@media (min-width: 768px) {
  .pt-60 {
    padding-top: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .pt-60 {
    padding-top: 60px;
  }
}

.pb-60 {
  padding-bottom: 16vw;
}
@media (min-width: 768px) {
  .pb-60 {
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .pb-60 {
    padding-bottom: 60px;
  }
}

.pl-60 {
  padding-left: 16vw;
}
@media (min-width: 768px) {
  .pl-60 {
    padding-left: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .pl-60 {
    padding-left: 60px;
  }
}

.pr-60 {
  padding-right: 16vw;
}
@media (min-width: 768px) {
  .pr-60 {
    padding-right: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .pr-60 {
    padding-right: 60px;
  }
}

.px-60 {
  padding-left: 16vw;
}
@media (min-width: 768px) {
  .px-60 {
    padding-left: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .px-60 {
    padding-left: 60px;
  }
}
.px-60 {
  padding-right: 16vw;
}
@media (min-width: 768px) {
  .px-60 {
    padding-right: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .px-60 {
    padding-right: 60px;
  }
}

.py-60 {
  padding-top: 16vw;
}
@media (min-width: 768px) {
  .py-60 {
    padding-top: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .py-60 {
    padding-top: 60px;
  }
}
.py-60 {
  padding-bottom: 16vw;
}
@media (min-width: 768px) {
  .py-60 {
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .py-60 {
    padding-bottom: 60px;
  }
}

.m-80 {
  margin: 21.3333vw;
}
@media (min-width: 768px) {
  .m-80 {
    margin: 5rem;
  }
}
@media (min-width: 1200px) {
  .m-80 {
    margin: 80px;
  }
}

.mt-80 {
  margin-top: 21.3333vw;
}
@media (min-width: 768px) {
  .mt-80 {
    margin-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .mt-80 {
    margin-top: 80px;
  }
}

.mb-80 {
  margin-bottom: 21.3333vw;
}
@media (min-width: 768px) {
  .mb-80 {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .mb-80 {
    margin-bottom: 80px;
  }
}

.ml-80 {
  margin-left: 21.3333vw;
}
@media (min-width: 768px) {
  .ml-80 {
    margin-left: 5rem;
  }
}
@media (min-width: 1200px) {
  .ml-80 {
    margin-left: 80px;
  }
}

.mr-80 {
  margin-right: 21.3333vw;
}
@media (min-width: 768px) {
  .mr-80 {
    margin-right: 5rem;
  }
}
@media (min-width: 1200px) {
  .mr-80 {
    margin-right: 80px;
  }
}

.mx-80 {
  margin-left: 21.3333vw;
}
@media (min-width: 768px) {
  .mx-80 {
    margin-left: 5rem;
  }
}
@media (min-width: 1200px) {
  .mx-80 {
    margin-left: 80px;
  }
}
.mx-80 {
  margin-right: 21.3333vw;
}
@media (min-width: 768px) {
  .mx-80 {
    margin-right: 5rem;
  }
}
@media (min-width: 1200px) {
  .mx-80 {
    margin-right: 80px;
  }
}

.my-80 {
  margin-top: 21.3333vw;
}
@media (min-width: 768px) {
  .my-80 {
    margin-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .my-80 {
    margin-top: 80px;
  }
}
.my-80 {
  margin-bottom: 21.3333vw;
}
@media (min-width: 768px) {
  .my-80 {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .my-80 {
    margin-bottom: 80px;
  }
}

.p-80 {
  padding: 21.3333vw;
}
@media (min-width: 768px) {
  .p-80 {
    padding: 5rem;
  }
}
@media (min-width: 1200px) {
  .p-80 {
    padding: 80px;
  }
}

.pt-80 {
  padding-top: 21.3333vw;
}
@media (min-width: 768px) {
  .pt-80 {
    padding-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .pt-80 {
    padding-top: 80px;
  }
}

.pb-80 {
  padding-bottom: 21.3333vw;
}
@media (min-width: 768px) {
  .pb-80 {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .pb-80 {
    padding-bottom: 80px;
  }
}

.pl-80 {
  padding-left: 21.3333vw;
}
@media (min-width: 768px) {
  .pl-80 {
    padding-left: 5rem;
  }
}
@media (min-width: 1200px) {
  .pl-80 {
    padding-left: 80px;
  }
}

.pr-80 {
  padding-right: 21.3333vw;
}
@media (min-width: 768px) {
  .pr-80 {
    padding-right: 5rem;
  }
}
@media (min-width: 1200px) {
  .pr-80 {
    padding-right: 80px;
  }
}

.px-80 {
  padding-left: 21.3333vw;
}
@media (min-width: 768px) {
  .px-80 {
    padding-left: 5rem;
  }
}
@media (min-width: 1200px) {
  .px-80 {
    padding-left: 80px;
  }
}
.px-80 {
  padding-right: 21.3333vw;
}
@media (min-width: 768px) {
  .px-80 {
    padding-right: 5rem;
  }
}
@media (min-width: 1200px) {
  .px-80 {
    padding-right: 80px;
  }
}

.py-80 {
  padding-top: 21.3333vw;
}
@media (min-width: 768px) {
  .py-80 {
    padding-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .py-80 {
    padding-top: 80px;
  }
}
.py-80 {
  padding-bottom: 21.3333vw;
}
@media (min-width: 768px) {
  .py-80 {
    padding-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .py-80 {
    padding-bottom: 80px;
  }
}

.m-100 {
  margin: 26.6667vw;
}
@media (min-width: 768px) {
  .m-100 {
    margin: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .m-100 {
    margin: 100px;
  }
}

.mt-100 {
  margin-top: 26.6667vw;
}
@media (min-width: 768px) {
  .mt-100 {
    margin-top: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .mt-100 {
    margin-top: 100px;
  }
}

.mb-100 {
  margin-bottom: 26.6667vw;
}
@media (min-width: 768px) {
  .mb-100 {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .mb-100 {
    margin-bottom: 100px;
  }
}

.ml-100 {
  margin-left: 26.6667vw;
}
@media (min-width: 768px) {
  .ml-100 {
    margin-left: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .ml-100 {
    margin-left: 100px;
  }
}

.mr-100 {
  margin-right: 26.6667vw;
}
@media (min-width: 768px) {
  .mr-100 {
    margin-right: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .mr-100 {
    margin-right: 100px;
  }
}

.mx-100 {
  margin-left: 26.6667vw;
}
@media (min-width: 768px) {
  .mx-100 {
    margin-left: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-100 {
    margin-left: 100px;
  }
}
.mx-100 {
  margin-right: 26.6667vw;
}
@media (min-width: 768px) {
  .mx-100 {
    margin-right: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .mx-100 {
    margin-right: 100px;
  }
}

.my-100 {
  margin-top: 26.6667vw;
}
@media (min-width: 768px) {
  .my-100 {
    margin-top: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .my-100 {
    margin-top: 100px;
  }
}
.my-100 {
  margin-bottom: 26.6667vw;
}
@media (min-width: 768px) {
  .my-100 {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .my-100 {
    margin-bottom: 100px;
  }
}

.p-100 {
  padding: 26.6667vw;
}
@media (min-width: 768px) {
  .p-100 {
    padding: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .p-100 {
    padding: 100px;
  }
}

.pt-100 {
  padding-top: 26.6667vw;
}
@media (min-width: 768px) {
  .pt-100 {
    padding-top: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .pt-100 {
    padding-top: 100px;
  }
}

.pb-100 {
  padding-bottom: 26.6667vw;
}
@media (min-width: 768px) {
  .pb-100 {
    padding-bottom: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .pb-100 {
    padding-bottom: 100px;
  }
}

.pl-100 {
  padding-left: 26.6667vw;
}
@media (min-width: 768px) {
  .pl-100 {
    padding-left: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .pl-100 {
    padding-left: 100px;
  }
}

.pr-100 {
  padding-right: 26.6667vw;
}
@media (min-width: 768px) {
  .pr-100 {
    padding-right: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .pr-100 {
    padding-right: 100px;
  }
}

.px-100 {
  padding-left: 26.6667vw;
}
@media (min-width: 768px) {
  .px-100 {
    padding-left: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .px-100 {
    padding-left: 100px;
  }
}
.px-100 {
  padding-right: 26.6667vw;
}
@media (min-width: 768px) {
  .px-100 {
    padding-right: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .px-100 {
    padding-right: 100px;
  }
}

.py-100 {
  padding-top: 26.6667vw;
}
@media (min-width: 768px) {
  .py-100 {
    padding-top: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .py-100 {
    padding-top: 100px;
  }
}
.py-100 {
  padding-bottom: 26.6667vw;
}
@media (min-width: 768px) {
  .py-100 {
    padding-bottom: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .py-100 {
    padding-bottom: 100px;
  }
}

.text-10 {
  font-size: 2.6667vw;
}
@media (min-width: 768px) {
  .text-10 {
    font-size: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .text-10 {
    font-size: 10px;
  }
}

.text-11 {
  font-size: 2.9333vw;
}
@media (min-width: 768px) {
  .text-11 {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1200px) {
  .text-11 {
    font-size: 11px;
  }
}

.text-12 {
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .text-12 {
    font-size: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .text-12 {
    font-size: 12px;
  }
}

.text-13 {
  font-size: 3.4667vw;
}
@media (min-width: 768px) {
  .text-13 {
    font-size: 0.8125rem;
  }
}
@media (min-width: 1200px) {
  .text-13 {
    font-size: 13px;
  }
}

.text-14 {
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .text-14 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .text-14 {
    font-size: 14px;
  }
}

.text-15 {
  font-size: 4vw;
}
@media (min-width: 768px) {
  .text-15 {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .text-15 {
    font-size: 15px;
  }
}

.text-16 {
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .text-16 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .text-16 {
    font-size: 16px;
  }
}

.text-18 {
  font-size: 4.8vw;
}
@media (min-width: 768px) {
  .text-18 {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .text-18 {
    font-size: 18px;
  }
}

.text-20 {
  font-size: 5.3333vw;
}
@media (min-width: 768px) {
  .text-20 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .text-20 {
    font-size: 20px;
  }
}

.text-22 {
  font-size: 5.8667vw;
}
@media (min-width: 768px) {
  .text-22 {
    font-size: 1.375rem;
  }
}
@media (min-width: 1200px) {
  .text-22 {
    font-size: 22px;
  }
}

.text-24 {
  font-size: 6.4vw;
}
@media (min-width: 768px) {
  .text-24 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .text-24 {
    font-size: 24px;
  }
}

.text-26 {
  font-size: 6.9333vw;
}
@media (min-width: 768px) {
  .text-26 {
    font-size: 1.625rem;
  }
}
@media (min-width: 1200px) {
  .text-26 {
    font-size: 26px;
  }
}

.text-28 {
  font-size: 7.4667vw;
}
@media (min-width: 768px) {
  .text-28 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .text-28 {
    font-size: 28px;
  }
}

.text-30 {
  font-size: 8vw;
}
@media (min-width: 768px) {
  .text-30 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .text-30 {
    font-size: 30px;
  }
}

.text-32 {
  font-size: 8.5333vw;
}
@media (min-width: 768px) {
  .text-32 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .text-32 {
    font-size: 32px;
  }
}

.text-36 {
  font-size: 9.6vw;
}
@media (min-width: 768px) {
  .text-36 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .text-36 {
    font-size: 36px;
  }
}

.text-40 {
  font-size: 10.6667vw;
}
@media (min-width: 768px) {
  .text-40 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .text-40 {
    font-size: 40px;
  }
}

.text-48 {
  font-size: 12.8vw;
}
@media (min-width: 768px) {
  .text-48 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .text-48 {
    font-size: 48px;
  }
}

/*
영문 자간 다시 정의하기 위한 믹스인
사용 예시
.en-title {
  @include font-set('lg', 'eng');
}
*/
.text-left {
  text-align: left;
}

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

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

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

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

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

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

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

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

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

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

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

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

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

.justify-start {
  justify-content: flex-start;
}

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

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

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

.justify-around {
  justify-content: space-around;
}

.items-start {
  align-items: flex-start;
}

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

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

.items-baseline {
  align-items: baseline;
}

.items-stretch {
  align-items: stretch;
}

.self-center {
  align-self: center;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.w-auto {
  width: auto;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

.text-cut1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.w-5p {
  width: 5%;
}

.w-10p {
  width: 10%;
}

.w-15p {
  width: 15%;
}

.w-20p {
  width: 20%;
}

.w-25p {
  width: 25%;
}

.w-30p {
  width: 30%;
}

.w-33p {
  width: 33%;
}

.w-40p {
  width: 40%;
}

.w-50p {
  width: 50%;
}

.w-60p {
  width: 60%;
}

.w-70p {
  width: 70%;
}

.w-75p {
  width: 75%;
}

.w-80p {
  width: 80%;
}

.w-90p {
  width: 90%;
}

.w-100p {
  width: 100%;
}

/*
================================================================================
   [Utility Classes 사용 가이드]
   * 핵심 규칙: 클래스명에 적힌 숫자는 "디자인 시안 기준(1배수) 픽셀"입니다.
   * 작동 원리: 내부적으로 responsive() 믹스인을 타서 모바일(vw) / 태블릿(rem) / PC(px)로 자동 스케일링됩니다.
================================================================================

   1. Spacing (여백)
   -----------------------------------------------------------------------------
   * Naming: {property}{side}-{size}
   * Property: m (margin), p (padding)
   * Side: t (top), b (bottom), l (left), r (right), x (left+right), y (top+bottom), 생략 (all)
   * Size: 0, 4, 5, 8, 10, 12, 15, 16, 20, 24, 30, 40, 50, 60, 80, 100

   [예시]
   .mt-20       => margin-top 20px (각 해상도에 맞게 변환)
   .px-10       => padding-left/right 10px
   .p-30        => padding 30px
   .mb-0        => margin-bottom: 0

   2. Typography (텍스트)
   -----------------------------------------------------------------------------
   * Naming: .text-{size}
   * Size: 10 ~ 48 (시안 기준 px)

   [예시]
   .text-16     => font-size 16px 기준 자동 스케일링
   .text-24     => font-size 24px 기준 자동 스케일링

   * 정렬: .text-left, .text-center, .text-right
   * 굵기: .fw-400, .fw-500, .fw-700 등

   3. Flexbox (레이아웃 배치)
   -----------------------------------------------------------------------------
   * 컨테이너: .d-flex, .d-inline-flex
   * 방향: .flex-row (기본), .flex-col (세로)
   * 줄바꿈: .flex-wrap, .flex-nowrap

   * 가로 정렬 (Justify):
     .justify-start, .justify-center, .justify-end, .justify-between, .justify-around

   * 세로 정렬 (Align):
     .items-start, .items-center, .items-end, .items-stretch

   4. 기타 유틸리티
   -----------------------------------------------------------------------------
   .w-full      => width: 100%
   .h-full      => height: 100%
   .d-none      => display: none
   .d-block     => display: block
   .sr-only     => 스크린 리더 전용 숨김
   .w-20p       => width: 20%

================================================================================
*/
/* =================================================================
   [0] Variables & Icons (CSS Variables)
   ================================================================= */
:root {
  --icon-radio-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23B7BBC0' stroke-width='2'/%3E%3C/svg%3E");
  --icon-radio-checked: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='7.5' stroke='%23832EDA' stroke-width='5'/%3E%3C/svg%3E");
  --icon-radio-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9' fill='%23eeeeee' stroke='%23B7BBC0' stroke-width='2'/%3E%3C/svg%3E");
  --icon-checkbox-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='1' y='1' width='18' height='18' rx='3' stroke='%23B7BBC0' stroke-width='2'/%3E%3C/svg%3E");
  --icon-checkbox-checked: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='0.9' y='0.9' width='18.2' height='18.2' rx='3.1' fill='%23832EDA' stroke='%23832EDA' stroke-width='1.8'/%3E%3Cpath d='M6.2002 10.0249L9.29073 12.6499L14.2002 7.6499' stroke='white' stroke-width='2.7' stroke-linecap='square'/%3E%3C/svg%3E");
  --icon-checkbox-disabled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='1' y='1' width='18' height='18' rx='3' fill='%23eeeeee' stroke='%23B7BBC0' stroke-width='2'/%3E%3C/svg%3E");
}

/* =================================================================
   [1] Form Row Layout (Universal Container)
   ================================================================= */
.form-row {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 2.6667vw;
}
@media (min-width: 768px) {
  .form-row {
    gap: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .form-row {
    gap: 10px;
  }
}
.form-row {
  margin-bottom: 6.4vw;
}
@media (min-width: 768px) {
  .form-row {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .form-row {
    margin-bottom: 24px;
  }
}
.form-row > label,
.form-row > .label {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--text-main);
  word-break: keep-all;
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .form-row > label,
  .form-row > .label {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row > label,
  .form-row > .label {
    font-size: 16px;
  }
}
.form-row > label,
.form-row > .label {
  min-height: 5.3333vw;
}
@media (min-width: 768px) {
  .form-row > label,
  .form-row > .label {
    min-height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .form-row > label,
  .form-row > .label {
    min-height: 20px;
  }
}
.form-row > label span,
.form-row > .label span {
  font: inherit;
  color: var(--text-sub);
}
.form-row > label span.required,
.form-row > .label span.required {
  color: var(--color-error);
}
.form-row.required > label::after, .form-row.required > .label::after {
  content: "*";
  color: var(--color-error);
  margin-left: 4px;
  display: inline-block;
  font-weight: bold;
}
.form-row > input,
.form-row > select,
.form-row > textarea,
.form-row > .dropdown-box,
.form-row > .multi-dropdown-box,
.form-row > .group-items,
.form-row > .datepicker-box,
.form-row > .btn-box,
.form-row > .input-group,
.form-row > .file-box,
.form-row > .multi-file-box {
  width: 100%;
}
.form-row.type-row {
  align-items: flex-start;
}
.form-row.type-row .error {
  width: 100%;
}
@media (min-width: 768px) {
  .form-row.type-row {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .form-row.type-row > label,
  .form-row.type-row > .label {
    flex: 0 0 auto;
    width: auto;
    margin-bottom: 0;
    min-height: 48px;
    min-width: 48vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-width: 11.25rem;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-width: 180px;
  }
}
@media (min-width: 768px) {
  .form-row.type-row:has(.group-items) > label, .form-row.type-row:has(.group-items) > .label {
    min-height: 30px;
  }
  .form-row.type-row.check .group-items, .form-row.type-row.radio .group-items {
    min-height: 30px;
  }
  .form-row.type-row > input,
  .form-row.type-row > select,
  .form-row.type-row > textarea,
  .form-row.type-row > .dropdown-box,
  .form-row.type-row > .multi-dropdown-box,
  .form-row.type-row > .group-items,
  .form-row.type-row > .datepicker-box,
  .form-row.type-row > .btn-box,
  .form-row.type-row > .input-group,
  .form-row.type-row > .file-box,
  .form-row.type-row > .multi-file-box {
    flex: 1;
    width: 100%;
    min-width: 0;
  }
  .form-row.type-row .error {
    flex-basis: 100%;
    padding-left: 0;
    margin-left: 50.6667vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .form-row.type-row .error {
    margin-left: 11.875rem;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .form-row.type-row .error {
    margin-left: 190px;
  }
}
.form-row.type-col {
  align-items: flex-start;
}
.form-row.type-col > label,
.form-row.type-col > .label {
  width: 100%;
  flex: none;
  margin-bottom: 0;
  min-height: 5.3333vw;
}
@media (min-width: 768px) {
  .form-row.type-col > label,
  .form-row.type-col > .label {
    min-height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .form-row.type-col > label,
  .form-row.type-col > .label {
    min-height: 20px;
  }
}
.form-row input[type=text],
.form-row input[type=number],
.form-row input[type=tel],
.form-row input[type=email],
.form-row input[type=password],
.form-row select,
.form-row .dropdown-box > button {
  display: inline-block;
  background: var(--input-bg);
  border: 1px solid var(--input-border-color);
  color: var(---gray8);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select,
  .form-row .dropdown-box > button {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select,
  .form-row .dropdown-box > button {
    font-size: 16px;
  }
}
.form-row input[type=text],
.form-row input[type=number],
.form-row input[type=tel],
.form-row input[type=email],
.form-row input[type=password],
.form-row select,
.form-row .dropdown-box > button {
  border-radius: var(--input-lg-radius);
}
@media (min-width: 768px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select,
  .form-row .dropdown-box > button {
    border-radius: var(--input-lg-radius);
  }
}
@media (min-width: 1200px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select,
  .form-row .dropdown-box > button {
    border-radius: var(--input-lg-radius);
  }
}
.form-row input[type=text],
.form-row input[type=number],
.form-row input[type=tel],
.form-row input[type=email],
.form-row input[type=password],
.form-row select,
.form-row .dropdown-box > button {
  height: 59px;
}
@media (min-width: 768px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select,
  .form-row .dropdown-box > button {
    height: 59px;
  }
}
@media (min-width: 1200px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select,
  .form-row .dropdown-box > button {
    height: 59px;
  }
}
.form-row input[type=text],
.form-row input[type=number],
.form-row input[type=tel],
.form-row input[type=email],
.form-row input[type=password],
.form-row select,
.form-row .dropdown-box > button {
  padding: 0 4.2667vw;
}
@media (min-width: 768px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select,
  .form-row .dropdown-box > button {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row input[type=text],
  .form-row input[type=number],
  .form-row input[type=tel],
  .form-row input[type=email],
  .form-row input[type=password],
  .form-row select,
  .form-row .dropdown-box > button {
    padding: 0 16px;
  }
}
.form-row input[type=text]::-moz-placeholder, .form-row input[type=number]::-moz-placeholder, .form-row input[type=tel]::-moz-placeholder, .form-row input[type=email]::-moz-placeholder, .form-row input[type=password]::-moz-placeholder, .form-row select::-moz-placeholder, .form-row .dropdown-box > button::-moz-placeholder {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 1;
  font-size: 4.2667vw;
}
.form-row input[type=text]::placeholder,
.form-row input[type=number]::placeholder,
.form-row input[type=tel]::placeholder,
.form-row input[type=email]::placeholder,
.form-row input[type=password]::placeholder,
.form-row select::placeholder,
.form-row .dropdown-box > button::placeholder {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 1;
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .form-row input[type=text]::-moz-placeholder, .form-row input[type=number]::-moz-placeholder, .form-row input[type=tel]::-moz-placeholder, .form-row input[type=email]::-moz-placeholder, .form-row input[type=password]::-moz-placeholder, .form-row select::-moz-placeholder, .form-row .dropdown-box > button::-moz-placeholder {
    font-size: 1rem;
  }
  .form-row input[type=text]::placeholder,
  .form-row input[type=number]::placeholder,
  .form-row input[type=tel]::placeholder,
  .form-row input[type=email]::placeholder,
  .form-row input[type=password]::placeholder,
  .form-row select::placeholder,
  .form-row .dropdown-box > button::placeholder {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row input[type=text]::-moz-placeholder, .form-row input[type=number]::-moz-placeholder, .form-row input[type=tel]::-moz-placeholder, .form-row input[type=email]::-moz-placeholder, .form-row input[type=password]::-moz-placeholder, .form-row select::-moz-placeholder, .form-row .dropdown-box > button::-moz-placeholder {
    font-size: 16px;
  }
  .form-row input[type=text]::placeholder,
  .form-row input[type=number]::placeholder,
  .form-row input[type=tel]::placeholder,
  .form-row input[type=email]::placeholder,
  .form-row input[type=password]::placeholder,
  .form-row select::placeholder,
  .form-row .dropdown-box > button::placeholder {
    font-size: 16px;
  }
}
.form-row input[type=text]:focus,
.form-row input[type=number]:focus,
.form-row input[type=tel]:focus,
.form-row input[type=email]:focus,
.form-row input[type=password]:focus,
.form-row select:focus,
.form-row .dropdown-box > button:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(131, 46, 218, 0);
}
.form-row input[type=text]:disabled,
.form-row input[type=number]:disabled,
.form-row input[type=tel]:disabled,
.form-row input[type=email]:disabled,
.form-row input[type=password]:disabled,
.form-row select:disabled,
.form-row .dropdown-box > button:disabled {
  background: var(--line-light);
  border-color: var(--line-light);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row input[type=text]:disabled::-moz-placeholder, .form-row input[type=number]:disabled::-moz-placeholder, .form-row input[type=tel]:disabled::-moz-placeholder, .form-row input[type=email]:disabled::-moz-placeholder, .form-row input[type=password]:disabled::-moz-placeholder, .form-row select:disabled::-moz-placeholder, .form-row .dropdown-box > button:disabled::-moz-placeholder {
  color: var(--text-muted);
}
.form-row input[type=text]:disabled::placeholder,
.form-row input[type=number]:disabled::placeholder,
.form-row input[type=tel]:disabled::placeholder,
.form-row input[type=email]:disabled::placeholder,
.form-row input[type=password]:disabled::placeholder,
.form-row select:disabled::placeholder,
.form-row .dropdown-box > button:disabled::placeholder {
  color: var(--text-muted);
}
.form-row input[type=text]:not(.dropdown-box > button):-moz-read-only, .form-row input[type=number]:not(.dropdown-box > button):-moz-read-only, .form-row input[type=tel]:not(.dropdown-box > button):-moz-read-only, .form-row input[type=email]:not(.dropdown-box > button):-moz-read-only, .form-row input[type=password]:not(.dropdown-box > button):-moz-read-only, .form-row select:not(.dropdown-box > button):-moz-read-only, .form-row .dropdown-box > button:not(.dropdown-box > button):-moz-read-only {
  background: var(--line-light);
  border-color: var(--input-border-color);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row input[type=text]:not(.dropdown-box > button):read-only,
.form-row input[type=number]:not(.dropdown-box > button):read-only,
.form-row input[type=tel]:not(.dropdown-box > button):read-only,
.form-row input[type=email]:not(.dropdown-box > button):read-only,
.form-row input[type=password]:not(.dropdown-box > button):read-only,
.form-row select:not(.dropdown-box > button):read-only,
.form-row .dropdown-box > button:not(.dropdown-box > button):read-only {
  background: var(--line-light);
  border-color: var(--input-border-color);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row input[type=text]:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row input[type=number]:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row input[type=tel]:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row input[type=email]:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row input[type=password]:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row select:not(.dropdown-box > button):read-only::-moz-placeholder, .form-row .dropdown-box > button:not(.dropdown-box > button):read-only::-moz-placeholder {
  color: var(--text-muted);
}
.form-row input[type=text]:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row input[type=number]:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row input[type=tel]:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row input[type=email]:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row input[type=password]:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row select:not(.dropdown-box > button):-moz-read-only::placeholder, .form-row .dropdown-box > button:not(.dropdown-box > button):-moz-read-only::placeholder {
  color: var(--text-muted);
}
.form-row input[type=text]:not(.dropdown-box > button):read-only::placeholder,
.form-row input[type=number]:not(.dropdown-box > button):read-only::placeholder,
.form-row input[type=tel]:not(.dropdown-box > button):read-only::placeholder,
.form-row input[type=email]:not(.dropdown-box > button):read-only::placeholder,
.form-row input[type=password]:not(.dropdown-box > button):read-only::placeholder,
.form-row select:not(.dropdown-box > button):read-only::placeholder,
.form-row .dropdown-box > button:not(.dropdown-box > button):read-only::placeholder {
  color: var(--text-muted);
}
.form-row textarea {
  display: block;
  resize: none;
  background: var(--input-bg);
  border: 1px solid var(--input-border-color);
  color: var(---gray8);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .form-row textarea {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    font-size: 16px;
  }
}
.form-row textarea {
  border-radius: 3.2vw;
}
@media (min-width: 768px) {
  .form-row textarea {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    border-radius: 12px;
  }
}
.form-row textarea {
  padding: 5.3333vw 4.2667vw;
}
@media (min-width: 768px) {
  .form-row textarea {
    padding: 1.25rem 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    padding: 20px 16px;
  }
}
.form-row textarea {
  min-height: 26.6667vw;
}
@media (min-width: 768px) {
  .form-row textarea {
    min-height: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    min-height: 100px;
  }
}
.form-row textarea::-moz-placeholder {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 1;
  font-size: 4.2667vw;
}
.form-row textarea::placeholder {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 1;
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .form-row textarea::-moz-placeholder {
    font-size: 1rem;
  }
  .form-row textarea::placeholder {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea::-moz-placeholder {
    font-size: 16px;
  }
  .form-row textarea::placeholder {
    font-size: 16px;
  }
}
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(131, 46, 218, 0);
}
.form-row textarea:disabled {
  background: var(--line-light);
  border-color: var(--line-light);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row textarea:disabled::-moz-placeholder {
  color: var(--text-muted);
}
.form-row textarea:disabled::placeholder {
  color: var(--text-muted);
}
.form-row textarea:-moz-read-only {
  background: var(--line-light);
  border-color: var(--input-border-color);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row textarea:read-only {
  background: var(--line-light);
  border-color: var(--input-border-color);
  color: var(--text-muted);
  cursor: not-allowed;
}
.form-row textarea:read-only::-moz-placeholder {
  color: var(--text-muted);
}
.form-row textarea:-moz-read-only::placeholder {
  color: var(--text-muted);
}
.form-row textarea:read-only::placeholder {
  color: var(--text-muted);
}
.form-row div.error {
  position: relative;
  color: var(--color-error);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .form-row div.error {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error {
    font-size: 14px;
  }
}
.form-row div.error:before {
  content: "*";
  color: inherit;
  margin-top: 2px;
  margin-right: 1.0667vw;
}
@media (min-width: 768px) {
  .form-row div.error:before {
    margin-right: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error:before {
    margin-right: 4px;
  }
}
.form-row div.error:before {
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .form-row div.error:before {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error:before {
    font-size: 14px;
  }
}

/* =================================================================
   [2] Components: Dropdown Box
   ================================================================= */
.dropdown-box,
.multi-dropdown-box {
  display: block;
  width: 100%;
  position: relative;
}
.dropdown-box > button,
.multi-dropdown-box > button {
  width: 100%;
  text-align: left;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer !important;
  background: var(--input-bg);
  border: 1px solid var(--input-border-color);
  color: var(--text-main);
  transition: border-color 0.2s, box-shadow 0.2s;
  height: 59px;
}
@media (min-width: 768px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    height: 59px;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    height: 59px;
  }
}
.dropdown-box > button,
.multi-dropdown-box > button {
  border-radius: 3.2vw;
}
@media (min-width: 768px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    border-radius: 12px;
  }
}
.dropdown-box > button,
.multi-dropdown-box > button {
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    font-size: 16px;
  }
}
.dropdown-box > button,
.multi-dropdown-box > button {
  padding: 0 8vw 0 4.2667vw;
}
@media (min-width: 768px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    padding: 0 1.875rem 0 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    padding: 0 30px 0 16px;
  }
}
.dropdown-box > button:after,
.multi-dropdown-box > button:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--text-main);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='30' viewBox='0 0 54 30' fill='none'%3E%3Cpath d='M0.878677 5.12108C-0.292893 3.9495 -0.292895 2.05046 0.878677 0.878889C2.05025 -0.292681 3.94929 -0.292681 5.12086 0.878889L26.9998 22.7578L48.8787 0.878887C50.0502 -0.292685 51.9493 -0.292685 53.1209 0.878887C54.2924 2.05046 54.2924 3.9495 53.1209 5.12107L29.1209 29.1211C27.9493 30.2926 26.0503 30.2926 24.8787 29.1211L0.878677 5.12108Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='30' viewBox='0 0 54 30' fill='none'%3E%3Cpath d='M0.878677 5.12108C-0.292893 3.9495 -0.292895 2.05046 0.878677 0.878889C2.05025 -0.292681 3.94929 -0.292681 5.12086 0.878889L26.9998 22.7578L48.8787 0.878887C50.0502 -0.292685 51.9493 -0.292685 53.1209 0.878887C54.2924 2.05046 54.2924 3.9495 53.1209 5.12107L29.1209 29.1211C27.9493 30.2926 26.0503 30.2926 24.8787 29.1211L0.878677 5.12108Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.2s ease, background-color 0.2s ease;
  right: 4.2667vw;
}
@media (min-width: 768px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    right: 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    right: 16px;
  }
}
.dropdown-box > button:after,
.multi-dropdown-box > button:after {
  width: 3.7333vw;
}
@media (min-width: 768px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    width: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    width: 14px;
  }
}
.dropdown-box > button:after,
.multi-dropdown-box > button:after {
  height: 2.1333vw;
}
@media (min-width: 768px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    height: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button:after,
  .multi-dropdown-box > button:after {
    height: 8px;
  }
}
.dropdown-box > button:disabled,
.multi-dropdown-box > button:disabled {
  border-color: var(--line-light);
  background: var(--bg-page);
  color: var(--text-muted);
  cursor: not-allowed;
}
.dropdown-box > button:disabled:after,
.multi-dropdown-box > button:disabled:after {
  background-color: var(--text-muted);
}
.dropdown-box.placeholder > button,
.multi-dropdown-box.placeholder > button {
  color: var(--text-muted);
  font-weight: normal;
}
.dropdown-box.open > button,
.multi-dropdown-box.open > button {
  border-color: var(--color-primary);
}
.dropdown-box.open > button:after,
.multi-dropdown-box.open > button:after {
  transform: translateY(-50%) rotate(180deg);
  background-color: var(--color-primary);
}
.dropdown-box .dropdown-list,
.multi-dropdown-box .dropdown-list {
  display: none;
  position: absolute;
  left: 0;
  z-index: 100;
  width: 100%;
  background: var(--bg-white);
  border: 1px solid var(--input-border-color);
  overflow-y: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  top: 59px10px;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    top: 59px10px;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    top: 59px10px;
  }
}
.dropdown-box .dropdown-list,
.multi-dropdown-box .dropdown-list {
  border-radius: 3.2vw;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    border-radius: 12px;
  }
}
.dropdown-box .dropdown-list,
.multi-dropdown-box .dropdown-list {
  max-height: 53.3333vw;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    max-height: 12.5rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    max-height: 200px;
  }
}
.dropdown-box .dropdown-list::-webkit-scrollbar-track,
.multi-dropdown-box .dropdown-list::-webkit-scrollbar-track {
  background: transparent;
  margin: 10px 0;
}
.dropdown-box[direction=top] .dropdown-box .dropdown-list, .multi-dropdown-box[direction=top] .dropdown-box .dropdown-list,
.dropdown-box[direction=top] .multi-dropdown-box .dropdown-list,
.multi-dropdown-box[direction=top] .multi-dropdown-box .dropdown-list {
  top: auto;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  bottom: 59px10px;
}
@media (min-width: 768px) {
  .dropdown-box[direction=top] .dropdown-box .dropdown-list, .multi-dropdown-box[direction=top] .dropdown-box .dropdown-list,
  .dropdown-box[direction=top] .multi-dropdown-box .dropdown-list,
  .multi-dropdown-box[direction=top] .multi-dropdown-box .dropdown-list {
    bottom: 59px10px;
  }
}
@media (min-width: 1200px) {
  .dropdown-box[direction=top] .dropdown-box .dropdown-list, .multi-dropdown-box[direction=top] .dropdown-box .dropdown-list,
  .dropdown-box[direction=top] .multi-dropdown-box .dropdown-list,
  .multi-dropdown-box[direction=top] .multi-dropdown-box .dropdown-list {
    bottom: 59px10px;
  }
}
.dropdown-box .dropdown-list ul,
.multi-dropdown-box .dropdown-list ul {
  padding: 2.1333vw 0;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list ul,
  .multi-dropdown-box .dropdown-list ul {
    padding: 0.5rem 0;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul,
  .multi-dropdown-box .dropdown-list ul {
    padding: 8px 0;
  }
}
.dropdown-box .dropdown-list ul li.empty,
.multi-dropdown-box .dropdown-list ul li.empty {
  text-align: center;
  color: var(--text-muted);
  cursor: default;
  padding: 4.2667vw 0;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    padding: 1rem 0;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    padding: 16px 0;
  }
}
.dropdown-box .dropdown-list ul li.empty,
.multi-dropdown-box .dropdown-list ul li.empty {
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    font-size: 14px;
  }
}

.dropdown-box .dropdown-list ul li:hover {
  background: var(--color-primary-light);
}
.dropdown-box .dropdown-list ul li button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text-main);
  transition: background 0.2s, color 0.2s;
  padding: 2.6667vw 4.2667vw;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list ul li button {
    padding: 0.625rem 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button {
    padding: 10px 16px;
  }
}
.dropdown-box .dropdown-list ul li button {
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list ul li button {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button {
    font-size: 16px;
  }
}
.dropdown-box .dropdown-list ul li button:hover {
  background-color: var(--bg-base);
  color: var(--color-primary);
}
.dropdown-box .dropdown-list ul li button.selected {
  background-color: var(--color-primary);
  color: #fff;
  position: relative;
}
.dropdown-box .dropdown-list ul li button.selected:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4.2667vw;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    right: 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    right: 16px;
  }
}
.dropdown-box .dropdown-list ul li button.selected:after {
  width: 3.7333vw;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    width: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    width: 14px;
  }
}
.dropdown-box .dropdown-list ul li button.selected:after {
  height: 3.7333vw;
}
@media (min-width: 768px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    height: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    height: 14px;
  }
}

.multi-dropdown-box .dropdown-list {
  padding-top: 0;
}
.multi-dropdown-box .dropdown-list .list-search {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg-white);
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  padding: 2.1333vw;
}
@media (min-width: 768px) {
  .multi-dropdown-box .dropdown-list .list-search {
    padding: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search {
    padding: 8px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--line-light);
  color: var(---gray8);
  height: 59px;
}
@media (min-width: 768px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    height: 59px;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    height: 59px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  border-radius: 3.2vw;
}
@media (min-width: 768px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    border-radius: 12px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  padding-left: 4.2667vw;
}
@media (min-width: 768px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    padding-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    padding-left: 16px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  font-size: 4vw;
}
@media (min-width: 768px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    font-size: 15px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input:focus {
  border-color: var(--color-primary);
  outline: none;
}
.multi-dropdown-box .dropdown-list .list-search .icon-svg {
  position: absolute;
  color: var(--color-primary);
  pointer-events: none;
  right: 5.3333vw;
}
@media (min-width: 768px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    right: 20px;
  }
}
.multi-dropdown-box .dropdown-list .list-search .icon-svg {
  width: 5.3333vw;
}
@media (min-width: 768px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    width: 20px;
  }
}
.multi-dropdown-box .dropdown-list .list-search .icon-svg {
  height: 5.3333vw;
}
@media (min-width: 768px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search .icon-svg {
    height: 20px;
  }
}
.multi-dropdown-box .dropdown-list ul li label {
  cursor: pointer;
  display: block;
}
.multi-dropdown-box .dropdown-list ul li label:hover {
  background: var(--color-primary-light);
}
.multi-dropdown-box .dropdown-list ul li label input {
  display: none;
}
.multi-dropdown-box .dropdown-list ul li label input:checked + p {
  background-color: var(--color-primary);
  color: #fff;
}
.multi-dropdown-box .dropdown-list ul li label p {
  display: block;
  color: var(--text-main);
  transition: all 0.2s;
  padding: 2.6667vw 4.2667vw;
}
@media (min-width: 768px) {
  .multi-dropdown-box .dropdown-list ul li label p {
    padding: 0.625rem 1rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list ul li label p {
    padding: 10px 16px;
  }
}
.multi-dropdown-box .dropdown-list ul li label p {
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .multi-dropdown-box .dropdown-list ul li label p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list ul li label p {
    font-size: 16px;
  }
}
.multi-dropdown-box .dropdown-list ul li label p:hover {
  background-color: var(--bg-base);
  color: var(--color-primary);
}
.multi-dropdown-box .dropdown-list ul li label p span {
  color: var(--color-primary);
  font-weight: bold;
}
label input:checked + p .multi-dropdown-box .dropdown-list ul li label p span {
  color: #fff;
  text-decoration: underline;
}

/* =================================================================
   [3] Components: Checkbox & Radio Groups (Clean Version)
   ================================================================= */
.group-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 8vw;
}
@media (min-width: 768px) {
  .group-items {
    min-height: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .group-items {
    min-height: 30px;
  }
}
.group-items {
  gap: 5.3333vw;
}
@media (min-width: 768px) {
  .group-items {
    gap: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .group-items {
    gap: 20px;
  }
}
.group-items:not(.form-row *) {
  margin-bottom: 5.3333vw;
}
@media (min-width: 768px) {
  .group-items:not(.form-row *) {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .group-items:not(.form-row *) {
    margin-bottom: 20px;
  }
}

.check-box {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.check-box input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  margin: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
  background-image: var(--icon-checkbox-default);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image 0.2s ease;
  width: 5.3333vw;
}
@media (min-width: 768px) {
  .check-box input[type=checkbox] {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .check-box input[type=checkbox] {
    width: 20px;
  }
}
.check-box input[type=checkbox] {
  height: 5.3333vw;
}
@media (min-width: 768px) {
  .check-box input[type=checkbox] {
    height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .check-box input[type=checkbox] {
    height: 20px;
  }
}
.check-box input[type=checkbox] {
  margin-right: 1.6vw;
}
@media (min-width: 768px) {
  .check-box input[type=checkbox] {
    margin-right: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .check-box input[type=checkbox] {
    margin-right: 6px;
  }
}
.check-box input[type=checkbox]:checked {
  background-image: var(--icon-checkbox-checked);
}
.check-box input[type=checkbox]:disabled {
  background-image: var(--icon-checkbox-disabled);
  cursor: not-allowed;
}
.check-box input[type=checkbox]:disabled + label {
  color: var(--text-muted);
  cursor: not-allowed;
}
.check-box label {
  display: flex;
  align-items: center;
  color: var(---gray8);
  cursor: pointer;
  font-weight: 600;
  transition: color 0.2s;
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .check-box label {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .check-box label {
    font-size: 16px;
  }
}
.check-box input[type=checkbox]:checked + label {
  font-weight: 700;
  color: var(---gray8);
}

.radio-box {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.radio-box label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.radio-box label input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  margin: 0;
  border: none;
  background-color: transparent;
  background-image: var(--icon-radio-default);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: background-image 0.2s ease;
  width: 5.3333vw;
}
@media (min-width: 768px) {
  .radio-box label input[type=radio] {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .radio-box label input[type=radio] {
    width: 20px;
  }
}
.radio-box label input[type=radio] {
  height: 5.3333vw;
}
@media (min-width: 768px) {
  .radio-box label input[type=radio] {
    height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .radio-box label input[type=radio] {
    height: 20px;
  }
}
.radio-box label input[type=radio] {
  margin-right: 1.6vw;
}
@media (min-width: 768px) {
  .radio-box label input[type=radio] {
    margin-right: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .radio-box label input[type=radio] {
    margin-right: 6px;
  }
}
.radio-box label input[type=radio]:checked {
  background-image: var(--icon-radio-checked);
}
.radio-box label input[type=radio]:disabled {
  background-image: var(--icon-radio-disabled);
  cursor: not-allowed;
}
.radio-box label input[type=radio]:disabled + span {
  color: var(--text-muted);
  cursor: not-allowed;
}
.radio-box label span {
  color: var(---gray8);
  font-weight: 600;
  transition: color 0.2s;
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .radio-box label span {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .radio-box label span {
    font-size: 16px;
  }
}
.radio-box label input[type=radio]:checked + span {
  font-weight: 700;
  color: var(---gray8);
}

.check-box.required label::after,
.radio-box.required span::after {
  content: "*";
  color: var(--color-error);
  margin-left: 4px;
  display: inline-block;
}

.datepicker-box {
  position: relative;
  width: 100%;
}
.datepicker-box input.datepicker-input {
  width: 100%;
  cursor: pointer;
  padding-right: 8vw;
}
@media (min-width: 768px) {
  .datepicker-box input.datepicker-input {
    padding-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box input.datepicker-input {
    padding-right: 30px;
  }
}
.datepicker-box .icon-svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-primary);
  right: 4.2667vw;
}
@media (min-width: 768px) {
  .datepicker-box .icon-svg {
    right: 1rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box .icon-svg {
    right: 16px;
  }
}
.datepicker-box .icon-svg {
  width: 6.4vw;
}
@media (min-width: 768px) {
  .datepicker-box .icon-svg {
    width: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box .icon-svg {
    width: 24px;
  }
}
.datepicker-box .icon-svg {
  height: 6.4vw;
}
@media (min-width: 768px) {
  .datepicker-box .icon-svg {
    height: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box .icon-svg {
    height: 24px;
  }
}
.datepicker-box .icon-svg svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* =================================================================
   [Component] File Upload Box (Single & Multi 통합)
   ================================================================= */
.file-box,
.multi-file-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.file-box .upload-top,
.multi-file-box .upload-top {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2.1333vw;
}
@media (min-width: 768px) {
  .file-box .upload-top,
  .multi-file-box .upload-top {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-top,
  .multi-file-box .upload-top {
    gap: 8px;
  }
}
.file-box .upload-top .upload-name,
.multi-file-box .upload-top .upload-name {
  display: inline-block;
  flex: 1;
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border-color);
  color: var(--text-main);
  font-size: 4.2667vw;
}
@media (min-width: 768px) {
  .file-box .upload-top .upload-name,
  .multi-file-box .upload-top .upload-name {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-top .upload-name,
  .multi-file-box .upload-top .upload-name {
    font-size: 16px;
  }
}
.file-box .upload-top .upload-name,
.multi-file-box .upload-top .upload-name {
  border-radius: 3.2vw;
}
@media (min-width: 768px) {
  .file-box .upload-top .upload-name,
  .multi-file-box .upload-top .upload-name {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-top .upload-name,
  .multi-file-box .upload-top .upload-name {
    border-radius: 12px;
  }
}
.file-box .upload-top .upload-name,
.multi-file-box .upload-top .upload-name {
  height: 59px;
}
@media (min-width: 768px) {
  .file-box .upload-top .upload-name,
  .multi-file-box .upload-top .upload-name {
    height: 59px;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-top .upload-name,
  .multi-file-box .upload-top .upload-name {
    height: 59px;
  }
}
.file-box .upload-top .upload-name,
.multi-file-box .upload-top .upload-name {
  padding: 0 4.2667vw;
}
@media (min-width: 768px) {
  .file-box .upload-top .upload-name,
  .multi-file-box .upload-top .upload-name {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-top .upload-name,
  .multi-file-box .upload-top .upload-name {
    padding: 0 16px;
  }
}
.file-box .upload-top .upload-name:-moz-read-only, .multi-file-box .upload-top .upload-name:-moz-read-only {
  background-color: var(--bg-white);
  color: var(--text-main);
  cursor: default;
}
.file-box .upload-top .upload-name:read-only,
.multi-file-box .upload-top .upload-name:read-only {
  background-color: var(--bg-white);
  color: var(--text-main);
  cursor: default;
}
.file-box .upload-top .btn-upload,
.multi-file-box .upload-top .btn-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  background-color: var(--text-main);
  color: #fff;
  font-weight: 500;
  transition: background-color 0.2s;
  height: 59px;
}
@media (min-width: 768px) {
  .file-box .upload-top .btn-upload,
  .multi-file-box .upload-top .btn-upload {
    height: 59px;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-top .btn-upload,
  .multi-file-box .upload-top .btn-upload {
    height: 59px;
  }
}
.file-box .upload-top .btn-upload,
.multi-file-box .upload-top .btn-upload {
  padding: 0 5.3333vw;
}
@media (min-width: 768px) {
  .file-box .upload-top .btn-upload,
  .multi-file-box .upload-top .btn-upload {
    padding: 0 1.25rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-top .btn-upload,
  .multi-file-box .upload-top .btn-upload {
    padding: 0 20px;
  }
}
.file-box .upload-top .btn-upload,
.multi-file-box .upload-top .btn-upload {
  border-radius: 1.6vw;
}
@media (min-width: 768px) {
  .file-box .upload-top .btn-upload,
  .multi-file-box .upload-top .btn-upload {
    border-radius: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-top .btn-upload,
  .multi-file-box .upload-top .btn-upload {
    border-radius: 6px;
  }
}
.file-box .upload-top .btn-upload,
.multi-file-box .upload-top .btn-upload {
  font-size: 4vw;
}
@media (min-width: 768px) {
  .file-box .upload-top .btn-upload,
  .multi-file-box .upload-top .btn-upload {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-top .btn-upload,
  .multi-file-box .upload-top .btn-upload {
    font-size: 15px;
  }
}
.file-box .upload-top .btn-upload:hover,
.multi-file-box .upload-top .btn-upload:hover {
  background-color: var(--color-primary);
}
.file-box .upload-top .upload-hidden,
.multi-file-box .upload-top .upload-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.file-box .file-list-row,
.multi-file-box .file-list-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 2.1333vw;
}
@media (min-width: 768px) {
  .file-box .file-list-row,
  .multi-file-box .file-list-row {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .file-box .file-list-row,
  .multi-file-box .file-list-row {
    margin-top: 8px;
  }
}
.file-box .file-list-row .info,
.multi-file-box .file-list-row .info {
  display: block;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 2.1333vw;
}
@media (min-width: 768px) {
  .file-box .file-list-row .info,
  .multi-file-box .file-list-row .info {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .file-box .file-list-row .info,
  .multi-file-box .file-list-row .info {
    margin-bottom: 8px;
  }
}
.file-box .file-list-row .info,
.multi-file-box .file-list-row .info {
  font-size: 3.4667vw;
}
@media (min-width: 768px) {
  .file-box .file-list-row .info,
  .multi-file-box .file-list-row .info {
    font-size: 0.8125rem;
  }
}
@media (min-width: 1200px) {
  .file-box .file-list-row .info,
  .multi-file-box .file-list-row .info {
    font-size: 13px;
  }
}
.file-box .file-list-row .file-list,
.multi-file-box .file-list-row .file-list {
  display: none;
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--line-light);
  border-radius: 1.6vw;
}
@media (min-width: 768px) {
  .file-box .file-list-row .file-list,
  .multi-file-box .file-list-row .file-list {
    border-radius: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .file-box .file-list-row .file-list,
  .multi-file-box .file-list-row .file-list {
    border-radius: 6px;
  }
}
.file-box .file-list-row .file-list,
.multi-file-box .file-list-row .file-list {
  padding: 3.2vw;
}
@media (min-width: 768px) {
  .file-box .file-list-row .file-list,
  .multi-file-box .file-list-row .file-list {
    padding: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .file-box .file-list-row .file-list,
  .multi-file-box .file-list-row .file-list {
    padding: 12px;
  }
}
.file-box .file-list-row .file-list,
.multi-file-box .file-list-row .file-list {
  min-height: 16vw;
}
@media (min-width: 768px) {
  .file-box .file-list-row .file-list,
  .multi-file-box .file-list-row .file-list {
    min-height: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .file-box .file-list-row .file-list,
  .multi-file-box .file-list-row .file-list {
    min-height: 60px;
  }
}
.file-box .file-list-row .file-list li,
.multi-file-box .file-list-row .file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line-light);
  color: var(--text-main);
  margin-bottom: 2.1333vw;
}
@media (min-width: 768px) {
  .file-box .file-list-row .file-list li,
  .multi-file-box .file-list-row .file-list li {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .file-box .file-list-row .file-list li,
  .multi-file-box .file-list-row .file-list li {
    margin-bottom: 8px;
  }
}
.file-box .file-list-row .file-list li,
.multi-file-box .file-list-row .file-list li {
  padding: 2.6667vw 3.2vw;
}
@media (min-width: 768px) {
  .file-box .file-list-row .file-list li,
  .multi-file-box .file-list-row .file-list li {
    padding: 0.625rem 0.75rem;
  }
}
@media (min-width: 1200px) {
  .file-box .file-list-row .file-list li,
  .multi-file-box .file-list-row .file-list li {
    padding: 10px 12px;
  }
}
.file-box .file-list-row .file-list li,
.multi-file-box .file-list-row .file-list li {
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .file-box .file-list-row .file-list li,
  .multi-file-box .file-list-row .file-list li {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .file-box .file-list-row .file-list li,
  .multi-file-box .file-list-row .file-list li {
    font-size: 14px;
  }
}
.file-box .file-list-row .file-list li,
.multi-file-box .file-list-row .file-list li {
  border-radius: 1.0667vw;
}
@media (min-width: 768px) {
  .file-box .file-list-row .file-list li,
  .multi-file-box .file-list-row .file-list li {
    border-radius: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .file-box .file-list-row .file-list li,
  .multi-file-box .file-list-row .file-list li {
    border-radius: 4px;
  }
}
.file-box .file-list-row .file-list li:last-child,
.multi-file-box .file-list-row .file-list li:last-child {
  margin-bottom: 0;
}
.file-box .file-list-row .file-list li .name,
.multi-file-box .file-list-row .file-list li .name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.file-box .file-list-row .file-list li .btn-remove,
.multi-file-box .file-list-row .file-list li .btn-remove {
  flex: 0 0 auto;
  cursor: pointer;
  color: var(--color-error);
  font-weight: bold;
  margin-left: 10px;
  background: none;
  border: none;
  padding: 0 5px;
}
.file-box .file-list-row .file-list li .btn-remove:hover,
.multi-file-box .file-list-row .file-list li .btn-remove:hover {
  text-decoration: underline;
}

/* =================================================================
   [Component] Buttons
   ================================================================= */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: var(--btn-lg-gap);
}
@media (min-width: 768px) {
  .btn-row {
    gap: var(--btn-lg-gap);
  }
}
@media (min-width: 1200px) {
  .btn-row {
    gap: var(--btn-lg-gap);
  }
}
.btn-row.align-left {
  justify-content: flex-start;
}
.btn-row.align-right {
  justify-content: flex-end;
}
.btn-row.is-full .btn {
  flex: 1;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  background: transparent;
  transition: all 0.2s ease-in-out;
  font-size: var(--text-sm);
  height: 12.8vw;
}
@media (min-width: 768px) {
  .btn {
    height: 3rem;
  }
}
@media (min-width: 1200px) {
  .btn {
    height: 48px;
  }
}
.btn {
  padding: var(--btn-lg-v-pad) var(--btn-lg-h-pad);
}
@media (min-width: 768px) {
  .btn {
    padding: var(--btn-lg-v-pad) var(--btn-lg-h-pad);
  }
}
@media (min-width: 1200px) {
  .btn {
    padding: var(--btn-lg-v-pad) var(--btn-lg-h-pad);
  }
}
.btn {
  gap: var(--btn-lg-gap);
}
@media (min-width: 768px) {
  .btn {
    gap: var(--btn-lg-gap);
  }
}
@media (min-width: 1200px) {
  .btn {
    gap: var(--btn-lg-gap);
  }
}
.btn:disabled, .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn .icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.3333vw;
}
@media (min-width: 768px) {
  .btn .icon-svg {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .btn .icon-svg {
    width: 20px;
  }
}
.btn .icon-svg {
  height: 5.3333vw;
}
@media (min-width: 768px) {
  .btn .icon-svg {
    height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .btn .icon-svg {
    height: 20px;
  }
}
.btn .icon-svg svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.btn.size-medium {
  height: 59px;
}
@media (min-width: 768px) {
  .btn.size-medium {
    height: 59px;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    height: 59px;
  }
}
.btn.size-medium {
  padding: var(--btn-sm-v-pad) var(--btn-sm-h-pad);
}
@media (min-width: 768px) {
  .btn.size-medium {
    padding: var(--btn-sm-v-pad) var(--btn-sm-h-pad);
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    padding: var(--btn-sm-v-pad) var(--btn-sm-h-pad);
  }
}
.btn.size-medium {
  font-size: var(--text-base);
}
@media (min-width: 768px) {
  .btn.size-medium {
    font-size: var(--text-base);
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    font-size: var(--text-base);
  }
}
.btn.size-medium {
  gap: var(--btn-sm-gap);
}
@media (min-width: 768px) {
  .btn.size-medium {
    gap: var(--btn-sm-gap);
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    gap: var(--btn-sm-gap);
  }
}
.btn.size-medium .icon-svg {
  width: 4.8vw;
}
@media (min-width: 768px) {
  .btn.size-medium .icon-svg {
    width: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium .icon-svg {
    width: 18px;
  }
}
.btn.size-medium .icon-svg {
  height: 4.8vw;
}
@media (min-width: 768px) {
  .btn.size-medium .icon-svg {
    height: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium .icon-svg {
    height: 18px;
  }
}
.btn.size-small {
  height: 40px;
}
@media (min-width: 768px) {
  .btn.size-small {
    height: 40px;
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    height: 40px;
  }
}
.btn.size-small {
  padding: var(--btn-xs-v-pad) var(--btn-xs-h-pad);
}
@media (min-width: 768px) {
  .btn.size-small {
    padding: var(--btn-xs-v-pad) var(--btn-xs-h-pad);
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    padding: var(--btn-xs-v-pad) var(--btn-xs-h-pad);
  }
}
.btn.size-small {
  font-size: var(--text-sm);
}
@media (min-width: 768px) {
  .btn.size-small {
    font-size: var(--text-sm);
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    font-size: var(--text-sm);
  }
}
.btn.size-small {
  gap: var(--btn-xs-gap);
}
@media (min-width: 768px) {
  .btn.size-small {
    gap: var(--btn-xs-gap);
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    gap: var(--btn-xs-gap);
  }
}
.btn.size-small .icon-svg {
  width: 4.2667vw;
}
@media (min-width: 768px) {
  .btn.size-small .icon-svg {
    width: 1rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-small .icon-svg {
    width: 16px;
  }
}
.btn.size-small .icon-svg {
  height: 4.2667vw;
}
@media (min-width: 768px) {
  .btn.size-small .icon-svg {
    height: 1rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-small .icon-svg {
    height: 16px;
  }
}

.btn.shape-square {
  border-radius: 0;
}

.btn.shape-rounded {
  border-radius: var(--btn-lg-radius);
}
@media (min-width: 768px) {
  .btn.shape-rounded {
    border-radius: var(--btn-lg-radius);
  }
}
@media (min-width: 1200px) {
  .btn.shape-rounded {
    border-radius: var(--btn-lg-radius);
  }
}

.btn.shape-pill {
  border-radius: var(--btn-lg-radius-full);
}

/* --- [Solid] 채워진 버튼 --- */
.btn.type-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--gray-wh);
}
.btn.type-primary:hover {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.btn.type-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--gray-wh);
}
.btn.type-secondary:hover {
  color: var(--color-secondary);
  background-color: transparent;
  border-color: var(--color-secondary);
}

.btn.type-gray-wh {
  background-color: var(--gray-wh);
  border-color: var(--gray-wh);
  color: var(--gray-bk);
}
.btn.type-gray-wh:hover {
  color: var(--gray-wh);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn.type-gray-wh-transparent {
  background-color: transparent !important;
}
.btn.type-gray-wh-transparent:hover {
  background-color: var(--color-primary) !important;
}

.btn.type-gray-bk {
  background-color: var(--gray-bk);
  border-color: var(--gray-bk);
  color: var(--gray-wh);
}
.btn.type-gray-bk:hover {
  color: var(--gray-wh);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* --- [Line] 테두리 버튼 --- */
.btn.type-line-primary {
  background-color: var(--gray-wh);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn.type-line-primary:hover {
  background-color: var(--color-primary);
  color: var(--gray-wh);
}

.btn.type-line-secondary {
  background-color: var(--gray-wh);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
.btn.type-line-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--gray-wh);
}

.btn.type-line-gray9 {
  background-color: var(--gray-wh);
  border-color: var(--gray9);
  color: var(--gray9);
}
.btn.type-line-gray9:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--gray-wh);
}

.btn.type-line-gray-wh {
  background-color: var(--gray-wh);
  border-color: var(--gray-wh);
  color: var(--gray-wh);
}
.btn.type-line-gray-wh:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--gray-wh);
}

/* =================================================================
   [Component] Labels (Badges)
   ================================================================= */
.label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6vw;
}
@media (min-width: 768px) {
  .label-row {
    gap: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .label-row {
    gap: 6px;
  }
}

.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid transparent;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  height: 8.5333vw;
}
@media (min-width: 768px) {
  .label {
    height: 2rem;
  }
}
@media (min-width: 1200px) {
  .label {
    height: 32px;
  }
}
.label {
  padding: 0 3.2vw;
}
@media (min-width: 768px) {
  .label {
    padding: 0 0.75rem;
  }
}
@media (min-width: 1200px) {
  .label {
    padding: 0 12px;
  }
}
.label {
  font-size: 3.4667vw;
}
@media (min-width: 768px) {
  .label {
    font-size: 0.8125rem;
  }
}
@media (min-width: 1200px) {
  .label {
    font-size: 13px;
  }
}
.label {
  border-radius: 1.6vw;
}
@media (min-width: 768px) {
  .label {
    border-radius: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .label {
    border-radius: 6px;
  }
}

.label.color-primary.type-line {
  background-color: #fff;
  border-color: #1e6eb9;
  color: #1e6eb9;
}
.label.color-primary.type-solid {
  background-color: #1e6eb9;
  border-color: #1e6eb9;
  color: #fff;
}

.label.color-gray.type-line {
  background-color: #fff;
  border-color: #999999;
  color: #999999;
}
.label.color-gray.type-solid {
  background-color: #999999;
  border-color: #999999;
  color: #fff;
}

.label.color-brown.type-line {
  background-color: #fff;
  border-color: #a08060;
  color: #a08060;
}
.label.color-brown.type-solid {
  background-color: #a08060;
  border-color: #a08060;
  color: #fff;
}

/* =================================================================
   [Component] Tab Menu (Swiper Based)
   ================================================================= */
.tab-container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 10.6667vw;
}
@media (min-width: 768px) {
  .tab-container {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .tab-container {
    margin-bottom: 40px;
  }
}
.tab-container .swiper {
  width: 100%;
  padding: 2.6667vw 0;
}
@media (min-width: 768px) {
  .tab-container .swiper {
    padding: 0.625rem 0;
  }
}
@media (min-width: 1200px) {
  .tab-container .swiper {
    padding: 10px 0;
  }
}
.tab-container .swiper .swiper-slide {
  width: 100px;
  max-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  background: transparent;
  border: none;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
  font-weight: 500;
  color: var(--text-muted, #999);
  height: 12.8vw;
}
@media (min-width: 768px) {
  .tab-btn {
    height: 3rem;
  }
}
@media (min-width: 1200px) {
  .tab-btn {
    height: 48px;
  }
}
.tab-btn {
  font-size: 4vw;
}
@media (min-width: 768px) {
  .tab-btn {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .tab-btn {
    font-size: 15px;
  }
}
.tab-btn {
  padding: 0 3.2vw;
}
@media (min-width: 768px) {
  .tab-btn {
    padding: 0 0.75rem;
  }
}
@media (min-width: 1200px) {
  .tab-btn {
    padding: 0 12px;
  }
}
.tab-btn.active {
  font-weight: 700;
  color: #000;
}

/* (A) Type Solid: 면 채움형 */
.tab-type-solid .swiper-slide {
  padding: 0 4vw;
}
@media (min-width: 768px) {
  .tab-type-solid .swiper-slide {
    padding: 0 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .tab-type-solid .swiper-slide {
    padding: 0 15px;
  }
}
.tab-type-solid .tab-btn {
  background-color: #E6E7E9;
  border-radius: 2.1333vw;
}
@media (min-width: 768px) {
  .tab-type-solid .tab-btn {
    border-radius: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .tab-type-solid .tab-btn {
    border-radius: 8px;
  }
}
.tab-type-solid .tab-btn.active {
  background-color: #832EDA;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* (B) Type Line: 하단 라인형 */
.tab-type-line {
  border-bottom: 1px solid #D3D5D8;
}
.tab-type-line .swiper {
  padding-bottom: 0;
}
.tab-type-line .tab-btn {
  position: relative;
  color: var(--text-sub);
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-bottom-width: 0.5333vw;
}
@media (min-width: 768px) {
  .tab-type-line .tab-btn {
    border-bottom-width: 0.125rem;
  }
}
@media (min-width: 1200px) {
  .tab-type-line .tab-btn {
    border-bottom-width: 2px;
  }
}
.tab-type-line .tab-btn.active {
  color: #000;
  border-bottom-color: #832EDA;
}

.tab-contents {
  position: relative;
  width: 100%;
  padding-top: 10.6667vw;
}
@media (min-width: 768px) {
  .tab-contents {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .tab-contents {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .tab-contents {
    padding-top: 20px;
  }
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: fadeTab 0.3s ease-in-out;
}

@keyframes fadeTab {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pagination-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 12.8vw;
}
@media (min-width: 768px) {
  .pagination-container {
    margin-top: 3rem;
  }
}
@media (min-width: 1200px) {
  .pagination-container {
    margin-top: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination-container {
    margin-top: 4.4444vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  .pagination-container {
    margin-top: 64px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 2.1333vw;
}
@media (min-width: 768px) {
  .pagination {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pagination {
    gap: 8px;
  }
}

.page-item.pc-only {
  display: none;
}
@media screen and (min-width: 1200px) {
  .page-item.pc-only {
    display: flex;
  }
}
.page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  flex: 1;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  color: #6D7278;
  height: 9.6vw;
}
@media (min-width: 768px) {
  .page-item .page-link {
    height: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link {
    height: 36px;
  }
}
.page-item .page-link {
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .page-item .page-link {
    font-size: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link {
    font-size: 12px;
  }
}
.page-item .page-link {
  border-radius: 2.1333vw;
}
@media (min-width: 768px) {
  .page-item .page-link {
    border-radius: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link {
    border-radius: 8px;
  }
}
.page-item .page-link {
  min-width: 9.6vw;
}
@media (min-width: 768px) {
  .page-item .page-link {
    min-width: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link {
    min-width: 36px;
  }
}
.page-item .page-link {
  max-width: 9.6vw;
}
@media (min-width: 768px) {
  .page-item .page-link {
    max-width: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link {
    max-width: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .page-item .page-link {
    width: 40px;
    flex: none;
    min-width: auto;
    max-width: none;
  }
}
.page-item .page-link:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0.03);
}
.page-item .page-link .icon-svg svg {
  transform: rotate(-90deg);
}
.page-item .page-link[aria-label=Previous] .icon-svg svg {
  transform: rotate(90deg);
}
.page-item.active .page-link {
  background-color: #000000;
  color: #fff;
  font-weight: 700;
  cursor: default;
}
.page-item.control .page-link {
  background: transparent !important;
  font-family: inherit;
  width: auto;
  min-width: unset;
  max-width: unset;
}
.page-item.control .page-link .btn-text {
  margin: 0 4px;
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .page-item.control .page-link .btn-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .page-item.control .page-link .btn-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .page-item.control .page-link {
    width: auto;
    padding: 0 10px;
  }
  .page-item.control .page-link .btn-text {
    display: inline-block;
  }
}
.page-item.control .page-link:hover {
  color: #000;
}
.page-item.control .page-link:hover .btn-text {
  text-decoration: underline;
}
.page-item.ellipsis .page-link {
  background: transparent !important;
  cursor: default;
  pointer-events: none;
}

/* 전체메뉴 */
#toggle-menu {
  display: inline-block;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  background: transparent;
  transition: all 0.25s ease-in;
  width: 12.8vw;
}
@media (min-width: 768px) {
  #toggle-menu {
    width: 3rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu {
    width: 48px;
  }
}
#toggle-menu {
  height: 12.8vw;
}
@media (min-width: 768px) {
  #toggle-menu {
    height: 3rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu {
    height: 48px;
  }
}
#toggle-menu {
  top: 6.9333vw;
}
@media (min-width: 768px) {
  #toggle-menu {
    top: 1.625rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu {
    top: 26px;
  }
}
#toggle-menu {
  right: 5.3333vw;
}
@media (min-width: 768px) {
  #toggle-menu {
    right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu {
    right: 20px;
  }
}
#toggle-menu div {
  position: relative;
  width: 8.5333vw;
}
@media (min-width: 768px) {
  #toggle-menu div {
    width: 2rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div {
    width: 32px;
  }
}
#toggle-menu div {
  height: 5.8667vw;
}
@media (min-width: 768px) {
  #toggle-menu div {
    height: 1.375rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div {
    height: 22px;
  }
}
#toggle-menu div {
  margin: 3.4667vw auto auto 2.1333vw;
}
@media (min-width: 768px) {
  #toggle-menu div {
    margin: 0.8125rem auto auto 0.5rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div {
    margin: 13px auto auto 8px;
  }
}
#toggle-menu div span {
  display: block;
  background-color: #fff;
  position: absolute;
  transition: transform 0.2s ease-in-out, top 0.1s ease-in-out 0.2s, opacity 0.1s ease-in-out 0.2s;
  -webkit-transition: -webkit-transform 0.2s ease-in-out, top 0.1s ease-in-out 0.2s, opacity 0.1s ease-in-out 0.2s;
  -moz-transition: -moz-transform 0.2s ease-in-out, top 0.1s ease-in-out 0.2s, opacity 0.1s ease-in-out 0.2s;
  transform-origin: center;
  border-radius: 0;
  overflow: hidden;
  width: 8.5333vw;
}
@media (min-width: 768px) {
  #toggle-menu div span {
    width: 2rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div span {
    width: 32px;
  }
}
#toggle-menu div span {
  height: 0.6667vw;
}
@media (min-width: 768px) {
  #toggle-menu div span {
    height: 0.1563rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div span {
    height: 2.5px;
  }
}
#toggle-menu div span {
  border-radius: 0.6667vw;
}
@media (min-width: 768px) {
  #toggle-menu div span {
    border-radius: 0.1563rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div span {
    border-radius: 2.5px;
  }
}
#toggle-menu div span.top {
  top: 0;
}
#toggle-menu div span.middle {
  top: 2.6vw;
}
@media (min-width: 768px) {
  #toggle-menu div span.middle {
    top: 0.6094rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div span.middle {
    top: 9.75px;
  }
}
#toggle-menu div span.bottom {
  top: 5.2vw;
}
@media (min-width: 768px) {
  #toggle-menu div span.bottom {
    top: 1.2188rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div span.bottom {
    top: 19.5px;
  }
}
@media screen and (min-width: 1200px) {
  #toggle-menu {
    top: 6.9333vw;
    right: 5.3333vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 768px) {
  #toggle-menu {
    top: 1.625rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  #toggle-menu {
    top: 26px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 768px) {
  #toggle-menu {
    right: 1.25rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  #toggle-menu {
    right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  #toggle-menu div {
    width: 32px;
    height: 22px;
    margin: 12.75px auto auto 8px;
  }
  #toggle-menu div span {
    width: 32px;
    height: 2.5px;
    border-radius: 2.5px;
  }
}
@media screen and (min-width: 1440px) {
  #toggle-menu {
    right: 40px;
  }
}
@media screen and (min-width: 1600px) {
  #toggle-menu {
    right: 60px;
  }
}

#toggle-menu.menu-is-active {
  position: absolute;
  background: transparent;
  z-index: 9999;
}
#toggle-menu.menu-is-active span {
  background-color: #000;
  box-shadow: 0px 0px 0px 0px #93deff;
  -webkit-box-shadow: 0px 0px 0px 0px #93deff;
  transition: transform 0.2s ease-in-out 0.1s, top 0.1s ease-in-out, opacity 0.1s ease-in-out;
  -webkit-transition: -webkit-transform 0.2s ease-in-out 0.2s, top 0.1s ease-in-out, opacity 0.1s ease-in-out;
  -moz-transition: -moz-transform 0.2s ease-in-out 0.1s, top 0.1s ease-in-out, opacity 0.1s ease-in-out;
}
#toggle-menu.menu-is-active span.top {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  top: 2.1333vw;
}
@media (min-width: 768px) {
  #toggle-menu.menu-is-active span.top {
    top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu.menu-is-active span.top {
    top: 8px;
  }
}
#toggle-menu.menu-is-active span.middle {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  opacity: 0;
  top: 2.1333vw;
}
@media (min-width: 768px) {
  #toggle-menu.menu-is-active span.middle {
    top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu.menu-is-active span.middle {
    top: 8px;
  }
}
#toggle-menu.menu-is-active span.bottom {
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  top: 2.1333vw;
}
@media (min-width: 768px) {
  #toggle-menu.menu-is-active span.bottom {
    top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu.menu-is-active span.bottom {
    top: 8px;
  }
}
#toggle-menu.menu-is-active:before {
  position: absolute;
  content: " ";
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
  height: 26.6667vw;
}
@media (min-width: 768px) {
  header {
    height: 6.25rem;
  }
}
@media (min-width: 1200px) {
  header {
    height: 100px;
  }
}
header::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0, left:0, width:100%, height:100% 와 동일 */
  z-index: -1; /* 헤더 내부의 로고나 GNB보다 뒤에 깔리도록 설정 */
  opacity: 0; /* 스크롤이 맨 위일 때는 투명하게 숨김 */
  /* 🌟 배경 전용 트랜지션 */
  transition: opacity 0.3s ease-in-out;
  /* 뒷 배경 블러 효과 (Safari 지원을 위해 -webkit- 추가) */
  background: rgba(0, 0, 0, 0.8);
  /* 기존 그라데이션 (블러가 보이도록 Alpha값을 1 -> 0.85로 조정) */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header.is-scrolled {
  /* 헤더 전체에 적용되는 그림자 */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  /* 스크롤 시 배경이 서서히 나타남 */
}
header.is-scrolled::before {
  opacity: 1;
}
header .header-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
header h1 {
  position: absolute;
  z-index: 10;
  transition: all 0.25s ease-in;
  top: 9.3333vw;
}
@media (min-width: 768px) {
  header h1 {
    top: 2.1875rem;
  }
}
@media (min-width: 1200px) {
  header h1 {
    top: 35px;
  }
}
header h1 {
  left: 5.3333vw;
}
@media (min-width: 768px) {
  header h1 {
    left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  header h1 {
    left: 20px;
  }
}
header h1 {
  width: 47.4667vw;
}
@media (min-width: 768px) {
  header h1 {
    width: 11.125rem;
  }
}
@media (min-width: 1200px) {
  header h1 {
    width: 178px;
  }
}
header h1 {
  height: 8vw;
}
@media (min-width: 768px) {
  header h1 {
    height: 1.875rem;
  }
}
@media (min-width: 1200px) {
  header h1 {
    height: 30px;
  }
}
@media screen and (min-width: 1200px) {
  header h1 {
    left: 5.3333vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 768px) {
  header h1 {
    left: 1.25rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  header h1 {
    left: 20px;
  }
}
@media screen and (min-width: 1440px) {
  header h1 {
    left: 40px;
  }
}
@media screen and (min-width: 1600px) {
  header h1 {
    left: 60px;
  }
}
header h1 a {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  header h1 a {
    height: 30px;
  }
}
header h1 a .icon-svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  header h1 a .icon-svg {
    height: 30px;
  }
}
header h1 a .icon-svg svg {
  color: #fff;
}
header .gnb-row {
  position: absolute;
  width: 100%;
  top: -1px;
  left: 0;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  z-index: 9;
  transition: all 0.1s;
}
header .gnb-row:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out 0.3s, visibility 0.3s 0.2s;
  will-change: opacity;
  background-image: url("/static/images/common/bg-gnb-row@m.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  header .gnb-row:before {
    background-image: url("/static/images/common/bg-gnb-row.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
header .gnb-row:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out 0.2s, visibility 0.3s 0.1s;
  will-change: opacity;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.64) 50%, #000 100%);
  backdrop-filter: blur(8px);
}
header .gnb-row .gnb {
  position: relative;
  z-index: 3;
  width: 89.3333333333%;
  overflow: overlay;
  margin: auto;
  height: 120vw;
}
@media (min-width: 768px) {
  header .gnb-row .gnb {
    height: 28.125rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb {
    height: 450px;
  }
}
header .gnb-row .gnb {
  margin-top: 36.2667vw;
}
@media (min-width: 768px) {
  header .gnb-row .gnb {
    margin-top: 8.5rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb {
    margin-top: 136px;
  }
}
header .gnb-row .gnb::-webkit-scrollbar {
  width: 6px;
}
header .gnb-row .gnb::-webkit-scrollbar-track {
  background: #33383D;
  border-radius: 10px;
  margin: 10px 0;
}
header .gnb-row .gnb::-webkit-scrollbar-thumb {
  background: #50555B;
  border-radius: 10px;
}
header .gnb-row .gnb::-webkit-scrollbar-thumb:hover {
  background: #666d74;
}
header .gnb-row .gnb .gnb_list {
  align-content: flex-start;
  flex-flow: wrap;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
header .gnb-row .gnb .gnb_list > li {
  width: 100%;
  flex-flow: wrap;
  border-bottom: 1px solid #50555B;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .gnb-row .gnb .gnb_list > li > a {
  width: 100%;
  height: 100%;
  min-height: 18.6667vw;
}
@media (min-width: 768px) {
  header .gnb-row .gnb .gnb_list > li > a {
    min-height: 4.375rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li > a {
    min-height: 70px;
  }
}
header .gnb-row .gnb .gnb_list > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .gnb-row .gnb .gnb_list > li > a span {
  color: #ffffff;
  font-weight: 600;
  font-size: 4.8vw;
}
@media (min-width: 768px) {
  header .gnb-row .gnb .gnb_list > li > a span {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li > a span {
    font-size: 18px;
  }
}
header .gnb-row .gnb .gnb_list > li > a .icon-svg {
  transition: all 0.25s;
  width: 6.4vw;
}
@media (min-width: 768px) {
  header .gnb-row .gnb .gnb_list > li > a .icon-svg {
    width: 1.5rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li > a .icon-svg {
    width: 24px;
  }
}
header .gnb-row .gnb .gnb_list > li > a .icon-svg {
  height: 6.4vw;
}
@media (min-width: 768px) {
  header .gnb-row .gnb .gnb_list > li > a .icon-svg {
    height: 1.5rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li > a .icon-svg {
    height: 24px;
  }
}
header .gnb-row .gnb .gnb_list > li > a .icon-svg {
  margin-right: 4.2667vw;
}
@media (min-width: 768px) {
  header .gnb-row .gnb .gnb_list > li > a .icon-svg {
    margin-right: 1rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li > a .icon-svg {
    margin-right: 16px;
  }
}
header .gnb-row .gnb .gnb_list > li > a .icon-svg svg {
  transition: all 0.25s;
  color: #fff;
}
header .gnb-row .gnb .gnb_list > li .depth_box {
  display: none;
  position: relative;
  width: 100%;
  background: rgba(51, 56, 61, 0.3);
}
header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li {
  padding: 6.4vw 8.5333vw;
}
@media (min-width: 768px) {
  header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li {
    padding: 1.5rem 2rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li {
    padding: 24px 32px;
  }
}
header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
  color: #92979D;
  font-weight: 400;
  font-size: 4.8vw;
}
@media (min-width: 768px) {
  header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
    font-size: 18px;
  }
}
header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li.on a, header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li:hover a {
  color: #832EDA;
}
header .gnb-row .gnb .gnb_list > li.on header .gnb-row .gnb .gnb_list > li:hover > a span {
  color: #832EDA;
}
header .gnb-row .gnb .gnb_list > li.on header .gnb-row .gnb .gnb_list > li:hover > a .icon-svg {
  transform: rotate(180deg);
}
header .gnb-row .gnb .gnb_list > li.on header .gnb-row .gnb .gnb_list > li:hover > a .icon-svg svg {
  color: #832EDA;
}
header .gnb-row > .contact {
  position: relative;
  width: 89.3333333333%;
  margin: auto;
  margin: 9.0667vw auto 0vw auto;
}
@media (min-width: 768px) {
  header .gnb-row > .contact {
    margin: 2.125rem auto 0rem auto;
  }
}
@media (min-width: 1200px) {
  header .gnb-row > .contact {
    margin: 34px auto 0px auto;
  }
}
header .gnb-row > .contact {
  border: 1px solid #ffffff;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 16vw;
}
@media (min-width: 768px) {
  header .gnb-row > .contact {
    height: 3.75rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row > .contact {
    height: 60px;
  }
}
header .gnb-row > .contact {
  border-radius: 16vw;
}
@media (min-width: 768px) {
  header .gnb-row > .contact {
    border-radius: 3.75rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row > .contact {
    border-radius: 60px;
  }
}
header .gnb-row > .contact {
  gap: 2.1333vw;
}
@media (min-width: 768px) {
  header .gnb-row > .contact {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row > .contact {
    gap: 8px;
  }
}
header .gnb-row > .contact span {
  color: #ffffff;
  font-weight: 600;
  font-size: 4.8vw;
}
@media (min-width: 768px) {
  header .gnb-row > .contact span {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row > .contact span {
    font-size: 18px;
  }
}
header .gnb-row > .contact .icon-svg svg {
  color: #ffffff;
}
header .gnb-row .lang-selector-mo {
  display: none;
}
header .pc-gnb-row {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 1;
  z-index: 9;
  transition: all 0.1s;
  display: none;
}
@media screen and (min-width: 1200px) {
  header .pc-gnb-row {
    display: block;
    height: 100%;
  }
}
header .pc-gnb-row .gnb {
  height: 100%;
}
header .pc-gnb-row .gnb .gnb_list {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  header .pc-gnb-row .gnb .gnb_list {
    max-width: 59.0278vw;
    margin-left: 26.3889vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header .pc-gnb-row .gnb .gnb_list {
    max-width: 850px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header .pc-gnb-row .gnb .gnb_list {
    margin-left: 380px;
  }
}
@media screen and (min-width: 1440px) {
  header .pc-gnb-row .gnb .gnb_list {
    max-width: 937px;
    margin-left: auto;
    transform: translateX(62px);
  }
}
@media screen and (min-width: 1920px) {
  header .pc-gnb-row .gnb .gnb_list {
    transform: translateX(0);
  }
}
header .pc-gnb-row .gnb .gnb_list > li {
  position: relative;
  height: 100%;
}
header .pc-gnb-row .gnb .gnb_list > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  header .pc-gnb-row .gnb .gnb_list > li > a {
    padding: 0vw 1.3889vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header .pc-gnb-row .gnb .gnb_list > li > a {
    padding: 0px 20px;
  }
}
@media screen and (min-width: 1440px) {
  header .pc-gnb-row .gnb .gnb_list > li > a {
    padding: 0 35px;
  }
}
header .pc-gnb-row .gnb .gnb_list > li > a span {
  color: #B7BBC0;
  font-size: 18px;
  font-weight: 500;
}
header .pc-gnb-row .gnb .gnb_list > li > a .icon-svg {
  display: none;
}
header .pc-gnb-row .gnb .gnb_list > li.on:before, header .pc-gnb-row .gnb .gnb_list > li:hover:before {
  content: "";
  position: absolute;
  height: 100px;
  left: -80px;
  right: -80px;
  bottom: -100px;
}
header .pc-gnb-row .gnb .gnb_list > li.on > a span, header .pc-gnb-row .gnb .gnb_list > li:hover > a span {
  color: #832EDA;
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box {
  display: none;
}
@media screen and (min-width: 1200px) {
  header .pc-gnb-row .gnb .gnb_list > li .depth_box {
    display: block;
    position: absolute;
    opacity: 0;
    top: 90px;
    left: 50%;
    pointer-events: none;
    transition: all 0.2s;
    z-index: 12;
    left: 50%;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 0 18px 0 rgba(255, 255, 255, 0.08), 0 0 25px 0 rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
    width: 22.2222vw;
    border-radius: 0.5556vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header .pc-gnb-row .gnb .gnb_list > li .depth_box {
    width: 320px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header .pc-gnb-row .gnb .gnb_list > li .depth_box {
    border-radius: 8px;
  }
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box.is-active {
  opacity: 1;
  pointer-events: all;
  top: 116px;
}
@media screen and (min-width: 1200px) {
  header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 {
    padding: 0 2.5vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 {
    padding: 0 36px;
  }
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li {
  border-bottom: 1px solid #50555B;
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
  color: #D3D5D8;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
    padding: 1.9444vw 0vw;
    font-size: 1.1111vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
    padding: 28px 0px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
    font-size: 16px;
  }
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li:last-of-type {
  border-bottom: none;
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li.on > a, header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li:hover > a {
  color: #832EDA;
}
header .pc-gnb-row .gnb .gnb_list > li:first-of-type > a {
  padding-left: 0;
}
header .pc-gnb-row .gnb .gnb_list > li:last-of-type > a {
  padding-right: 0;
}
header {
  /* =========================================
  다국어 선택기 (Language Selector)
  ========================================= */
}
header .lang-selector {
  display: none;
}
@media screen and (min-width: 1200px) {
  header .lang-selector {
    display: block;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 9;
    top: 2.6389vw;
    right: 5.5556vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header .lang-selector {
    top: 38px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header .lang-selector {
    right: 80px;
  }
}
@media screen and (min-width: 1320px) {
  header .lang-selector {
    top: 2.2917vw;
  }
}
@media screen and (min-width: 1320px) and (min-width: 1440px) {
  header .lang-selector {
    top: 33px;
  }
}
@media screen and (min-width: 1440px) {
  header .lang-selector {
    right: 100px;
    top: 30px;
  }
}
@media screen and (min-width: 1600px) {
  header .lang-selector {
    right: 120px;
  }
}
header .lang-selector {
  /* 토글 버튼 */
}
header .lang-selector .btn-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff; /* 텍스트 색상 (헤더 폰트 컬러에 맞게 조정) */
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 0 8px;
  /* CSS로 그리는 화살표 아이콘 */
}
header .lang-selector .btn-lang .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff; /* 화살표 색상 */
  transition: transform 0.3s ease;
}
header .lang-selector {
  /* 드롭다운 리스트 */
}
header .lang-selector .lang-list {
  position: absolute;
  left: 50%;
  min-width: 80px;
  background-color: rgba(0, 0, 0, 0.8); /* 시안의 어두운 드롭다운 배경색 */
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  z-index: 100;
  /* 애니메이션 초기 상태 (숨김 및 살짝 위로 올라간 상태) */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
}
header .lang-selector .lang-list li a {
  display: block;
  padding: 10px 16px;
  color: #888; /* 비활성 언어 텍스트 색상 */
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s, background-color 0.2s;
}
header .lang-selector .lang-list li a:hover, header .lang-selector .lang-list li a.active {
  color: #fff; /* 마우스 오버 및 활성 상태 색상 */
}
header .lang-selector {
  /* 🌟 열림(Open) 상태 시 모션 */
}
header .lang-selector.is-open .btn-lang .arrow {
  transform: rotate(180deg); /* 화살표가 위(▲)로 부드럽게 회전 */
}
header .lang-selector.is-open .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0); /* 제자리로 스르륵 내려옴 */
}
header.mobile-menu-open {
  height: 100vh;
}
header.mobile-menu-open h1 {
  top: 18.1333vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open h1 {
    top: 4.25rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open h1 {
    top: 68px;
  }
}
header.mobile-menu-open #toggle-menu {
  top: 14.9333vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open #toggle-menu {
    top: 3.5rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open #toggle-menu {
    top: 56px;
  }
}
header.mobile-menu-open #toggle-menu div span {
  background: #ffffff;
}
header.mobile-menu-open .lang-selector-mo {
  display: block;
  position: absolute;
  z-index: 9;
  top: 18.1333vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo {
    top: 4.25rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo {
    top: 68px;
  }
}
header.mobile-menu-open .lang-selector-mo {
  height: 8vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo {
    height: 1.875rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo {
    height: 30px;
  }
}
header.mobile-menu-open .lang-selector-mo {
  right: 18.6667vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo {
    right: 4.375rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo {
    right: 70px;
  }
}
header.mobile-menu-open .lang-selector-mo {
  width: 21.3333vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo {
    width: 5rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo {
    width: 80px;
  }
}
@media screen and (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo {
    right: 21.3333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo {
    right: 5rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo {
    right: 80px;
  }
}
@media screen and (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo {
    display: none;
  }
}
header.mobile-menu-open .lang-selector-mo .lang-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo .lang-list {
    gap: 0.75rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo .lang-list {
    gap: 12px;
  }
}
header.mobile-menu-open .lang-selector-mo .lang-list {
  height: 8vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo .lang-list {
    height: 1.875rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo .lang-list {
    height: 30px;
  }
}
header.mobile-menu-open .lang-selector-mo .lang-list li {
  height: 8vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo .lang-list li {
    height: 1.875rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo .lang-list li {
    height: 30px;
  }
}
header.mobile-menu-open .lang-selector-mo .lang-list li:first-of-type {
  position: relative;
}
header.mobile-menu-open .lang-selector-mo .lang-list li:first-of-type:before {
  content: "";
  position: absolute;
  width: 1px;
  color: #fff;
  background: #fff;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  right: -1.8667vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo .lang-list li:first-of-type:before {
    right: -0.4375rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo .lang-list li:first-of-type:before {
    right: -7px;
  }
}
header.mobile-menu-open .lang-selector-mo .lang-list li:first-of-type:before {
  height: 2.6667vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo .lang-list li:first-of-type:before {
    height: 0.625rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo .lang-list li:first-of-type:before {
    height: 10px;
  }
}
header.mobile-menu-open .lang-selector-mo .lang-list li a {
  color: #ffffff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  header.mobile-menu-open .lang-selector-mo .lang-list li a {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  header.mobile-menu-open .lang-selector-mo .lang-list li a {
    font-size: 14px;
  }
}
header.mobile-menu-open .gnb-row {
  opacity: 1;
  height: 100%;
  top: 0;
}
header.mobile-menu-open .gnb-row:before, header.mobile-menu-open .gnb-row:after {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}
header.mobile-menu-open .gnb-row h2 {
  display: none;
}
header.pc-menu-open {
  height: 100vh;
}
header.pc-menu-open h1 {
  z-index: 11;
  left: -20%;
  opacity: 0;
}
header.pc-menu-open #toggle-menu {
  right: -20%;
  opacity: 0;
}
header.pc-menu-open #toggle-menu div span {
  background: #ffffff;
}
header.pc-menu-open .gnb-row {
  opacity: 1;
  height: 100%;
  top: 0;
  z-index: 10;
  flex-flow: wrap;
  align-content: center;
  display: flex;
  flex-direction: column;
}
header.pc-menu-open .gnb-row:before, header.pc-menu-open .gnb-row:after {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}
header.pc-menu-open .gnb-row h2 {
  width: 100%;
  display: block;
  margin: auto;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  header.pc-menu-open .gnb-row h2 {
    margin-bottom: 11.1111vw;
    max-width: 100vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row h2 {
    margin-bottom: 160px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row h2 {
    max-width: 1440px;
  }
}
header.pc-menu-open .gnb-row h2 span {
  color: #ffffff;
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  header.pc-menu-open .gnb-row h2 span {
    font-size: 4.4444vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row h2 span {
    font-size: 64px;
  }
}
header.pc-menu-open .gnb-row h2 a {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  header.pc-menu-open .gnb-row h2 a {
    width: 3.3333vw;
    height: 3.3333vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row h2 a {
    width: 48px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row h2 a {
    height: 48px;
  }
}
@media screen and (min-width: 1200px) {
  header.pc-menu-open .gnb-row h2 .icon-svg {
    width: 3.3333vw;
    height: 3.3333vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row h2 .icon-svg {
    width: 48px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row h2 .icon-svg {
    height: 48px;
  }
}
header.pc-menu-open .gnb-row h2 .icon-svg svg {
  color: #ffffff;
}
header.pc-menu-open .gnb-row .gnb {
  margin-top: 0;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1200px) {
  header.pc-menu-open .gnb-row .gnb {
    max-width: 100vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row .gnb {
    max-width: 1440px;
  }
}
header.pc-menu-open .gnb-row .gnb .gnb_list {
  flex-flow: nowrap;
  justify-content: space-between;
}
@media screen and (min-width: 1200px) {
  header.pc-menu-open .gnb-row .gnb .gnb_list {
    gap: 6.5972vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row .gnb .gnb_list {
    gap: 95px;
  }
}
header.pc-menu-open .gnb-row .gnb .gnb_list > li {
  width: auto;
  border: none;
}
header.pc-menu-open .gnb-row .gnb .gnb_list > li > a {
  min-height: auto;
}
@media screen and (min-width: 1200px) {
  header.pc-menu-open .gnb-row .gnb .gnb_list > li > a {
    margin-bottom: 3.8889vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row .gnb .gnb_list > li > a {
    margin-bottom: 56px;
  }
}
header.pc-menu-open .gnb-row .gnb .gnb_list > li > a .icon-svg {
  display: none;
}
@media screen and (min-width: 1200px) {
  header.pc-menu-open .gnb-row .gnb .gnb_list > li > a span {
    font-size: 2.2222vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row .gnb .gnb_list > li > a span {
    font-size: 32px;
  }
}
header.pc-menu-open .gnb-row .gnb .gnb_list > li.on a span, header.pc-menu-open .gnb-row .gnb .gnb_list > li:hover a span {
  color: #832EDA;
}
header.pc-menu-open .gnb-row .gnb .gnb_list > li .depth_box {
  display: block;
  background: none;
}
header.pc-menu-open .gnb-row .gnb .gnb_list > li .depth_box .depth2 li {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  header.pc-menu-open .gnb-row .gnb .gnb_list > li .depth_box .depth2 li {
    padding: 1.6667vw 0vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row .gnb .gnb_list > li .depth_box .depth2 li {
    padding: 24px 0px;
  }
}
@media screen and (min-width: 1200px) {
  header.pc-menu-open .gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
    font-size: 1.3889vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  header.pc-menu-open .gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
    font-size: 20px;
  }
}
header.pc-menu-open .gnb-row .contact {
  display: none;
}
header.hide {
  transform: translateY(-100%);
}

#quick {
  position: fixed;
  z-index: 9;
  transition: all 0.5s;
  width: 19.2vw;
}
@media (min-width: 768px) {
  #quick {
    width: 4.5rem;
  }
}
@media (min-width: 1200px) {
  #quick {
    width: 72px;
  }
}
#quick {
  height: 40.5333vw;
}
@media (min-width: 768px) {
  #quick {
    height: 9.5rem;
  }
}
@media (min-width: 1200px) {
  #quick {
    height: 152px;
  }
}
#quick {
  right: 5.3333vw;
}
@media (min-width: 768px) {
  #quick {
    right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  #quick {
    right: 20px;
  }
}
#quick {
  bottom: 10.6667vw;
}
@media (min-width: 768px) {
  #quick {
    bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  #quick {
    bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  #quick {
    right: 4.1667vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  #quick {
    right: 60px;
  }
}
#quick ul {
  display: flex;
  flex-direction: column;
  gap: 2.1333vw;
}
@media (min-width: 768px) {
  #quick ul {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  #quick ul {
    gap: 8px;
  }
}
#quick ul li {
  background: #ffffff;
  transition: all 0.25s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19.2vw;
}
@media (min-width: 768px) {
  #quick ul li {
    width: 4.5rem;
  }
}
@media (min-width: 1200px) {
  #quick ul li {
    width: 72px;
  }
}
#quick ul li {
  height: 19.2vw;
}
@media (min-width: 768px) {
  #quick ul li {
    height: 4.5rem;
  }
}
@media (min-width: 1200px) {
  #quick ul li {
    height: 72px;
  }
}
#quick ul li {
  border-radius: 19.2vw;
}
@media (min-width: 768px) {
  #quick ul li {
    border-radius: 4.5rem;
  }
}
@media (min-width: 1200px) {
  #quick ul li {
    border-radius: 72px;
  }
}
#quick ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
}
#quick ul li a .icon-svg {
  color: #6D7278;
  width: 12.8vw;
}
@media (min-width: 768px) {
  #quick ul li a .icon-svg {
    width: 3rem;
  }
}
@media (min-width: 1200px) {
  #quick ul li a .icon-svg {
    width: 48px;
  }
}
#quick ul li a .icon-svg {
  height: 12.8vw;
}
@media (min-width: 768px) {
  #quick ul li a .icon-svg {
    height: 3rem;
  }
}
@media (min-width: 1200px) {
  #quick ul li a .icon-svg {
    height: 48px;
  }
}
#quick ul li:first-of-type {
  fill: #FFF;
  filter: drop-shadow(0 0 8px rgba(146, 151, 157, 0.4));
}
#quick ul li:last-of-type {
  background: #6D7278;
  filter: drop-shadow(0 0 8px rgba(146, 151, 157, 0.4));
}
#quick ul li:last-of-type a .icon-svg svg {
  color: #ffffff;
}
#quick ul li:hover {
  background: #832EDA;
}
#quick ul li:hover a .icon-svg svg {
  color: #ffffff;
}
#quick.hide {
  right: -150px;
}

footer {
  position: relative;
  background: url("/static/images/common/bg_footer@m.jpg") no-repeat center center;
  background-size: cover;
  padding: 14.9333vw 0vw 11.7333vw 0vw;
}
@media (min-width: 768px) {
  footer {
    padding: 3.5rem 0rem 2.75rem 0rem;
  }
}
@media (min-width: 1200px) {
  footer {
    padding: 56px 0px 44px 0px;
  }
}
@media screen and (min-width: 1200px) {
  footer {
    padding-bottom: 3.4722vw;
    padding-top: 5.5556vw;
    background: url("/static/images/common/bg_footer.jpg") no-repeat center center;
    background-size: cover;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1920px) {
  footer {
    background: url("/static/images/common/bg_footer@2x.jpg") no-repeat center center;
    background-size: cover;
  }
}
footer .footer-inner {
  position: relative;
  width: 100%;
}
footer .footer-inner-top, footer .footer-inner-middle, footer .footer-inner-bottom {
  position: relative;
  width: 89.3333333333%;
  margin: auto;
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-top, footer .footer-inner-middle, footer .footer-inner-bottom {
    width: 100%;
    max-width: 100vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-top, footer .footer-inner-middle, footer .footer-inner-bottom {
    max-width: 1440px;
  }
}
footer .footer-inner-line {
  width: 100%;
  height: 1px;
  background: #ffffff;
  opacity: 0.2;
  margin: 10.6667vw 0vw 8.5333vw 0vw;
}
@media (min-width: 768px) {
  footer .footer-inner-line {
    margin: 2.5rem 0rem 2rem 0rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-line {
    margin: 40px 0px 32px 0px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-line {
    margin: 3.3333vw 0vw 3.4722vw 0vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-line {
    margin: 48px 0px 50px 0px;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-inner-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  footer .footer-inner-top {
    margin-bottom: 3.75rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  footer .footer-inner-top {
    margin-bottom: 60px;
  }
}
footer .footer-inner-top a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 63.4667vw;
}
@media (min-width: 768px) {
  footer .footer-inner-top a {
    width: 14.875rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-top a {
    width: 238px;
  }
}
footer .footer-inner-top a {
  height: 10.6667vw;
}
@media (min-width: 768px) {
  footer .footer-inner-top a {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-top a {
    height: 40px;
  }
}
footer .footer-inner-top a {
  margin-bottom: 8.5333vw;
}
@media (min-width: 768px) {
  footer .footer-inner-top a {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-top a {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-inner-top a {
    margin-bottom: 0;
  }
}
footer .footer-inner-top a .icon-svg {
  width: 100%;
  height: 10.6667vw;
}
@media (min-width: 768px) {
  footer .footer-inner-top a .icon-svg {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-top a .icon-svg {
    height: 40px;
  }
}
footer .footer-inner-top a .icon-svg svg {
  color: #ffffff;
}
footer .footer-inner-top .dropdown {
  margin-bottom: 8.5333vw;
}
@media (min-width: 768px) {
  footer .footer-inner-top .dropdown {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-top .dropdown {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-inner-top .dropdown {
    margin-bottom: 0;
  }
}
footer .footer-inner-top .dropdown-box > button {
  border-width: 2px;
  border-color: #fff;
  background: transparent;
  font-weight: 600;
  color: #ffffff;
  font-size: 4.8vw;
}
@media (min-width: 768px) {
  footer .footer-inner-top .dropdown-box > button {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-top .dropdown-box > button {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-inner-top .dropdown-box > button {
    width: 89.3333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  footer .footer-inner-top .dropdown-box > button {
    width: 20.9375rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  footer .footer-inner-top .dropdown-box > button {
    width: 335px;
  }
}
footer .footer-inner-top .dropdown-box > button:after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.9974 16V0M0 7.99896H16' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.9974 16V0M0 7.99896H16' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  background-color: #ffffff;
  width: 4.2667vw;
}
@media (min-width: 768px) {
  footer .footer-inner-top .dropdown-box > button:after {
    width: 1rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-top .dropdown-box > button:after {
    width: 16px;
  }
}
footer .footer-inner-top .dropdown-box > button:after {
  height: 4.2667vw;
}
@media (min-width: 768px) {
  footer .footer-inner-top .dropdown-box > button:after {
    height: 1rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-top .dropdown-box > button:after {
    height: 16px;
  }
}
footer .footer-inner-top .dropdown-box > button:focus {
  box-shadow: none;
  border-color: #ffffff !important;
}
footer .footer-inner-top .dropdown-box > button:hover {
  background-color: var(--bg-base);
  color: #ffffff;
}
footer .footer-inner-top .dropdown-box.open > button {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
footer .footer-inner-top .dropdown-box.open > button:after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 7.99896H16' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 7.99896H16' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  background-color: #000;
}
footer .footer-inner-middle .company-info .info-group {
  margin-bottom: 4.2667vw;
}
@media (min-width: 768px) {
  footer .footer-inner-middle .company-info .info-group {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.6667vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-middle .company-info .info-group {
    margin-bottom: 24px;
  }
}
footer .footer-inner-middle .company-info .info-group dt {
  display: none;
  color: #92979D;
  font-weight: 700;
  font-family: "Pretendard";
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  footer .footer-inner-middle .company-info .info-group dt {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group dt {
    font-size: 14px;
  }
}
footer .footer-inner-middle .company-info .info-group dt {
  margin-bottom: 6.4vw;
}
@media (min-width: 768px) {
  footer .footer-inner-middle .company-info .info-group dt {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group dt {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group dt {
    display: block;
    margin-bottom: 0;
    width: 7.0833vw;
    font-size: 1.1111vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-middle .company-info .info-group dt {
    width: 102px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-middle .company-info .info-group dt {
    font-size: 16px;
  }
}
footer .footer-inner-middle .company-info .info-group dd {
  color: #D3D5D8;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Pretendard";
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  footer .footer-inner-middle .company-info .info-group dd {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group dd {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group dd {
    font-size: 1.1111vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-middle .company-info .info-group dd {
    font-size: 16px;
  }
}
footer .footer-inner-middle .company-info .info-group dd strong {
  font-family: "Pretendard";
  font-weight: 700;
  line-height: 1.2;
}
footer .footer-inner-middle .company-info .info-group:first-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group:first-of-type {
    align-items: flex-start;
    margin-bottom: 1.6667vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-middle .company-info .info-group:first-of-type {
    margin-bottom: 24px;
  }
}
footer .footer-inner-middle .company-info .info-group:first-of-type dt {
  display: block;
}
@media screen and (min-width: 768px) {
  footer .footer-inner-middle .company-info .info-group:first-of-type dd .info-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8.5333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  footer .footer-inner-middle .company-info .info-group:first-of-type dd .info-row {
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group:first-of-type dd .info-row {
    gap: 32px;
  }
}
footer .footer-inner-middle .company-info .info-group:first-of-type dd .info-row span {
  font-family: "Pretendard";
  display: block;
  margin-bottom: 4.2667vw;
}
@media (min-width: 768px) {
  footer .footer-inner-middle .company-info .info-group:first-of-type dd .info-row span {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group:first-of-type dd .info-row span {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-middle .company-info .info-group:first-of-type dd .info-row span {
    margin-bottom: 1.6667vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-middle .company-info .info-group:first-of-type dd .info-row span {
    margin-bottom: 24px;
  }
}
footer .footer-inner-middle .company-info .dt-group {
  font-family: "Pretendard";
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.1333vw;
}
@media (min-width: 768px) {
  footer .footer-inner-middle .company-info .dt-group {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-middle .company-info .dt-group {
    gap: 8px;
  }
}
footer .footer-inner-middle .company-info .dt-group {
  margin-bottom: 6.4vw;
}
@media (min-width: 768px) {
  footer .footer-inner-middle .company-info .dt-group {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-middle .company-info .dt-group {
    margin-bottom: 24px;
  }
}
footer .footer-inner-middle .company-info .dt-group {
  margin-top: 4.2667vw;
}
@media (min-width: 768px) {
  footer .footer-inner-middle .company-info .dt-group {
    margin-top: 1rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-middle .company-info .dt-group {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-middle .company-info .dt-group {
    display: none;
  }
}
footer .footer-inner-middle .company-info .dt-group span {
  color: #92979D;
  font-weight: 700;
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  footer .footer-inner-middle .company-info .dt-group span {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-middle .company-info .dt-group span {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-inner-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-bottom {
    width: 100%;
    margin: auto;
    max-width: 100vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-bottom {
    max-width: 1440px;
  }
}
footer .footer-inner-bottom .footer-menu {
  margin-bottom: 4.2667vw;
}
@media (min-width: 768px) {
  footer .footer-inner-bottom .footer-menu {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-bottom .footer-menu {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-inner-bottom .footer-menu {
    margin-bottom: 0;
  }
}
footer .footer-inner-bottom .footer-menu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .footer-inner-bottom .footer-menu ul li {
  position: relative;
  padding: 0vw 4.2667vw;
}
@media (min-width: 768px) {
  footer .footer-inner-bottom .footer-menu ul li {
    padding: 0rem 1rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-bottom .footer-menu ul li {
    padding: 0px 16px;
  }
}
footer .footer-inner-bottom .footer-menu ul li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  background: #92979D;
  height: 3.7333vw;
}
@media (min-width: 768px) {
  footer .footer-inner-bottom .footer-menu ul li:before {
    height: 0.875rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-bottom .footer-menu ul li:before {
    height: 14px;
  }
}
footer .footer-inner-bottom .footer-menu ul li a {
  color: #ffffff;
  font-weight: 700;
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  footer .footer-inner-bottom .footer-menu ul li a {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-bottom .footer-menu ul li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-bottom .footer-menu ul li a {
    font-size: 1.1111vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-bottom .footer-menu ul li a {
    font-size: 16px;
  }
}
footer .footer-inner-bottom .footer-menu ul li:first-of-type {
  padding-left: 0;
}
footer .footer-inner-bottom .footer-menu ul li:last-of-type {
  padding-right: 0;
}
footer .footer-inner-bottom .footer-menu ul li:last-of-type:before {
  display: none;
}
footer .footer-inner-bottom .copyright {
  color: #92979D;
  font-weight: 500;
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  footer .footer-inner-bottom .copyright {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner-bottom .copyright {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner-bottom .copyright {
    font-size: 1.1111vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  footer .footer-inner-bottom .copyright {
    font-size: 16px;
  }
}

/* =================================================================
   [Component] Modal Layer
   * JS Class Mapping:
   * 1. 배경 (.modal-dim)
   * 2. 본체 (.modal-layer)
   * 3. 활성상태 (.is-active)
   ================================================================= */
.modal-dim {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-dim.is-active {
  opacity: 1;
  visibility: visible;
}
.modal-dim.is-active .modal-layer {
  transform: translateY(0);
  opacity: 1;
}

.modal-layer {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - 40px);
  max-height: 85vh;
  background-color: #fff;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .modal-layer {
    width: 100%;
  }
}
.modal-layer .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 5.3333vw;
}
@media (min-width: 768px) {
  .modal-layer .modal-header {
    padding: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header {
    padding: 20px;
  }
}
.modal-layer .modal-header .tit {
  margin: 0;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
  font-size: 4.8vw;
}
@media (min-width: 768px) {
  .modal-layer .modal-header .tit {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .tit {
    font-size: 18px;
  }
}
.modal-layer .modal-header .btn-close-modal {
  padding: 0;
  background: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
  width: 6.4vw;
}
@media (min-width: 768px) {
  .modal-layer .modal-header .btn-close-modal {
    width: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    width: 24px;
  }
}
.modal-layer .modal-header .btn-close-modal {
  height: 6.4vw;
}
@media (min-width: 768px) {
  .modal-layer .modal-header .btn-close-modal {
    height: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    height: 24px;
  }
}
.modal-layer .modal-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  color: #666;
  line-height: 1.5;
  padding: 6.4vw;
}
@media (min-width: 768px) {
  .modal-layer .modal-body {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-body {
    padding: 24px;
  }
}
.modal-layer .modal-body {
  font-size: 4vw;
}
@media (min-width: 768px) {
  .modal-layer .modal-body {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-body {
    font-size: 15px;
  }
}
.modal-layer .modal-footer {
  display: flex;
  justify-content: flex-end;
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
  padding: 4.2667vw;
}
@media (min-width: 768px) {
  .modal-layer .modal-footer {
    padding: 1rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-footer {
    padding: 16px;
  }
}
.modal-layer .modal-footer {
  gap: 2.1333vw;
}
@media (min-width: 768px) {
  .modal-layer .modal-footer {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-footer {
    gap: 8px;
  }
}

/* =================================================================
   1. [CSS Variables] Global Settings
   ================================================================= */
:root {
  /* --------------------------------
     1-1. Color System (Base)
     -------------------------------- */
  --color-primary: #832EDA;
  --color-secondary: #B06CFF;
  --color-tertiary: #1C2E4A;
  --color-error: #F82417;
  /* Grayscale Mapping */
  --gray-wh: #ffffff;
  --gray-bk: #000000;
  --gray1: #F3F4F5;
  --gray2: #E6E7E9;
  --gray3: #D3D5D8;
  --gray4: #B7BBC0;
  --gray5: #92979D;
  --gray6: #6D7278;
  --gray7: #50555B;
  --gray8: #33383D;
  --gray9: #1A1D20;
  /* Backgrounds */
  --bg-page: var(--gray-wh);
  --bg-white: #ffffff;
  /* Texts */
  --text-main: var(--gray9);
  --text-sub: var(--gray6);
  --text-muted: var(--gray4);
  /* Borders & Lines */
  --line-light: var(--gray2);
  --line-basic: var(--gray5);
  --line-strong: var(--gray7);
  /* Forms (Inputs) */
  --input-height: 48px;
  --input-bg:#ffffff;
  --input-border-color: var(--line-basic);
  --input-radius: 6px;
  --input-bdw: 1px;
  --input-pad: 16px;
  --input-def-bdc: #92979D;
  --input-lg-h: 48px;
  --input-lg-radius:12px;
  /* Tables */
  --table-th-bg: var(--gray1);
  --table-th-text: var(--gray7);
  --table-border: var(--gray2);
  /* Misc */
  --PlaceColor: var(--gray4);
  --color-primary-dark: rgb(92.987804878, 28.2012195122, 159.2987804878);
  --color-primary-light: hsl(269.6511627907, 69.918699187%, 101.7647058824%);
  --color-secondary-dark: rgb(134.887755102, 31.5, 255);
  --color-secondary-light: hsl(267.7551020408, 100%, 106.1764705882%);
  /* 버튼, 피그마 연동*/
  --btn-common-bw: 2px;
  --btn-lg-height: 48px;
  --btn-lg-v-pad: 0px;
  --btn-lg-h-pad: 40px;
  --btn-lg-gap: 8px;
  --btn-lg-radius: 12px;
  --btn-lg-radius-full: 48px;
  --btn-sm-height: 59px;
  --btn-sm-v-pad: 12px;
  --btn-sm-h-pad: 24px;
  --btn-sm-gap: 6px;
  --btn-sm-radius: 14px;
  --btn-sm-radius-full: 59px;
  --btn-xs-height: 40px;
  --btn-xs-v-pad: 8px;
  --btn-xs-h-pad: 16px;
  --btn-xs-gap: 5px;
  --btn-xs-radius: 10px;
  --btn-xs-radius-full: 40px;
  /* =================================================================
  Heading Typography & Variables (Figma var(--h2) 연결)
  ================================================================= */
  --text-h2: 8vw;
}
@media (min-width: 768px) {
  :root {
    --text-h2: 1.875rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --text-h2: 30px;
  }
}
:root {
  --h2: var(--text-h2);
}
@media screen and (min-width: 1200px) {
  :root {
    --text-h2: 44px;
  }
}
:root {
  --text-h3: 6.9333vw;
}
@media (min-width: 768px) {
  :root {
    --text-h3: 1.625rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --text-h3: 26px;
  }
}
:root {
  --h3: var(--text-h3);
}
@media screen and (min-width: 1200px) {
  :root {
    --text-h3: 38px;
  }
}
:root {
  --text-h4: 5.8667vw;
}
@media (min-width: 768px) {
  :root {
    --text-h4: 1.375rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --text-h4: 22px;
  }
}
:root {
  --h4: var(--text-h4);
}
@media screen and (min-width: 1200px) {
  :root {
    --text-h4: 32px;
  }
}
:root {
  --text-h5: 4.8vw;
}
@media (min-width: 768px) {
  :root {
    --text-h5: 1.125rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --text-h5: 18px;
  }
}
:root {
  --h5: var(--text-h5);
}
@media screen and (min-width: 1200px) {
  :root {
    --text-h5: 26px;
  }
}
:root {
  --text-h6: 4.2667vw;
}
@media (min-width: 768px) {
  :root {
    --text-h6: 1rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --text-h6: 16px;
  }
}
:root {
  --h6: var(--text-h6);
}
@media screen and (min-width: 1200px) {
  :root {
    --text-h6: 24px;
  }
}

/* =================================================================
   2. [Theme] Dark Mode Override
   ================================================================= */
[data-theme=dark] {
  --bg-page: var(--gray9);
  --bg-white: var(--gray8);
  --text-main: var(--gray-wh);
  --text-sub: var(--gray4);
  --line-basic: var(--gray7);
}

/* =================================================================
   3. [Typography] Auto Responsive Variables
   ================================================================= */
/* 3-1. Mobile Default (vw) */
:root {
  --text-xs: 3.2vw;
  --text-sm: 3.7333vw;
  --text-base: 4.2667vw;
  --text-lg: 4.8vw;
  --text-xl: 5.3333vw;
  --text-2xl: 6.4vw;
  --text-3xl: 8vw;
}

/* 3-2. Tablet Override (rem) */
@media (min-width: 768px) {
  :root {
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
  }
}
/* 3-3. PC Override (px) */
@media (min-width: 1200px) {
  :root {
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
  }
}
/* 3-4. 폰트사이즈 클래스화 */
.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-base {
  font-size: var(--text-base);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-2xl {
  font-size: var(--text-2xl);
}

.text-3xl {
  font-size: var(--text-3xl);
}

/* 스크롤바 커스텀 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #888888;
}

::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

hr {
  height: 1px;
  background-color: #E6E7E9;
  margin: 0 auto;
  border: none;
}

br {
  /* 1. 모바일용 br (767px 이하에서만 동작) */
}
br.mo {
  display: block;
}
@media screen and (min-width: 768px) {
  br.mo {
    display: none;
  }
}
br {
  /* 2. 태블릿용 br (768px ~ 1199px 사이에서만 동작) */
}
br.sm {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  br.sm {
    display: block;
  }
}
br {
  /* 3. PC용 br (1200px 이상에서만 동작) */
}
br.pc {
  display: none;
}
@media screen and (min-width: 1200px) {
  br.pc {
    display: block;
  }
}

.scroll {
  width: 100%;
  padding: 0;
  overflow-y: overlay;
  text-align: center;
}

h2 {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--h2);
}

h3 {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--h3);
}

h4 {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--h4);
}

h5 {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--h5);
}

h6 {
  font-weight: 700;
  line-height: 1.5;
  font-size: var(--h6);
}

.icon-svg {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10.6667vw;
}
@media (min-width: 768px) {
  .icon-svg {
    width: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .icon-svg {
    width: 40px;
  }
}
.icon-svg {
  height: 10.6667vw;
}
@media (min-width: 768px) {
  .icon-svg {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .icon-svg {
    height: 40px;
  }
}
.icon-svg svg {
  overflow: hidden;
  width: 100%;
}

/* 모달팝업 */
.modal {
  position: fixed;
  bottom: -9999px;
  left: -9999px;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .modal {
    justify-content: center;
  }
}
.modal.open {
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 1;
}
.modal.open-out {
  opacity: 0;
}
.modal .modal-scroll {
  width: 100%;
  height: auto;
  padding: 0;
  overflow-y: overlay;
  text-align: center;
  padding: 0vw 4.2667vw 0vw 4.2667vw;
}
@media (min-width: 768px) {
  .modal .modal-scroll {
    padding: 0rem 1rem 0rem 1rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-scroll {
    padding: 0px 16px 0px 16px;
  }
}
.modal .modal-scroll::-webkit-scrollbar {
  width: 10px;
  height: 20px;
}
.modal .modal-scroll::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 5px;
}
.modal .modal-scroll::-webkit-scrollbar-thumb:hover {
  background: #878787;
}
.modal .modal-scroll::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 5px;
}
.modal .modal-scroll .content-area {
  padding: 0vw 4.2667vw;
}
@media (min-width: 768px) {
  .modal .modal-scroll .content-area {
    padding: 0rem 1rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-scroll .content-area {
    padding: 0px 16px;
  }
}
.modal .modal-container {
  width: 100%;
  display: inline-block;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  overflow: hidden;
  border-top-left-radius: 6.4vw;
}
@media (min-width: 768px) {
  .modal .modal-container {
    border-top-left-radius: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-container {
    border-top-left-radius: 24px;
  }
}
.modal .modal-container {
  border-top-right-radius: 6.4vw;
}
@media (min-width: 768px) {
  .modal .modal-container {
    border-top-right-radius: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-container {
    border-top-right-radius: 24px;
  }
}
.modal .modal-container {
  border-bottom-right-radius: 0vw;
}
@media (min-width: 768px) {
  .modal .modal-container {
    border-bottom-right-radius: 0rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-container {
    border-bottom-right-radius: 0px;
  }
}
.modal .modal-container {
  border-bottom-left-radius: 0vw;
}
@media (min-width: 768px) {
  .modal .modal-container {
    border-bottom-left-radius: 0rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-container {
    border-bottom-left-radius: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .modal .modal-container {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}
.modal .modal-title-box {
  border-bottom: 1px solid #6D7278;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.2667vw 4.2667vw 3.2vw 6.4vw;
}
@media (min-width: 768px) {
  .modal .modal-title-box {
    padding: 1rem 1rem 0.75rem 1.5rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-title-box {
    padding: 16px 16px 12px 24px;
  }
}
.modal .modal-title-box .close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.8vw;
}
@media (min-width: 768px) {
  .modal .modal-title-box .close-btn {
    width: 3rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-title-box .close-btn {
    width: 48px;
  }
}
.modal .modal-title-box .close-btn {
  height: 12.8vw;
}
@media (min-width: 768px) {
  .modal .modal-title-box .close-btn {
    height: 3rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-title-box .close-btn {
    height: 48px;
  }
}
.modal .modal-title-box .close-btn .icon-svg {
  color: #000;
  padding-right: 1px;
  width: 4.2667vw;
}
@media (min-width: 768px) {
  .modal .modal-title-box .close-btn .icon-svg {
    width: 1rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-title-box .close-btn .icon-svg {
    width: 16px;
  }
}
.modal .modal-title-box .close-btn .icon-svg {
  height: 4.2667vw;
}
@media (min-width: 768px) {
  .modal .modal-title-box .close-btn .icon-svg {
    height: 1rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-title-box .close-btn .icon-svg {
    height: 16px;
  }
}
.modal .modal-title-box.center {
  justify-content: center;
}
.modal .modal-title-box.center .close-btn {
  position: absolute;
}
.modal .modal-title-box.left {
  justify-content: flex-start;
}
.modal .modal-title-box.between {
  justify-content: space-between;
}
.modal .modal-title-box h3 {
  color: #1A1D20;
  font-weight: 700;
  font-size: 6.4vw;
}
@media (min-width: 768px) {
  .modal .modal-title-box h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-title-box h3 {
    font-size: 24px;
  }
}
.modal .modal-title-box h3 span {
  color: #1A1D20;
  font-weight: 700;
  font-size: 6.4vw;
}
@media (min-width: 768px) {
  .modal .modal-title-box h3 span {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-title-box h3 span {
    font-size: 24px;
  }
}
.modal .modal-title-box.none .close-btn {
  filter: brightness(1) invert(1);
}

/*테이블*/
.table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2.6667vw;
}
@media (min-width: 768px) {
  .table-scroll {
    padding-bottom: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .table-scroll {
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .table-scroll {
    overflow-x: visible;
    padding-bottom: 0;
  }
}

.tbl-basic {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  border-top: 2px solid #333;
  min-width: 160vw;
}
@media (min-width: 768px) {
  .tbl-basic {
    min-width: 37.5rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic {
    min-width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .tbl-basic {
    min-width: auto;
    border-top-width: 2px;
  }
}
.tbl-basic thead th {
  background-color: #f8f9fa;
  font-weight: 700;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #eee;
  white-space: nowrap;
  padding: 4vw 2.6667vw;
}
@media (min-width: 768px) {
  .tbl-basic thead th {
    padding: 0.9375rem 0.625rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic thead th {
    padding: 15px 10px;
  }
}
.tbl-basic thead th {
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .tbl-basic thead th {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic thead th {
    font-size: 14px;
  }
}
.tbl-basic thead th:first-child {
  border-left: none;
}
@media screen and (min-width: 1200px) {
  .tbl-basic thead th {
    padding: 15px 10px;
    font-size: 14px;
    white-space: normal;
  }
}
.tbl-basic tbody td {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
  text-align: center;
  color: var(--text-sub, #666);
  padding: 4vw 2.6667vw;
}
@media (min-width: 768px) {
  .tbl-basic tbody td {
    padding: 0.9375rem 0.625rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic tbody td {
    padding: 15px 10px;
  }
}
.tbl-basic tbody td {
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .tbl-basic tbody td {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic tbody td {
    font-size: 14px;
  }
}
.tbl-basic tbody td:first-child {
  border-left: none;
}
@media screen and (min-width: 1200px) {
  .tbl-basic tbody td {
    padding: 15px 10px;
    font-size: 14px;
  }
}
.tbl-basic.text-left td {
  text-align: left;
}

/* 리스트 스타일 */
[class^=list-type-] {
  list-style: none;
  padding: 0;
  margin: 0;
}
[class^=list-type-] > li {
  position: relative;
  box-sizing: border-box;
  padding-left: 4.2667vw;
}
@media (min-width: 768px) {
  [class^=list-type-] > li {
    padding-left: 1rem;
  }
}
@media (min-width: 1200px) {
  [class^=list-type-] > li {
    padding-left: 16px;
  }
}
[class^=list-type-] > li {
  margin-bottom: 1.3333vw;
}
@media (min-width: 768px) {
  [class^=list-type-] > li {
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  [class^=list-type-] > li {
    margin-bottom: 5px;
  }
}
[class^=list-type-] > li:last-child {
  margin-bottom: 0;
}
[class^=list-type-] > li::before {
  position: absolute;
  left: 0;
  display: inline-block;
  font-weight: 500;
  top: 0;
}

.list-type-dash > li::before {
  content: "-";
}

.list-type-dot > li::before {
  content: "·";
}

.list-type-star > li::before {
  content: "*";
  transform: translateY(10%);
}

.list-type-order {
  counter-reset: list-counter;
}
.list-type-order > li {
  padding-left: 5.8667vw;
}
@media (min-width: 768px) {
  .list-type-order > li {
    padding-left: 1.375rem;
  }
}
@media (min-width: 1200px) {
  .list-type-order > li {
    padding-left: 22px;
  }
}
.list-type-order > li::before {
  counter-increment: list-counter;
  content: counter(list-counter) ")";
}

.list-type-custom > li {
  padding-left: 5.3333vw;
}
@media (min-width: 768px) {
  .list-type-custom > li {
    padding-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .list-type-custom > li {
    padding-left: 20px;
  }
}
.list-type-custom > li::before {
  content: "";
  top: 0.3em;
  background-image: url("data:image/svg+xml,...");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3.2vw;
}
@media (min-width: 768px) {
  .list-type-custom > li::before {
    width: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .list-type-custom > li::before {
    width: 12px;
  }
}
.list-type-custom > li::before {
  height: 3.2vw;
}
@media (min-width: 768px) {
  .list-type-custom > li::before {
    height: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .list-type-custom > li::before {
    height: 12px;
  }
}
.list-type-custom.icon-arrow > li::before {
  background-image: url("../images/icon_arrow_right.svg");
}

/* 박스 공통 베이스 */
.box-base, .box-bg, .box-line, .box-card {
  display: block;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  background-color: #fff;
  padding: 6.4vw;
}
@media (min-width: 768px) {
  .box-base, .box-bg, .box-line, .box-card {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .box-base, .box-bg, .box-line, .box-card {
    padding: 24px;
  }
}
.box-base, .box-bg, .box-line, .box-card {
  border-radius: 3.2vw;
}
@media (min-width: 768px) {
  .box-base, .box-bg, .box-line, .box-card {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .box-base, .box-bg, .box-line, .box-card {
    border-radius: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .box-base, .box-bg, .box-line, .box-card {
    padding: 24px;
    border-radius: 12px;
  }
}

.box-card {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.box-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.box-line {
  border: 1px solid #e5e5e5;
  box-shadow: none;
}

.box-bg {
  background-color: #f8f9fa;
  border: none;
}

.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4.2667vw;
}
@media (min-width: 768px) {
  .box-header {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .box-header {
    margin-bottom: 16px;
  }
}
.box-header {
  min-height: 6.4vw;
}
@media (min-width: 768px) {
  .box-header {
    min-height: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .box-header {
    min-height: 24px;
  }
}
.box-header .box-title {
  font-weight: 700;
  color: #000;
  margin: 0;
  font-size: 4.8vw;
}
@media (min-width: 768px) {
  .box-header .box-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .box-header .box-title {
    font-size: 18px;
  }
}
.box-header .box-util {
  margin-left: auto;
}

.box-body {
  color: var(--text-sub, #666);
  line-height: 1.6;
  font-size: 4vw;
}
@media (min-width: 768px) {
  .box-body {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .box-body {
    font-size: 15px;
  }
}

.box-footer {
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  margin-top: 5.3333vw;
}
@media (min-width: 768px) {
  .box-footer {
    margin-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .box-footer {
    margin-top: 20px;
  }
}
.box-footer {
  padding-top: 5.3333vw;
}
@media (min-width: 768px) {
  .box-footer {
    padding-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .box-footer {
    padding-top: 20px;
  }
}

/* 타이틀 에어리어 */
.tit-area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 8vw;
}
@media (min-width: 768px) {
  .tit-area {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .tit-area {
    margin-bottom: 30px;
  }
}
.tit-area .tit {
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1.3;
  color: var(--text-main, #000);
  gap: 0;
  gap: 2.1333vw;
}
@media (min-width: 768px) {
  .tit-area .tit {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .tit-area .tit {
    gap: 8px;
  }
}
.tit-area .desc {
  display: block;
  font-weight: 400;
  color: var(--text-sub, #666);
  line-height: 1.5;
  margin-top: 2.6667vw;
}
@media (min-width: 768px) {
  .tit-area .desc {
    margin-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .tit-area .desc {
    margin-top: 10px;
  }
}
.tit-area .desc {
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .tit-area .desc {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .tit-area .desc {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .tit-area .desc {
    font-size: 14px;
  }
}
.tit-area .icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
.tit-area.type-center {
  align-items: center;
  text-align: center;
}
.tit-area.type-center .tit {
  justify-content: center;
}
.tit-area.type-row {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.tit-area.type-row .desc {
  margin-top: 0;
  margin-left: auto;
}
.tit-area.type-underline {
  border-bottom: 2px solid #000;
  padding-bottom: 4vw;
}
@media (min-width: 768px) {
  .tit-area.type-underline {
    padding-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .tit-area.type-underline {
    padding-bottom: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .tit-area.type-underline {
    border-bottom-width: 2px;
  }
}

.img-row img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*모션*/
.motion-fade {
  opacity: 0;
  transition: opacity 1s;
}
.motion-fade.active {
  opacity: 1;
}

.motion-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.motion-up.active {
  opacity: 1;
  transform: translateY(0);
}

.motion-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.7s, transform 0.7s;
}
.motion-down.active {
  opacity: 1;
  transform: translateY(0);
}

.motion-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s, transform 0.7s;
}
.motion-left.active {
  opacity: 1;
  transform: none;
}

.motion-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.motion-right.active {
  opacity: 1;
  transform: none;
}

.breadcrumb-list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.4667vw;
}
@media (min-width: 768px) {
  .breadcrumb-list {
    gap: 0.8125rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list {
    gap: 13px;
  }
}
.breadcrumb-list {
  border-radius: 100%;
  display: inline-flex;
  z-index: 1;
}
.breadcrumb-list:before {
  content: "";
  z-index: -1;
  position: absolute;
  opacity: 0.25;
  background: #1A1D20;
  filter: blur(12px);
  top: -1.3333vw;
}
@media (min-width: 768px) {
  .breadcrumb-list:before {
    top: -0.3125rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list:before {
    top: -5px;
  }
}
.breadcrumb-list:before {
  left: -1.3333vw;
}
@media (min-width: 768px) {
  .breadcrumb-list:before {
    left: -0.3125rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list:before {
    left: -5px;
  }
}
.breadcrumb-list:before {
  right: -1.3333vw;
}
@media (min-width: 768px) {
  .breadcrumb-list:before {
    right: -0.3125rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list:before {
    right: -5px;
  }
}
.breadcrumb-list:before {
  bottom: -1.3333vw;
}
@media (min-width: 768px) {
  .breadcrumb-list:before {
    bottom: -0.3125rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list:before {
    bottom: -5px;
  }
}
.breadcrumb-list li {
  position: relative;
}
.breadcrumb-list li:before {
  content: "";
  position: absolute;
  width: 1px;
  background: #92979D;
  opacity: 0.7;
  top: 0.5333vw;
}
@media (min-width: 768px) {
  .breadcrumb-list li:before {
    top: 0.125rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list li:before {
    top: 2px;
  }
}
.breadcrumb-list li:before {
  height: 3.4667vw;
}
@media (min-width: 768px) {
  .breadcrumb-list li:before {
    height: 0.8125rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list li:before {
    height: 13px;
  }
}
.breadcrumb-list li:before {
  right: -1.8667vw;
}
@media (min-width: 768px) {
  .breadcrumb-list li:before {
    right: -0.4375rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list li:before {
    right: -7px;
  }
}
.breadcrumb-list li:last-of-type:before {
  display: none;
}
.breadcrumb-list li.home a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.2667vw;
}
@media (min-width: 768px) {
  .breadcrumb-list li.home a {
    width: 1rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list li.home a {
    width: 16px;
  }
}
.breadcrumb-list li.home a {
  height: 4.2667vw;
}
@media (min-width: 768px) {
  .breadcrumb-list li.home a {
    height: 1rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list li.home a {
    height: 16px;
  }
}
.breadcrumb-list li.home a .icon-svg {
  width: 4.2667vw;
}
@media (min-width: 768px) {
  .breadcrumb-list li.home a .icon-svg {
    width: 1rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list li.home a .icon-svg {
    width: 16px;
  }
}
.breadcrumb-list li.home a .icon-svg {
  height: 4.2667vw;
}
@media (min-width: 768px) {
  .breadcrumb-list li.home a .icon-svg {
    height: 1rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list li.home a .icon-svg {
    height: 16px;
  }
}
.breadcrumb-list li.home a .icon-svg svg {
  color: #ffffff;
}
.breadcrumb-list li.depth1 a, .breadcrumb-list li.depth1 span, .breadcrumb-list li.depth2 a, .breadcrumb-list li.depth2 span {
  color: #ffffff;
  font-weight: 400;
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .breadcrumb-list li.depth1 a, .breadcrumb-list li.depth1 span, .breadcrumb-list li.depth2 a, .breadcrumb-list li.depth2 span {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-list li.depth1 a, .breadcrumb-list li.depth1 span, .breadcrumb-list li.depth2 a, .breadcrumb-list li.depth2 span {
    font-size: 14px;
  }
}

.text-anmimation {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  padding: 8.5333vw 0vw 0vw 0vw;
}
@media (min-width: 768px) {
  .text-anmimation {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 1200px) {
  .text-anmimation {
    padding: 32px 0px 0px 0px;
  }
}
@media screen and (min-width: 1200px) {
  .text-anmimation {
    padding: 3.3333vw 0vw 0vw 0vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  .text-anmimation {
    padding: 48px 0px 0px 0px;
  }
}
.text-anmimation .marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  /* 너비는 내부 콘텐츠에 맞춰 자동으로 늘어남 */
  width: -moz-max-content;
  width: max-content;
  flex-shrink: 0;
}
.text-anmimation p {
  display: inline-block;
  will-change: transform;
  color: #F3F4F5;
  font-weight: 700;
  line-height: 100%;
  font-family: "Montserrat";
  margin: 0;
  font-size: 24vw;
}
@media (min-width: 768px) {
  .text-anmimation p {
    font-size: 5.625rem;
  }
}
@media (min-width: 1200px) {
  .text-anmimation p {
    font-size: 90px;
  }
}
.text-anmimation p {
  padding-right: 6.4vw;
}
@media (min-width: 768px) {
  .text-anmimation p {
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .text-anmimation p {
    padding-right: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .text-anmimation p {
    font-size: 12.5vw;
    margin-right: 3.3333vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  .text-anmimation p {
    font-size: 180px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1440px) {
  .text-anmimation p {
    margin-right: 48px;
  }
}

@keyframes infinite-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); /* 정확히 절반(텍스트 1개 분량)만큼 이동 */
  }
}
.scroll-hint {
  display: block;
  color: #832EDA;
  text-align: right;
  font-weight: 600;
  animation: swipeHint 1.5s infinite;
  font-size: 3.7333vw;
}
@media (min-width: 768px) {
  .scroll-hint {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .scroll-hint {
    font-size: 14px;
  }
}
.scroll-hint {
  margin-bottom: 4.2667vw;
}
@media (min-width: 768px) {
  .scroll-hint {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .scroll-hint {
    margin-bottom: 16px;
  }
}
@keyframes swipeHint {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}