@charset "UTF-8";
/* =================================================================
   1. [SCSS Variables] Raw Data Definition
   * 이곳은 '순수 값'만 정의합니다. 실제 코드에서는 사용하지 않는 것을 권장합니다.
   * 브랜드 컬러 코드가 바뀌면 여기만 수정하세요.
   ================================================================= */
/* 드롭다운,멀티포함 */
/* Level 1: Fixed UI (헤더 영역) */
/* Level 2: Dropdowns (헤더 위에 뜨는 요소) */
/* Level 3: Overlays (전체 화면을 덮는 요소) */
/* Level 4: Controls (가장 최상위 컨트롤) */
/**
 * [A. 일반 속성용] width, height, padding, margin, gap 등
 * @param $property : CSS 속성명
 * @param $values : 값
 * @param $raw : (옵션) true일 경우 /3 계산 안함
 */
/**
 * [B. 폰트 전용] font-size + line-height + Text Crop
 */
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,
picture,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: var(--text-base);
  font-family: "Pretendard", sans-serif;
  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,
picture,
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 {
  border: none;
  font-family: "Pretendard", sans-serif;
  box-sizing: border-box;
}

input[type=submit],
button[type=submit] {
  font-family: "Pretendard", sans-serif;
}

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

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: "Pretendard", sans-serif;
}

::placeholder {
  color: var(--PlaceColor);
  font-family: "Pretendard", sans-serif;
}

b {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

/* =================================================================
   [Utility] Helper Classes
   * PC 기준 값(1배수)을 클래스명으로 사용합니다.
   * 내부적으로 3배수로 변환하여 responsive() 믹스인을 호출합니다.
   ================================================================= */
.m-0 {
  margin: 0vw;
}
@media (min-width: 641px) {
  .m-0 {
    margin: 0rem;
  }
}
@media (min-width: 1200px) {
  .m-0 {
    margin: 0px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-main {
  color: var(--text-main, #000);
}

.text-sub {
  color: var(--text-sub, #666);
}

.text-gray {
  color: var(--text-gray, #999);
}

.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 사용 가이드]
   * 핵심 규칙: 클래스명에 적힌 숫자는 "PC 기준(1배수) 픽셀"입니다.
   * 작동 원리: 내부적으로 3배수로 변환되어 모바일(vw/rem)에 자동 적용됩니다.
================================================================================

   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 (PC) / 60px (Mobile)
   .px-10       => padding-left/right: 10px (PC) / 30px (Mobile)
   .p-30        => padding: 30px (PC) / 90px (Mobile)
   .mb-0        => margin-bottom: 0


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

   [예시]
   .text-16     => font-size: 16px (PC) / 48px (Mobile)
   .text-24     => font-size: 24px (PC) / 72px (Mobile)

   * 정렬: .text-left, .text-center, .text-right
   * 굵기: .font-regular (400), .font-medium (500), .font-bold (700)
   * 색상: .text-main (#000), .text-sub (#666), .text-gray (#999)
   * 기타: .text-truncate (말줄임표)


   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 (채움)

   [자주 쓰는 조합 예시]
   <div class="d-flex justify-between items-center"> ... </div>

   <div class="d-flex justify-center items-center"> ... </div>


   4. 기타 유틸리티
   -----------------------------------------------------------------------------
   .w-full      => width: 100%
   .d-none      => display: none
   .d-block     => display: block
   .sr-only     => 스크린 리더 전용 (화면 숨김)

================================================================================
*/
/* =================================================================
   [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='%23C4C4C4' 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='%230C6FB8' 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='%23C4C4C4' 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='%23C4C4C4' 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='%230C6FB8' stroke='%230C6FB8' 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='%23C4C4C4' stroke-width='2'/%3E%3C/svg%3E");
}

/* =================================================================
   [1] Form Row Layout (Universal Container)
   ================================================================= */
.form-row {
  display: flex;
  flex-direction: column;
  position: relative;
}
.form-row {
  gap: 3.75vw;
}
@media (min-width: 641px) {
  .form-row {
    gap: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row {
    gap: 16px;
  }
}
.form-row {
  margin-bottom: 12.5vw;
}
@media (min-width: 641px) {
  .form-row {
    margin-bottom: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .form-row {
    margin-bottom: 53px;
  }
}
@media screen and (min-width: 1200px) {
  .form-row {
    gap: 16px;
    margin-bottom: 48px;
  }
}
.form-row > label,
.form-row > .label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-main);
  word-break: keep-all;
}
.form-row > label,
.form-row > .label {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .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: 4.6875vw;
}
@media (min-width: 641px) {
  .form-row > label,
  .form-row > .label {
    min-height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .form-row > label,
  .form-row > .label {
    min-height: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .form-row > label,
  .form-row > .label {
    font-size: 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 div.error {
  width: 100%;
}
@media (min-width: 641px) {
  .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;
  }
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-width: 14.0625vw;
  }
}
@media (min-width: 641px) and (min-width: 641px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-width: 3.75rem;
  }
}
@media (min-width: 641px) and (min-width: 1200px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-width: 60px;
  }
}
@media (min-width: 641px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-height: 15vw;
  }
}
@media (min-width: 641px) and (min-width: 641px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-height: 4rem;
  }
}
@media (min-width: 641px) and (min-width: 1200px) {
  .form-row.type-row > label,
  .form-row.type-row > .label {
    min-height: 64px;
  }
}
@media (min-width: 641px) {
  .form-row.type-row:has(.group-items) > label, .form-row.type-row:has(.group-items) > .label {
    min-height: 7.0313vw;
  }
}
@media (min-width: 641px) and (min-width: 641px) {
  .form-row.type-row:has(.group-items) > label, .form-row.type-row:has(.group-items) > .label {
    min-height: 1.875rem;
  }
}
@media (min-width: 641px) and (min-width: 1200px) {
  .form-row.type-row:has(.group-items) > label, .form-row.type-row:has(.group-items) > .label {
    min-height: 30px;
  }
}
@media (min-width: 641px) {
  .form-row.type-row.check .group-items, .form-row.type-row.radio .group-items {
    min-height: 7.0313vw;
  }
}
@media (min-width: 641px) and (min-width: 641px) {
  .form-row.type-row.check .group-items, .form-row.type-row.radio .group-items {
    min-height: 1.875rem;
  }
}
@media (min-width: 641px) and (min-width: 1200px) {
  .form-row.type-row.check .group-items, .form-row.type-row.radio .group-items {
    min-height: 30px;
  }
}
@media (min-width: 641px) {
  .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 div.error {
    flex-basis: 100%;
    width: 100%;
    padding-left: 0;
  }
  .form-row.type-row div.error {
    margin-left: 17.8125vw;
  }
}
@media (min-width: 641px) and (min-width: 641px) {
  .form-row.type-row div.error {
    margin-left: 4.75rem;
  }
}
@media (min-width: 641px) and (min-width: 1200px) {
  .form-row.type-row div.error {
    margin-left: 76px;
  }
}
.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;
}
.form-row.type-col > label, .form-row.type-col > .label {
  min-height: 4.6875vw;
}
@media (min-width: 641px) {
  .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: var(--gray8);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.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: 3.75vw;
}
@media (min-width: 641px) {
  .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: 2.1875vw;
}
@media (min-width: 641px) {
  .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: 0.5833rem;
  }
}
@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: 9px;
  }
}
.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: 12.5vw;
}
@media (min-width: 641px) {
  .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: 3.3333rem;
  }
}
@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: 53px;
  }
}
.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 3.75vw;
}
@media (min-width: 641px) {
  .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;
  }
}
@media screen and (min-width: 641px) {
  .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: 64px;
  }
}
.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;
}
.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;
}
.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: 3.75vw;
}
.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: 3.75vw;
}
@media (min-width: 641px) {
  .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(12, 111, 184, 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: 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: 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 input[type=text]:not(:-moz-placeholder), .form-row input[type=number]:not(:-moz-placeholder), .form-row input[type=tel]:not(:-moz-placeholder), .form-row input[type=email]:not(:-moz-placeholder), .form-row input[type=password]:not(:-moz-placeholder), .form-row select:not(:-moz-placeholder), .form-row .dropdown-box > button:not(:-moz-placeholder) {
  border-color: #444444;
}
.form-row input[type=text]:not(:placeholder-shown),
.form-row input[type=number]:not(:placeholder-shown),
.form-row input[type=tel]:not(:placeholder-shown),
.form-row input[type=email]:not(:placeholder-shown),
.form-row input[type=password]:not(:placeholder-shown),
.form-row select:not(:placeholder-shown), .form-row .dropdown-box > button:not(:placeholder-shown) {
  border-color: #444444;
}
.form-row input[type=text].error,
.form-row input[type=number].error,
.form-row input[type=tel].error,
.form-row input[type=email].error,
.form-row input[type=password].error,
.form-row select.error, .form-row .dropdown-box > button.error {
  border-color: var(--color-error);
}
.form-row textarea {
  display: block;
  resize: none;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--gray8);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.form-row textarea {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .form-row textarea {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    font-size: 16px;
  }
}
.form-row textarea {
  border-radius: 2.1875vw;
}
@media (min-width: 641px) {
  .form-row textarea {
    border-radius: 0.5833rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    border-radius: 9px;
  }
}
.form-row textarea {
  padding: 4.6875vw 3.75vw;
}
@media (min-width: 641px) {
  .form-row textarea {
    padding: 1.25rem 1rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    padding: 20px 16px;
  }
}
.form-row textarea {
  min-height: 23.4375vw;
}
@media (min-width: 641px) {
  .form-row textarea {
    min-height: 6.25rem;
  }
}
@media (min-width: 1200px) {
  .form-row textarea {
    min-height: 100px;
  }
}
.form-row textarea.error {
  border-color: var(--color-error);
}
.form-row textarea::-moz-placeholder {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 1;
}
.form-row textarea::placeholder {
  font-weight: 400;
  color: var(--text-muted);
  opacity: 1;
}
.form-row textarea::-moz-placeholder {
  font-size: 3.75vw;
}
.form-row textarea::placeholder {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .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(12, 111, 184, 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: var(--text-muted);
  cursor: not-allowed;
}
.form-row textarea:read-only {
  background: var(--line-light);
  border-color: var(--input-border);
  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;
}
.form-row div.error {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  .form-row div.error {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error {
    font-size: 15px;
  }
}
.form-row div.error {
  margin-top: -1.875vw;
}
@media (min-width: 641px) {
  .form-row div.error {
    margin-top: -0.5rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error {
    margin-top: -8px;
  }
}
.form-row div.error:before {
  content: "*";
  color: inherit;
  margin-top: 2px;
}
.form-row div.error:before {
  margin-right: 0.7813vw;
}
@media (min-width: 641px) {
  .form-row div.error:before {
    margin-right: 0.2083rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error:before {
    margin-right: 3px;
  }
}
.form-row div.error:before {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  .form-row div.error:before {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  .form-row div.error:before {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .form-row div.error {
    font-size: 16px;
  }
  .form-row div.error:before {
    font-size: 16px;
  }
}

/* =================================================================
   [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: var(--text-main);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dropdown-box > button,
.multi-dropdown-box > button {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    height: 53px;
  }
}
.dropdown-box > button,
.multi-dropdown-box > button {
  border-radius: 2.1875vw;
}
@media (min-width: 641px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    border-radius: 0.5833rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    border-radius: 9px;
  }
}
.dropdown-box > button,
.multi-dropdown-box > button {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .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 6.25vw 0 3.75vw;
}
@media (min-width: 641px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    padding: 0 1.6667rem 0 1rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    padding: 0 27px 0 16px;
  }
}
@media screen and (min-width: 641px) {
  .dropdown-box > button,
  .multi-dropdown-box > button {
    height: 64px;
  }
}
.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;
}
.dropdown-box > button:after,
.multi-dropdown-box > button:after {
  right: 3.75vw;
}
@media (min-width: 641px) {
  .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.2813vw;
}
@media (min-width: 641px) {
  .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: 1.875vw;
}
@media (min-width: 641px) {
  .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(--line-regular);
  border: 1px solid var(--input-border);
  overflow-y: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.dropdown-box .dropdown-list,
.multi-dropdown-box .dropdown-list {
  top: 16.4063vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    top: 4.375rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    top: 70px;
  }
}
.dropdown-box .dropdown-list,
.multi-dropdown-box .dropdown-list {
  border-radius: 2.1875vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    border-radius: 0.5833rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    border-radius: 9px;
  }
}
.dropdown-box .dropdown-list,
.multi-dropdown-box .dropdown-list {
  max-height: 46.875vw;
}
@media (min-width: 641px) {
  .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;
  }
}
@media screen and (min-width: 1200px) {
  .dropdown-box .dropdown-list,
  .multi-dropdown-box .dropdown-list {
    top: 69px;
  }
}
.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);
}
.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: 16.4063vw;
}
@media (min-width: 641px) {
  .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: 4.375rem;
  }
}
@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: 70px;
  }
}
@media screen and (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: 69px;
  }
}
.dropdown-box .dropdown-list ul,
.multi-dropdown-box .dropdown-list ul {
  padding: 1.5625vw 0;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul,
  .multi-dropdown-box .dropdown-list ul {
    padding: 0.4167rem 0;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul,
  .multi-dropdown-box .dropdown-list ul {
    padding: 7px 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;
}
.dropdown-box .dropdown-list ul li.empty,
.multi-dropdown-box .dropdown-list ul li.empty {
  padding: 3.125vw 0;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    padding: 0.8333rem 0;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    padding: 13px 0;
  }
}
.dropdown-box .dropdown-list ul li.empty,
.multi-dropdown-box .dropdown-list ul li.empty {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li.empty,
  .multi-dropdown-box .dropdown-list ul li.empty {
    font-size: 15px;
  }
}

.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;
}
.dropdown-box .dropdown-list ul li button {
  padding: 2.3438vw 3.75vw;
}
@media (min-width: 641px) {
  .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: 3.75vw;
}
@media (min-width: 641px) {
  .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: #ffffff;
  position: relative;
}
.dropdown-box .dropdown-list ul li button.selected:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center/contain;
}
.dropdown-box .dropdown-list ul li button.selected:after {
  right: 3.75vw;
}
@media (min-width: 641px) {
  .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.125vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    width: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    width: 13px;
  }
}
.dropdown-box .dropdown-list ul li button.selected:after {
  height: 3.125vw;
}
@media (min-width: 641px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    height: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .dropdown-box .dropdown-list ul li button.selected:after {
    height: 13px;
  }
}

.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;
}
.multi-dropdown-box .dropdown-list .list-search {
  padding: 1.5625vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search {
    padding: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search {
    padding: 7px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--line-light);
  color: var(--gray8);
}
.multi-dropdown-box .dropdown-list .list-search input {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    height: 53px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  border-radius: 2.1875vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    border-radius: 0.5833rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    border-radius: 9px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  padding-left: 3.125vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    padding-left: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    padding-left: 13px;
  }
}
.multi-dropdown-box .dropdown-list .list-search input {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  .multi-dropdown-box .dropdown-list .list-search input {
    font-size: 0.9167rem;
  }
}
@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;
}
.multi-dropdown-box .dropdown-list .list-search .icon-svg {
  right: 4.6875vw;
}
@media (min-width: 641px) {
  .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: 4.6875vw;
}
@media (min-width: 641px) {
  .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: 4.6875vw;
}
@media (min-width: 641px) {
  .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: #ffffff;
}
.multi-dropdown-box .dropdown-list ul li label p {
  display: block;
  color: var(--text-main);
  transition: all 0.2s;
}
.multi-dropdown-box .dropdown-list ul li label p {
  padding: 2.3438vw 3.75vw;
}
@media (min-width: 641px) {
  .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: 3.75vw;
}
@media (min-width: 641px) {
  .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: #ffffff;
  text-decoration: underline;
}

/* =================================================================
   [3] Components: Checkbox & Radio Groups (Clean Version)
   ================================================================= */
.group-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.group-items {
  min-height: 4.375vw;
}
@media (min-width: 641px) {
  .group-items {
    min-height: 1.1667rem;
  }
}
@media (min-width: 1200px) {
  .group-items {
    min-height: 19px;
  }
}
.group-items {
  gap: 4.6875vw;
}
@media (min-width: 641px) {
  .group-items {
    gap: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .group-items {
    gap: 20px;
  }
}
.group-items:not(.form-row *) {
  margin-bottom: 4.6875vw;
}
@media (min-width: 641px) {
  .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;
  background-color: transparent;
  background-image: var(--icon-checkbox-default);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  transition: background-image 0.2s ease;
}
.check-box input[type=checkbox] {
  width: 4.6875vw;
}
@media (min-width: 641px) {
  .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: 4.6875vw;
}
@media (min-width: 641px) {
  .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.25vw;
}
@media (min-width: 641px) {
  .check-box input[type=checkbox] {
    margin-right: 0.3333rem;
  }
}
@media (min-width: 1200px) {
  .check-box input[type=checkbox] {
    margin-right: 5px;
  }
}
.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 {
  color: var(--gray6);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  font-weight: 600;
}
.check-box label {
  font-size: 4.2188vw;
}
@media (min-width: 641px) {
  .check-box label {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .check-box label {
    font-size: 18px;
  }
}
.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;
  background-color: transparent;
  background-image: var(--icon-radio-default);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  transition: background-image 0.2s ease;
}
.radio-box label input[type=radio] {
  width: 4.6875vw;
}
@media (min-width: 641px) {
  .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: 4.6875vw;
}
@media (min-width: 641px) {
  .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.25vw;
}
@media (min-width: 641px) {
  .radio-box label input[type=radio] {
    margin-right: 0.3333rem;
  }
}
@media (min-width: 1200px) {
  .radio-box label input[type=radio] {
    margin-right: 5px;
  }
}
.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(--gray6);
  font-weight: 600;
  transition: color 0.2s;
}
.radio-box label span {
  font-size: 4.2188vw;
}
@media (min-width: 641px) {
  .radio-box label span {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .radio-box label span {
    font-size: 18px;
  }
}
.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;
}
.datepicker-box input.datepicker-input {
  padding-right: 6.25vw;
}
@media (min-width: 641px) {
  .datepicker-box input.datepicker-input {
    padding-right: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box input.datepicker-input {
    padding-right: 27px;
  }
}
.datepicker-box .icon-svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-primary);
}
.datepicker-box .icon-svg {
  right: 3.75vw;
}
@media (min-width: 641px) {
  .datepicker-box .icon-svg {
    right: 1rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box .icon-svg {
    right: 16px;
  }
}
.datepicker-box .icon-svg {
  width: 5.625vw;
}
@media (min-width: 641px) {
  .datepicker-box .icon-svg {
    width: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box .icon-svg {
    width: 24px;
  }
}
.datepicker-box .icon-svg {
  height: 5.625vw;
}
@media (min-width: 641px) {
  .datepicker-box .icon-svg {
    height: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .datepicker-box .icon-svg {
    height: 24px;
  }
}
@media screen and (min-width: 641px) {
  .datepicker-box .icon-svg {
    width: 24px;
    height: 24px;
    right: 16px;
  }
}
.datepicker-box .icon-svg svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* =================================================================
   [Component] File Upload Box
   ================================================================= */
.file-box {
  display: flex;
  align-items: center;
  width: 100%;
}
.file-box {
  gap: 1.25vw;
}
@media (min-width: 641px) {
  .file-box {
    gap: 0.3333rem;
  }
}
@media (min-width: 1200px) {
  .file-box {
    gap: 5px;
  }
}
.file-box .upload-name {
  display: inline-block;
  flex: 1;
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--text-main);
}
.file-box .upload-name {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .file-box .upload-name {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-name {
    font-size: 16px;
  }
}
.file-box .upload-name {
  border-radius: 2.1875vw;
}
@media (min-width: 641px) {
  .file-box .upload-name {
    border-radius: 0.5833rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-name {
    border-radius: 9px;
  }
}
.file-box .upload-name {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .file-box .upload-name {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-name {
    height: 53px;
  }
}
.file-box .upload-name {
  padding: 0 3.75vw;
}
@media (min-width: 641px) {
  .file-box .upload-name {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .file-box .upload-name {
    padding: 0 16px;
  }
}
@media screen and (min-width: 641px) {
  .file-box .upload-name {
    height: 64px;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
  }
}
.file-box .upload-name:-moz-read-only {
  background-color: var(--bg-white);
  color: var(--text-main);
  cursor: default;
}
.file-box .upload-name:read-only {
  background-color: var(--bg-white);
  color: var(--text-main);
  cursor: default;
}
.file-box .btn-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
  color: #ffffff;
  background-color: var(--text-sub);
  transition: background-color 0.2s;
  white-space: nowrap;
}
.file-box .btn-upload {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .file-box .btn-upload {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .file-box .btn-upload {
    height: 53px;
  }
}
.file-box .btn-upload {
  padding: 0 4.6875vw;
}
@media (min-width: 641px) {
  .file-box .btn-upload {
    padding: 0 1.25rem;
  }
}
@media (min-width: 1200px) {
  .file-box .btn-upload {
    padding: 0 20px;
  }
}
.file-box .btn-upload {
  border-radius: 1.4063vw;
}
@media (min-width: 641px) {
  .file-box .btn-upload {
    border-radius: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .file-box .btn-upload {
    border-radius: 6px;
  }
}
.file-box .btn-upload {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .file-box .btn-upload {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .file-box .btn-upload {
    font-size: 16px;
  }
}
.file-box .btn-upload:hover {
  background-color: var(--text-main);
}
@media screen and (min-width: 641px) {
  .file-box .btn-upload {
    height: 64px;
    padding: 0 24px;
    font-size: 16px;
  }
}
.file-box .upload-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =================================================================
   [Component] Multi File Upload Box
   ================================================================= */
.multi-file-box {
  display: block;
  width: 100%;
}
.multi-file-box .upload-top {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
}
.multi-file-box .upload-top .btn-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--text-main);
  color: #ffffff;
  font-weight: 500;
}
.multi-file-box .upload-top .btn-upload {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .multi-file-box .upload-top .btn-upload {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .upload-top .btn-upload {
    height: 53px;
  }
}
.multi-file-box .upload-top .btn-upload {
  padding: 0 3.75vw;
}
@media (min-width: 641px) {
  .multi-file-box .upload-top .btn-upload {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .upload-top .btn-upload {
    padding: 0 16px;
  }
}
.multi-file-box .upload-top .btn-upload {
  border-radius: 0.9375vw;
}
@media (min-width: 641px) {
  .multi-file-box .upload-top .btn-upload {
    border-radius: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .upload-top .btn-upload {
    border-radius: 4px;
  }
}
.multi-file-box .upload-top .btn-upload {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  .multi-file-box .upload-top .btn-upload {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .upload-top .btn-upload {
    font-size: 15px;
  }
}
@media screen and (min-width: 641px) {
  .multi-file-box .upload-top .btn-upload {
    height: 64px;
    padding: 0 24px;
    font-size: 16px;
    border-radius: 6px;
  }
}
.multi-file-box .upload-top .btn-upload:hover {
  background-color: var(--color-primary);
}
.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;
}
.multi-file-box .file-list-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.multi-file-box .file-list-row {
  margin-top: 1.5625vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row {
    margin-top: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row {
    margin-top: 7px;
  }
}
@media screen and (min-width: 641px) {
  .multi-file-box .file-list-row {
    margin-top: 12px;
  }
}
.multi-file-box .file-list-row .info {
  display: block;
  color: var(--text-muted);
  line-height: 1.4;
}
.multi-file-box .file-list-row .info {
  margin-bottom: 1.25vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .info {
    margin-bottom: 0.3333rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .info {
    margin-bottom: 5px;
  }
}
.multi-file-box .file-list-row .info {
  font-size: 3.125vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .info {
    font-size: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .info {
    font-size: 13px;
  }
}
@media screen and (min-width: 641px) {
  .multi-file-box .file-list-row .info {
    margin-bottom: 8px;
    font-size: 13px;
  }
}
.multi-file-box .file-list-row .file-list {
  display: none;
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--line-light);
}
.multi-file-box .file-list-row .file-list {
  border-radius: 0.9375vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list {
    border-radius: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list {
    border-radius: 4px;
  }
}
.multi-file-box .file-list-row .file-list {
  padding: 1.5625vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list {
    padding: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list {
    padding: 7px;
  }
}
.multi-file-box .file-list-row .file-list {
  min-height: 7.8125vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list {
    min-height: 2.0833rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list {
    min-height: 33px;
  }
}
@media screen and (min-width: 641px) {
  .multi-file-box .file-list-row .file-list {
    padding: 16px;
    border-radius: 8px;
    min-height: 80px;
  }
}
.multi-file-box .file-list-row .file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid var(--line-light);
  color: var(--text-main);
}
.multi-file-box .file-list-row .file-list li {
  margin-bottom: 1.25vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list li {
    margin-bottom: 0.3333rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list li {
    margin-bottom: 5px;
  }
}
.multi-file-box .file-list-row .file-list li {
  padding: 1.5625vw 2.3438vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list li {
    padding: 0.4167rem 0.625rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list li {
    padding: 7px 10px;
  }
}
.multi-file-box .file-list-row .file-list li {
  font-size: 3.2813vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list li {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list li {
    font-size: 14px;
  }
}
.multi-file-box .file-list-row .file-list li {
  border-radius: 0.625vw;
}
@media (min-width: 641px) {
  .multi-file-box .file-list-row .file-list li {
    border-radius: 0.1667rem;
  }
}
@media (min-width: 1200px) {
  .multi-file-box .file-list-row .file-list li {
    border-radius: 3px;
  }
}
@media screen and (min-width: 641px) {
  .multi-file-box .file-list-row .file-list li {
    margin-bottom: 8px;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
  }
}
.multi-file-box .file-list-row .file-list li:last-child {
  margin-bottom: 0;
}
.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;
}
.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;
}
.multi-file-box .file-list-row .file-list li .btn-remove:hover {
  text-decoration: underline;
}

/* 파일박스 */
.file-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.file-box {
  gap: 0vw 2.3438vw;
}
@media (min-width: 641px) {
  .file-box {
    gap: 0rem 0.625rem;
  }
}
@media (min-width: 1200px) {
  .file-box {
    gap: 0px 10px;
  }
}
.file-box .input-file {
  flex-shrink: 0;
}
.file-box .input-file label {
  display: inline-block;
  background: #0C6FB8;
  font-weight: 600;
  color: #ffffff;
}
.file-box .input-file label {
  padding: 0vw 1.5625vw;
}
@media (min-width: 641px) {
  .file-box .input-file label {
    padding: 0rem 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .file-box .input-file label {
    padding: 0px 7px;
  }
}
.file-box .input-file label {
  border-radius: 1.4063vw;
}
@media (min-width: 641px) {
  .file-box .input-file label {
    border-radius: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .file-box .input-file label {
    border-radius: 6px;
  }
}
.file-box .input-file label {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  .file-box .input-file label {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  .file-box .input-file label {
    font-size: 15px;
  }
}
.file-box .input-file label input {
  display: none;
}
.file-box ul {
  flex: 1;
  overflow: hidden;
}
.file-box ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.file-box ul li {
  gap: 0vw 2.3438vw;
}
@media (min-width: 641px) {
  .file-box ul li {
    gap: 0rem 0.625rem;
  }
}
@media (min-width: 1200px) {
  .file-box ul li {
    gap: 0px 10px;
  }
}
.file-box ul li:first-child {
  margin-top: 0px;
}
.file-box ul li p {
  max-width: calc(100% - 3.2813vw);
  font-weight: 500;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-box ul li p {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  .file-box ul li p {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  .file-box ul li p {
    font-size: 15px;
  }
}
.file-box ul li button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.file-box ul li button i .icon-close2 {
  stroke: black;
  stroke-width: 6;
}
.file-box ul li button i .icon-close2 {
  width: 2.8125vw;
}
@media (min-width: 641px) {
  .file-box ul li button i .icon-close2 {
    width: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .file-box ul li button i .icon-close2 {
    width: 12px;
  }
}
.file-box ul li button i .icon-close2 {
  height: 2.6563vw;
}
@media (min-width: 641px) {
  .file-box ul li button i .icon-close2 {
    height: 0.7083rem;
  }
}
@media (min-width: 1200px) {
  .file-box ul li button i .icon-close2 {
    height: 11px;
  }
}

/* =================================================================
   [Component] Buttons
   ================================================================= */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btn-row {
  gap: 1.5625vw;
}
@media (min-width: 641px) {
  .btn-row {
    gap: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .btn-row {
    gap: 7px;
  }
}
@media screen and (min-width: 641px) {
  .btn-row {
    gap: 10px;
  }
}
.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;
  line-height: 100%;
}
.btn {
  height: 12.5vw;
}
@media (min-width: 641px) {
  .btn {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  .btn {
    height: 53px;
  }
}
.btn {
  padding: 0 4.6875vw;
}
@media (min-width: 641px) {
  .btn {
    padding: 0 1.25rem;
  }
}
@media (min-width: 1200px) {
  .btn {
    padding: 0 20px;
  }
}
.btn {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .btn {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .btn {
    font-size: 16px;
  }
}
.btn {
  gap: 1.5625vw;
}
@media (min-width: 641px) {
  .btn {
    gap: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .btn {
    gap: 7px;
  }
}
@media screen and (min-width: 641px) {
  .btn {
    height: 64px;
    padding: 0 24px;
    font-size: 18px;
    gap: 8px;
  }
}
.btn .icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn .icon-svg {
  width: 4.6875vw;
}
@media (min-width: 641px) {
  .btn .icon-svg {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .btn .icon-svg {
    width: 20px;
  }
}
.btn .icon-svg {
  height: 4.6875vw;
}
@media (min-width: 641px) {
  .btn .icon-svg {
    height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .btn .icon-svg {
    height: 20px;
  }
}
@media screen and (min-width: 641px) {
  .btn .icon-svg {
    width: 20px;
    height: 20px;
  }
}
.btn .icon-svg svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.btn span {
  line-height: 100%;
}
.btn:disabled, .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn.size-medium {
  height: 10.5469vw;
}
@media (min-width: 641px) {
  .btn.size-medium {
    height: 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    height: 45px;
  }
}
.btn.size-medium {
  padding: 0 3.9551vw;
}
@media (min-width: 641px) {
  .btn.size-medium {
    padding: 0 1.0547rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    padding: 0 17px;
  }
}
.btn.size-medium {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .btn.size-medium {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    font-size: 16px;
  }
}
.btn.size-medium {
  gap: 1.3184vw;
}
@media (min-width: 641px) {
  .btn.size-medium {
    gap: 0.3516rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-medium {
    gap: 6px;
  }
}
@media screen and (min-width: 641px) {
  .btn.size-medium {
    height: 54px;
    padding: 0 20.25px;
    font-size: 18px;
    gap: 6.75px;
  }
  .btn.size-medium .icon-svg {
    width: 16.875px;
    height: 16.875px;
  }
}
.btn.size-small {
  height: 7.8125vw;
}
@media (min-width: 641px) {
  .btn.size-small {
    height: 2.0833rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    height: 33px;
  }
}
.btn.size-small {
  padding: 0 2.9297vw;
}
@media (min-width: 641px) {
  .btn.size-small {
    padding: 0 0.7813rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    padding: 0 13px;
  }
}
.btn.size-small {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .btn.size-small {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    font-size: 16px;
  }
}
.btn.size-small {
  gap: 0.9766vw;
}
@media (min-width: 641px) {
  .btn.size-small {
    gap: 0.2604rem;
  }
}
@media (min-width: 1200px) {
  .btn.size-small {
    gap: 4px;
  }
}
@media screen and (min-width: 641px) {
  .btn.size-small {
    height: 40px;
    padding: 0 15px;
    font-size: 16px;
    gap: 5px;
  }
  .btn.size-small .icon-svg {
    width: 12.5px;
    height: 12.5px;
  }
}

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

.btn.shape-rounded {
  border-radius: 3.75vw;
}
@media (min-width: 641px) {
  .btn.shape-rounded {
    border-radius: 1rem;
  }
}
@media (min-width: 1200px) {
  .btn.shape-rounded {
    border-radius: 16px;
  }
}
@media screen and (min-width: 641px) {
  .btn.shape-rounded {
    border-radius: 16px;
  }
}

.btn.shape-pill {
  border-radius: 9999px;
}

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

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

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

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

/* =================================================================
   [Component] Labels (Badges)
   ================================================================= */
.label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  border: 1.5px solid transparent;
  background-color: #ffffff;
}
.label {
  height: 6.5625vw;
}
@media (min-width: 641px) {
  .label {
    height: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .label {
    height: 28px;
  }
}
.label {
  padding: 0.625vw 3.125vw;
}
@media (min-width: 641px) {
  .label {
    padding: 0.1667rem 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .label {
    padding: 3px 13px;
  }
}
.label {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  .label {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  .label {
    font-size: 15px;
  }
}
.label {
  border-radius: 1.875vw;
}
@media (min-width: 641px) {
  .label {
    border-radius: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .label {
    border-radius: 8px;
  }
}
@media screen and (min-width: 641px) {
  .label {
    height: 32px;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 8px;
  }
}

.label.color-primary.type-line {
  border-color: #0C6FB8;
  color: #0C6FB8;
  background-color: #ffffff;
}
.label.color-primary.type-solid {
  border-color: #0C6FB8;
  background-color: #0C6FB8;
  color: #ffffff;
}

.label.color-family.type-line {
  border-color: #6FA05A;
  color: #6FA05A;
  background-color: #ffffff;
}
.label.color-family.type-solid {
  border-color: #6FA05A;
  background-color: #6FA05A;
  color: #ffffff;
}

.label.color-gray.type-line {
  border-color: #2B2B2B;
  color: #2B2B2B;
  background-color: #ffffff;
}
.label.color-gray.type-solid {
  border-color: #2B2B2B;
  background-color: #2B2B2B;
  color: #ffffff;
}

.label.color-brown.type-line {
  border-color: #AE8766;
  color: #AE8766;
  background-color: #ffffff;
}
.label.color-brown.type-solid {
  border-color: #AE8766;
  background-color: #AE8766;
  color: #ffffff;
}

/* =================================================================
   [Component] Tab Menu (Swiper Based)
   ================================================================= */
.tab-container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 40px;
}
.tab-container {
  height: 12.0313vw;
}
@media (min-width: 641px) {
  .tab-container {
    height: 3.2083rem;
  }
}
@media (min-width: 1200px) {
  .tab-container {
    height: 51px;
  }
}
@media screen and (min-width: 1200px) {
  .tab-container {
    height: 80px;
  }
}
.tab-container .swiper {
  width: 100%;
}
.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);
}
.tab-btn {
  height: 11.25vw;
}
@media (min-width: 641px) {
  .tab-btn {
    height: 3rem;
  }
}
@media (min-width: 1200px) {
  .tab-btn {
    height: 48px;
  }
}
.tab-btn {
  font-size: 3.5156vw;
}
@media (min-width: 641px) {
  .tab-btn {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .tab-btn {
    font-size: 15px;
  }
}
.tab-btn {
  padding: 0 0.7813vw;
}
@media (min-width: 641px) {
  .tab-btn {
    padding: 0 0.2083rem;
  }
}
@media (min-width: 1200px) {
  .tab-btn {
    padding: 0 3px;
  }
}
@media screen and (min-width: 641px) {
  .tab-btn {
    height: 48px;
    font-size: 18px;
    padding: 0 12px;
  }
}
.tab-btn.active {
  font-weight: 700;
  color: #000;
}

/* (A) Type Solid: 면 채움형 */
.tab-type-solid .swiper-slide {
  padding: 0vw 1.1719vw;
}
@media (min-width: 641px) {
  .tab-type-solid .swiper-slide {
    padding: 0rem 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .tab-type-solid .swiper-slide {
    padding: 0px 5px;
  }
}
.tab-type-solid .tab-btn {
  background-color: #EDEDED;
}
.tab-type-solid .tab-btn {
  border-radius: 1.875vw;
}
@media (min-width: 641px) {
  .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: #0C6FB8;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* (B) Type Line: 하단 라인형 */
.tab-type-line:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #DEDEDE;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .tab-type-line {
    border: none;
  }
}
.tab-type-line .swiper {
  height: 100%;
  padding-bottom: 0;
}
.tab-type-line .tab-btn {
  position: relative;
  color: var(--text-sub);
  height: 100%;
}
.tab-type-line .tab-btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #0C6FB8;
  pointer-events: none;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1200px) {
  .tab-type-line .tab-btn {
    border-bottom: 1px solid #DEDEDE;
  }
}
.tab-type-line .tab-btn.active, .tab-type-line .tab-btn:hover {
  color: #0C6FB8;
  border-bottom-color: #0C6FB8;
}
.tab-type-line .tab-btn.active:before, .tab-type-line .tab-btn:hover:before {
  width: 100%;
}

.tab-contents {
  position: relative;
  width: 100%;
}
.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: 40px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pagination {
  gap: 0.7031vw;
}
@media (min-width: 641px) {
  .pagination {
    gap: 0.1875rem;
  }
}
@media (min-width: 1200px) {
  .pagination {
    gap: 3px;
  }
}

.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;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
  color: var(--text-sub, #666);
  width: auto;
  flex: 1;
}
.page-item .page-link {
  height: 9.375vw;
}
@media (min-width: 641px) {
  .page-item .page-link {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link {
    height: 40px;
  }
}
.page-item .page-link {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .page-item .page-link {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link {
    font-size: 16px;
  }
}
.page-item .page-link {
  border-radius: 1.4063vw;
}
@media (min-width: 641px) {
  .page-item .page-link {
    border-radius: 0.375rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link {
    border-radius: 6px;
  }
}
.page-item .page-link {
  min-width: 9.375vw;
}
@media (min-width: 641px) {
  .page-item .page-link {
    min-width: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link {
    min-width: 40px;
  }
}
.page-item .page-link {
  max-width: 9.375vw;
}
@media (min-width: 641px) {
  .page-item .page-link {
    max-width: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link {
    max-width: 40px;
  }
}
@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] {
  margin-right: 3.9063vw;
}
@media (min-width: 641px) {
  .page-item .page-link[aria-label=Previous] {
    margin-right: 1.0417rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link[aria-label=Previous] {
    margin-right: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .page-item .page-link[aria-label=Previous] {
    margin-right: 18px;
  }
}
.page-item .page-link[aria-label=Previous] .icon-svg svg {
  transform: rotate(90deg);
}
.page-item .page-link[aria-label=Next] {
  margin-left: 3.9063vw;
}
@media (min-width: 641px) {
  .page-item .page-link[aria-label=Next] {
    margin-left: 1.0417rem;
  }
}
@media (min-width: 1200px) {
  .page-item .page-link[aria-label=Next] {
    margin-left: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .page-item .page-link[aria-label=Next] {
    margin-left: 18px;
  }
}
.page-item.active .page-link {
  background-color: #1f3556;
  color: #ffffff;
  font-weight: 700;
  cursor: default;
}
.page-item.control .page-link {
  background: transparent !important;
  font-family: inherit;
}
.page-item.control .page-link .btn-text {
  display: none;
  font-size: 16px;
  margin: 0 4px;
}
@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 {
  cursor: default;
  background: transparent !important;
  pointer-events: none;
}
.page-item.disabled .page-link {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.pagination.type-b {
  gap: 0;
}
.pagination.type-b .page-item .page-link {
  color: #C4C4C4;
  padding: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
}
.pagination.type-b .page-item .page-link {
  height: 11.4063vw;
}
@media (min-width: 641px) {
  .pagination.type-b .page-item .page-link {
    height: 3.0417rem;
  }
}
@media (min-width: 1200px) {
  .pagination.type-b .page-item .page-link {
    height: 49px;
  }
}
.pagination.type-b .page-item .page-link {
  min-width: 11.4063vw;
}
@media (min-width: 641px) {
  .pagination.type-b .page-item .page-link {
    min-width: 3.0417rem;
  }
}
@media (min-width: 1200px) {
  .pagination.type-b .page-item .page-link {
    min-width: 49px;
  }
}
.pagination.type-b .page-item .page-link {
  max-width: 11.4063vw;
}
@media (min-width: 641px) {
  .pagination.type-b .page-item .page-link {
    max-width: 3.0417rem;
  }
}
@media (min-width: 1200px) {
  .pagination.type-b .page-item .page-link {
    max-width: 49px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination.type-b .page-item .page-link {
    flex: none;
    min-width: auto;
    max-width: none;
    width: 47px;
    height: 56px;
    border-radius: 0px;
  }
}
.pagination.type-b .page-item .page-link .icon-svg {
  border: 1px solid #616161;
  transition: all 0.2s ease;
}
.pagination.type-b .page-item .page-link .icon-svg {
  width: 11.4063vw;
}
@media (min-width: 641px) {
  .pagination.type-b .page-item .page-link .icon-svg {
    width: 3.0417rem;
  }
}
@media (min-width: 1200px) {
  .pagination.type-b .page-item .page-link .icon-svg {
    width: 49px;
  }
}
.pagination.type-b .page-item .page-link .icon-svg {
  height: 11.4063vw;
}
@media (min-width: 641px) {
  .pagination.type-b .page-item .page-link .icon-svg {
    height: 3.0417rem;
  }
}
@media (min-width: 1200px) {
  .pagination.type-b .page-item .page-link .icon-svg {
    height: 49px;
  }
}
.pagination.type-b .page-item .page-link .icon-svg {
  border-radius: 11.4063vw;
}
@media (min-width: 641px) {
  .pagination.type-b .page-item .page-link .icon-svg {
    border-radius: 3.0417rem;
  }
}
@media (min-width: 1200px) {
  .pagination.type-b .page-item .page-link .icon-svg {
    border-radius: 49px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination.type-b .page-item .page-link .icon-svg {
    width: 56px;
    height: 56px;
    border-radius: 56px;
  }
}
.pagination.type-b .page-item .page-link .icon-svg svg {
  color: #616161;
  transform: rotate(0deg);
  transition: all 0.2s ease;
}
.pagination.type-b .page-item .page-link .icon-svg svg {
  width: 8.4375vw;
}
@media (min-width: 641px) {
  .pagination.type-b .page-item .page-link .icon-svg svg {
    width: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .pagination.type-b .page-item .page-link .icon-svg svg {
    width: 36px;
  }
}
.pagination.type-b .page-item .page-link .icon-svg svg {
  height: 8.4375vw;
}
@media (min-width: 641px) {
  .pagination.type-b .page-item .page-link .icon-svg svg {
    height: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .pagination.type-b .page-item .page-link .icon-svg svg {
    height: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination.type-b .page-item .page-link .icon-svg svg {
    width: 40px;
    height: 40px;
  }
}
.pagination.type-b .page-item .page-link[aria-label=Previous] {
  width: 11.4063vw;
}
@media (min-width: 641px) {
  .pagination.type-b .page-item .page-link[aria-label=Previous] {
    width: 3.0417rem;
  }
}
@media (min-width: 1200px) {
  .pagination.type-b .page-item .page-link[aria-label=Previous] {
    width: 49px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination.type-b .page-item .page-link[aria-label=Previous] {
    width: 56px;
    height: 56px;
  }
}
.pagination.type-b .page-item .page-link[aria-label=Previous] .icon-svg svg {
  transform: rotate(180deg);
}
.pagination.type-b .page-item .page-link[aria-label=Next] {
  width: 11.4063vw;
}
@media (min-width: 641px) {
  .pagination.type-b .page-item .page-link[aria-label=Next] {
    width: 3.0417rem;
  }
}
@media (min-width: 1200px) {
  .pagination.type-b .page-item .page-link[aria-label=Next] {
    width: 49px;
  }
}
@media screen and (min-width: 1200px) {
  .pagination.type-b .page-item .page-link[aria-label=Next] {
    width: 56px;
    height: 56px;
  }
}
.pagination.type-b .page-item .page-link:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
}
.pagination.type-b .page-item .page-link:hover .icon-svg {
  border: 1px solid #0C6FB8;
  background-color: #0C6FB8;
}
.pagination.type-b .page-item .page-link:hover .icon-svg svg {
  color: #ffffff;
}
.pagination.type-b .page-item.active .page-link {
  color: #0C6FB8;
}

/* 전체메뉴 */
#toggle-menu {
  display: inline-block;
  position: absolute;
  z-index: 1001;
  cursor: pointer;
  background: transparent;
  transition: all 0.1s ease-in;
}
#toggle-menu {
  width: 8.4375vw;
}
@media (min-width: 641px) {
  #toggle-menu {
    width: 2.25rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu {
    width: 36px;
  }
}
#toggle-menu {
  height: 8.4375vw;
}
@media (min-width: 641px) {
  #toggle-menu {
    height: 2.25rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu {
    height: 36px;
  }
}
#toggle-menu {
  right: 3.75vw;
}
@media (min-width: 641px) {
  #toggle-menu {
    right: 1rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu {
    right: 16px;
  }
}
#toggle-menu {
  top: 3.5938vw;
}
@media (min-width: 641px) {
  #toggle-menu {
    top: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu {
    top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  #toggle-menu {
    width: 40px;
    height: 40px;
    top: 30px;
    right: 40px;
  }
}
#toggle-menu div {
  position: relative;
}
#toggle-menu div {
  width: 4.6875vw;
}
@media (min-width: 641px) {
  #toggle-menu div {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div {
    width: 20px;
  }
}
#toggle-menu div {
  height: 4.6875vw;
}
@media (min-width: 641px) {
  #toggle-menu div {
    height: 1.25rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div {
    height: 20px;
  }
}
#toggle-menu div {
  margin: 1.875vw auto auto 1.875vw;
}
@media (min-width: 641px) {
  #toggle-menu div {
    margin: 0.5rem auto auto 0.5rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div {
    margin: 8px auto auto 8px;
  }
}
@media screen and (min-width: 1200px) {
  #toggle-menu div {
    width: 18px;
    height: 18px;
    margin: 11px auto auto 11px;
  }
}
#toggle-menu div span {
  display: block;
  background-color: #0C6FB8;
  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;
  height: 2px;
  border-radius: 2px;
}
#toggle-menu div span {
  width: 4.6875vw;
}
@media (min-width: 641px) {
  #toggle-menu div span {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div span {
    width: 20px;
  }
}
@media screen and (min-width: 1200px) {
  #toggle-menu div span {
    width: 18px;
  }
}
#toggle-menu div span.top {
  top: 0;
}
#toggle-menu div span.middle {
  top: 2.1094vw;
}
@media (min-width: 641px) {
  #toggle-menu div span.middle {
    top: 0.5625rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div span.middle {
    top: 9px;
  }
}
@media screen and (min-width: 1200px) {
  #toggle-menu div span.middle {
    top: 8px;
  }
}
#toggle-menu div span.bottom {
  top: 4.2188vw;
}
@media (min-width: 641px) {
  #toggle-menu div span.bottom {
    top: 1.125rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu div span.bottom {
    top: 18px;
  }
}
@media screen and (min-width: 1200px) {
  #toggle-menu div span.bottom {
    top: 16px;
  }
}

#toggle-menu.menu-is-active {
  background: transparent;
  z-index: 1002;
}
#toggle-menu.menu-is-active:before {
  position: absolute;
  content: " ";
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#toggle-menu.menu-is-active span {
  background-color: #0C6FB8;
  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;
  box-shadow: 0px 0px 0px 0px #93deff;
}
#toggle-menu.menu-is-active span.top {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
}
#toggle-menu.menu-is-active span.top {
  top: 2.1094vw;
}
@media (min-width: 641px) {
  #toggle-menu.menu-is-active span.top {
    top: 0.5625rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu.menu-is-active span.top {
    top: 9px;
  }
}
@media screen and (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;
}
#toggle-menu.menu-is-active span.middle {
  top: 2.1094vw;
}
@media (min-width: 641px) {
  #toggle-menu.menu-is-active span.middle {
    top: 0.5625rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu.menu-is-active span.middle {
    top: 9px;
  }
}
@media screen and (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);
}
#toggle-menu.menu-is-active span.bottom {
  top: 2.1094vw;
}
@media (min-width: 641px) {
  #toggle-menu.menu-is-active span.bottom {
    top: 0.5625rem;
  }
}
@media (min-width: 1200px) {
  #toggle-menu.menu-is-active span.bottom {
    top: 9px;
  }
}
@media screen and (min-width: 1200px) {
  #toggle-menu.menu-is-active span.bottom {
    top: 8px;
  }
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: #ffffff;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.06);
}
header {
  height: 15.625vw;
}
@media (min-width: 641px) {
  header {
    height: 4.1667rem;
  }
}
@media (min-width: 1200px) {
  header {
    height: 67px;
  }
}
@media screen and (min-width: 1200px) {
  header {
    box-shadow: none;
  }
}
header.header-hidden {
  transform: translateY(-100%); /* 자기 높이만큼 위로 이동 */
}
@media screen and (min-width: 1200px) {
  header {
    height: 100px;
  }
}
header .header-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  header .header-inner {
    align-items: flex-start;
  }
}
header .inner-left, header .inner-right {
  position: absolute;
}
header .inner-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .inner-left {
  height: 6.875vw;
}
@media (min-width: 641px) {
  header .inner-left {
    height: 1.8333rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left {
    height: 29px;
  }
}
header .inner-left {
  left: 6.25vw;
}
@media (min-width: 641px) {
  header .inner-left {
    left: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left {
    left: 27px;
  }
}
header .inner-left {
  gap: 3.125vw;
}
@media (min-width: 641px) {
  header .inner-left {
    gap: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left {
    gap: 13px;
  }
}
header .inner-left {
  top: 4.6875vw;
}
@media (min-width: 641px) {
  header .inner-left {
    top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left {
    top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  header .inner-left {
    top: 32px;
    left: 40px;
    gap: 20px;
  }
}
@media screen and (min-width: 1400px) {
  header .inner-left {
    gap: 40px;
  }
}
header .inner-left h1 {
  width: 28.8281vw;
}
@media (min-width: 641px) {
  header .inner-left h1 {
    width: 7.6875rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left h1 {
    width: 123px;
  }
}
header .inner-left h1 {
  height: 7.3438vw;
}
@media (min-width: 641px) {
  header .inner-left h1 {
    height: 1.9583rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left h1 {
    height: 31px;
  }
}
@media screen and (min-width: 1200px) {
  header .inner-left h1 {
    height: 40px;
    width: 157px;
  }
}
header .inner-left h1 a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .inner-left h1 a .icon-svg {
  color: #0C6FB8;
}
header .inner-left h1 a .icon-svg {
  width: 28.8281vw;
}
@media (min-width: 641px) {
  header .inner-left h1 a .icon-svg {
    width: 7.6875rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left h1 a .icon-svg {
    width: 123px;
  }
}
header .inner-left h1 a .icon-svg {
  height: 7.3438vw;
}
@media (min-width: 641px) {
  header .inner-left h1 a .icon-svg {
    height: 1.9583rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left h1 a .icon-svg {
    height: 31px;
  }
}
@media screen and (min-width: 1200px) {
  header .inner-left h1 a .icon-svg {
    width: 157px;
    height: 40px;
  }
}
header .inner-left h1 a .icon-svg svg {
  width: 100%;
}
header .inner-left h1 a {
  /*span{ 
  	font-weight: 700;
  	color: $primary;
  	@include responsive(font-size, 65px);
  	@media screen and (min-width: $tablet-contents-width) {
  		font-size: 20px;
  	}
  	@media screen and (min-width: 1400px) {
  		font-size: 26px;
  	}
  }*/
}
header .inner-left .family-site {
  margin-bottom: 0;
  justify-content: center;
}
header .inner-left .family-site {
  width: 23.4375vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site {
    width: 6.25rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site {
    width: 100px;
  }
}
header .inner-left .family-site {
  height: 6.875vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site {
    height: 1.8333rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site {
    height: 29px;
  }
}
@media screen and (min-width: 1200px) {
  header .inner-left .family-site {
    width: 100px;
    height: 36px;
  }
}
@media screen and (min-width: 1400px) {
  header .inner-left .family-site {
    width: 120px;
  }
}
header .inner-left .family-site .dropdown-box {
  width: 100%;
  height: 100%;
}
header .inner-left .family-site .dropdown-box > button {
  background: #0C6FB8;
  border: none;
  width: 100%;
  height: 100%;
  font-weight: 600;
  color: #ffffff;
}
header .inner-left .family-site .dropdown-box > button {
  border-radius: 6.875vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site .dropdown-box > button {
    border-radius: 1.8333rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site .dropdown-box > button {
    border-radius: 29px;
  }
}
header .inner-left .family-site .dropdown-box > button {
  padding: 0vw 0vw 0vw 3.75vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site .dropdown-box > button {
    padding: 0rem 0rem 0rem 1rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site .dropdown-box > button {
    padding: 0px 0px 0px 16px;
  }
}
header .inner-left .family-site .dropdown-box > button {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site .dropdown-box > button {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site .dropdown-box > button {
    font-size: 15px;
  }
}
header .inner-left .family-site .dropdown-box > button:after {
  background-color: #ffffff;
}
@media screen and (min-width: 1200px) {
  header .inner-left .family-site .dropdown-box > button {
    border-radius: 36px;
    padding-left: 24px;
    font-size: 16px;
  }
}
header .inner-left .family-site .dropdown-box .dropdown-list {
  border-color: #EDEDED;
}
header .inner-left .family-site .dropdown-box .dropdown-list {
  top: 7.3438vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site .dropdown-box .dropdown-list {
    top: 1.9583rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site .dropdown-box .dropdown-list {
    top: 31px;
  }
}
@media screen and (min-width: 1200px) {
  header .inner-left .family-site .dropdown-box .dropdown-list {
    top: 40px;
  }
}
header .inner-left .family-site .dropdown-box .dropdown-list ul li button {
  padding: 1.0938vw 3.75vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site .dropdown-box .dropdown-list ul li button {
    padding: 0.2917rem 1rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site .dropdown-box .dropdown-list ul li button {
    padding: 5px 16px;
  }
}
@media screen and (min-width: 1200px) {
  header .inner-left .family-site .dropdown-box .dropdown-list ul li button {
    padding: 8px 24px;
  }
}
header .inner-left .family-site a {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: #0C6FB8;
}
header .inner-left .family-site a {
  gap: 2.7344vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site a {
    gap: 0.7292rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site a {
    gap: 12px;
  }
}
header .inner-left .family-site a {
  border-radius: 6.875vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site a {
    border-radius: 1.8333rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site a {
    border-radius: 29px;
  }
}
header .inner-left .family-site a {
  padding: 0vw 3.125vw 0vw 3.75vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site a {
    padding: 0rem 0.8333rem 0rem 1rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site a {
    padding: 0px 13px 0px 16px;
  }
}
header .inner-left .family-site a span {
  font-weight: 600;
  color: #ffffff;
}
header .inner-left .family-site a span {
  font-size: 3.4375vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site a span {
    font-size: 0.9167rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site a span {
    font-size: 15px;
  }
}
header .inner-left .family-site a .icon-svg {
  color: #ffffff;
}
header .inner-left .family-site a .icon-svg {
  width: 3.125vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site a .icon-svg {
    width: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site a .icon-svg {
    width: 13px;
  }
}
header .inner-left .family-site a .icon-svg {
  height: 3.125vw;
}
@media (min-width: 641px) {
  header .inner-left .family-site a .icon-svg {
    height: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  header .inner-left .family-site a .icon-svg {
    height: 13px;
  }
}
header .inner-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .inner-right {
  height: 8.4375vw;
}
@media (min-width: 641px) {
  header .inner-right {
    height: 2.25rem;
  }
}
@media (min-width: 1200px) {
  header .inner-right {
    height: 36px;
  }
}
header .inner-right {
  right: 15.625vw;
}
@media (min-width: 641px) {
  header .inner-right {
    right: 4.1667rem;
  }
}
@media (min-width: 1200px) {
  header .inner-right {
    right: 67px;
  }
}
header .inner-right {
  top: 3.5938vw;
}
@media (min-width: 641px) {
  header .inner-right {
    top: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  header .inner-right {
    top: 15px;
  }
}
header .inner-right.u-login {
  right: 12.1875vw;
}
@media (min-width: 641px) {
  header .inner-right.u-login {
    right: 3.25rem;
  }
}
@media (min-width: 1200px) {
  header .inner-right.u-login {
    right: 52px;
  }
}
@media screen and (min-width: 1200px) {
  header .inner-right {
    height: 40px;
    top: 30px;
    right: 112px;
  }
  header .inner-right.u-login {
    right: 96px;
  }
}
header .inner-right .utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  header .inner-right .utility {
    gap: 16px;
  }
}
header .inner-right .utility a .icon-svg {
  width: 8.4375vw;
}
@media (min-width: 641px) {
  header .inner-right .utility a .icon-svg {
    width: 2.25rem;
  }
}
@media (min-width: 1200px) {
  header .inner-right .utility a .icon-svg {
    width: 36px;
  }
}
header .inner-right .utility a .icon-svg {
  height: 8.4375vw;
}
@media (min-width: 641px) {
  header .inner-right .utility a .icon-svg {
    height: 2.25rem;
  }
}
@media (min-width: 1200px) {
  header .inner-right .utility a .icon-svg {
    height: 36px;
  }
}
@media screen and (min-width: 1200px) {
  header .inner-right .utility a .icon-svg {
    width: 40px;
    height: 40px;
  }
}
header .inner-right .utility a .icon-svg svg {
  width: 100%;
}
header .inner-right .utility a.my .icon-svg .icon-user {
  --user-face: transparent;
  --user-line: #0C6FB8;
}
header .inner-right .utility a.login {
  font-weight: 700;
  color: #0C6FB8;
}
header .inner-right .utility a.login {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  header .inner-right .utility a.login {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  header .inner-right .utility a.login {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  header .inner-right .utility a.login {
    font-size: 16px;
  }
  header .inner-right .utility a.login:hover {
    color: #0C6FB8;
  }
}
header .inner-right .utility a.login .icon-svg .icon-login {
  --login-line: #0C6FB8;
}
header .inner-right .utility a.alarm {
  position: relative;
}
header .inner-right .utility a.alarm.active::after {
  content: "";
  position: absolute;
  top: 23%;
  right: 23%;
  width: 6px;
  height: 6px;
  background-color: #F82417;
  border-radius: 50%;
  z-index: 10;
  animation: alarm-pulse 1.5s infinite ease-in-out;
  will-change: transform, opacity;
  pointer-events: none;
}
header .gnb-row {
  position: absolute;
  width: 100%;
  top: -1px;
  left: 0;
  height: 1px;
  background: #ffffff;
  opacity: 0;
  overflow: hidden;
  z-index: 1000;
  transition: all 0.1s;
}
header .gnb-row .gnb {
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}
header .gnb-row .gnb:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 40%;
  top: 0;
  background: #EDEDED;
}
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 {
  height: 100.625vw;
}
@media (min-width: 641px) {
  header .gnb-row .gnb .gnb_list {
    height: 26.8333rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list {
    height: 429px;
  }
}
header .gnb-row .gnb .gnb_list > li {
  width: 100%;
}
header .gnb-row .gnb .gnb_list > li a {
  color: #9F9F9F;
  font-weight: 500;
  display: block;
}
header .gnb-row .gnb .gnb_list > li a {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  header .gnb-row .gnb .gnb_list > li a {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li a {
    font-size: 17px;
  }
}
header .gnb-row .gnb .gnb_list > li a {
  line-height: 1.5;
}
@media (min-width: 641px) {
  header .gnb-row .gnb .gnb_list > li a {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li a {
    line-height: 1.5;
  }
}
header .gnb-row .gnb .gnb_list > li a::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
header .gnb-row .gnb .gnb_list > li a::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
header .gnb-row .gnb .gnb_list > li a {
  height: 14.375vw;
}
@media (min-width: 641px) {
  header .gnb-row .gnb .gnb_list > li a {
    height: 3.8333rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li a {
    height: 61px;
  }
}
header .gnb-row .gnb .gnb_list > li a {
  padding: 5vw 0vw 5.3125vw 6.25vw;
}
@media (min-width: 641px) {
  header .gnb-row .gnb .gnb_list > li a {
    padding: 1.3333rem 0rem 1.4167rem 1.6667rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li a {
    padding: 21px 0px 23px 27px;
  }
}
@media screen and (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li a {
    font-size: 24px;
    color: #2B2B2B;
  }
}
header .gnb-row .gnb .gnb_list > li .depth_box {
  display: none;
  position: absolute;
  top: 0;
  left: 40%;
  width: 60%;
}
header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
  color: #616161;
  font-weight: 600;
}
header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
    font-size: 20px;
  }
}
header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li.active a, header .gnb-row .gnb .gnb_list > li .depth_box .depth2 li:hover a {
  color: #0C6FB8;
}
header .gnb-row .gnb .gnb_list > li.active > a {
  font-weight: 700;
  color: #0C6FB8;
}
header .gnb-row .myinfo-row {
  padding: 9.375vw 6.25vw;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row {
    padding: 2.5rem 1.6667rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row {
    padding: 40px 27px;
  }
}
header .gnb-row .myinfo-row .icon-svg {
  background: rgba(12, 111, 184, 0.3);
}
header .gnb-row .myinfo-row .icon-svg {
  width: 10vw;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row .icon-svg {
    width: 2.6667rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row .icon-svg {
    width: 43px;
  }
}
header .gnb-row .myinfo-row .icon-svg {
  height: 10vw;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row .icon-svg {
    height: 2.6667rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row .icon-svg {
    height: 43px;
  }
}
header .gnb-row .myinfo-row .icon-svg {
  border-radius: 10vw;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row .icon-svg {
    border-radius: 2.6667rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row .icon-svg {
    border-radius: 43px;
  }
}
header .gnb-row .myinfo-row .icon-svg {
  margin-bottom: 3.75vw;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row .icon-svg {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row .icon-svg {
    margin-bottom: 16px;
  }
}
header .gnb-row .myinfo-row .icon-svg svg {
  color: #ffffff;
}
header .gnb-row .myinfo-row .icon-svg svg {
  width: 4.6875vw;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row .icon-svg svg {
    width: 1.25rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row .icon-svg svg {
    width: 20px;
  }
}
@media screen and (min-width: 1200px) {
  header .gnb-row .myinfo-row .icon-svg {
    margin-bottom: 0;
  }
}
header .gnb-row .myinfo-row p {
  color: #444444;
  font-weight: 500;
  display: block;
}
header .gnb-row .myinfo-row p {
  font-size: 4.6875vw;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row p {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row p {
    font-size: 20px;
  }
}
header .gnb-row .myinfo-row p {
  line-height: 1.5;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row p {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row p {
    line-height: 1.5;
  }
}
header .gnb-row .myinfo-row p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
header .gnb-row .myinfo-row p::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
header .gnb-row .myinfo-row p strong {
  font-weight: 700;
}
header .gnb-row .myinfo-row p {
  margin-bottom: 4.375vw;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row p {
    margin-bottom: 1.1667rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row p {
    margin-bottom: 19px;
  }
}
@media screen and (min-width: 1200px) {
  header .gnb-row .myinfo-row p {
    margin-bottom: 0;
  }
}
header .gnb-row .myinfo-row .btn-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .gnb-row .myinfo-row .btn-row {
  gap: 3.125vw;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row .btn-row {
    gap: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row .btn-row {
    gap: 13px;
  }
}
header .gnb-row .myinfo-row .btn-row a {
  color: #9F9F9F;
  font-weight: 600;
  letter-spacing: -0.46px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  display: block;
}
header .gnb-row .myinfo-row .btn-row a {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row .btn-row a {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row .btn-row a {
    font-size: 15px;
  }
}
header .gnb-row .myinfo-row .btn-row a {
  line-height: 1.5;
}
@media (min-width: 641px) {
  header .gnb-row .myinfo-row .btn-row a {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .myinfo-row .btn-row a {
    line-height: 1.5;
  }
}
header .gnb-row .myinfo-row .btn-row a::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
header .gnb-row .myinfo-row .btn-row a::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
header .gnb-row .sns {
  padding: 3.75vw 6.25vw;
}
@media (min-width: 641px) {
  header .gnb-row .sns {
    padding: 1rem 1.6667rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .sns {
    padding: 16px 27px;
  }
}
header .gnb-row .sns ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .gnb-row .sns ul {
  gap: 2.5vw;
}
@media (min-width: 641px) {
  header .gnb-row .sns ul {
    gap: 0.6667rem;
  }
}
@media (min-width: 1200px) {
  header .gnb-row .sns ul {
    gap: 11px;
  }
}
header .pc-gnb-row {
  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 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 1200px) {
  header .pc-gnb-row .gnb .gnb_list {
    gap: 10px;
    height: 100%;
  }
}
@media screen and (min-width: 1400px) {
  header .pc-gnb-row .gnb .gnb_list {
    gap: 18px;
  }
}
@media screen and (min-width: 1600px) {
  header .pc-gnb-row .gnb .gnb_list {
    gap: 30px;
  }
}
@media screen and (min-width: 1920px) {
  header .pc-gnb-row .gnb .gnb_list {
    gap: 48px;
  }
}
header .pc-gnb-row .gnb .gnb_list > li {
  height: 100px;
}
header .pc-gnb-row .gnb .gnb_list > li > a {
  position: relative;
  font-size: var(--text-xl);
  height: 100px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .pc-gnb-row .gnb .gnb_list > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: 0;
  background: #0C6FB8;
  opacity: 0;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box {
  position: absolute;
  width: 100vw;
  height: auto;
  top: 100px;
  left: 50%;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  transition: opacity 0.3s ease-in-out;
  border-top: 1px solid #DEDEDE;
  transform: translateX(-50%);
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 {
  width: 100%;
  height: 80px;
  margin: auto;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0 20px;
  white-space: nowrap;
  color: #888888;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li a:hover {
  font-weight: 700;
  color: #0C6FB8;
}
header .pc-gnb-row .gnb .gnb_list > li .depth_box .depth2 li.active a {
  color: #0C6FB8;
}
header .pc-gnb-row .gnb .gnb_list > li.active a {
  color: #0C6FB8;
}
header .pc-gnb-row .gnb .gnb_list > li.active a:before {
  width: 100%;
  opacity: 1;
}
header .pc-gnb-row .gnb .gnb_list > li.active .depth_box {
  opacity: 1;
  top: 100px;
  visibility: visible;
}
header .pc-gnb-row .gnb .gnb_list > li.active .depth_box .depth2 {
  opacity: 1;
}
header .pc-gnb-row .gnb .gnb_list > li:hover .depth_box {
  opacity: 1;
  visibility: visible;
}
header.mobile-menu-open {
  height: 100vh;
}
header.mobile-menu-open .gnb-row {
  opacity: 1;
  height: 100%;
  top: 0;
}
header.pc-menu-open {
  height: 100vh;
}
header.pc-menu-open .gnb-row {
  opacity: 1;
  height: 100%;
  top: 0;
  width: 100%;
  background: url("/static/images/common/bg_pc_gnb.jpg") no-repeat center center;
  background-size: cover;
  flex-flow: wrap;
  align-content: space-between;
  display: flex;
  justify-content: center;
  align-items: center;
}
header.pc-menu-open .gnb-row .myinfo-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  gap: 16px;
}
header.pc-menu-open .gnb-row .myinfo-row p {
  padding-right: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
header.pc-menu-open .gnb-row .myinfo-row .btn-row {
  width: auto;
  gap: 20px;
}
header.pc-menu-open .gnb-row .gnb {
  width: 100%;
  border: none;
}
header.pc-menu-open .gnb-row .gnb:before {
  width: 100%;
  height: 1px;
  left: 0;
  top: 75px;
}
header.pc-menu-open .gnb-row .gnb .gnb_list {
  max-width: 1440px;
  margin: auto;
  height: auto !important;
  flex-flow: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
header.pc-menu-open .gnb-row .gnb .gnb_list li .depth_box {
  display: block !important;
  position: relative;
  top: unset;
  left: 0;
  width: auto;
  padding-top: 40px;
}
header.pc-menu-open .gnb-row .gnb .gnb_list li a:hover, header.pc-menu-open .gnb-row .gnb .gnb_list li a.active {
  color: #0C6FB8;
}
header.pc-menu-open .gnb-row .sns {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding-bottom: 30px;
  padding-right: 0;
}
header.pc-menu-open .gnb-row .sns ul {
  justify-content: flex-end;
  gap: 8px;
}
header.pc-menu-open .gnb-row .sns ul li a .icon-svg {
  width: 52px;
  height: 52px;
}
header.pc-menu-open .gnb-row .pc-gnb-row {
  pointer-events: none;
}

a.alarm .icon-svg .icon-alarm {
  --alarm-dot:transparent;
}
a.alarm.active .icon-svg .icon-alarm {
  --alarm-dot:#F82417;
}

body.header-transparent header {
  background: transparent;
}
body.header-transparent header h1 .icon-svg {
  color: #ffffff;
}
body.header-transparent header h1 .icon-svg .icon-logo {
  color: #ffffff;
}
body.header-transparent header h1 {
  /*span{
  	color: $gray-wh;
  }*/
}
body.header-transparent header .family-site .dropdown-box .dropdown-list {
  background: #ffffff;
}
body.header-transparent header .pc-gnb-row .gnb .gnb_list > li > a {
  color: #ffffff;
}
body.header-transparent header .pc-gnb-row .gnb .gnb_list > li.active .depth_box {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
body.header-transparent header .utility .alarm .icon-svg svg {
  --alarm-line: #ffffff;
}
body.header-transparent header .utility .my .icon-svg .icon-user {
  --user-line: #ffffff;
}
body.header-transparent header .utility .login {
  color: #ffffff;
}
body.header-transparent header .utility .login .icon-svg .icon-login {
  --login-line: #ffffff;
}
body.header-transparent header #toggle-menu div span {
  background-color: #ffffff;
}
body.header-transparent header:hover {
  background: #ffffff;
}
body.header-transparent header:hover h1 .icon-svg {
  color: #0C6FB8;
}
body.header-transparent header:hover h1 .icon-svg .icon-logo {
  color: #0C6FB8;
}
body.header-transparent header:hover h1 {
  /*span{
  	color: $primary;
  }*/
}
body.header-transparent header:hover .family-site .dropdown-box .dropdown-list {
  background: #ffffff;
}
body.header-transparent header:hover .pc-gnb-row .gnb .gnb_list > li > a {
  color: #2B2B2B;
}
body.header-transparent header:hover .pc-gnb-row .gnb .gnb_list > li.active .depth_box {
  background: transparent;
  border-top: 1px solid rgba(222, 222, 222, 0.2);
}
body.header-transparent header:hover .pc-gnb-row .gnb .gnb_list > li.active .depth_box .depth2 > li a:hover {
  color: #0C6FB8;
}
body.header-transparent header:hover .utility .alarm .icon-svg svg {
  --alarm-line: #0C6FB8;
}
body.header-transparent header:hover .utility .my .icon-svg .icon-user {
  --user-line: #0C6FB8;
}
body.header-transparent header:hover .utility .login {
  color: #0C6FB8;
}
body.header-transparent header:hover .utility .login .icon-svg .icon-login {
  --login-line: #0C6FB8;
}
body.header-transparent header:hover #toggle-menu div span {
  background-color: #0C6FB8;
}

@keyframes alarm-pulse {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
#quick {
  position: fixed;
  z-index: 99;
  flex-flow: wrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
  transform: translateY(0);
  filter: drop-shadow(0 0 9.6px rgba(0, 0, 0, 0.2));
  display: flex;
  justify-content: center;
  align-items: center;
}
#quick {
  bottom: 6.25vw;
}
@media (min-width: 641px) {
  #quick {
    bottom: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  #quick {
    bottom: 27px;
  }
}
#quick {
  right: 3.125vw;
}
@media (min-width: 641px) {
  #quick {
    right: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  #quick {
    right: 13px;
  }
}
#quick {
  width: 18.75vw;
}
@media (min-width: 641px) {
  #quick {
    width: 5rem;
  }
}
@media (min-width: 1200px) {
  #quick {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  #quick {
    width: 100px;
    right: 60px;
    bottom: 80px;
  }
}
#quick .quick-inner {
  width: 100%;
  flex-flow: wrap;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#quick .quick-inner {
  border-radius: 18.75vw;
}
@media (min-width: 641px) {
  #quick .quick-inner {
    border-radius: 5rem;
  }
}
@media (min-width: 1200px) {
  #quick .quick-inner {
    border-radius: 80px;
  }
}
#quick .quick-inner {
  gap: 4.375vw;
}
@media (min-width: 641px) {
  #quick .quick-inner {
    gap: 1.1667rem;
  }
}
@media (min-width: 1200px) {
  #quick .quick-inner {
    gap: 19px;
  }
}
#quick .quick-inner {
  padding: 6.25vw 0vw;
}
@media (min-width: 641px) {
  #quick .quick-inner {
    padding: 1.6667rem 0rem;
  }
}
@media (min-width: 1200px) {
  #quick .quick-inner {
    padding: 27px 0px;
  }
}
@media screen and (min-width: 1200px) {
  #quick .quick-inner {
    border-radius: 100px;
    gap: 20px;
    padding: 40px 0px;
  }
}
#quick .quick-inner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #0C6FB8;
  opacity: 0.8;
  backdrop-filter: blur(500px);
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  #quick .quick-inner:before {
    backdrop-filter: blur(250px);
  }
}
#quick .quick-inner a {
  flex-flow: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
#quick .quick-inner a {
  gap: 0.9375vw;
}
@media (min-width: 641px) {
  #quick .quick-inner a {
    gap: 0.25rem;
  }
}
@media (min-width: 1200px) {
  #quick .quick-inner a {
    gap: 4px;
  }
}
@media screen and (min-width: 1200px) {
  #quick .quick-inner a {
    gap: 6px;
  }
}
#quick .quick-inner a .icon-svg {
  width: 6.25vw;
}
@media (min-width: 641px) {
  #quick .quick-inner a .icon-svg {
    width: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  #quick .quick-inner a .icon-svg {
    width: 27px;
  }
}
#quick .quick-inner a .icon-svg {
  height: 6.25vw;
}
@media (min-width: 641px) {
  #quick .quick-inner a .icon-svg {
    height: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  #quick .quick-inner a .icon-svg {
    height: 27px;
  }
}
@media screen and (min-width: 1200px) {
  #quick .quick-inner a .icon-svg {
    width: 40px;
    height: 40px;
  }
}
#quick .quick-inner a .icon-svg svg {
  width: 100%;
  color: #ffffff;
}
#quick .quick-inner a .icon-svg .icon-youtube-line {
  --youtube-line:#ffffff;
  --youtube-arrow:#ffffff;
}
#quick .quick-inner a .icon-svg .icon-alarm {
  --alarm-line:#ffffff;
}
#quick .quick-inner a .icon-svg .icon-insta-line {
  width: 3.5938vw;
}
@media (min-width: 641px) {
  #quick .quick-inner a .icon-svg .icon-insta-line {
    width: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  #quick .quick-inner a .icon-svg .icon-insta-line {
    width: 15px;
  }
}
#quick .quick-inner a .icon-svg .icon-insta-line {
  height: 3.5938vw;
}
@media (min-width: 641px) {
  #quick .quick-inner a .icon-svg .icon-insta-line {
    height: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  #quick .quick-inner a .icon-svg .icon-insta-line {
    height: 15px;
  }
}
@media screen and (min-width: 1200px) {
  #quick .quick-inner a .icon-svg .icon-insta-line {
    width: 23px;
    height: 23px;
  }
}
#quick .quick-inner a span {
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
}
#quick .quick-inner a span {
  font-size: 2.5vw;
}
@media (min-width: 641px) {
  #quick .quick-inner a span {
    font-size: 0.6667rem;
  }
}
@media (min-width: 1200px) {
  #quick .quick-inner a span {
    font-size: 11px;
  }
}
@media screen and (min-width: 1200px) {
  #quick .quick-inner a span {
    font-size: 14px;
  }
}
#quick .top-btn {
  position: relative;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#quick .top-btn {
  width: 12.5vw;
}
@media (min-width: 641px) {
  #quick .top-btn {
    width: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  #quick .top-btn {
    width: 53px;
  }
}
#quick .top-btn {
  height: 12.5vw;
}
@media (min-width: 641px) {
  #quick .top-btn {
    height: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  #quick .top-btn {
    height: 53px;
  }
}
#quick .top-btn {
  border-radius: 12.5vw;
}
@media (min-width: 641px) {
  #quick .top-btn {
    border-radius: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  #quick .top-btn {
    border-radius: 53px;
  }
}
#quick .top-btn {
  margin-top: 5vw;
}
@media (min-width: 641px) {
  #quick .top-btn {
    margin-top: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  #quick .top-btn {
    margin-top: 21px;
  }
}
@media screen and (min-width: 1200px) {
  #quick .top-btn {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    margin-top: 32px;
  }
}
#quick .top-btn .icon-svg {
  width: 6.25vw;
}
@media (min-width: 641px) {
  #quick .top-btn .icon-svg {
    width: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  #quick .top-btn .icon-svg {
    width: 27px;
  }
}
#quick .top-btn .icon-svg {
  height: 6.25vw;
}
@media (min-width: 641px) {
  #quick .top-btn .icon-svg {
    height: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  #quick .top-btn .icon-svg {
    height: 27px;
  }
}
@media screen and (min-width: 1200px) {
  #quick .top-btn .icon-svg {
    width: 50px;
    height: 50px;
  }
}
#quick .top-btn .icon-svg svg {
  width: 100%;
  transform: rotate(-90deg);
}
#quick .top-btn .icon-svg .icon-arrow-forward {
  --arrow-color:#0C6FB8;
}
#quick.quick-hidden {
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
}

footer {
  overflow: hidden;
  position: relative;
  background: url("/static/images/common/bg_footer@m.png") no-repeat center 0;
  background-size: 100% auto;
}
footer {
  margin-top: 15.625vw;
}
@media (min-width: 641px) {
  footer {
    margin-top: 4.1667rem;
  }
}
@media (min-width: 1200px) {
  footer {
    margin-top: 67px;
  }
}
footer {
  height: 240.625vw;
}
@media (min-width: 641px) {
  footer {
    height: 64.1667rem;
  }
}
@media (min-width: 1200px) {
  footer {
    height: 1027px;
  }
}
@media screen and (min-width: 992px) {
  footer {
    height: 60rem;
    margin-top: 130px;
  }
}
@media screen and (min-width: 1200px) {
  footer {
    height: 840px;
    background: url("/static/images/common/bg_footer.png") no-repeat center 0;
    background-size: 100% auto;
  }
}
footer .video2 {
  position: relative;
  width: 100%;
}
footer .video2 {
  height: 85.0781vw;
}
@media (min-width: 641px) {
  footer .video2 {
    height: 22.6875rem;
  }
}
@media (min-width: 1200px) {
  footer .video2 {
    height: 363px;
  }
}
@media screen and (min-width: 1200px) {
  footer .video2 {
    height: 1229px;
    top: 1px;
  }
}
footer .video2:before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #ffffff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.75) 5%, rgba(255, 255, 255, 0) 30%);
}
footer .footer-inner {
  position: absolute;
  left: 50%;
  width: 87.5%;
  height: 100%;
  z-index: 3;
  transform: translateX(-50%);
}
footer .footer-inner {
  top: 57.5781vw;
}
@media (min-width: 641px) {
  footer .footer-inner {
    top: 15.3542rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner {
    top: 246px;
  }
}
@media screen and (min-width: 992px) {
  footer .footer-inner {
    height: 316px;
    flex-flow: wrap;
    align-content: flex-end;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner {
    width: 100%;
    max-width: 1440px;
    top: 424px;
    padding-left: 240px;
  }
}
@media screen and (min-width: 1440px) {
  footer .footer-inner {
    padding-left: 416px;
  }
}
footer .footer-inner dl {
  flex-flow: wrap;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
footer .footer-inner dl {
  margin-bottom: 6.25vw;
}
@media (min-width: 641px) {
  footer .footer-inner dl {
    margin-bottom: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner dl {
    margin-bottom: 27px;
  }
}
footer .footer-inner dl dt {
  width: 100%;
  font-weight: 700;
  color: #F3F3F3;
}
footer .footer-inner dl dt {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  footer .footer-inner dl dt {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner dl dt {
    font-size: 17px;
  }
}
footer .footer-inner dl dt {
  margin-bottom: 3.125vw;
}
@media (min-width: 641px) {
  footer .footer-inner dl dt {
    margin-bottom: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner dl dt {
    margin-bottom: 13px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner dl dt {
    font-size: 20px;
  }
}
footer .footer-inner dl dd {
  opacity: 0.5;
  font-weight: 400;
  color: #F8F8F8;
}
footer .footer-inner dl dd {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  footer .footer-inner dl dd {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner dl dd {
    font-size: 15px;
  }
}
footer .footer-inner dl dd {
  margin-bottom: 3.125vw;
}
@media (min-width: 641px) {
  footer .footer-inner dl dd {
    margin-bottom: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner dl dd {
    margin-bottom: 13px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner dl dd {
    font-size: 16px;
  }
}
footer .footer-inner .group:nth-of-type(1) {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .footer-inner .group:nth-of-type(1) {
  margin-bottom: 4.6875vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) {
    position: absolute;
    left: 0;
    top: 0;
    flex-flow: wrap;
    align-content: space-between;
    margin-bottom: 0;
    height: 316px;
  }
}
footer .footer-inner .group:nth-of-type(1) .logo {
  width: 31.5625vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .logo {
    width: 8.4167rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .logo {
    width: 135px;
  }
}
footer .footer-inner .group:nth-of-type(1) .logo {
  height: 8.0469vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .logo {
    height: 2.1458rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .logo {
    height: 34px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .logo {
    height: 40px;
    width: 100%;
  }
}
footer .footer-inner .group:nth-of-type(1) .logo .icon-svg {
  color: #ffffff;
}
footer .footer-inner .group:nth-of-type(1) .logo .icon-svg {
  width: 31.5625vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .logo .icon-svg {
    width: 8.4167rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .logo .icon-svg {
    width: 135px;
  }
}
footer .footer-inner .group:nth-of-type(1) .logo .icon-svg {
  height: 8.0469vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .logo .icon-svg {
    height: 2.1458rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .logo .icon-svg {
    height: 34px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .logo .icon-svg {
    width: 157px;
    height: 40px;
  }
}
footer .footer-inner .group:nth-of-type(1) .logo .icon-svg svg {
  width: 100%;
}
footer .footer-inner .group:nth-of-type(1) .a_group > a {
  border: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-inner .group:nth-of-type(1) .a_group > a {
  width: 26.5625vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a {
    width: 7.0833rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a {
    width: 113px;
  }
}
footer .footer-inner .group:nth-of-type(1) .a_group > a {
  height: 10vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a {
    height: 2.6667rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a {
    height: 43px;
  }
}
footer .footer-inner .group:nth-of-type(1) .a_group > a {
  border-radius: 10vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a {
    border-radius: 2.6667rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a {
    border-radius: 43px;
  }
}
footer .footer-inner .group:nth-of-type(1) .a_group > a {
  gap: 1.875vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a {
    gap: 8px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a {
    width: 210px;
    height: 54px;
    border-radius: 54px;
    gap: 8px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a strong {
    gap: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
footer .footer-inner .group:nth-of-type(1) .a_group > a strong span {
  color: #ffffff;
  font-weight: 600;
}
footer .footer-inner .group:nth-of-type(1) .a_group > a strong span {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a strong span {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a strong span {
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a strong span {
    font-size: 20px;
  }
}
footer .footer-inner .group:nth-of-type(1) .a_group > a .icon-svg {
  width: 3.9063vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a .icon-svg {
    width: 1.0417rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a .icon-svg {
    width: 17px;
  }
}
footer .footer-inner .group:nth-of-type(1) .a_group > a .icon-svg {
  height: 3.9063vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a .icon-svg {
    height: 1.0417rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a .icon-svg {
    height: 17px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group > a .icon-svg {
    width: 18px;
    height: 18px;
  }
}
footer .footer-inner .group:nth-of-type(1) .a_group > a .icon-svg .icon-arrow-tr {
  width: 100%;
  color: #ffffff;
}
footer .footer-inner .group:nth-of-type(1) .a_group .family-site1 {
  margin-bottom: 3.125vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(1) .a_group .family-site1 {
    margin-bottom: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group .family-site1 {
    margin-bottom: 13px;
  }
}
footer .footer-inner .group:nth-of-type(1) .a_group .family-site1 strong span:nth-of-type(2) {
  display: none;
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group .family-site1 strong span:nth-of-type(2) {
    display: block;
  }
}
footer .footer-inner .group:nth-of-type(1) .a_group .family-site2 strong span:nth-of-type(1) {
  display: none;
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(1) .a_group .family-site2 strong span:nth-of-type(1) {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  footer .footer-inner .group:nth-of-type(10) {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(1) {
    margin-bottom: 52px;
  }
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(1) dd {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) {
    margin-bottom: 0;
  }
}
footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dt {
  margin-bottom: 0;
  opacity: 0.8;
  font-weight: 700;
}
footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dt {
  width: 15.625vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dt {
    width: 4.1667rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dt {
    width: 67px;
  }
}
footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dt {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dt {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dt {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dt {
    width: 75px;
    font-size: 16px;
  }
}
footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dd {
  opacity: 0.8;
  font-weight: 400;
  width: calc(100% - 15.625vw);
}
footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dd {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dd {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dd {
    font-size: 15px;
  }
}
@media screen and (min-width: 640px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dd {
    width: calc(100% - 2.9167rem);
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dd {
    width: calc(100% - 75px);
  }
}
footer .footer-inner .group:nth-of-type(10) dl:nth-of-type(2) dd:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  footer .footer-inner .group:nth-of-type(2) {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
footer .footer-inner .group:nth-of-type(2) dl {
  margin-bottom: 4.6875vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(2) dl {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) {
    margin-bottom: 0;
  }
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dt {
  width: 100%;
  font-weight: 700;
  color: #F3F3F3;
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dt {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dt {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dt {
    font-size: 17px;
  }
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dt {
  margin-bottom: 3.125vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dt {
    margin-bottom: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dt {
    margin-bottom: 13px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dt {
    font-size: 20px;
  }
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dd {
  opacity: 0.5;
  margin-bottom: 0;
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dd p {
  color: #F8F8F8;
  font-weight: 400;
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dd p {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dd p {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dd p {
    font-size: 15px;
  }
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dd p {
  margin-bottom: 1.5625vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dd p {
    margin-bottom: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dd p {
    margin-bottom: 7px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(1) dd p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) {
    margin-bottom: 0;
  }
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dt {
  margin-bottom: 0;
  opacity: 0.8;
  font-weight: 700;
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dt {
  width: 23.4375vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dt {
    width: 6.25rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dt {
    width: 100px;
  }
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dt {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dt {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dt {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dt {
    width: 100px;
    font-size: 16px;
  }
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dd {
  opacity: 0.8;
  font-weight: 400;
  width: calc(100% - 23.4375vw);
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dd {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dd {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dd {
    font-size: 15px;
  }
}
@media screen and (min-width: 640px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dd {
    width: calc(100% - 6.5rem);
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dd {
    width: calc(100% - 100px);
  }
}
footer .footer-inner .group:nth-of-type(2) dl:nth-of-type(2) dd:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  footer .footer-inner .group:nth-of-type(3) {
    width: 100%;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(3) {
    margin-top: 48px;
  }
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) {
  flex-flow: wrap;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) {
  gap: 1.5625vw 6.25vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) {
    gap: 0.4167rem 1.6667rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) {
    gap: 7px 27px;
  }
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li {
  position: relative;
  color: #F8F8F8;
  font-weight: 400;
  opacity: 0.5;
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li {
    font-size: 15px;
  }
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:before {
  content: "";
  position: absolute;
  width: 1px;
  background: #ffffff;
  opacity: 0.5;
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:before {
  height: 3.5938vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:before {
    height: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:before {
    height: 15px;
  }
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:before {
  right: -3.125vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:before {
    right: -0.8333rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:before {
    right: -13px;
  }
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:before {
  top: 0.7813vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:before {
    top: 0.2083rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:before {
    top: 3px;
  }
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:nth-of-type(3):before, footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:nth-of-type(4):before {
  display: none;
}
@media screen and (min-width: 660px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li:nth-of-type(3):before {
    display: block;
  }
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(1) li > a {
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: 3px;
  text-underline-position: from-font;
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(2) {
  margin-top: 6.25vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(2) {
    margin-top: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(2) {
    margin-top: 27px;
  }
}
@media screen and (min-width: 640px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(2) {
    margin-top: 0.8rem;
  }
}
@media screen and (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(2) {
    margin-top: 10px;
  }
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(2) li {
  position: relative;
  color: #F8F8F8;
  font-weight: 400;
  opacity: 0.5;
}
footer .footer-inner .group:nth-of-type(3) ul:nth-child(2) li {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(2) li {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  footer .footer-inner .group:nth-of-type(3) ul:nth-child(2) li {
    font-size: 15px;
  }
}

/* =================================================================
   [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;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  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;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 87.5%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s;
}
.modal-layer {
  border-radius: 2.8125vw;
}
@media (min-width: 641px) {
  .modal-layer {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer {
    border-radius: 12px;
  }
}
@media screen and (min-width: 641px) {
  .modal-layer {
    width: auto;
    width: 100%;
    border-radius: 12px;
  }
}
.modal-layer .modal-header {
  border-bottom: 1px solid transparent;
  background: #0C6FB8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-layer .modal-header {
  padding: 9.375vw 0 7.8125vw 0;
}
@media (min-width: 641px) {
  .modal-layer .modal-header {
    padding: 2.5rem 0 2.0833rem 0;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header {
    padding: 40px 0 33px 0;
  }
}
@media screen and (min-width: 1200px) {
  .modal-layer .modal-header {
    padding: 44px 0px;
  }
}
.modal-layer .modal-header .tit {
  font-weight: 700;
  color: #ffffff;
}
.modal-layer .modal-header .tit {
  font-size: 5vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-header .tit {
    font-size: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .tit {
    font-size: 21px;
  }
}
@media screen and (min-width: 1200px) {
  .modal-layer .modal-header .tit {
    font-size: 28px;
  }
}
.modal-layer .modal-header .btn-close-modal {
  position: absolute;
  cursor: pointer;
}
.modal-layer .modal-header .btn-close-modal {
  top: 3.125vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-header .btn-close-modal {
    top: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    top: 13px;
  }
}
.modal-layer .modal-header .btn-close-modal {
  right: 3.125vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-header .btn-close-modal {
    right: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    right: 13px;
  }
}
.modal-layer .modal-header .btn-close-modal {
  width: 8.4375vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-header .btn-close-modal {
    width: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    width: 36px;
  }
}
.modal-layer .modal-header .btn-close-modal {
  height: 8.4375vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-header .btn-close-modal {
    height: 2.25rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    height: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .modal-layer .modal-header .btn-close-modal {
    top: 38px;
    right: 38px;
    width: 40px;
    height: 40px;
  }
}
.modal-layer .modal-header .btn-close-modal .icon-svg {
  width: 100%;
  height: 100%;
}
.modal-layer .modal-header .btn-close-modal .icon-svg svg {
  width: 100%;
  color: #ffffff;
}
.modal-layer .modal-body {
  flex: 1;
  overflow-y: auto;
  background: #ffffff;
  -webkit-overflow-scrolling: touch;
  color: #666;
  line-height: 1.5;
}
.modal-layer .modal-body {
  padding: 9.375vw 6.25vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-body {
    padding: 2.5rem 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-body {
    padding: 40px 27px;
  }
}
.modal-layer .modal-body {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-body {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-body {
    font-size: 16px;
  }
}
@media screen and (min-width: 641px) {
  .modal-layer .modal-body {
    padding: 48px;
    font-size: 16px;
  }
}
.modal-layer .modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-layer .modal-footer {
  padding: 3.75vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-footer {
    padding: 1rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-footer {
    padding: 16px;
  }
}
.modal-layer .modal-footer {
  gap: 1.875vw;
}
@media (min-width: 641px) {
  .modal-layer .modal-footer {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .modal-layer .modal-footer {
    gap: 8px;
  }
}
@media screen and (min-width: 641px) {
  .modal-layer .modal-footer {
    padding: 16px;
    gap: 8px;
  }
}

section.section .section-inner .swiper-button-next.arrow-style:after, section.section .section-inner .swiper-button-prev.arrow-style:after {
  display: none;
}
section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
  overflow: hidden;
  aspect-ratio: 1/1;
  transform: rotate(-90deg);
}
section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
  width: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
    width: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
    width: 40px;
  }
}
section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
  height: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
    height: 40px;
  }
}
section.section .section-inner .swiper-button-next.arrow-style .icon-svg svg, section.section .section-inner .swiper-button-prev.arrow-style .icon-svg svg {
  color: #ffffff;
  width: 100%;
  height: 100%;
}
section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
  bottom: unset;
  margin: unset;
  border: 1px solid #616161;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
  width: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    width: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    width: 40px;
  }
}
section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
  height: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    height: 40px;
  }
}
section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
  border-radius: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    border-radius: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style, section.section .section-inner .swiper-button-prev.circle-arrow-style {
    width: 56px;
    height: 56px;
    border-radius: 56px;
  }
}
section.section .section-inner .swiper-button-next.circle-arrow-style:after, section.section .section-inner .swiper-button-prev.circle-arrow-style:after {
  display: none;
}
section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
  width: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
    width: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
    width: 40px;
  }
}
section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
  height: 9.375vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
    height: 40px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
    width: 56px;
    height: 56px;
  }
}
section.section .section-inner .swiper-button-next.circle-arrow-style .icon-svg svg, section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg svg {
  color: #616161;
  width: 72%;
}
section.section .section-inner .swiper-button-next.circle-arrow-style:hover, section.section .section-inner .swiper-button-prev.circle-arrow-style:hover {
  border-color: #0C6FB8;
  background: #0C6FB8;
}
section.section .section-inner .swiper-button-next.circle-arrow-style:hover .icon-svg svg, section.section .section-inner .swiper-button-prev.circle-arrow-style:hover .icon-svg svg {
  color: #ffffff;
}
section.section .section-inner .swiper-button-prev.arrow-style .icon-svg {
  transform: rotate(90deg);
}
section.section .section-inner .swiper-button-prev.circle-arrow-style .icon-svg {
  transform: rotate(-180deg);
}
section.section .section-inner {
  /* =========================================
  공통 설정
  ========================================= */
}
section.section .section-inner .swiper-pagination {
  text-align: center;
  transition: 0.3s;
}
section.section .section-inner .swiper-pagination {
  bottom: -7.8125vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination {
    bottom: -2.0833rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination {
    bottom: -33px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .swiper-pagination {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 420px;
    flex-flow: wrap;
    left: 50%;
    right: unset;
    bottom: 20px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1440px) {
  section.section .section-inner .swiper-pagination {
    width: 460px;
    bottom: 50px;
    margin-left: 80px;
  }
}
section.section .section-inner .swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section .section-inner .swiper-pagination-bullets {
  gap: 1.875vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullets {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullets {
    gap: 8px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullets {
    gap: 8px;
  }
}
section.section .section-inner {
  /* =========================================
  모바일 (< 1440px): Dot(점) 스타일
  ========================================= */
}
section.section .section-inner .swiper-pagination-bullet {
  display: inline-block;
  background: #DEDEDE;
  opacity: 1;
  font-size: 0;
  color: transparent;
  line-height: 0;
  transition: all 0.3s ease;
}
section.section .section-inner .swiper-pagination-bullet {
  width: 2.3438vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullet {
    width: 0.625rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet {
    width: 10px;
  }
}
section.section .section-inner .swiper-pagination-bullet {
  height: 2.3438vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullet {
    height: 0.625rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet {
    height: 10px;
  }
}
section.section .section-inner .swiper-pagination-bullet {
  border-radius: 1.1719vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullet {
    border-radius: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet {
    border-radius: 5px;
  }
}
section.section .section-inner .swiper-pagination-bullet {
  margin: 0vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullet {
    margin: 0rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet {
    margin: 0px;
  }
}
section.section .section-inner .swiper-pagination-bullet {
  /* 모바일 활성화 상태 */
}
section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0C6FB8;
}
section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 7.5vw;
}
@media (min-width: 641px) {
  section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 2rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 32px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: transparent;
    color: #0C6FB8;
    width: auto;
    font-weight: 700;
  }
  section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    width: 60px;
  }
}
@media screen and (min-width: 1440px) {
  section.section .section-inner .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    width: 80px;
  }
}
section.section .section-inner .controller-row.type2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.section .section-inner .controller-row.type2 .swiper-pagination {
  position: relative;
  z-index: 1;
  color: #616161;
  font-weight: 400;
  line-height: 100%;
  bottom: unset;
}
section.section .section-inner .controller-row.type2 .swiper-pagination {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  section.section .section-inner .controller-row.type2 .swiper-pagination {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .controller-row.type2 .swiper-pagination {
    font-size: 15px;
  }
}
section.section .section-inner .controller-row.type2 .swiper-pagination {
  width: 15.2344vw;
}
@media (min-width: 641px) {
  section.section .section-inner .controller-row.type2 .swiper-pagination {
    width: 4.0625rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .controller-row.type2 .swiper-pagination {
    width: 65px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .controller-row.type2 .swiper-pagination {
    font-size: 16px;
    margin-left: 0;
    left: 0;
    gap: 4px;
  }
}
section.section .section-inner .controller-row.type2 .swiper-pagination span {
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
}
section.section .section-inner .controller-row.type2 .swiper-pagination span.swiper-pagination-current {
  font-weight: 700;
  color: #2B2B2B;
}
section.section .section-inner .controller-row.type4 {
  margin: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section .section-inner .controller-row.type4 {
  margin-top: 6.25vw;
}
@media (min-width: 641px) {
  section.section .section-inner .controller-row.type4 {
    margin-top: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .controller-row.type4 {
    margin-top: 27px;
  }
}
section.section .section-inner .controller-row.type4 {
  gap: 6.25vw;
}
@media (min-width: 641px) {
  section.section .section-inner .controller-row.type4 {
    gap: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .controller-row.type4 {
    gap: 27px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .controller-row.type4 {
    margin-top: 86px;
    width: 100%;
    max-width: 100%;
  }
}
section.section .section-inner .controller-row.type4 .swiper-pagination {
  bottom: unset;
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .controller-row.type4 .swiper-pagination {
    left: unset;
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  section.section .section-inner .controller-row.type4 .swiper-pagination .swiper-pagination-bullet {
    background: #C4C4C4;
  }
  section.section .section-inner .controller-row.type4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #0C6FB8;
    width: 32px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .controller-row.type4 .swiper-button-prev, section.section .section-inner .controller-row.type4 .swiper-button-next {
    position: absolute;
    top: -527px;
    right: 0;
  }
  section.section .section-inner .controller-row.type4 .swiper-button-prev {
    right: 80px;
  }
}

/* =================================================================
   1. [CSS Variables] Global Settings
   * 실제 스타일 시트(.scss, .css)에서 사용하는 Semantic 변수 정의
   * 색상 코드를 직접 사용하지 않고, 이 변수들을 사용하여 테마를 관리합니다.
   ================================================================= */
:root {
  /* --------------------------------
     1-1. Color System (Base)
     -------------------------------- */
  /* Brand Colors */
  --color-primary: #0C6FB8;
  --color-secondary: #AE8766;
  --color-error: #F82417;
  --color-family: #6FA05A;
  /* Grayscale Mapping */
  --gray-wh: #ffffff;
  --gray-bk: #000000;
  --gray1: #F3F3F3;
  --gray2: #EDEDED;
  --gray3: #DEDEDE;
  --gray4: #C4C4C4;
  --gray5: #9F9F9F;
  --gray6: #888888;
  --gray7: #616161;
  --gray8: #444444;
  --gray9: #2B2B2B;
  /* --------------------------------
     1-2. Layout & Components
     -------------------------------- */
  /* Backgrounds */
  --bg-page: var(--gray-wh); /* 페이지 전체 배경 */
  --bg-white: $gray-wh; /* 컨텐츠 박스 배경 (카드, 모달 등) */
  /* Texts */
  --text-main: var(--gray9); /* 기본 본문 (진한 회색) */
  --text-sub: var(--gray6); /* 설명글/보조 텍스트 */
  --text-muted: var(--gray4); /* 비활성/Placeholder */
  /* Borders & Lines */
  --line-light: var(--gray2); /* 아주 연한 구분선 */
  --line-basic: var(--gray5); /* 일반 테두리 */
  --line-strong: var(--gray7); /* 강조 테두리 */
  /* Forms (Inputs) */
  --input-height: 48px;
  --input-bg: $gray-wh;
  --input-border: var(--line-basic);
  --input-radius: 6px;
  /* Tables */
  --table-th-bg: var(--gray1);
  --table-th-text: var(--gray7);
  --table-border: var(--gray2);
  /* Misc */
  --PlaceColor: var(--gray4);
  --color-primary-dark: rgb(7.3163265306, 67.6760204082, 112.1836734694);
  --color-primary-light: rgb(199.612244898, 229.4132653061, 251.387755102);
  --color-secondary-dark: rgb(130.4423076923, 97.1923076923, 69.0576923077);
  --color-secondary-light: rgb(235.7884615385, 226.5384615385, 218.7115384615);
}

/* =================================================================
   2. [Theme] Dark Mode Override
   * html[data-theme='dark'] 속성이 있을 때 변수 값을 재정의합니다.
   ================================================================= */
[data-theme=dark] {
  /* 1. Backgrounds (반전) */
  --bg-page: var(--gray9); /* 배경이 어두워짐 */
  --bg-white: var(--gray8); /* 컨텐츠 박스도 어두운 회색으로 */
  /* 2. Texts (반전) */
  --text-main: var(--gray-wh); /* 글자가 밝아짐 */
  --text-sub: var(--gray4);
  /* 3. Borders (어둡게 조정) */
  --line-basic: var(--gray7);
}

/* =================================================================
   3. [Typography] Auto Responsive Variables
   * _variables.scss의 $font-size-map을 순회하며 반응형 변수를 자동 생성합니다.
   * 생성 예시: --text-sm, --text-lg, --text-xl ...
   ================================================================= */
/* 3-1. Mobile Default (vw) */
:root {
  --text-xs: 2.8125vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-sm: 3.2813vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-base: 3.75vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-lg: 4.2188vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-xl: 4.6875vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-2xl: 5.625vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
  --text-3xl: 7.0313vw;
  /*
  --text-xs: 2.13vw;
  --text-sm: 2.5vw;
  */
}

/* 3-2. Tablet Override (rem) */
@media (min-width: 641px) {
  :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;
    /*
    --text-xs: 0.75rem;
    --text-sm: 0.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;
    /*
    --text-xs: 12px;
    --text-sm: 14px;        
    */
  }
}
/* 3-4. 폰트사이즈 클래스화 */
.text-xs {
  font-size: var(--text-xs);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-sm {
  font-size: var(--text-sm);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-base {
  font-size: var(--text-base);
  /*
  .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-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-xl {
  font-size: var(--text-xl);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-2xl {
  font-size: var(--text-2xl);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

.text-3xl {
  font-size: var(--text-3xl);
  /*
  .text-xs { font-size: var(--text-xs); }
  .text-sm { font-size: var(--text-sm); }
  .text-base { font-size: var(--text-base); }    
  */
}

/* 스크롤바 커스텀 (Webkit Browsers) */
::-webkit-scrollbar {
  width: 6px; /* 세로 스크롤바의 너비 (우측에 생기는 것) */
  height: 6px; /* 가로 스크롤바의 높이 (하단에 생기는 것) */
}

/* 2. 스크롤바 막대 (Thumb) - 사용자가 잡고 드래그하는 부분 */
::-webkit-scrollbar-thumb {
  background: #cccccc; /* 막대 기본 색상 */
  border-radius: 0; /* 막대 모서리 (0=직각, 3px=둥글게) */
}

/* 3. 스크롤바 막대에 마우스를 올렸을 때 (Hover) */
::-webkit-scrollbar-thumb:hover {
  background: #888888; /* 드래그 하려고 올리면 색을 진하게 변경 */
}

/* 4. 스크롤바 트랙 (Track) - 막대가 움직이는 뒷배경 경로 */
::-webkit-scrollbar-track {
  background: #eeeeee; /* 트랙 배경색 (보통 연한 회색이나 투명) */
  border-radius: 0;
}

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

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

br.mo {
  display: block;
}
@media screen and (min-width: 768px) {
  br.mo {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  br.mo {
    display: none;
  }
}
br.sm {
  display: none;
}
@media screen and (min-width: 768px) {
  br.sm {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  br.sm {
    display: none;
  }
}
br.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  br.pc {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  br.pc {
    display: block;
  }
}

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

h2 {
  font-weight: 700;
  background: transparent;
  display: block;
}
h2 {
  font-size: 6.4063vw;
}
@media (min-width: 641px) {
  h2 {
    font-size: 1.7083rem;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 27px;
  }
}
h2 {
  line-height: 1.5;
}
@media (min-width: 641px) {
  h2 {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  h2 {
    line-height: 1.5;
  }
}
h2::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
h2::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
@media screen and (min-width: 1200px) {
  h2 {
    display: block;
  }
  h2 {
    font-size: 12.1875vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h2 {
    font-size: 3.25rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h2 {
    font-size: 52px;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h2 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h2 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  h2::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc(-1em * 0.3);
  }
  h2::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc(-1em * 0.2);
  }
}

h3 {
  font-weight: 700;
  background: transparent;
  display: block;
}
h3 {
  font-size: 6.875vw;
}
@media (min-width: 641px) {
  h3 {
    font-size: 1.8333rem;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 29px;
  }
}
h3 {
  line-height: 1.5;
}
@media (min-width: 641px) {
  h3 {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  h3 {
    line-height: 1.5;
  }
}
h3::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
h3::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
@media screen and (min-width: 1200px) {
  h3 {
    display: block;
  }
  h3 {
    font-size: 11.25vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h3 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h3 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1200px) {
  h3 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h3 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h3 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  h3::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc(-1em * 0.3);
  }
  h3::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc(-1em * 0.2);
  }
}

h4 {
  font-weight: 700;
  background: transparent;
  display: block;
}
h4 {
  font-size: 5vw;
}
@media (min-width: 641px) {
  h4 {
    font-size: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  h4 {
    font-size: 21px;
  }
}
h4 {
  line-height: 1.5;
}
@media (min-width: 641px) {
  h4 {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  h4 {
    line-height: 1.5;
  }
}
h4::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
h4::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
@media screen and (min-width: 1200px) {
  h4 {
    display: block;
  }
  h4 {
    font-size: 7.5vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h4 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h4 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  h4 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h4 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h4 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  h4::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc(-1em * 0.3);
  }
  h4::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc(-1em * 0.2);
  }
}

h5 {
  font-weight: 700;
  background: transparent;
  display: block;
}
h5 {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  h5 {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  h5 {
    font-size: 17px;
  }
}
h5 {
  line-height: 1.5;
}
@media (min-width: 641px) {
  h5 {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  h5 {
    line-height: 1.5;
  }
}
h5::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
h5::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
@media screen and (min-width: 1200px) {
  h5 {
    display: block;
  }
  h5 {
    font-size: 6.0938vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h5 {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h5 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1200px) {
  h5 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h5 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h5 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  h5::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc(-1em * 0.3);
  }
  h5::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc(-1em * 0.2);
  }
}

h6 {
  font-weight: 700;
  background: transparent;
  display: block;
}
h6 {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  h6 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  h6 {
    font-size: 16px;
  }
}
h6 {
  line-height: 1.5;
}
@media (min-width: 641px) {
  h6 {
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  h6 {
    line-height: 1.5;
  }
}
h6::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc(-1em * 0.3);
}
h6::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc(-1em * 0.2);
}
@media screen and (min-width: 1200px) {
  h6 {
    display: block;
  }
  h6 {
    font-size: 5.625vw;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h6 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h6 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  h6 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 641px) {
  h6 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  h6 {
    line-height: 1.5;
  }
}
@media screen and (min-width: 1200px) {
  h6::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc(-1em * 0.3);
  }
  h6::after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc(-1em * 0.2);
  }
}

.icon-svg {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-svg {
  width: 9.375vw;
}
@media (min-width: 641px) {
  .icon-svg {
    width: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .icon-svg {
    width: 40px;
  }
}
.icon-svg {
  height: 9.375vw;
}
@media (min-width: 641px) {
  .icon-svg {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .icon-svg {
    height: 40px;
  }
}
.icon-svg svg {
  overflow: hidden;
  width: 100%;
}
.icon-svg .icon-insta {
  color: #0C6FB8;
}
.icon-svg .icon-youtube {
  --youtube-arrow:white;
  --youtube-bg: #0C6FB8;
}
.icon-svg .icon-youtube-line {
  --youtube-arrow:#0C6FB8;
  --youtube-line:#0C6FB8;
}
.icon-svg .icon-blog {
  --blog-face:#0C6FB8;
  --blog-txt:white;
}
.icon-svg .icon-my {
  --my-face:white;
  --my-bg1:#0C6FB8;
}
.icon-svg .icon-arrow-forward {
  color: #0C6FB8;
}
.icon-svg .icon-arrow-down {
  width: 50%;
  height: auto;
}
.icon-svg .icon-user {
  --user-face:transparent;
  --user-line:white;
}
.icon-svg .icon-close {
  color: #0C6FB8;
}
.icon-svg .icon-email {
  color: #0C6FB8;
}
.icon-svg .icon-arrow-tr {
  color: #0C6FB8;
}
.icon-svg .icon-alarm {
  --alarm-dot: red;
  --alarm-line: #0C6FB8;
}
.icon-svg .icon-msg {
  color: #0C6FB8;
}
.icon-svg .icon-logo {
  color: #0C6FB8;
}
.icon-svg .icon-online-res {
  color: #0C6FB8;
}
.icon-svg .icon-calender {
  color: #0C6FB8;
}
.icon-svg .icon-check {
  color: #0C6FB8;
}
.icon-svg .icon-naver {
  color: #0C6FB8;
}
.icon-svg .icon-map {
  color: #0C6FB8;
}
.icon-svg .icon-symbol {
  color: #0C6FB8;
}
.icon-svg .icon-notebook {
  color: #ffffff;
}
.icon-svg .icon-earth {
  color: #ffffff;
}

/*테이블*/
/* =================================================================
   [Common] Table Styles
   * .table-scroll로 감싸면 모바일에서 가로 스크롤이 발생합니다.
    <div class="table-scroll">

        <table class="tbl-basic">
            <colgroup>
                <col style="width: 20%;">
                <col style="width: auto;">
                <col style="width: 20%;">
                <col style="width: 20%;">
            </colgroup>
            <thead>
                <tr>
                    <th scope="col">번호</th>
                    <th scope="col">제목</th>
                    <th scope="col">작성자</th>
                    <th scope="col">날짜</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>9</td>
                    <td class="text-left">테이블 스크롤 테스트 중입니다.</td>
                    <td>관리자</td>
                    <td>2024.01.02</td>
                </tr>
            </tbody>
        </table>

    </div>   
   ================================================================= */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.table-scroll {
  padding-bottom: 2.3438vw;
}
@media (min-width: 641px) {
  .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 #9F9F9F;
}
.tbl-basic {
  min-width: 140.625vw;
}
@media (min-width: 641px) {
  .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 caption {
  background-color: var(--table-th-bg);
}
.tbl-basic caption {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .tbl-basic caption {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic caption {
    font-size: 16px;
  }
}
.tbl-basic caption {
  padding: 3.5156vw 0vw;
}
@media (min-width: 641px) {
  .tbl-basic caption {
    padding: 0.9375rem 0rem;
  }
}
@media (min-width: 1200px) {
  .tbl-basic caption {
    padding: 15px 0px;
  }
}
.tbl-basic thead th {
  background-color: var(--table-th-bg);
  font-weight: 700;
  border-bottom: 1px solid var(--table-border);
  border-left: 1px solid var(--table-border);
  white-space: nowrap;
  font-weight: 600;
}
.tbl-basic thead th {
  padding: 3.5156vw 2.3438vw;
}
@media (min-width: 641px) {
  .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.2813vw;
}
@media (min-width: 641px) {
  .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: 16px;
    white-space: normal;
  }
}
.tbl-basic tbody td {
  background-color: #ffffff;
  border-bottom: 1px solid var(--table-border);
  border-left: 1px solid var(--table-border);
  text-align: center;
  font-weight: 500;
  color: var(--text-sub, #666);
}
.tbl-basic tbody td {
  padding: 3.5156vw 2.3438vw;
}
@media (min-width: 641px) {
  .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.2813vw;
}
@media (min-width: 641px) {
  .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: 16px;
    font-weight: 500;
  }
}
.tbl-basic.text-left td {
  text-align: left;
}

/* =================================================================
   리스트 스타일
   * 기본적으로 들여쓰기(padding-left)가 자동 적용됩니다.
    <ul class="list-type-dash">
        <li>리스트 내용입니다.</li>
        <li>줄바꿈이 일어나도 들여쓰기가 완벽하게 유지됩니다.</li>
    </ul>

    <ul class="list-type-dot mt-20">
        <li>점 리스트 1</li>
        <li>점 리스트 2</li>
    </ul>

    <ul class="list-type-star">
        <li>유의사항 1</li>
        <li>유의사항 2</li>
    </ul>

    <ol class="list-type-order">
        <li>첫 번째 순서 (자동 1)</li>
        <li>두 번째 순서 (자동 2)</li>
        <li>세 번째 순서 (자동 3)</li>
    </ol>

    <ul class="list-type-custom">
        <li>디자인된 아이콘이 들어갑니다.</li>
        <li>백그라운드 이미지만 교체해서 쓰세요.</li>
    </ul>   
   ================================================================= */
[class^=list-type-] {
  list-style: none;
  padding: 0;
  margin: 0;
}
[class^=list-type-] > li {
  position: relative;
  box-sizing: border-box;
}
[class^=list-type-] > li {
  padding-left: 3.75vw;
}
@media (min-width: 641px) {
  [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.1719vw;
}
@media (min-width: 641px) {
  [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;
}

/* 1. 텍스트 기호형 (Dash, Dot, Star)------------------------------ */
.list-type-dash > li::before {
  content: "-";
}

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

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

/* 2. 숫자 + 바 형 (1 | 내용) ------------------------------ */
.list-type-num-bar {
  counter-reset: list-cnt;
}
.list-type-num-bar > li {
  counter-increment: list-cnt;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.list-type-num-bar > li {
  padding-left: 10.5469vw;
}
@media (min-width: 641px) {
  .list-type-num-bar > li {
    padding-left: 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .list-type-num-bar > li {
    padding-left: 45px;
  }
}
.list-type-num-bar > li {
  margin-bottom: 1.1719vw;
}
@media (min-width: 641px) {
  .list-type-num-bar > li {
    margin-bottom: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .list-type-num-bar > li {
    margin-bottom: 5px;
  }
}
.list-type-num-bar > li::before {
  content: counter(list-cnt, decimal-leading-zero);
  flex-shrink: 0;
  min-width: 26px;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #9F9F9F;
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  top: 3px;
}

/* 3. 순서형 (Ordered List) * 1), 2), 3) 형태로 자동 증가 ------------- */
.list-type-order {
  counter-reset: list-counter;
}
.list-type-order > li {
  padding-left: 5.1563vw;
}
@media (min-width: 641px) {
  .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) ")";
}

/* 4. 숫자 + 점 형 (1. 2. 3.) ------------------------------ */
.list-type-decimal {
  counter-reset: list-decimal;
}
.list-type-decimal > li {
  padding-left: 4.6875vw;
}
@media (min-width: 641px) {
  .list-type-decimal > li {
    padding-left: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .list-type-decimal > li {
    padding-left: 20px;
  }
}
.list-type-decimal > li::before {
  counter-increment: list-decimal;
  content: counter(list-decimal) ".";
}

/* 3. 커스텀 디자인 기호 (Image/Icon)
   * 디자이너가 만든 특수 아이콘(체크, 화살표 등)을 넣을 때 사용 --------------- 
   선 두께 (SCSS 변수: 컴파일 시 SVG 코드 내부에 주입됨)*/
/* 3. 커스텀 디자인 기호 (Image/Icon) */
.list-type-custom {
  --icon-color: #0C6FB8;
}
.list-type-custom > li {
  position: relative;
}
.list-type-custom > li {
  padding-left: 4.6875vw;
}
@media (min-width: 641px) {
  .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: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  --chk-sw: 6;
  /* ---------------------------------------------------------
   * [핵심] SVG 마스크 기법
   * - 배경색(background-color)이 아이콘의 색상이 됩니다.
   * - 마스크 이미지(mask-image)가 아이콘의 모양이 됩니다.
   * --------------------------------------------------------- */
  background-color: var(--icon-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M10.9688 24.0843L21.5649 33.0843L38.3973 15.9414' stroke='black' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none'%3E%3Cpath d='M10.9688 24.0843L21.5649 33.0843L38.3973 15.9414' stroke='black' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%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;
}
.list-type-custom > li::before {
  width: 2.8125vw;
}
@media (min-width: 641px) {
  .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: 2.8125vw;
}
@media (min-width: 641px) {
  .list-type-custom > li::before {
    height: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .list-type-custom > li::before {
    height: 12px;
  }
}
.list-type-custom:hover {
  --icon-color: #ff0000;
}

/* =================================================================
   Box / Card 스타일
   1. 기본 카드형 (제목 + 내용)
    <div class="box-card">
        <div class="box-header">
            <h3 class="box-title">프로젝트 공지</h3>
            <span class="text-13 text-gray">2024.12.22</span>
        </div>
        <div class="box-body">
            이번 프로젝트의 3배수 스케일링 규칙이 적용된 박스 디자인입니다.<br>
            모바일에서는 패딩이 72px로, PC에서는 24px로 보입니다.
        </div>
    </div> 
    2. 라인형 (심플한 정보)  
    <div class="box-line d-flex items-center justify-between">
        <div>
            <strong class="d-block text-16 mb-5">이메일 수신 동의</strong>
            <span class="text-14 text-sub">중요한 소식을 메일로 받습니다.</span>
        </div>
        <button type="button" class="btn-sm">설정</button>
    </div>
    3. 배경형 (알림 박스) + 유틸리티 조합
    <div class="box-bg d-flex items-center">
        <span class="mr-10">*</span>
        <div class="box-body">
            <p class="m-0 text-15">
                <strong>[필독]</strong> 서비스 점검 안내 (12/25 00:00 ~ 06:00)
            </p>
        </div>
    </div>
 ================================================================= */
/* 1. 박스 공통 베이스 ---------------------------- */
.box-row {
  background: #F8F8F8;
  width: 100%;
}
.box-row {
  padding: 6.25vw;
}
@media (min-width: 641px) {
  .box-row {
    padding: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .box-row {
    padding: 27px;
  }
}
.box-row {
  border-radius: 6.25vw;
}
@media (min-width: 641px) {
  .box-row {
    border-radius: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .box-row {
    border-radius: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .box-row {
    padding: 40px;
    border-radius: 40px;
  }
}
.box-row.title-type {
  border-radius: 2.8125vw;
}
@media (min-width: 641px) {
  .box-row.title-type {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .box-row.title-type {
    border-radius: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .box-row.title-type {
    border-radius: 16px;
  }
}

.box-base, .box-bg, .box-line, .box-card {
  display: block;
  width: 100%;
  position: relative;
  background-color: #ffffff;
}
.box-base, .box-bg, .box-line, .box-card {
  padding: 5.625vw;
}
@media (min-width: 641px) {
  .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: 2.8125vw;
}
@media (min-width: 641px) {
  .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: 32px 48px;
    border-radius: 16px;
  }
}

/* 2. 박스 타입 (Type Modifiers) ---------------------------- */
/* (A) 카드형: 그림자 (가장 기본) */
.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);
}

/* (B) 라인형: 테두리만 있음 */
.box-line {
  border: 1px solid #e5e5e5;
  box-shadow: none;
}

/* (C) 배경형: 회색 박스 (공지사항 등) */
.box-bg {
  background-color: #f8f9fa;
  border: none;
}

/* 3. 박스 내부 구조 (Header + Body + Footer) ---------------------------- */
.box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box-header {
  margin-bottom: 3.75vw;
}
@media (min-width: 641px) {
  .box-header {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .box-header {
    margin-bottom: 16px;
  }
}
.box-header {
  min-height: 5.625vw;
}
@media (min-width: 641px) {
  .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;
}
.box-header .box-title {
  font-size: 4.2188vw;
}
@media (min-width: 641px) {
  .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;
}
.box-body {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .box-body {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .box-body {
    font-size: 16px;
  }
}

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

/* =================================================================
   [Component] Title Area
   * 타이틀, 서브텍스트, 아이콘, 버튼 등을 감싸는 컨테이너

   1.기본형 (타이틀 + 서브카피)
    <div class="tit-area">
        <h2 class="tit text-24">프로젝트 소개</h2>
        <p class="desc">
            이번 프로젝트는 모바일 우선주의와 3배수 스케일링 규칙을 준수하여<br>
            제작된 반응형 웹사이트입니다.
        </p>
    </div>

    2. 아이콘 결합형 (앞에 아이콘)
    <div class="tit-area mb-40">
        <h3 class="tit text-20">
            <span class="icon" style="width: 24px; height: 24px; background-image: url('star.svg');"></span>
            <span>주요 특징</span>
        </h3>
        <p class="desc">아이콘과 텍스트의 간격은 자동으로 처리됩니다.</p>
    </div> 

    3. 가운데 정렬형 (섹션 메인 타이틀)
    <div class="tit-area type-center mb-60">
        <span class="text-14 text-main font-bold mb-10">OUR SERVICE</span>
        <h2 class="tit text-32">제공하는 서비스</h2>
        <p class="desc">
            최고의 기술력으로 고객의 성공을 돕습니다.
        </p>
    </div> 

    4. 좌우 배치형 (타이틀 + 더보기)
    <div class="tit-area type-row type-underline">
        <h3 class="tit text-20">공지사항</h3>

        <a href="#" class="desc text-14 text-gray hover-underline">
            더보기 +
        </a>
    </div>
   ================================================================= */
.tit-area {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.tit-area {
  margin-bottom: 7.0313vw;
}
@media (min-width: 641px) {
  .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;
}
.tit-area .tit {
  gap: 1.875vw;
}
@media (min-width: 641px) {
  .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;
}
.tit-area .desc {
  margin-top: 2.3438vw;
}
@media (min-width: 641px) {
  .tit-area .desc {
    margin-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .tit-area .desc {
    margin-top: 10px;
  }
}
.tit-area .desc {
  font-size: 3.2813vw;
}
@media (min-width: 641px) {
  .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 {
  /* (A) 가운데 정렬형 */
}
.tit-area.type-center {
  align-items: center;
  text-align: center;
}
.tit-area.type-center .tit {
  justify-content: center;
}
.tit-area {
  /* (B) 가로 배치형 (타이틀 + 우측 더보기 버튼) */
}
.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 {
  /* (C) 밑줄형 (섹션 구분용) */
}
.tit-area.type-underline {
  border-bottom: 2px solid #000;
}
.tit-area.type-underline {
  padding-bottom: 3.5156vw;
}
@media (min-width: 641px) {
  .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;
  }
}

/*모션*/
.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-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s, transform 0.7s;
}
.motion-left.active {
  opacity: 1;
  transform: translateX(0);
}

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

.noto-serif {
  font-family: "Noto Serif KR", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.container {
  padding-top: 15.625vw;
}
@media (min-width: 641px) {
  .container {
    padding-top: 4.1667rem;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-top: 67px;
  }
}
.container:has(.sub-visual) {
  padding-top: 0;
}
.container:has(.sub-visual-big) {
  padding-top: 0;
}
@media screen and (min-width: 1200px) {
  .container {
    padding-top: 100px;
  }
  .container:has(.sub-visual) {
    padding-top: 0;
  }
  .container:has(.sub-visual-big) {
    padding-top: 0;
  }
}

section.section .section-inner {
  width: 87.5%;
  margin: auto;
}
section.section .section-inner {
  padding: 18.75vw 0;
}
@media (min-width: 641px) {
  section.section .section-inner {
    padding: 5rem 0;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner {
    width: 100%;
    max-width: 1440px;
    padding: 160px 0;
  }
}
section.section .section-inner.full {
  width: 100%;
  max-width: 100%;
}
section.section .section-inner .title-row h2 {
  color: #0C6FB8;
  font-weight: 600;
}
section.section .section-inner .title-row h2 {
  font-size: 4.6875vw;
}
@media (min-width: 641px) {
  section.section .section-inner .title-row h2 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .title-row h2 {
    font-size: 20px;
  }
}
section.section .section-inner .title-row h2 {
  margin-bottom: 3.75vw;
}
@media (min-width: 641px) {
  section.section .section-inner .title-row h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .title-row h2 {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .title-row h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
section.section .section-inner .title-row h3 {
  font-weight: 600;
}
section.section .section-inner .title-row h3 {
  margin-bottom: 7.8125vw;
}
@media (min-width: 641px) {
  section.section .section-inner .title-row h3 {
    margin-bottom: 2.0833rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .title-row h3 {
    margin-bottom: 33px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .title-row h3 {
    margin-bottom: 48px;
  }
}
section.section .section-inner .title-row p {
  color: #616161;
  font-weight: 500;
  letter-spacing: -0.52px;
}
section.section .section-inner .title-row p {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  section.section .section-inner .title-row p {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner .title-row p {
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner .title-row p {
    font-size: 20px;
  }
}
section.section .section-inner.banner {
  padding: 0;
}
section.section .section-inner.top-nomargin {
  padding-top: 18.75vw;
}
@media (min-width: 641px) {
  section.section .section-inner.top-nomargin {
    padding-top: 5rem;
  }
}
@media (min-width: 1200px) {
  section.section .section-inner.top-nomargin {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  section.section .section-inner.top-nomargin {
    padding-top: 120px;
  }
}
section.sub-empty {
  border-bottom: 1px solid #DEDEDE;
}
section.sub-empty .section-inner {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  overflow: hidden;
}
section.sub-empty .section-inner {
  min-height: 70.9375vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner {
    min-height: 18.9167rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner {
    min-height: 303px;
  }
}
section.sub-empty .section-inner {
  padding: 18.75vw 6.25vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner {
    padding: 5rem 1.6667rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner {
    padding: 80px 27px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-empty .section-inner {
    padding: 100px 0;
    min-height: 364px;
  }
}
section.sub-empty .section-inner > h2 {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  line-height: 1.5;
  padding: 0.1em 0;
  color: #0C6FB8;
  font-weight: 600;
}
section.sub-empty .section-inner > h2 {
  font-size: 4.6875vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner > h2 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner > h2 {
    font-size: 20px;
  }
}
section.sub-empty .section-inner > h2 {
  margin-bottom: 3.75vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner > h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner > h2 {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-empty .section-inner > h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
section.sub-empty .section-inner > h3 {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  line-height: 1.5;
  padding: 0.1em 0;
  font-weight: 600;
}
section.sub-empty .section-inner > h3 {
  font-size: 6.875vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner > h3 {
    font-size: 1.8333rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner > h3 {
    font-size: 29px;
  }
}
section.sub-empty .section-inner > h3 {
  margin-bottom: 7.8125vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner > h3 {
    margin-bottom: 2.0833rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner > h3 {
    margin-bottom: 33px;
  }
}
section.sub-empty .section-inner > h3:before, section.sub-empty .section-inner > h3:after {
  display: none;
}
@media screen and (min-width: 1200px) {
  section.sub-empty .section-inner > h3 {
    margin-bottom: 48px;
    font-size: 48px;
  }
}
section.sub-empty .section-inner > p {
  color: #616161;
  font-weight: 500;
  letter-spacing: -0.52px;
}
section.sub-empty .section-inner > p {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner > p {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner > p {
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-empty .section-inner > p {
    font-size: 20px;
  }
}
section.sub-empty .section-inner .btn-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.sub-empty .section-inner .btn-row {
  gap: 3.125vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row {
    gap: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row {
    gap: 13px;
  }
}
section.sub-empty .section-inner .btn-row {
  padding-top: 9.375vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row {
    position: absolute;
    right: 0;
    bottom: 100px;
    width: auto;
    padding-top: 0;
  }
}
section.sub-empty .section-inner .btn-row a {
  font-weight: 600;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.sub-empty .section-inner .btn-row a {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row a {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row a {
    font-size: 16px;
  }
}
section.sub-empty .section-inner .btn-row a {
  gap: 1.4063vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row a {
    gap: 0.375rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row a {
    gap: 6px;
  }
}
section.sub-empty .section-inner .btn-row a {
  width: 35.9375vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row a {
    width: 9.5833rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row a {
    width: 153px;
  }
}
section.sub-empty .section-inner .btn-row a {
  height: 10vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row a {
    height: 2.6667rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row a {
    height: 43px;
  }
}
section.sub-empty .section-inner .btn-row a {
  border-radius: 10vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row a {
    border-radius: 2.6667rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row a {
    border-radius: 43px;
  }
}
section.sub-empty .section-inner .btn-row a.naver {
  background: #03AA5A;
}
section.sub-empty .section-inner .btn-row a.naver .icon-svg {
  width: 2.9688vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row a.naver .icon-svg {
    width: 0.7917rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row a.naver .icon-svg {
    width: 13px;
  }
}
section.sub-empty .section-inner .btn-row a.naver .icon-svg {
  height: 2.9688vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row a.naver .icon-svg {
    height: 0.7917rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row a.naver .icon-svg {
    height: 13px;
  }
}
section.sub-empty .section-inner .btn-row a.naver .icon-svg .icon-naver {
  color: #ffffff;
  width: 100%;
  height: 100%;
}
section.sub-empty .section-inner .btn-row a.kakao {
  color: #000000;
  background: #FFEC00;
}
section.sub-empty .section-inner .btn-row a.kakao .icon-svg {
  width: 2.9688vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row a.kakao .icon-svg {
    width: 0.7917rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row a.kakao .icon-svg {
    width: 13px;
  }
}
section.sub-empty .section-inner .btn-row a.kakao .icon-svg {
  height: 2.9688vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .btn-row a.kakao .icon-svg {
    height: 0.7917rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .btn-row a.kakao .icon-svg {
    height: 13px;
  }
}
section.sub-empty .section-inner .btn-row a.kakao .icon-svg .icon-kakao-msgbox {
  color: #000000;
  width: 100%;
  height: 100%;
}
section.sub-empty .section-inner .breadcrumbs {
  position: absolute;
}
section.sub-empty .section-inner .breadcrumbs {
  bottom: 12.5vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .breadcrumbs {
    bottom: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs {
    bottom: 53px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs {
    bottom: 64px;
    right: 0;
  }
}
section.sub-empty .section-inner .breadcrumbs ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.sub-empty .section-inner .breadcrumbs ul {
  gap: 7.5vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .breadcrumbs ul {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul {
    gap: 32px;
  }
}
section.sub-empty .section-inner .breadcrumbs ul li {
  position: relative;
}
section.sub-empty .section-inner .breadcrumbs ul li:before {
  content: "";
  position: absolute;
  width: 1px;
  opacity: 0.4;
  top: 50%;
  background: #616161;
  transform: translateY(-50%);
}
section.sub-empty .section-inner .breadcrumbs ul li:before {
  height: 2.8125vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .breadcrumbs ul li:before {
    height: 0.75rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul li:before {
    height: 12px;
  }
}
section.sub-empty .section-inner .breadcrumbs ul li:before {
  right: -3.75vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .breadcrumbs ul li:before {
    right: -1rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul li:before {
    right: -16px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul li:before {
    font-size: 12px;
  }
}
section.sub-empty .section-inner .breadcrumbs ul li.home a .icon-svg {
  width: 3.75vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .breadcrumbs ul li.home a .icon-svg {
    width: 1rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul li.home a .icon-svg {
    width: 16px;
  }
}
section.sub-empty .section-inner .breadcrumbs ul li.home a .icon-svg {
  height: 3.75vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .breadcrumbs ul li.home a .icon-svg {
    height: 1rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul li.home a .icon-svg {
    height: 16px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul li.home a .icon-svg {
    width: 16px;
    height: 16px;
  }
}
section.sub-empty .section-inner .breadcrumbs ul li.link a {
  color: #C4C4C4;
  font-weight: 500;
}
section.sub-empty .section-inner .breadcrumbs ul li.link a {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .breadcrumbs ul li.link a {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul li.link a {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul li.link a {
    font-size: 16px;
  }
}
section.sub-empty .section-inner .breadcrumbs ul li.this-page a {
  color: #616161;
  font-weight: 500;
}
section.sub-empty .section-inner .breadcrumbs ul li.this-page a {
  font-size: 3.5938vw;
}
@media (min-width: 641px) {
  section.sub-empty .section-inner .breadcrumbs ul li.this-page a {
    font-size: 0.9583rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul li.this-page a {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-empty .section-inner .breadcrumbs ul li.this-page a {
    font-size: 16px;
  }
}
section.sub-empty .section-inner .breadcrumbs ul li:last-child:before {
  display: none;
}
section.sub-empty.small .section-inner h3 {
  margin-bottom: 0;
}
section.sub-empty.small .section-inner {
  height: 52.8125vw;
}
@media (min-width: 641px) {
  section.sub-empty.small .section-inner {
    height: 14.0833rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty.small .section-inner {
    height: 225px;
  }
}
section.sub-empty.small .section-inner {
  min-height: 52.8125vw;
}
@media (min-width: 641px) {
  section.sub-empty.small .section-inner {
    min-height: 14.0833rem;
  }
}
@media (min-width: 1200px) {
  section.sub-empty.small .section-inner {
    min-height: 225px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-empty.small .section-inner {
    height: 296px;
    min-height: 296px;
  }
}
section.sub-visual .section-inner, section.sub-visual-big .section-inner {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.sub-visual .section-inner, section.sub-visual-big .section-inner {
  height: 87.5vw;
}
@media (min-width: 641px) {
  section.sub-visual .section-inner, section.sub-visual-big .section-inner {
    height: 23.3333rem;
  }
}
@media (min-width: 1200px) {
  section.sub-visual .section-inner, section.sub-visual-big .section-inner {
    height: 373px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-visual .section-inner, section.sub-visual-big .section-inner {
    height: 480px;
  }
}
section.sub-visual .section-inner h3, section.sub-visual-big .section-inner h3 {
  width: 100%;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.sub-visual .section-inner h3, section.sub-visual-big .section-inner h3 {
  padding-top: 2.3438vw;
}
@media (min-width: 641px) {
  section.sub-visual .section-inner h3, section.sub-visual-big .section-inner h3 {
    padding-top: 0.625rem;
  }
}
@media (min-width: 1200px) {
  section.sub-visual .section-inner h3, section.sub-visual-big .section-inner h3 {
    padding-top: 10px;
  }
}
section.sub-visual .section-inner h3, section.sub-visual-big .section-inner h3 {
  font-size: 5.4688vw;
}
@media (min-width: 641px) {
  section.sub-visual .section-inner h3, section.sub-visual-big .section-inner h3 {
    font-size: 1.4583rem;
  }
}
@media (min-width: 1200px) {
  section.sub-visual .section-inner h3, section.sub-visual-big .section-inner h3 {
    font-size: 23px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-visual .section-inner h3, section.sub-visual-big .section-inner h3 {
    font-size: 40px;
    padding-top: 20px;
  }
}
section.sub-visual-big .section-inner {
  height: 182.8125vw;
}
@media (min-width: 641px) {
  section.sub-visual-big .section-inner {
    height: 48.75rem;
  }
}
@media (min-width: 1200px) {
  section.sub-visual-big .section-inner {
    height: 780px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-visual-big .section-inner {
    height: 800px;
  }
}
section.sub-title .section-inner {
  width: 100%;
  max-width: 480px;
  margin: auto;
  text-align: center;
}
section.sub-title .section-inner {
  padding-top: 18.75vw;
}
@media (min-width: 641px) {
  section.sub-title .section-inner {
    padding-top: 5rem;
  }
}
@media (min-width: 1200px) {
  section.sub-title .section-inner {
    padding-top: 80px;
  }
}
section.sub-title .section-inner {
  padding-bottom: 15.625vw;
}
@media (min-width: 641px) {
  section.sub-title .section-inner {
    padding-bottom: 4.1667rem;
  }
}
@media (min-width: 1200px) {
  section.sub-title .section-inner {
    padding-bottom: 67px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-title .section-inner {
    padding-top: 140px;
    padding-bottom: 64px;
  }
}
section.sub-title .section-inner h2 + p {
  font-weight: 500;
  color: #2B2B2B;
}
section.sub-title .section-inner h2 + p {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  section.sub-title .section-inner h2 + p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  section.sub-title .section-inner h2 + p {
    font-size: 16px;
  }
}
section.sub-title .section-inner h2 + p {
  margin-top: 12.5vw;
}
@media (min-width: 641px) {
  section.sub-title .section-inner h2 + p {
    margin-top: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  section.sub-title .section-inner h2 + p {
    margin-top: 53px;
  }
}
@media screen and (min-width: 1200px) {
  section.sub-title .section-inner h2 + p {
    font-size: 18px;
    margin-top: 64px;
  }
}
section.sub-title .section-inner p strong {
  font-weight: 700;
  color: #AE8766;
}
section.sub-title .section-inner.left {
  width: 87.5%;
  max-width: 100%;
  text-align: left;
}
@media screen and (min-width: 1200px) {
  section.sub-title .section-inner.left {
    width: 100%;
    max-width: 1440px;
  }
}
section.log .section-inner, section.reg .section-inner {
  width: 100%;
  max-width: 480px;
  margin: auto;
}
section.log .section-inner, section.reg .section-inner {
  padding: 0vw 6.25%;
}
@media (min-width: 641px) {
  section.log .section-inner, section.reg .section-inner {
    padding: 0rem 6.25%;
  }
}
@media (min-width: 1200px) {
  section.log .section-inner, section.reg .section-inner {
    padding: 0px 6.25%;
  }
}
@media screen and (min-width: 480px) {
  section.log .section-inner, section.reg .section-inner {
    padding: 0;
  }
}
section.myp .section-inner {
  max-width: 1440px;
  padding: 0;
}

.text-anmimation {
  width: 100%;
  overflow: hidden;
  opacity: 0.2;
  white-space: nowrap;
  position: relative;
  display: flex;
}
.text-anmimation {
  padding: 3.9063vw 0vw;
}
@media (min-width: 641px) {
  .text-anmimation {
    padding: 1.0417rem 0rem;
  }
}
@media (min-width: 1200px) {
  .text-anmimation {
    padding: 17px 0px;
  }
}
@media screen and (min-width: 1200px) {
  .text-anmimation {
    padding: 25px 0;
  }
}
.text-anmimation .marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  /* 너비는 내부 콘텐츠에 맞춰 자동으로 늘어남 */
  width: -moz-max-content;
  width: max-content;
}
.text-anmimation p {
  display: inline-block;
  will-change: transform;
  color: #616161;
  font-family: "Belleza", sans-serif;
  font-weight: 400;
  line-height: 100%;
  margin: 0;
}
.text-anmimation p {
  padding-bottom: 1.5625vw;
}
@media (min-width: 641px) {
  .text-anmimation p {
    padding-bottom: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .text-anmimation p {
    padding-bottom: 7px;
  }
}
.text-anmimation p {
  font-size: 13.125vw;
}
@media (min-width: 641px) {
  .text-anmimation p {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .text-anmimation p {
    font-size: 56px;
  }
}
.text-anmimation p {
  padding-right: 18.75vw;
}
@media (min-width: 641px) {
  .text-anmimation p {
    padding-right: 5rem;
  }
}
@media (min-width: 1200px) {
  .text-anmimation p {
    padding-right: 80px;
  }
}
.text-anmimation p.active {
  animation: marqueeMove 30s linear forwards;
}
@media screen and (min-width: 1200px) {
  .text-anmimation p {
    font-size: 84px;
  }
}

@keyframes infinite-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); /* 정확히 절반(텍스트 1개 분량)만큼 이동 */
  }
}
.step-row {
  width: 100%;
}
.step-row ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-row ul li {
  position: relative;
  width: 33.3333333333%;
  color: rgba(174, 135, 102, 0.5);
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.step-row ul li {
  height: 12.0313vw;
}
@media (min-width: 641px) {
  .step-row ul li {
    height: 3.2083rem;
  }
}
@media (min-width: 1200px) {
  .step-row ul li {
    height: 51px;
  }
}
.step-row ul li {
  padding-left: 3.125vw;
}
@media (min-width: 641px) {
  .step-row ul li {
    padding-left: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .step-row ul li {
    padding-left: 13px;
  }
}
.step-row ul li {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .step-row ul li {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .step-row ul li {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .step-row ul li {
    font-size: 18px;
    height: 58px;
    padding-left: 20px;
  }
}
.step-row ul li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: rgba(174, 135, 102, 0.5);
}
.step-row ul li.active {
  color: #ae8766;
}
.step-row ul li.active:before {
  height: 2px;
  background: #ae8766;
}

.content-title {
  color: #2B2B2B;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.content-title {
  height: 17.5vw;
}
@media (min-width: 641px) {
  .content-title {
    height: 4.6667rem;
  }
}
@media (min-width: 1200px) {
  .content-title {
    height: 75px;
  }
}
.content-title {
  font-size: 5vw;
}
@media (min-width: 641px) {
  .content-title {
    font-size: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  .content-title {
    font-size: 21px;
  }
}
.content-title {
  padding-left: 6.25vw;
}
@media (min-width: 641px) {
  .content-title {
    padding-left: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .content-title {
    padding-left: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .content-title {
    font-size: 28px;
    height: 100px;
    padding-left: 48px;
    letter-spacing: -0.28px;
  }
}

/* 모달팝업 */
#register_modal .register-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#register_modal .register-info {
  gap: 3.75vw;
}
@media (min-width: 641px) {
  #register_modal .register-info {
    gap: 1rem;
  }
}
@media (min-width: 1200px) {
  #register_modal .register-info {
    gap: 16px;
  }
}
#register_modal .register-info {
  margin-bottom: 12.5vw;
}
@media (min-width: 641px) {
  #register_modal .register-info {
    margin-bottom: 3.3333rem;
  }
}
@media (min-width: 1200px) {
  #register_modal .register-info {
    margin-bottom: 53px;
  }
}
#register_modal .register-info strong {
  color: #2B2B2B;
  font-weight: 600;
}
#register_modal .register-info strong {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  #register_modal .register-info strong {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  #register_modal .register-info strong {
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  #register_modal .register-info strong {
    font-size: 20px;
  }
}
#register_modal .register-info p {
  color: #2B2B2B;
  font-weight: 500;
}
#register_modal .register-info p {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  #register_modal .register-info p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  #register_modal .register-info p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  #register_modal .register-info p {
    font-size: 18px;
  }
}
#register_modal .box-row {
  overflow-y: overlay;
}
#register_modal .box-row {
  height: 42.9688vw;
}
@media (min-width: 641px) {
  #register_modal .box-row {
    height: 11.4583rem;
  }
}
@media (min-width: 1200px) {
  #register_modal .box-row {
    height: 183px;
  }
}
#register_modal .box-row {
  margin-bottom: 7.0313vw;
}
@media (min-width: 641px) {
  #register_modal .box-row {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  #register_modal .box-row {
    margin-bottom: 30px;
  }
}
#register_modal .box-row::-webkit-scrollbar {
  width: 8px;
}
#register_modal .box-row::-webkit-scrollbar-button:start:decrement, #register_modal .box-row::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 12px;
  background-color: transparent;
}
#register_modal .box-row::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
#register_modal .box-row::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
}
#register_modal .box-row h2 {
  font-size: 5vw;
}
@media (min-width: 641px) {
  #register_modal .box-row h2 {
    font-size: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  #register_modal .box-row h2 {
    font-size: 21px;
  }
}
#register_modal .check-box {
  width: 100%;
}
#register_modal .check-box {
  padding-left: 2.8125vw;
}
@media (min-width: 641px) {
  #register_modal .check-box {
    padding-left: 0.75rem;
  }
}
@media (min-width: 1200px) {
  #register_modal .check-box {
    padding-left: 12px;
  }
}
#register_modal #btn-register {
  width: 40.625vw;
}
@media (min-width: 641px) {
  #register_modal #btn-register {
    width: 10.8333rem;
  }
}
@media (min-width: 1200px) {
  #register_modal #btn-register {
    width: 173px;
  }
}
@media screen and (min-width: 1200px) {
  #register_modal #btn-register {
    width: 220px;
  }
}

#reservation-modal .doctor-row .doctor-group {
  margin-bottom: 7.8125vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group {
    margin-bottom: 2.0833rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group {
    margin-bottom: 33px;
  }
}
@media screen and (min-width: 710px) {
  #reservation-modal .doctor-row .doctor-group {
    margin-bottom: 60px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#reservation-modal .doctor-row .doctor-group .doctor-info {
  gap: 3.75vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info {
    gap: 1rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info {
    gap: 16px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info {
  margin-bottom: 4.375vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info {
    margin-bottom: 1.1667rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info {
    margin-bottom: 19px;
  }
}
@media screen and (min-width: 710px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info {
    gap: 24px;
    margin-bottom: 28px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
  overflow: hidden;
}
#reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
  width: 31.25vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
    width: 8.3333rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
    width: 133px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
  height: 31.25vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
    height: 8.3333rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
    height: 133px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
  border-radius: 2.8125vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
    border-radius: 12px;
  }
}
@media screen and (min-width: 710px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box {
    width: 160px;
    height: 160px;
    border-radius: 16px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info .thumb-box img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#reservation-modal .doctor-row .doctor-group .doctor-info .info-box {
  width: 40vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box {
    width: 10.6667rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box {
    width: 171px;
  }
}
@media screen and (min-width: 710px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box {
    width: 427px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info .info-box .hospital-badge {
  margin-bottom: 4.375vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .hospital-badge {
    margin-bottom: 1.1667rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .hospital-badge {
    margin-bottom: 19px;
  }
}
@media screen and (min-width: 710px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .hospital-badge {
    margin-bottom: 24px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info .info-box .name {
  display: block;
  color: #2B2B2B;
  font-weight: 700;
  line-height: 100%;
}
#reservation-modal .doctor-row .doctor-group .doctor-info .info-box .name {
  font-size: 4.6875vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .name {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .name {
    font-size: 20px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info .info-box .name {
  margin-bottom: 2.5vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .name {
    margin-bottom: 0.6667rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .name {
    margin-bottom: 11px;
  }
}
@media screen and (min-width: 710px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .name {
    font-size: 24px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info .info-box .tag-row {
  flex-flow: wrap;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#reservation-modal .doctor-row .doctor-group .doctor-info .info-box .tag-row {
  gap: 1.25vw 1.875vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .tag-row {
    gap: 0.3333rem 0.5rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .tag-row {
    gap: 5px 8px;
  }
}
@media screen and (min-width: 710px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .tag-row {
    gap: 8px 12px;
  }
}
#reservation-modal .doctor-row .doctor-group .doctor-info .info-box .tag-row span {
  white-space: nowrap;
  color: #9F9F9F;
  font-weight: 500;
  letter-spacing: -0.48px;
  line-height: 100%;
}
#reservation-modal .doctor-row .doctor-group .doctor-info .info-box .tag-row span {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .tag-row span {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .tag-row span {
    font-size: 16px;
  }
}
@media screen and (min-width: 710px) {
  #reservation-modal .doctor-row .doctor-group .doctor-info .info-box .tag-row span {
    font-size: 18px;
  }
}
#reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic {
  min-width: 100%;
  border-top: 1px solid #9F9F9F;
}
#reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic thead th {
  border-left: none;
  color: #616161;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.48px;
}
#reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic thead th {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic thead th {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic thead th {
    font-size: 16px;
  }
}
@media screen and (min-width: 710px) {
  #reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic thead th {
    font-size: 18px;
  }
}
#reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic tbody td {
  border-left: none;
  vertical-align: middle;
  color: #2B2B2B;
  text-align: center;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.48px;
}
#reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic tbody td {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  #reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic tbody td {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  #reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic tbody td {
    font-size: 16px;
  }
}
@media screen and (min-width: 710px) {
  #reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic tbody td {
    font-size: 18px;
  }
}
#reservation-modal .doctor-row .doctor-group .weekly-schedule .tbl-basic tbody td.closed {
  color: #9F9F9F;
}

#alumni-modal img {
  max-width: 100%;
}
#alumni-modal .modal-body {
  padding: 0;
}
#alumni-modal .doctor-row {
  padding: 9.375vw;
}
@media (min-width: 641px) {
  #alumni-modal .doctor-row {
    padding: 2.5rem;
  }
}
@media (min-width: 1200px) {
  #alumni-modal .doctor-row {
    padding: 40px;
  }
}
@media screen and (min-width: 720px) {
  #alumni-modal .doctor-row {
    padding: 48px;
  }
}
#alumni-modal .doctor-row .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#alumni-modal .doctor-row .item .thumb-box {
  width: 37.5vw;
}
@media (min-width: 641px) {
  #alumni-modal .doctor-row .item .thumb-box {
    width: 10rem;
  }
}
@media (min-width: 1200px) {
  #alumni-modal .doctor-row .item .thumb-box {
    width: 160px;
  }
}
#alumni-modal .doctor-row .item .thumb-box {
  border-radius: 2.8125vw;
}
@media (min-width: 641px) {
  #alumni-modal .doctor-row .item .thumb-box {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  #alumni-modal .doctor-row .item .thumb-box {
    border-radius: 12px;
  }
}
#alumni-modal .doctor-row .item .thumb-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#alumni-modal .doctor-row .item .info-box {
  padding-left: 4.0625vw;
}
@media (min-width: 641px) {
  #alumni-modal .doctor-row .item .info-box {
    padding-left: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  #alumni-modal .doctor-row .item .info-box {
    padding-left: 17px;
  }
}
#alumni-modal .doctor-row .item .info-box .name {
  display: block;
  color: #000000;
  font-weight: 700;
}
#alumni-modal .doctor-row .item .info-box .name {
  margin: 4.375vw 0 2.5vw 0;
}
@media (min-width: 641px) {
  #alumni-modal .doctor-row .item .info-box .name {
    margin: 1.1667rem 0 0.6667rem 0;
  }
}
@media (min-width: 1200px) {
  #alumni-modal .doctor-row .item .info-box .name {
    margin: 19px 0 11px 0;
  }
}
#alumni-modal .doctor-row .item .info-box .name {
  font-size: 5vw;
}
@media (min-width: 641px) {
  #alumni-modal .doctor-row .item .info-box .name {
    font-size: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  #alumni-modal .doctor-row .item .info-box .name {
    font-size: 21px;
  }
}
@media screen and (min-width: 640px) {
  #alumni-modal .doctor-row .item .info-box .name {
    width: 100%;
    max-width: 18rem;
  }
}
@media screen and (min-width: 720px) {
  #alumni-modal .doctor-row .item .info-box .name {
    max-width: 266px;
    font-size: 28px;
  }
}
#alumni-modal .doctor-row .item .info-box ul li {
  color: #9F9F9F;
  font-weight: 500;
  letter-spacing: -0.48px;
}
#alumni-modal .doctor-row .item .info-box ul li {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  #alumni-modal .doctor-row .item .info-box ul li {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  #alumni-modal .doctor-row .item .info-box ul li {
    font-size: 16px;
  }
}
@media screen and (min-width: 720px) {
  #alumni-modal .doctor-row .item .info-box ul li {
    font-size: 18px;
  }
}
#alumni-modal .detail-row {
  background: url("/static/images/sub/alumni_modal_bg.jpg") no-repeat center center;
  background-size: cover;
}
#alumni-modal .detail-row {
  padding: 9.375vw;
}
@media (min-width: 641px) {
  #alumni-modal .detail-row {
    padding: 2.5rem;
  }
}
@media (min-width: 1200px) {
  #alumni-modal .detail-row {
    padding: 40px;
  }
}
@media screen and (min-width: 720px) {
  #alumni-modal .detail-row {
    padding: 48px;
  }
}
#alumni-modal .detail-row p {
  font-size: 16px;
}
#alumni-modal .detail-row img {
  max-width: 100%;
  margin: 20px auto;
}

#terms_modal .modal-body .policy-row, #policy_modal .modal-body .policy-row, #third_party_modal .modal-body .policy-row {
  padding: 0 !important;
  background: #ffffff;
}

#main-modal .modal-layer {
  border-radius: 0;
  box-shadow: none;
}
#main-modal .modal-layer .modal-header, #main-modal .modal-layer .modal-body {
  background: transparent;
  border: none;
  padding: 0;
}
#main-modal .modal-layer .modal-header {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#main-modal .modal-layer .modal-header {
  height: 8.4375vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-header {
    height: 2.25rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-header {
    height: 36px;
  }
}
#main-modal .modal-layer .modal-header {
  margin-bottom: 2.5vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-header {
    margin-bottom: 0.6667rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-header {
    margin-bottom: 11px;
  }
}
#main-modal .modal-layer .modal-header {
  width: 65.625vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-header {
    width: 17.5rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-header {
    width: 280px;
  }
}
@media screen and (min-width: 1200px) {
  #main-modal .modal-layer .modal-header {
    width: 520px;
  }
}
#main-modal .modal-layer .modal-header button {
  position: relative;
  top: unset;
  left: auto;
  right: unset;
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main-modal .modal-layer .modal-header button {
  gap: 1.875vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-header button {
    gap: 0.5rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-header button {
    gap: 8px;
  }
}
#main-modal .modal-layer .modal-header button span {
  font-weight: 500;
  color: #ffffff;
}
#main-modal .modal-layer .modal-header button span {
  font-size: 4.6875vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-header button span {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-header button span {
    font-size: 20px;
  }
}
#main-modal .modal-layer .modal-header button .icon-svg {
  width: 8.4375vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-header button .icon-svg {
    width: 2.25rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-header button .icon-svg {
    width: 36px;
  }
}
#main-modal .modal-layer .modal-header button .icon-svg {
  height: 8.4375vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-header button .icon-svg {
    height: 2.25rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-header button .icon-svg {
    height: 36px;
  }
}
#main-modal .modal-layer .modal-header button .icon-svg {
  color: #ffffff;
}
#main-modal .modal-layer .modal-header a {
  opacity: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main-modal .modal-layer .modal-header a span {
  font-weight: 500;
  color: #ffffff;
}
#main-modal .modal-layer .modal-header a span {
  font-size: 4.6875vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-header a span {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-header a span {
    font-size: 20px;
  }
}
#main-modal .modal-layer .modal-header a .icon-svg {
  width: 8.4375vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-header a .icon-svg {
    width: 2.25rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-header a .icon-svg {
    width: 36px;
  }
}
#main-modal .modal-layer .modal-header a .icon-svg {
  height: 8.4375vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-header a .icon-svg {
    height: 2.25rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-header a .icon-svg {
    height: 36px;
  }
}
#main-modal .modal-layer .modal-header a .icon-svg {
  color: #ffffff;
}
#main-modal .modal-layer .modal-header a .icon-svg svg {
  color: #ffffff;
}
#main-modal .modal-layer .modal-body {
  padding-bottom: 15.625vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body {
    padding-bottom: 4.1667rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body {
    padding-bottom: 67px;
  }
}
#main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper {
  margin: auto;
}
#main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper {
  border-radius: 6.25vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper {
    border-radius: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper {
    border-radius: 27px;
  }
}
#main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper {
  width: 65.625vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper {
    width: 17.5rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper {
    width: 280px;
  }
}
@media screen and (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper {
    width: 520px;
  }
}
#main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper a {
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper a {
  border-radius: 6.25vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper a {
    border-radius: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper a {
    border-radius: 27px;
  }
}
#main-modal .modal-layer .modal-body .slide-row .mainpopup-swiper a img {
  width: 100%;
}
#main-modal .modal-layer .modal-body .slide-row .swiper-button-next:after, #main-modal .modal-layer .modal-body .slide-row .swiper-button-prev:after {
  color: #ffffff;
}
#main-modal .modal-layer .modal-body .slide-row .swiper-button-next:after, #main-modal .modal-layer .modal-body .slide-row .swiper-button-prev:after {
  font-size: 7.8125vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-button-next:after, #main-modal .modal-layer .modal-body .slide-row .swiper-button-prev:after {
    font-size: 2.0833rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-button-next:after, #main-modal .modal-layer .modal-body .slide-row .swiper-button-prev:after {
    font-size: 33px;
  }
}
@media screen and (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-button-next:after, #main-modal .modal-layer .modal-body .slide-row .swiper-button-prev:after {
    font-size: 56px;
  }
}
@media screen and (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-button-next {
    right: 70px;
  }
}
@media screen and (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-button-prev {
    left: 70px;
  }
}
#main-modal .modal-layer .modal-body .slide-row .swiper-pagination {
  position: relative;
  top: unset;
}
#main-modal .modal-layer .modal-body .slide-row .swiper-pagination {
  bottom: -3.9063vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination {
    bottom: -1.0417rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination {
    bottom: -17px;
  }
}
#main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
  display: inline-block;
  background: #DEDEDE;
  opacity: 1;
  font-size: 0;
  color: transparent;
  line-height: 0;
  transition: all 0.3s ease;
}
#main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
  width: 2.3438vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
    width: 0.625rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
    width: 10px;
  }
}
#main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
  height: 2.3438vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
    height: 0.625rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
    height: 10px;
  }
}
#main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
  border-radius: 1.1719vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
    border-radius: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
    border-radius: 5px;
  }
}
#main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
  margin: 0vw 0.9375vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
    margin: 0rem 0.25rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
    margin: 0px 4px;
  }
}
#main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet {
  /* 모바일 활성화 상태 */
}
#main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0C6FB8;
}
#main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 7.5vw;
}
@media (min-width: 641px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 2rem;
  }
}
@media (min-width: 1200px) {
  #main-modal .modal-layer .modal-body .slide-row .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 32px;
  }
}

.no-data {
  width: 100%;
  margin: auto;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
  background: #F8F8F8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.no-data {
  padding: 15.625vw 0;
}
@media (min-width: 641px) {
  .no-data {
    padding: 4.1667rem 0;
  }
}
@media (min-width: 1200px) {
  .no-data {
    padding: 67px 0;
  }
}
.no-data p {
  text-align: center;
  font-weight: 500;
  color: #616161;
}
.no-data p {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .no-data p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .no-data p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .no-data {
    width: 100%;
    max-width: 1440px;
  }
}

.banner-row .banner {
  flex-flow: wrap;
  align-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-row .banner {
  gap: 5vw;
}
@media (min-width: 641px) {
  .banner-row .banner {
    gap: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  .banner-row .banner {
    gap: 21px;
  }
}
.banner-row .banner {
  border-radius: 2.8125vw;
}
@media (min-width: 641px) {
  .banner-row .banner {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .banner-row .banner {
    border-radius: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row .banner {
    justify-content: space-between;
    flex-flow: nowrap;
    gap: 0;
  }
}
.banner-row .banner button, .banner-row .banner a {
  color: #AE8766;
  background: #ffffff;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-row .banner button, .banner-row .banner a {
  width: 33.2813vw;
}
@media (min-width: 641px) {
  .banner-row .banner button, .banner-row .banner a {
    width: 8.875rem;
  }
}
@media (min-width: 1200px) {
  .banner-row .banner button, .banner-row .banner a {
    width: 142px;
  }
}
.banner-row .banner button, .banner-row .banner a {
  height: 10vw;
}
@media (min-width: 641px) {
  .banner-row .banner button, .banner-row .banner a {
    height: 2.6667rem;
  }
}
@media (min-width: 1200px) {
  .banner-row .banner button, .banner-row .banner a {
    height: 43px;
  }
}
.banner-row .banner button, .banner-row .banner a {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .banner-row .banner button, .banner-row .banner a {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .banner-row .banner button, .banner-row .banner a {
    font-size: 16px;
  }
}
.banner-row .banner button, .banner-row .banner a {
  border-radius: 10vw;
}
@media (min-width: 641px) {
  .banner-row .banner button, .banner-row .banner a {
    border-radius: 2.6667rem;
  }
}
@media (min-width: 1200px) {
  .banner-row .banner button, .banner-row .banner a {
    border-radius: 43px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row .banner button, .banner-row .banner a {
    width: 170px;
    height: 54px;
    font-size: 18px;
    padding: 0 36px;
  }
}
.banner-row.type-1 .banner .txt-row {
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.banner-row.type-1 .banner .txt-row {
  font-size: 4.6875vw;
}
@media (min-width: 641px) {
  .banner-row.type-1 .banner .txt-row {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-1 .banner .txt-row {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row.type-1 .banner .txt-row {
    text-align: left;
    font-size: 24px;
  }
}
.banner-row.type-1 .banner .txt-row strong {
  font-weight: 700;
}
.banner-row.type-1 .banner.secondary {
  background: url("/static/images/sub/bg_secondary_banner@m.jpg") no-repeat center center;
  background-size: cover;
}
.banner-row.type-1 .banner.secondary {
  margin-top: 18.75vw;
}
@media (min-width: 641px) {
  .banner-row.type-1 .banner.secondary {
    margin-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-1 .banner.secondary {
    margin-top: 80px;
  }
}
.banner-row.type-1 .banner.secondary {
  height: 63.125vw;
}
@media (min-width: 641px) {
  .banner-row.type-1 .banner.secondary {
    height: 16.8333rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-1 .banner.secondary {
    height: 269px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row.type-1 .banner.secondary {
    background: url("/static/images/sub/bg_secondary_banner.jpg") no-repeat center center;
    background-size: cover;
    padding: 0 64px;
    height: 200px;
  }
}
.banner-row.type-1 .banner.secondary button, .banner-row.type-1 .banner.secondary a {
  color: #AE8766;
}
.banner-row.type-1 .banner.primary {
  background: url("/static/images/sub/bg_primary_banner2@m.jpg") no-repeat center center;
  background-size: cover;
}
.banner-row.type-1 .banner.primary {
  margin-top: 18.75vw;
}
@media (min-width: 641px) {
  .banner-row.type-1 .banner.primary {
    margin-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-1 .banner.primary {
    margin-top: 80px;
  }
}
.banner-row.type-1 .banner.primary {
  height: 63.125vw;
}
@media (min-width: 641px) {
  .banner-row.type-1 .banner.primary {
    height: 16.8333rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-1 .banner.primary {
    height: 269px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row.type-1 .banner.primary {
    background: url("/static/images/sub/bg_primary_banner2.jpg") no-repeat center center;
    background-size: cover;
    padding: 0 64px;
    height: 200px;
  }
}
.banner-row.type-1 .banner.primary button, .banner-row.type-1 .banner.primary a {
  color: #0C6FB8;
}
.banner-row.type-1 .banner.primary.mypage .txt-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: wrap;
}
.banner-row.type-1 .banner.primary.mypage .txt-row {
  gap: 4.375vw;
}
@media (min-width: 641px) {
  .banner-row.type-1 .banner.primary.mypage .txt-row {
    gap: 1.1667rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-1 .banner.primary.mypage .txt-row {
    gap: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row.type-1 .banner.primary.mypage .txt-row {
    gap: 16px;
  }
}
.banner-row.type-1 .banner.primary.mypage .txt-row strong {
  display: block;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.64px;
}
.banner-row.type-1 .banner.primary.mypage .txt-row strong {
  font-size: 5vw;
}
@media (min-width: 641px) {
  .banner-row.type-1 .banner.primary.mypage .txt-row strong {
    font-size: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-1 .banner.primary.mypage .txt-row strong {
    font-size: 21px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row.type-1 .banner.primary.mypage .txt-row strong {
    text-align: left;
  }
}
.banner-row.type-1 .banner.primary.mypage .txt-row p {
  display: block;
  width: 100%;
  margin: auto;
  color: #EDEDED;
  text-align: center;
  font-weight: 500;
  letter-spacing: -0.48px;
}
.banner-row.type-1 .banner.primary.mypage .txt-row p {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .banner-row.type-1 .banner.primary.mypage .txt-row p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-1 .banner.primary.mypage .txt-row p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row.type-1 .banner.primary.mypage .txt-row p {
    text-align: left;
  }
}
.banner-row.type-1 .banner.primary.mypage a {
  margin-top: 4.6875vw;
}
@media (min-width: 641px) {
  .banner-row.type-1 .banner.primary.mypage a {
    margin-top: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-1 .banner.primary.mypage a {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row.type-1 .banner.primary.mypage a {
    margin-top: 0;
  }
}
.banner-row.type-2 .banner .txt-row {
  width: 100%;
}
.banner-row.type-2 .banner .txt-row .icon-svg {
  display: none;
}
.banner-row.type-2 .banner .txt-row p {
  font-family: "Noto Serif KR", serif;
  font-optical-sizing: auto;
  font-style: normal;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.banner-row.type-2 .banner .txt-row p {
  font-size: 4.6875vw;
}
@media (min-width: 641px) {
  .banner-row.type-2 .banner .txt-row p {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-2 .banner .txt-row p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row.type-2 .banner .txt-row p {
    text-align: left;
    font-size: 24px;
    width: calc(100% - 96px);
  }
}
.banner-row.type-2 .banner .txt-row p strong {
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .banner-row.type-2 .banner .txt-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
  }
  .banner-row.type-2 .banner .txt-row .icon-svg {
    display: flex;
    width: 72px;
    height: 72px;
  }
  .banner-row.type-2 .banner .txt-row .icon-svg svg {
    --youtube-arrow: #ffffff;
    --youtube-line: #ffffff;
    color: #ffffff;
  }
}
.banner-row.type-2 .banner.secondary {
  background: url("/static/images/sub/bg_secondary_banner2@m.jpg") no-repeat center center;
  background-size: cover;
}
.banner-row.type-2 .banner.secondary {
  margin-bottom: 5vw;
}
@media (min-width: 641px) {
  .banner-row.type-2 .banner.secondary {
    margin-bottom: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-2 .banner.secondary {
    margin-bottom: 21px;
  }
}
.banner-row.type-2 .banner.secondary {
  margin-top: 18.75vw;
}
@media (min-width: 641px) {
  .banner-row.type-2 .banner.secondary {
    margin-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-2 .banner.secondary {
    margin-top: 80px;
  }
}
.banner-row.type-2 .banner.secondary {
  height: 46.0938vw;
}
@media (min-width: 641px) {
  .banner-row.type-2 .banner.secondary {
    height: 12.2917rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-2 .banner.secondary {
    height: 197px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row.type-2 .banner.secondary {
    width: 49.1666666667%;
    background: url("/static/images/sub/bg_secondary_banner2.jpg") no-repeat center center;
    background-size: cover;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 64px;
    height: 200px;
  }
}
.banner-row.type-2 .banner.primary {
  background: url("/static/images/sub/bg_primary_banner@m.jpg") no-repeat center center;
  background-size: cover;
}
.banner-row.type-2 .banner.primary {
  height: 46.0938vw;
}
@media (min-width: 641px) {
  .banner-row.type-2 .banner.primary {
    height: 12.2917rem;
  }
}
@media (min-width: 1200px) {
  .banner-row.type-2 .banner.primary {
    height: 197px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-row.type-2 .banner.primary {
    width: 49.1666666667%;
    background: url("/static/images/sub/bg_primary_banner.jpg") no-repeat center center;
    background-size: cover;
    padding: 0 64px;
    height: 200px;
  }
}
.banner-row.type-2 .banner.primary button, .banner-row.type-2 .banner.primary a {
  color: #0C6FB8;
}
@media screen and (min-width: 1200px) {
  .banner-row.type-2 {
    margin-top: 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.point-primary {
  color: #0C6FB8;
}

.point-secondary {
  color: #AE8766;
}

.policy-row {
  background: #F8F8F8;
}
.policy-row {
  border-radius: 2.8125vw;
}
@media (min-width: 641px) {
  .policy-row {
    border-radius: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .policy-row {
    border-radius: 12px;
  }
}
.policy-row {
  padding: 6.25vw;
}
@media (min-width: 641px) {
  .policy-row {
    padding: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .policy-row {
    padding: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-row {
    padding: 48px;
  }
}
.policy-row h2, .policy-row h3, .policy-row p {
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
  line-height: 1.5;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}
.policy-row h2:before, .policy-row h2:after, .policy-row h3:before, .policy-row h3:after, .policy-row p:before, .policy-row p:after {
  display: none;
}
.policy-row h2 {
  font-size: 5vw;
}
@media (min-width: 641px) {
  .policy-row h2 {
    font-size: 1.3333rem;
  }
}
@media (min-width: 1200px) {
  .policy-row h2 {
    font-size: 21px;
  }
}
.policy-row h2 {
  margin-bottom: 6.25vw;
}
@media (min-width: 641px) {
  .policy-row h2 {
    margin-bottom: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .policy-row h2 {
    margin-bottom: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-row h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.policy-row .policy-header h3 {
  font-weight: 700;
}
.policy-row .policy-header h3 {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  .policy-row .policy-header h3 {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  .policy-row .policy-header h3 {
    font-size: 17px;
  }
}
.policy-row .policy-header h3 {
  margin-bottom: 6.25vw;
}
@media (min-width: 641px) {
  .policy-row .policy-header h3 {
    margin-bottom: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .policy-row .policy-header h3 {
    margin-bottom: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-row .policy-header h3 {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.policy-row .policy-header p {
  font-weight: 500;
}
.policy-row .policy-header p {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  .policy-row .policy-header p {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  .policy-row .policy-header p {
    font-size: 17px;
  }
}
.policy-row .policy-header p {
  margin-bottom: 6.25vw;
}
@media (min-width: 641px) {
  .policy-row .policy-header p {
    margin-bottom: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .policy-row .policy-header p {
    margin-bottom: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-row .policy-header p {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
.policy-row .policy-header .table-scroll {
  margin-bottom: 6.25vw;
}
@media (min-width: 641px) {
  .policy-row .policy-header .table-scroll {
    margin-bottom: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .policy-row .policy-header .table-scroll {
    margin-bottom: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-row .policy-header .table-scroll {
    margin-bottom: 32px;
  }
}
.policy-row .policy-header .table-scroll th, .policy-row .policy-header .table-scroll td {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .policy-row .policy-header .table-scroll th, .policy-row .policy-header .table-scroll td {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .policy-row .policy-header .table-scroll th, .policy-row .policy-header .table-scroll td {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-row .policy-header .table-scroll th, .policy-row .policy-header .table-scroll td {
    font-size: 18px;
  }
}
.policy-row .policy-header .policy-index {
  margin-bottom: 6.25vw;
}
@media (min-width: 641px) {
  .policy-row .policy-header .policy-index {
    margin-bottom: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .policy-row .policy-header .policy-index {
    margin-bottom: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-row .policy-header .policy-index {
    margin-bottom: 32px;
  }
}
.policy-row .policy-header .policy-index ul {
  border-top: 2px solid #9F9F9F;
}
@media screen and (min-width: 1200px) {
  .policy-row .policy-header .policy-index ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.policy-row .policy-header .policy-index ul li {
  text-align: center;
  background: #EDEDED;
  border-bottom: 1px solid #9F9F9F;
}
.policy-row .policy-header .policy-index ul li {
  padding: 3.125vw 5.4688vw;
}
@media (min-width: 641px) {
  .policy-row .policy-header .policy-index ul li {
    padding: 0.8333rem 1.4583rem;
  }
}
@media (min-width: 1200px) {
  .policy-row .policy-header .policy-index ul li {
    padding: 13px 23px;
  }
}
.policy-row .policy-header .policy-index ul li a {
  color: #2B2B2B;
  font-weight: 600;
}
.policy-row .policy-header .policy-index ul li a {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .policy-row .policy-header .policy-index ul li a {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .policy-row .policy-header .policy-index ul li a {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-row .policy-header .policy-index ul li a {
    font-size: 18px;
  }
}

.policy-list {
  counter-reset: section;
}
.policy-list, .policy-list ul, .policy-list ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.policy-list p {
  font-weight: 500;
  color: #2B2B2B;
}
.policy-list p {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .policy-list p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .policy-list p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list p {
    font-size: 18px;
  }
}
.policy-list .date-row {
  padding: 3.5156vw;
}
@media (min-width: 641px) {
  .policy-list .date-row {
    padding: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .policy-list .date-row {
    padding: 15px;
  }
}
.policy-list .date-row p {
  color: #F82417;
}
.policy-list .table-scroll {
  margin: 3.5156vw 0vw 2.3438vw 0vw;
}
@media (min-width: 641px) {
  .policy-list .table-scroll {
    margin: 0.9375rem 0rem 0.625rem 0rem;
  }
}
@media (min-width: 1200px) {
  .policy-list .table-scroll {
    margin: 15px 0px 10px 0px;
  }
}
.policy-list .table-scroll th, .policy-list .table-scroll td {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .policy-list .table-scroll th, .policy-list .table-scroll td {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .policy-list .table-scroll th, .policy-list .table-scroll td {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list .table-scroll th, .policy-list .table-scroll td {
    font-size: 18px;
  }
}
.policy-list > li {
  counter-increment: section;
  position: relative;
  font-weight: 700;
  color: #2B2B2B;
}
.policy-list > li {
  margin-top: 6.25vw;
}
@media (min-width: 641px) {
  .policy-list > li {
    margin-top: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li {
    margin-top: 27px;
  }
}
.policy-list > li {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  .policy-list > li {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li {
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list > li {
    font-size: 18px;
    margin-top: 32px;
  }
}
.policy-list > li > p {
  padding: 1.1719vw 0 1.1719vw 3.5156vw;
}
@media (min-width: 641px) {
  .policy-list > li > p {
    padding: 0.3125rem 0 0.3125rem 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > p {
    padding: 5px 0 5px 15px;
  }
}
.policy-list > li::before {
  content: "제 " counter(section) "조. ";
  font-weight: 700;
  color: #2B2B2B;
  display: inline-block;
}
.policy-list > li::before {
  margin-right: 1.1719vw;
}
@media (min-width: 641px) {
  .policy-list > li::before {
    margin-right: 0.3125rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li::before {
    margin-right: 5px;
  }
}
.policy-list > li::before {
  font-size: 4.0625vw;
}
@media (min-width: 641px) {
  .policy-list > li::before {
    font-size: 1.0833rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li::before {
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list > li::before {
    font-size: 18px;
  }
}
.policy-list > li > ul {
  counter-reset: sub-section;
}
.policy-list > li > ul {
  margin-top: 3.125vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul {
    margin-top: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul {
    margin-top: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list > li > ul {
    margin-top: 32px;
  }
}
.policy-list > li > ul > li {
  counter-increment: sub-section;
  position: relative;
  color: #444444;
}
.policy-list > li > ul > li {
  padding-left: 5.8594vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li {
    padding-left: 1.5625rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li {
    padding-left: 25px;
  }
}
.policy-list > li > ul > li {
  margin-bottom: 6.25vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li {
    margin-bottom: 1.6667rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li {
    margin-bottom: 27px;
  }
}
.policy-list > li > ul > li {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list > li > ul > li {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
.policy-list > li > ul > li::before {
  content: counter(sub-section) ". ";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: #444444;
}
.policy-list > li > ul > li::before {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li::before {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li::before {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list > li > ul > li::before {
    font-size: 18px;
  }
}
.policy-list > li > ul > li > p {
  color: #444444;
}
.policy-list > li > ul > li > p {
  padding: 2.3438vw 0;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > p {
    padding: 0.625rem 0;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > p {
    padding: 10px 0;
  }
}
.policy-list > li > ul > li > ul {
  margin-top: 1.5625vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul {
    margin-top: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul {
    margin-top: 7px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list > li > ul > li > ul {
    margin-top: 16px;
  }
}
.policy-list > li > ul > li > ul > li {
  position: relative;
  font-weight: 600;
  color: #616161;
}
.policy-list > li > ul > li > ul > li {
  padding-left: 5.1563vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul > li {
    padding-left: 1.375rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li {
    padding-left: 22px;
  }
}
.policy-list > li > ul > li > ul > li {
  margin-bottom: 3.125vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul > li {
    margin-bottom: 0.8333rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li {
    margin-bottom: 13px;
  }
}
.policy-list > li > ul > li > ul > li {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul > li {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
.policy-list > li > ul > li > ul > li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 500;
  color: #616161;
}
.policy-list > li > ul > li > ul > li > p {
  color: #616161;
}
.policy-list > li > ul > li > ul > li > p {
  padding: 2.3438vw 0;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul > li > p {
    padding: 0.625rem 0;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li > p {
    padding: 10px 0;
  }
}
.policy-list > li > ul > li > ul > li:nth-of-type(1)::before {
  content: "①";
}
.policy-list > li > ul > li > ul > li:nth-of-type(2)::before {
  content: "②";
}
.policy-list > li > ul > li > ul > li:nth-of-type(3)::before {
  content: "③";
}
.policy-list > li > ul > li > ul > li:nth-of-type(4)::before {
  content: "④";
}
.policy-list > li > ul > li > ul > li:nth-of-type(5)::before {
  content: "⑤";
}
.policy-list > li > ul > li > ul > li:nth-of-type(6)::before {
  content: "⑥";
}
.policy-list > li > ul > li > ul > li:nth-of-type(7)::before {
  content: "⑦";
}
.policy-list > li > ul > li > ul > li:nth-of-type(8)::before {
  content: "⑧";
}
.policy-list > li > ul > li > ul > li:nth-of-type(9)::before {
  content: "⑨";
}
.policy-list > li > ul > li > ul > li:nth-of-type(10)::before {
  content: "⑩";
}
.policy-list > li > ul > li > ul > li:nth-of-type(11)::before {
  content: "⑪";
}
.policy-list > li > ul > li > ul > li:nth-of-type(12)::before {
  content: "⑫";
}
.policy-list > li > ul > li > ul > li:nth-of-type(13)::before {
  content: "⑬";
}
.policy-list > li > ul > li > ul > li:nth-of-type(14)::before {
  content: "⑭";
}
.policy-list > li > ul > li > ul > li:nth-of-type(15)::before {
  content: "⑮";
}
.policy-list > li > ul > li > ul > li > ul {
  margin-top: 1.5625vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul > li > ul {
    margin-top: 0.4167rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li > ul {
    margin-top: 7px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li > ul {
    margin-top: 8px;
  }
}
.policy-list > li > ul > li > ul > li > ul > li {
  position: relative;
  font-weight: 600;
  color: #888888;
}
.policy-list > li > ul > li > ul > li > ul > li {
  padding-left: 3.5156vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul > li > ul > li {
    padding-left: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li > ul > li {
    padding-left: 15px;
  }
}
.policy-list > li > ul > li > ul > li > ul > li {
  margin-bottom: 0.7813vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul > li > ul > li {
    margin-bottom: 0.2083rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li > ul > li {
    margin-bottom: 3px;
  }
}
.policy-list > li > ul > li > ul > li > ul > li {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul > li > ul > li {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li > ul > li {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li > ul > li {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.policy-list > li > ul > li > ul > li > ul > li::before {
  position: absolute;
  left: 0;
  top: 0;
}
.policy-list > li > ul > li > ul > li > ul > li > p {
  color: #888888;
  font-weight: 500;
}
.policy-list > li > ul > li > ul > li > ul > li > p {
  padding: 1.1719vw 0 2.3438vw 0;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul > li > ul > li > p {
    padding: 0.3125rem 0 0.625rem 0;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li > ul > li > p {
    padding: 5px 0 10px 0;
  }
}
.policy-list > li > ul > li > ul > li > ul > li > p {
  font-size: 3.75vw;
}
@media (min-width: 641px) {
  .policy-list > li > ul > li > ul > li > ul > li > p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li > ul > li > p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .policy-list > li > ul > li > ul > li > ul > li > p {
    font-size: 16px;
  }
}
.policy-list > li > ul > li > ul > li > ul > li.type-dash::before {
  content: "-";
}
.policy-list > li > ul > li > ul > li > ul > li.type-dot::before {
  content: "·";
  font-weight: 600;
}