@charset "UTF-8";
/* reset.scss */
*,
*:before,
*:after {
  box-sizing: border-box;
  flex-shrink: 1;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-wrap: break-word;
  box-sizing: border-box;
  word-break: keep-all;
}

:lang(ko) {
  word-break: keep-all;
  word-wrap: break-word;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
hr {
  margin: 0;
  padding: 0;
  border: 0;
}

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

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a {
  cursor: pointer;
}

html {
  /* 스크롤 바의 색상 지정 */
  /* 스크롤 바 호버 시 색상 지정 */
}
html ::-webkit-scrollbar {
  /* 스크롤 바(배경)의 너비 */
  width: 10px;
  height: 10px;
  /* 스크롤 바의 배경색 */
  background-color: var(--gray-3);
}
html ::-webkit-scrollbar-thumb {
  /* 스크롤 바의 색상 */
  background-color: var(--color-primary);
  border-radius: 5px;
}
html ::-webkit-scrollbar-thumb:hover {
  /* 스크롤 바의 색상 */
}
html ::-webkit-scrollbar-button {
  width: 17px;
  height: 16px;
  background: red;
  display: none !important;
}

body {
  color: var(--gray-12);
  font-size: 24px;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

caption,
legend {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}

table {
  border-spacing: 0;
  table-layout: fixed;
}

picture {
  display: inline-block;
}

picture > img {
  display: block;
}

img,
picture,
video,
canvas {
  max-width: 100%;
  border: none;
}

img {
  vertical-align: top;
}

hr.type-dashed {
  border-top-style: dashed;
}
hr.type-hide {
  display: none;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  text-underline-position: under;
  color: var(--color-darken);
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}
button:disabled {
  cursor: default;
}

input,
select,
textarea {
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;
}

svg {
  fill: transparent;
}

:root {
  /* gray */
  --gray-1: #FCFCFC;
  --gray-1-rgb: 252, 252, 252;
  --gray-2: #F9F9F9;
  --gray-2-rgb: 249, 249, 249;
  --gray-3: #EFEFEF;
  --gray-3-rgb: 239, 239, 239;
  --gray-4: #E8E8E8;
  --gray-4-rgb: 232, 232, 232;
  --gray-5: #E0E0E0;
  --gray-5-rgb: 224, 224, 224;
  --gray-6: #D9D9D9;
  --gray-6-rgb: 217, 217, 217;
  --gray-7: #CECECE;
  --gray-7-rgb: 206, 206, 206;
  --gray-8: #BBBBBB;
  --gray-8-rgb: 187, 187, 187;
  --gray-9: #8D8D8D;
  --gray-9-rgb: 141, 141, 141;
  --gray-10: #838383;
  --gray-10-rgb: 131, 131, 131;
  --gray-11: #646464;
  --gray-11-rgb: 100, 100, 100;
  --gray-12: #202020;
  --gray-12-rgb: 32, 32, 32;
  /* blue */
  --blue-1: #fafdfe;
  --blue-1-rgb: 250, 253, 254;
  --blue-2: #f2fafd;
  --blue-2-rgb: 242, 250, 253;
  --blue-3: #e4f4fe;
  --blue-3-rgb: 228, 244, 254;
  --blue-4: #cdefff;
  --blue-4-rgb: 205, 239, 255;
  --blue-5: #b9e6fb;
  --blue-5-rgb: 185, 230, 251;
  --blue-6: #a3dbf4;
  --blue-6-rgb: 163, 219, 244;
  --blue-7: #84cbe9;
  --blue-7-rgb: 132, 203, 233;
  --blue-8: #4cb5de;
  --blue-8-rgb: 76, 181, 222;
  --blue-9: #0e97c2;
  --blue-9-rgb: 14, 151, 194;
  --blue-10: #008ab5;
  --blue-10-rgb: 0, 138, 181;
  --blue-11: #007ba5;
  --blue-11-rgb: 0, 123, 165;
  --blue-12: #0e3b4c;
  --blue-12-rgb: 14, 59, 76;
  /* green */
  --green-1: #fbfefa;
  --green-1-rgb: 251, 254, 250;
  --green-2: #f6fbf4;
  --green-2-rgb: 246, 251, 244;
  --green-3: #eaf7e5;
  --green-3-rgb: 234, 247, 229;
  --green-4: #ddf0d4;
  --green-4-rgb: 221, 240, 212;
  --green-5: #cde8bf;
  --green-5-rgb: 205, 232, 191;
  --green-6: #b9dda6;
  --green-6-rgb: 185, 221, 166;
  --green-7: #9ecd84;
  --green-7-rgb: 158, 205, 132;
  --green-8: #77b851;
  --green-8-rgb: 119, 184, 81;
  --green-9: #59a122;
  --green-9-rgb: 89, 161, 34;
  --green-10: #4f9417;
  --green-10-rgb: 79, 148, 23;
  --green-11: #407d07;
  --green-11-rgb: 64, 125, 7;
  --green-12: #263c19;
  --green-12-rgb: 38, 60, 25;
  /* semantic color */
  --color-primary: var(--blue-9);
  --color-primary-rgb: var(--blue-9-rgb);
  --color-secondary: var(--green-9);
  --color-secondary-rgb: var(--green-9-rgb);
  --color-darken: #000000;
  --color-white: #ffffff;
  --color-info: #4568f2;
  --color-success: #66bd50;
  --color-warning: #ebbc46;
  --color-error: #de4841;
  --primary-bg-1: var(--blue-1);
  --primary-bg-2: var(--blue-2);
  --primary-light: var(--blue-3);
  --primary-light-hover: var(--blue-4);
  --primary-light-active: var(--blue-5);
  --primary-normal: var(--blue-6);
  --primary-normal-hover: var(--blue-7);
  --primary-normal-active: var(--blue-8);
  --primary-deep: var(--blue-10);
  --primary-deep-hover: var(--blue-11);
  --primary-deep-active: var(--blue-12);
  --secondary-bg-1: var(--green-1);
  --secondary-bg-2: var(--green-2);
  --secondary-light: var(--green-3);
  --secondary-light-hover: var(--green-4);
  --secondary-light-active: var(--green-5);
  --secondary-normal: var(--green-6);
  --secondary-normal-hover: var(--green-7);
  --secondary-normal-active: var(--green-8);
  --secondary-deep: var(--green-10);
  --secondary-deep-hover: var(--green-11);
  --secondary-deep-active: var(--green-12);
  /* filter */
  --filter-default: brightness(0) saturate(100%) invert(61%) sepia(6%) saturate(3%) hue-rotate(321deg) brightness(90%) contrast(87%);
  --filter-primary: brightness(0) saturate(100%) invert(56%) sepia(62%) saturate(5089%) hue-rotate(164deg) brightness(92%) contrast(89%);
  --filter-secondary: brightness(0) saturate(100%) invert(73%) sepia(65%) saturate(5266%) hue-rotate(57deg) brightness(92%) contrast(73%);
  --filter-white: brightness(0) saturate(100%) invert(99%) sepia(35%) saturate(41%) hue-rotate(186deg) brightness(109%) contrast(98%);
  --filter-dark: brightness(0) saturate(100%) invert(0%) sepia(10%) saturate(7498%) hue-rotate(85deg) brightness(94%) contrast(97%);
}

/* Pretendard */
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Black.woff") format("woff"), url("fonts/Pretendard-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-ExtraBold.woff") format("woff"), url("fonts/Pretendard-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Bold.woff") format("woff"), url("fonts/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-SemiBold.woff") format("woff"), url("fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Medium.woff") format("woff"), url("fonts/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Regular.woff") format("woff"), url("fonts/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Light.woff") format("woff"), url("fonts/Pretendard-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-ExtraLight.woff") format("woff"), url("fonts/Pretendard-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Thin.woff") format("woff"), url("fonts/Pretendard-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}
/* JeonnamEducationBarun */
@font-face {
  font-family: "JeonnamEducationBarun";
  font-style: normal;
  src: url("fonts/JeonnamEducationBarun-ExtraBold.woff") format("woff"), url("fonts/JeonnamEducationBarun-ExtraBold.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "JeonnamEducationBarun";
  font-style: normal;
  src: url("fonts/JeonnamEducationBarun-Bold.woff") format("woff"), url("fonts/JeonnamEducationBarun-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "JeonnamEducationBarun";
  font-style: normal;
  src: url("fonts/JeonnamEducationBarun-Regular.woff") format("woff"), url("fonts/JeonnamEducationBarun-Regular.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "JeonnamEducationBarun";
  font-style: normal;
  src: url("fonts/JeonnamEducationBarun-Light.woff") format("woff"), url("fonts/JeonnamEducationBarun-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
/* y universe */
@font-face {
  font-family: "YUniverse-L";
  font-weight: 100;
  src: url("fonts/YUniverse-L.woff2") format("woff2");
}
@font-face {
  font-family: "YUniverse-B";
  font-weight: 900;
  src: url("fonts/YUniverse-B.woff2") format("woff2");
}
.container {
  width: 100%;
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 50px;
}
.container.fluid {
  width: 100%;
  max-width: 100%;
}

/* ===== 첫 분기: 1430px ===== */
@media (max-width: 1430px) {
  .container {
    max-width: 100%;
  }
}
/* ===== 두번째 분기: 1200px ===== */
/* ===== 세번째 분기: 1024px ===== */
/* ===== 네번째 분기: 768px ===== */
/* ===== 다섯번째 분기: 360px ===== */
@media (max-width: 360px) {
  .container {
    padding: 0 20px;
  }
}
/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - 핵심: selector 컨텍스트(&)로 미디어를 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 72px;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 40px;
  }
}

.title-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 48px;
}
@media (max-width: 1024px) {
  .title-1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .title-1 {
    font-size: 32px;
  }
}

.title-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 1024px) {
  .title-2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .title-2 {
    font-size: 28px;
  }
}

.title-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .title-3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .title-3 {
    font-size: 24px;
  }
}

.title-4 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .title-4 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .title-4 {
    font-size: 20px;
  }
}

.body-1-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-1 {
    font-size: 20px;
  }
}

.body-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-2 {
    font-size: 20px;
  }
}

.body-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-1 {
    font-size: 18px;
  }
}

.body-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-2 {
    font-size: 18px;
  }
}

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-1 {
    font-size: 16px;
  }
}

.body-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

input[readonly] {
  background-color: var(--gray-4);
  border: 1px solid var(--gray-8);
  color: var(--gray-11);
}
input:disabled {
  background-color: var(--gray-4);
  border: 1px solid var(--gray-8);
  color: var(--gray-11);
}
input::-moz-placeholder {
  color: var(--gray-9);
}
input::placeholder {
  color: var(--gray-9);
}

.text-field {
  height: 50px;
  border-radius: 5px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  background-color: var(--color-white);
  border: 1px solid var(--gray-8);
  /* state */
}
@media (max-width: 1024px) {
  .text-field {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .text-field {
    font-size: 18px;
  }
}
.text-field.fluid {
  width: 100%;
}
.text-field:focus {
  border: 1px solid var(--gray-11);
  color: var(--gray-11);
}
.text-field:focus .icon {
  filter: var(--filter-gray-12);
}
.text-field.success {
  border: 1px solid var(--color-success);
}
.text-field.warning {
  border: 1px solid var(--color-warning);
}
.text-field.error {
  border: 1px solid var(--color-error);
}

.textarea-box {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-8);
}
.textarea-box textarea {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  border: none;
  width: 100%;
  height: 218px;
  padding: 24px;
  resize: none;
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .textarea-box textarea {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .textarea-box textarea {
    font-size: 18px;
  }
}
.textarea-box:focus {
  border: 1px solid var(--gray-11);
  color: var(--gray-11);
}
.textarea-box:focus .icon {
  filter: var(--filter-gray-12);
}

/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - 핵심: selector 컨텍스트(&)로 미디어를 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 72px;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 40px;
  }
}

.title-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 48px;
}
@media (max-width: 1024px) {
  .title-1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .title-1 {
    font-size: 32px;
  }
}

.title-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 1024px) {
  .title-2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .title-2 {
    font-size: 28px;
  }
}

.title-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .title-3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .title-3 {
    font-size: 24px;
  }
}

.title-4 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .title-4 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .title-4 {
    font-size: 20px;
  }
}

.body-1-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-1 {
    font-size: 20px;
  }
}

.body-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-2 {
    font-size: 20px;
  }
}

.body-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-1 {
    font-size: 18px;
  }
}

.body-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-2 {
    font-size: 18px;
  }
}

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-1 {
    font-size: 16px;
  }
}

.body-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

:root {
  /* ========================================= */
  /* 🚨 전역 필터 변수 (GLOBAL FILTER VARIABLES) 🚨 */
  /* ========================================= */
  --filter-default: brightness(0) saturate(100%) invert(97%) sepia(1%) saturate(153%) hue-rotate(355deg) brightness(79%) contrast(88%);
  --filter-primary: brightness(0) saturate(100%) invert(56%) sepia(62%) saturate(5089%) hue-rotate(164deg) brightness(92%) contrast(89%);
  --filter-primary-deep: brightness(0) saturate(100%) invert(19%) sepia(28%) saturate(1191%) hue-rotate(151deg) brightness(93%) contrast(96%);
  --filter-primary-deep-hover: brightness(0) saturate(100%) invert(27%) sepia(91%) saturate(4040%) hue-rotate(178deg) brightness(94%) contrast(101%);
  --filter-secondary: brightness(0) saturate(100%) invert(73%) sepia(65%) saturate(5266%) hue-rotate(57deg) brightness(92%) contrast(73%);
  --filter-secondary-deep: brightness(0) saturate(100%) invert(17%) sepia(15%) saturate(1818%) hue-rotate(54deg) brightness(96%) contrast(88%);
  --filter-white: brightness(0) saturate(100%) invert(99%) sepia(35%) saturate(41%) hue-rotate(186deg) brightness(109%) contrast(98%);
  --filter-dark: brightness(0) saturate(100%) invert(0%) sepia(10%) saturate(7498%) hue-rotate(85deg) brightness(94%) contrast(97%);
  --filter-gray-12: brightness(0) saturate(100%) invert(12%) sepia(0%) saturate(1%) hue-rotate(110deg) brightness(94%) contrast(97%);
}

.filter-primary {
  filter: var(--filter-primary) !important;
}

.filter-primary-deep {
  filter: var(--filter-primary-deep) !important;
}

.filter-primary-deep-hover {
  filter: var(--filter-primary-deep-hover) !important;
}

.filter-secondary {
  filter: var(--filter-secondary) !important;
}

.filter-secondary-deep {
  filter: var(--filter-secondary-deep) !important;
}

.filter-white {
  filter: var(--filter-white) !important;
}

.filter-dark {
  filter: var(--filter-dark) !important;
}

.filter-gray {
  filter: var(--filter-default) !important;
}

.filter-gray-12 {
  filter: var(--filter-gray-12) !important;
}

/* dropdown */
.dropdown {
  position: relative;
  width: 100%;
  /* 공간 부족 시 위로 펼치기 */
  /* 열림 상태 */
  /* 에러 상태 */
  /* 비활성 */
  /* 플레이스홀더 상태 */
  /* 선택 반영: data-selected=true 일 때 value 색상 포인트 */
}
.dropdown_button {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gray-8);
  background: var(--color-white);
  color: var(--gray-9);
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
@media (max-width: 1024px) {
  .dropdown_button {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .dropdown_button {
    font-size: 18px;
  }
}
.dropdown_button::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../../assets/images/icon/icon-arrow-down.svg") no-repeat center/24px 24px;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  pointer-events: none;
  filter: var(--filter-default);
  margin-left: auto;
}
.dropdown_button:hover, .dropdown_button:focus {
  border-color: var(--color-primary);
}
.dropdown_value {
  color: var(--color-darken);
  line-height: 1;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown_list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: var(--color-white);
  border: 1px solid var(--gray-8);
  border-radius: 5px;
  padding: 10px;
  display: none;
  z-index: 100;
}
.dropdown.is-above .dropdown_list {
  top: auto;
  bottom: calc(100% + 8px);
}
.dropdown[aria-open=true] .dropdown_button::after {
  transform: rotate(180deg);
}
.dropdown[aria-open=true] .dropdown_list {
  display: block;
}
.dropdown_option {
  height: 50px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-9);
  transition: background-color 0.15s ease, color 0.15s ease;
  border-radius: 5px;
  /* hover & active */
  /* 선택 상태: 배경과 글자 강조 */
}
@media (max-width: 1024px) {
  .dropdown_option {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .dropdown_option {
    font-size: 18px;
  }
}
.dropdown_option:hover {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .dropdown_option:hover {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .dropdown_option:hover {
    font-size: 18px;
  }
}
.dropdown_option.is-active {
  background: var(--gray-300);
}
.dropdown_option[aria-selected=true] {
  background: var(--color-white);
  color: var(--color-primary);
}
.dropdown.error .dropdown_button {
  border-color: var(--color-error);
  /* 필요 시 아이콘 교체 */
}
.dropdown.error .dropdown_button:hover, .dropdown.error .dropdown_button:focus {
  border-color: var(--color-error);
}
.dropdown.error .dropdown_button::after {
  opacity: 1;
}
.dropdown.disabled .dropdown_button {
  background-color: var(--gray-4);
  border-color: var(--gray-8);
  color: var(--gray-11);
  cursor: not-allowed;
}
.dropdown.disabled .dropdown_button:hover, .dropdown.disabled .dropdown_button:focus {
  border-color: var(--gray-8);
}
.dropdown.disabled .dropdown_button::after {
  opacity: 0.5;
}
.dropdown.disabled .dropdown_value {
  color: var(--gray-11);
}
.dropdown.is-placeholder { /* 다크에서 중간톤 보조 텍스트 */ }
.dropdown.is-placeholder .dropdown_value {
  color: var(--gray-9);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  /* color type */
  /* line type */
  /* size */
  /* only icon */
  /* shape */
}
.btn .icon {
  margin-left: auto;
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn-primary .icon {
  filter: var(--filter-white);
}
.btn-primary:hover {
  background-color: var(--primary-deep-hover);
}
.btn-primary:focus {
  background-color: var(--primary-deep-active);
  border: 2px solid var(--primary-deep-hover);
}
.btn-primary:disabled {
  background-color: var(--gray-4);
}
.btn-primary:disabled .icon {
  filter: var(--filter-gray);
}
.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.btn-secondary .icon {
  filter: var(--filter-white);
}
.btn-secondary:hover {
  background-color: var(--secondary-deep-hover);
}
.btn-secondary:focus {
  background-color: var(--secondary-deep-active);
  border: 2px solid var(--secondary-deep-hover);
}
.btn-secondary:disabled {
  background-color: var(--gray-4);
}
.btn-secondary:disabled .icon {
  filter: var(--filter-gray);
}
.btn-gray {
  background-color: var(--gray-10);
  color: var(--color-white);
}
.btn-gray .icon {
  filter: var(--filter-white);
}
.btn-gray:hover {
  background-color: var(--gray-11);
}
.btn-gray:focus {
  background-color: var(--gray-12);
}
.btn-gray:disabled {
  background-color: var(--gray-4);
}
.btn-gray:disabled .icon {
  filter: var(--filter-gray);
}
.btn-primary-line {
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-primary-line .icon {
  filter: var(--filter-primary);
}
.btn-primary-line:hover {
  border: 2px solid var(--primary-deep-active);
  color: var(--primary-deep-active);
}
.btn-primary-line:hover .icon {
  filter: var(--filter-primary-deep);
}
.btn-primary-line:focus {
  background-color: var(--primary-light);
  border: 2px solid var(--primary-deep-active);
}
.btn-primary-line:focus .icon {
  filter: var(--filter-primary-deep);
}
.btn-primary-line:disabled {
  background-color: var(--gray-4);
  border: 2px solid var(--gray-8);
}
.btn-primary-line:disabled .icon {
  filter: var(--filter-gray);
}
.btn-secondary-line {
  background-color: var(--color-white);
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.btn-secondary-line .icon {
  filter: var(--filter-secondary);
}
.btn-secondary-line:hover {
  border: 2px solid var(--secondary-deep-active);
  color: var(--secondary-deep-active);
}
.btn-secondary-line:hover .icon {
  filter: var(--filter-secondary-deep);
}
.btn-secondary-line:focus {
  background-color: var(--secondary-light);
  border: 2px solid var(--secondary-deep-active);
}
.btn-secondary-line:focus .icon {
  filter: var(--filter-secondary-deep);
}
.btn-secondary-line:disabled {
  background-color: var(--gray-4);
  border: 2px solid var(--gray-8);
}
.btn-secondary-line:disabled .icon {
  filter: var(--filter-gray);
}
.btn-gray-line {
  background-color: var(--color-white);
  border: 2px solid var(--gray-6);
  color: var(--gray-12);
}
.btn-gray-line .icon {
  filter: var(--filter-gray-12);
}
.btn-gray-line:hover {
  border: 2px solid var(--color-primary);
}
.btn-gray-line:focus {
  border: 2px solid var(--gray-8);
  background-color: var(--gray-3);
}
.btn-gray-line:disabled {
  background-color: var(--gray-4);
  border: 2px solid var(--gray-8);
}
.btn-gray-line:disabled .icon {
  filter: var(--filter-gray);
}
.btn.size-lg {
  height: 66px;
  padding: 15px 30px;
  gap: 8px;
  border-radius: 8px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .btn.size-lg {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .btn.size-lg {
    font-size: 20px;
  }
}
.btn.size-lg .icon {
  width: 24px;
  height: 24px;
}
.btn.size-md {
  height: 50px;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  gap: 8px;
}
@media (max-width: 1024px) {
  .btn.size-md {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .btn.size-md {
    font-size: 18px;
  }
}
.btn.size-md .icon {
  width: 16px;
  height: 16px;
}
.btn.size-sm {
  height: 37px;
  padding: 5px 10px;
  gap: 10px;
  border-radius: 5px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .btn.size-sm {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .btn.size-sm {
    font-size: 16px;
  }
}
.btn.size-sm .icon {
  width: 12px;
  height: 12px;
}
.btn-icon-only {
  padding: 0;
}
.btn-icon-only.size-lg {
  padding: 15px;
}
.btn-icon-only.size-md {
  padding: 10px;
}
.btn-icon-only.size-sm {
  padding: 5px;
}
.btn-shape-round {
  border-radius: 9999px !important;
}

/* -------------------------------
공통 control (체크/라디오 공용 가능)
---------------------------------*/
.control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  position: relative;
}
.control input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.control label {
  position: relative;
  padding-left: 40px;
  line-height: 24px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  font-weight: 400;
  color: var(--gray-800);
}
@media (max-width: 1024px) {
  .control label {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .control label {
    font-size: 20px;
  }
}
.control.disabled label {
  cursor: not-allowed;
  opacity: 0.6;
}

/* -------------------------------
체크박스 단일
---------------------------------*/
.checkbox label::before,
.checkbox label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.checkbox label::before {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-11);
  background: var(--color-white);
  transition: border-color 0.2s, background-color 0.2s;
}
.checkbox label::after {
  width: 24px;
  height: 2px;
  background: url("../../assets/images/icon/icon-check.svg") no-repeat center/14px 14px;
  opacity: 0;
  transition: opacity 0.15s;
}
.checkbox input:focus + label::before,
.checkbox label:hover::before {
  border-color: var(--color-secondary);
}
.checkbox input:checked + label::before {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.checkbox input:checked + label::after {
  opacity: 1;
  filter: invert(1) brightness(10);
}
.checkbox.disabled label::before {
  background: var(--bg-disabled);
  border-color: var(--border-disabled);
}
.checkbox.disabled input:checked + label::before {
  background: var(--border-disabled);
  border-color: var(--border-disabled);
}

/* -------------------------------
체크박스 그룹
---------------------------------*/
.checkbox-group {
  border: 0;
  padding: 0;
  display: flex;
}
.checkbox-group.vertical {
  flex-direction: column;
  gap: 12px;
}
.checkbox-group.horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.checkbox-group .depth2 {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  /* size */
}
.icon:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.icon.icon-home:before {
  background-image: url(../images/icon/icon-home.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-right:before {
  background-image: url(../images/icon/icon-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-right-rec:before {
  background-image: url(../images/icon/icon-arrow-right-rec.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-right-end-rec:before {
  background-image: url(../images/icon/icon-arrow-right-end-rec.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-right-body:before {
  background-image: url(../images/icon/icon-arrow-right-body.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-left-rec:before {
  background-image: url(../images/icon/icon-arrow-left-rec.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-left-end-rec:before {
  background-image: url(../images/icon/icon-arrow-left-end-rec.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-up-rec:before {
  background-image: url(../images/icon/icon-arrow-up-rec.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-down-rec:before {
  background-image: url(../images/icon/icon-arrow-down-rec.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-search:before {
  background-image: url(../images/icon/icon-search.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-view:before {
  background-image: url(../images/icon/icon-view.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-file:before {
  background-image: url(../images/icon/icon-file.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-download:before {
  background-image: url(../images/icon/icon-download.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-navermap:before {
  background-image: url(../images/icon/icon-navermap.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-kakaomap:before {
  background-image: url(../images/icon/icon-kakaomap.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-googlemap:before {
  background-image: url(../images/icon/icon-googlemap.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-copy:before {
  background-image: url(../images/icon/icon-copy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-close:before {
  background-image: url(../images/icon/icon-close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-play:before {
  background-image: url(../images/icon/icon-play.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.size-24:before {
  width: 24px;
  height: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* color */
  /* size */
}
.chip-primary {
  background-color: rgba(var(--color-primary-rgb), 0.7);
  color: var(--color-white);
}
.chip-primary-line {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.chip-secondary {
  background-color: rgba(var(--color-secondary-rgb), 0.7);
  color: var(--color-white);
}
.chip-secondary-line {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: 1px solid var(--color-secondary);
}
.chip-rec {
  border-radius: 10px;
}
.chip-round {
  border-radius: 9999px;
}
.chip.size-lg {
  height: 68px;
  padding: 0 30px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .chip.size-lg {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .chip.size-lg {
    font-size: 24px;
  }
}
.chip.size-md {
  height: 46px;
  padding: 0 20px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .chip.size-md {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .chip.size-md {
    font-size: 20px;
  }
}
.chip.size-sm {
  height: 34px;
  padding: 0 15px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .chip.size-sm {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .chip.size-sm {
    font-size: 18px;
  }
}

/* type은 3가지 */
/* type-rowcol, type-col, type-row */
/* ===============================
  Table Base Style
   =============================== */
.table-wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-white);
  overflow: hidden;
  /* 상단 라운드 */
}
.table-wrap table th,
.table-wrap table td {
  padding: 25px 30px;
  vertical-align: middle;
  word-break: break-word;
  word-break: keep-all;
  border-right: 1px solid var(--gray-5);
  border-bottom: 1px solid var(--gray-5);
  text-align: center;
}
.table-wrap table thead th {
  background-color: var(--color-primary);
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
}
@media (max-width: 1024px) {
  .table-wrap table thead th {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .table-wrap table thead th {
    font-size: 20px;
  }
}
.table-wrap table tbody th {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .table-wrap table tbody th {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .table-wrap table tbody th {
    font-size: 18px;
  }
}
.table-wrap table tbody td {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .table-wrap table tbody td {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .table-wrap table tbody td {
    font-size: 18px;
  }
}
.table-wrap table tbody td .text-list li .depth3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .table-wrap table tbody td .text-list li .depth3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .table-wrap table tbody td .text-list li .depth3 {
    font-size: 18px;
  }
}
.table-wrap table thead tr:first-child th:first-child {
  border-top-left-radius: 40px;
}
.table-wrap table thead tr:first-child th:last-child {
  border-top-right-radius: 40px;
  border-right: 0;
}
.table-wrap table tbody tr td:last-child {
  border-right: 0;
}
.table-wrap table tbody tr td:last-child.is-colspan {
  border-right: 1px solid var(--gray-5);
}

body {
  -ms-overflow-style: none;
  line-height: 1.5;
}
body.fix {
  overflow: hidden;
}

/* 키보드 포커스 가시화 */
:focus-visible {
  outline: 1px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px; /* 포커스 테두리 시각적 안정 */
}

/* 스킵 내비게이션 */
#skip-nav {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  z-index: 10000;
}
#skip-nav a {
  position: absolute;
  inset-inline-start: -9999px; /* 화면 밖 */
  inset-block-start: 0;
  background: var(--color-darken);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#skip-nav a:focus, #skip-nav a:active {
  inset-inline-start: 0; /* 화면 안으로 */
  inset-block-start: 0;
}

/* common style */
#contents {
  overflow: hidden;
}
#contents.visible {
  overflow: visible;
}

.section {
  padding: 60px 0 120px;
  overflow: hidden;
}
.section.visible {
  overflow: visible;
}

.relative {
  position: relative;
}

.blind,
.sr-only {
  position: absolute;
  left: -99999px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-indent: -99999px;
  clip: rect(0, 0, 0, 0);
}

.spacer {
  display: block;
  width: 100%;
  height: 1px;
  margin: 100px 0;
}

.flex {
  display: flex;
  /* 방향 */
  /* 정렬 */
  /* ← align-ent 오타 수정 */
  /* 간격 */
  /* 기존 유지 */
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.nowrap {
  flex-wrap: nowrap;
}
.flex.dir-row {
  flex-direction: row;
}
.flex.dir-col {
  flex-direction: column;
}
.flex.align-center {
  align-items: center;
}
.flex.align-start {
  align-items: flex-start;
}
.flex.align-end {
  align-items: flex-end;
}
.flex.justify-center {
  justify-content: center;
}
.flex.justify-start {
  justify-content: flex-start;
}
.flex.justify-end {
  justify-content: flex-end;
}
.flex.justify-space-between {
  justify-content: space-between;
}
.flex.justify-space-around {
  justify-content: space-around;
}
.flex.justify-space-evenly {
  justify-content: space-evenly;
}
.flex.gap8 {
  gap: 8px;
}
.flex.gap12 {
  gap: 12px;
}
.flex.gap16 {
  gap: 16px;
}
.flex.gap20 {
  gap: 20px;
}
.flex.gap24 {
  gap: 24px;
}
.flex.gap30 {
  gap: 30px;
}
.flex .flex-bar {
  flex-shrink: 0;
}
.flex .shrink-0 {
  flex-shrink: 0;
}

/* text */
.text-center {
  text-align: center !important;
}

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

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

.underline {
  text-decoration: underline;
}

/* color */
.color-primary {
  color: var(--color-primary) !important;
}

.color-primary-deep-hover {
  color: var(--primary-deep-hover) !important;
}

.color-secondary {
  color: var(--color-secondary) !important;
}

.color-secondary-hover {
  color: var(--secondary-deep-hover) !important;
}

.color-darken {
  color: var(--color-darken) !important;
}

.color-white {
  color: var(--color-white) !important;
}

/* 말줄임 */
.line-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* list type */
.list-type.dot li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}
.list-type.dot li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--bg-darken);
  position: absolute;
  top: 10px;
  left: 0;
}
.list-type.dot li.no-dot {
  padding-left: 0;
}
.list-type.dot li.no-dot::before {
  display: none;
}

/* text-list */
.text-list .depth1 {
  margin-bottom: 24px;
}
.text-list li .depth2 {
  padding-left: 32px;
}
.text-list li .depth3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .text-list li .depth3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .text-list li .depth3 {
    font-size: 20px;
  }
}
.text-list li .depth3:before {
  top: 12px;
}
.text-list li .depth3 + .depth3 {
  margin-top: 8px;
}
.text-list li + li {
  margin-top: 24px;
}

.guide-text {
  padding-left: 20px;
  color: var(--gray-12);
  position: relative;
}
.guide-text.color-second-d {
  color: var(--secondary-deep-hover);
}
.guide-text.color-second-d::before {
  color: var(--secondary-deep-hover);
}
.guide-text::before {
  content: "※";
  color: var(--gray-12);
  position: absolute;
  top: 0;
  left: 0;
}

/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - 핵심: selector 컨텍스트(&)로 미디어를 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 72px;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 40px;
  }
}

.title-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 48px;
}
@media (max-width: 1024px) {
  .title-1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .title-1 {
    font-size: 32px;
  }
}

.title-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 1024px) {
  .title-2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .title-2 {
    font-size: 28px;
  }
}

.title-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .title-3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .title-3 {
    font-size: 24px;
  }
}

.title-4 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .title-4 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .title-4 {
    font-size: 20px;
  }
}

.body-1-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-1 {
    font-size: 20px;
  }
}

.body-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-2 {
    font-size: 20px;
  }
}

.body-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-1 {
    font-size: 18px;
  }
}

.body-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-2 {
    font-size: 18px;
  }
}

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-1 {
    font-size: 16px;
  }
}

.body-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

/* z-index map */
#header {
  width: 100%;
  --dynamic-after-height: 0px;
  position: relative;
  z-index: 200;
}
#header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  height: 30px;
  pointer-events: none;
  opacity: 0;
  z-index: 110;
  transition: opacity 0.25s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1) 1%, rgba(0, 0, 0, 0));
}
#header .header-inner {
  display: flex;
  align-items: center;
  height: 100px;
  position: relative;
  z-index: 110;
}
#header h1 {
  flex-shrink: 0;
}
#header h1 a {
  display: block;
  width: 200px;
  height: 49px;
  background-image: url("../../assets/images/logo-header.png");
  background-size: contain;
  background-repeat: no-repeat;
}
#header nav {
  margin-left: auto;
}
#header nav ul {
  display: flex;
  align-items: center;
  height: 100px;
}
#header nav li {
  position: relative;
}
#header nav li::after {
  content: "";
  width: 0%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.1s;
  background-color: var(--color-primary);
}
#header nav li.on > a {
  color: var(--color-primary);
}
#header nav li.on::after {
  width: 100%;
}
#header nav a {
  width: 210px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-darken);
}
@media (max-width: 1024px) {
  #header nav a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #header nav a {
    font-size: 18px;
  }
}
#header .btn-menu {
  width: 23px;
  height: 17px;
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-left: 90px;
}
#header .btn-menu.openmenu div:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
#header .btn-menu.openmenu div:nth-child(2) {
  opacity: 0;
}
#header .btn-menu.openmenu div:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}
#header .btn-menu div {
  width: 100%;
  height: 3px;
  border-radius: 9999px;
  margin-bottom: 4px;
  background: var(--color-darken);
  transition: transform 0.4s ease;
}
#header .megamenu {
  width: 100%;
  background-color: var(--color-white);
  position: absolute;
  top: 100px;
  z-index: 100;
}
#header .megamenu .container {
  height: 587px;
  display: flex;
  position: relative;
}
#header .megamenu .left {
  margin-top: 30px;
  padding-right: 28px;
}
#header .megamenu .left img {
  position: absolute;
  width: 598px;
  height: 587px;
  left: -209px;
  top: 0;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .megamenu .left ul {
  padding: 10px 20px;
  border: 1px solid var(--gray-6);
  border-radius: 10px;
  background-color: var(--color-white);
}
#header .megamenu .left ul + ul {
  margin-top: 8px;
}
#header .megamenu .left ul li {
  min-width: 269px;
  display: flex;
  align-items: center;
}
#header .megamenu .left ul li.title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-deep-active);
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  #header .megamenu .left ul li.title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #header .megamenu .left ul li.title {
    font-size: 20px;
  }
}
#header .megamenu .left ul li:first-child span.tit {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1024px) {
  #header .megamenu .left ul li:first-child span.tit {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #header .megamenu .left ul li:first-child span.tit {
    font-size: 20px;
  }
}
#header .megamenu .left ul li span {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  #header .megamenu .left ul li span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #header .megamenu .left ul li span {
    font-size: 16px;
  }
}
#header .megamenu .left ul li span.tit {
  color: var(--primary-deep-active);
}
#header .megamenu .left ul li span.con {
  color: var(--secondary-deep-hover);
  margin-left: auto;
}
#header .megamenu .menu-list {
  display: flex;
  margin-top: 40px;
  margin-left: auto;
}
#header .megamenu .menu-item {
  width: 210px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 10px;
}
#header .megamenu .menu-item .box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#header .megamenu .menu-item .box div {
  margin-bottom: 16px;
}
#header .megamenu .menu-item .depth2 {
  height: 37px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-bg-2);
  color: var(--primary-deep-active);
  padding: 5px 15px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  #header .megamenu .menu-item .depth2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #header .megamenu .menu-item .depth2 {
    font-size: 16px;
  }
}
#header .megamenu .menu-item .depth2:hover {
  background-color: var(--primary-light-hover);
}
#header .megamenu .menu-item .depth3 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-12);
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1024px) {
  #header .megamenu .menu-item .depth3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #header .megamenu .menu-item .depth3 {
    font-size: 16px;
  }
}
#header .megamenu .menu-item .depth3:hover {
  color: var(--primary-deep-hover);
}
#header .megamenu .menu-item .depth3 + .depth3 {
  margin-top: 8px;
}
#header.menu-on {
  background-color: var(--color-white);
}
#header.menu-on::before {
  opacity: 1;
}
#header.all::before {
  opacity: 1;
}
#header.all .sitemap {
  opacity: 1;
  height: 100vh;
  visibility: visible;
}
#header.all .sitemap li::after {
  width: 100%;
}
#header:not(.all) .sitemap {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
#header .sitemap {
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 100;
  top: 100px;
  transition: all 0.4s;
  background-color: var(--color-white);
}
#header .sitemap.no-transition {
  transition: none !important;
}
#header .sitemap.no-transition * {
  transition: none !important;
}
#header .sitemap .container {
  width: 100%;
  max-width: 1530px;
  height: calc(100vh - 100px);
}
#header .sitemap .left {
  display: none;
}
#header .sitemap .bullet-title {
  padding-top: 24px;
}
#header .sitemap .menu-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-8);
}
#header .sitemap .menu-item .box {
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#header .sitemap .menu-item .box div {
  margin-bottom: 16px;
}
#header .sitemap .menu-item .depth2 {
  height: 37px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-bg-2);
  color: var(--primary-deep-active);
  padding: 5px 15px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  #header .sitemap .menu-item .depth2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #header .sitemap .menu-item .depth2 {
    font-size: 16px;
  }
}
#header .sitemap .menu-item .depth2:hover {
  background-color: var(--primary-light-hover);
}
#header .sitemap .menu-item .depth3 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-12);
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1024px) {
  #header .sitemap .menu-item .depth3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #header .sitemap .menu-item .depth3 {
    font-size: 16px;
  }
}
#header .sitemap .menu-item .depth3:hover {
  color: var(--primary-deep-hover);
}
#header .sitemap .menu-item .depth3 + .depth3 {
  margin-top: 8px;
}

/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - 핵심: selector 컨텍스트(&)로 미디어를 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 72px;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 40px;
  }
}

.title-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 48px;
}
@media (max-width: 1024px) {
  .title-1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .title-1 {
    font-size: 32px;
  }
}

.title-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 1024px) {
  .title-2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .title-2 {
    font-size: 28px;
  }
}

.title-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .title-3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .title-3 {
    font-size: 24px;
  }
}

.title-4 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .title-4 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .title-4 {
    font-size: 20px;
  }
}

.body-1-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-1 {
    font-size: 20px;
  }
}

.body-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-2 {
    font-size: 20px;
  }
}

.body-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-1 {
    font-size: 18px;
  }
}

.body-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-2 {
    font-size: 18px;
  }
}

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-1 {
    font-size: 16px;
  }
}

.body-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

#footer {
  background-color: var(--gray-12);
  margin-top: 120px;
}
#footer .footer-inner {
  padding: 40px 0 70px;
  display: flex;
  gap: 60px;
}
#footer .logo-box {
  width: 200px;
  height: 49px;
  background-image: url("../../assets/images/logo-footer.png");
  background-size: contain;
  background-repeat: no-repeat;
}
#footer .terms-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}
#footer .terms-list a {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  #footer .terms-list a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #footer .terms-list a {
    font-size: 18px;
  }
}
#footer .terms-list a:after {
  content: "";
  display: block;
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5px;
  position: absolute;
  right: -16px;
  top: 0;
}
#footer .terms-list a:last-child:after {
  display: none;
}
#footer .info {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}
#footer .info p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--gray-8);
  position: relative;
}
@media (max-width: 1024px) {
  #footer .info p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #footer .info p {
    font-size: 16px;
  }
}
#footer .dropdown {
  max-width: 300px;
  margin-left: auto;
}
#footer .dropdown_button {
  justify-content: center;
  gap: 20px;
  background: var(--gray-12);
  border: 1px solid var(--gray-9);
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
}
#footer .dropdown_button::after {
  filter: var(--filter-white);
}
#footer .dropdown_value {
  color: var(--gray-7);
  font-size: 20px;
  font-weight: 600;
}
#footer .dropdown_list {
  top: calc(100% - 140px);
  background: var(--gray-11);
  border: 1px solid var(--gray-9);
  border-radius: 10px;
  padding: 20px 24.5px;
  text-align: center;
}
#footer .dropdown_option {
  border-bottom: 0.5px solid var(--gray-9);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--gray-4);
  padding: 10px 11.5px;
  border-radius: 0;
  /* 선택 상태: 배경과 글자 강조 */
}
@media (max-width: 1024px) {
  #footer .dropdown_option {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #footer .dropdown_option {
    font-size: 16px;
  }
}
#footer .dropdown_option:hover {
  background: var(--gray-11);
  color: var(--color-white);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  #footer .dropdown_option:hover {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #footer .dropdown_option:hover {
    font-size: 16px;
  }
}
#footer .dropdown_option[aria-selected=true] {
  background: var(--gray-11);
  color: var(--color-primary);
}
#footer .dropdown[aria-open=true] .dropdown_button {
  z-index: 9999;
}

/* bullet title */
.bullet-title.depth1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--color-darken);
  position: relative;
  padding-left: 32px;
}
@media (max-width: 1024px) {
  .bullet-title.depth1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .bullet-title.depth1 {
    font-size: 24px;
  }
}
.bullet-title.depth1:before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url("../../assets/images/icon/icon-bullet-1.svg");
  background-size: 24px;
  background-position: center;
  flex-shrink: 0;
  position: absolute;
  top: 11px;
  left: 0;
}
.bullet-title.depth2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-darken);
  padding-left: 16px;
  position: relative;
}
@media (max-width: 1024px) {
  .bullet-title.depth2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .bullet-title.depth2 {
    font-size: 20px;
  }
}
.bullet-title.depth2:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background-color: var(--color-secondary);
  flex-shrink: 0;
  position: absolute;
  top: 11px;
  left: 0;
}
.bullet-title.depth3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-12);
  padding-left: 16px;
  position: relative;
}
@media (max-width: 1024px) {
  .bullet-title.depth3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .bullet-title.depth3 {
    font-size: 18px;
  }
}
.bullet-title.depth3:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  background-color: var(--color-white);
  border: 1px solid var(--gray-12);
  flex-shrink: 0;
  position: absolute;
  top: 11px;
  left: 0;
}
.bullet-title.num.depth1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--color-darken);
  position: relative;
  padding-left: 32px;
}
@media (max-width: 1024px) {
  .bullet-title.num.depth1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .bullet-title.num.depth1 {
    font-size: 24px;
  }
}
.bullet-title.num.depth1:before {
  content: "";
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  background-image: none;
  border-radius: 2px;
  flex-shrink: 0;
  position: absolute;
  top: 11px;
  left: 0;
}
@media (max-width: 1024px) {
  .bullet-title.num.depth1:before {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .bullet-title.num.depth1:before {
    font-size: 18px;
  }
}
.bullet-title.num.depth1.n1:before {
  content: "1";
}
.bullet-title.num.depth1.n2:before {
  content: "2";
}
.bullet-title.num.depth1.n3:before {
  content: "3";
}
.bullet-title.num.depth1.n4:before {
  content: "4";
}
.bullet-title.num.depth3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-darken);
  position: relative;
  padding-left: 26px;
}
@media (max-width: 1024px) {
  .bullet-title.num.depth3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .bullet-title.num.depth3 {
    font-size: 18px;
  }
}
.bullet-title.num.depth3:before {
  content: "";
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-12);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  background-image: none;
  border-radius: 2px;
  flex-shrink: 0;
  position: absolute;
  top: 6px;
  left: 0;
}
@media (max-width: 1024px) {
  .bullet-title.num.depth3:before {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .bullet-title.num.depth3:before {
    font-size: 18px;
  }
}
.bullet-title.num.depth3.n1:before {
  content: "1";
}
.bullet-title.num.depth3.n2:before {
  content: "2";
}
.bullet-title.num.depth3.n3:before {
  content: "3";
}
.bullet-title.num.depth3.n4:before {
  content: "4";
}
.bullet-title.num.depth3.n5:before {
  content: "5";
}
.bullet-title.num.depth3.n6:before {
  content: "6";
}
.bullet-title.num.depth3.n7:before {
  content: "7";
}
.bullet-title.num.depth3.n8:before {
  content: "8";
}
.bullet-title.num.depth3.n9:before {
  content: "9";
}
.bullet-title.num.depth3.n10:before {
  content: "10";
}

/* page title */
.pagetitle-wrap {
  margin: 0 auto;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}
.pagetitle-wrap h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--color-darken);
  text-align: center;
  border-bottom: 7px solid var(--color-primary);
}
@media (max-width: 1024px) {
  .pagetitle-wrap h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .pagetitle-wrap h2 {
    font-size: 28px;
  }
}

#breadcrumb {
  border-top: 1px solid var(--gray-6);
  border-bottom: 1px solid var(--gray-6);
  background-color: var(--color-white);
}
#breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 50px;
}
#breadcrumb .container .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: var(--filter-gray-12);
}
#breadcrumb .container .dropdown {
  width: 240px;
  /* 열림 상태 */
}
#breadcrumb .container .dropdown_button {
  height: 37px;
  border: 0;
  padding: 0 10px;
  background: var(--gray-2);
  color: var(--gray-11);
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  border-radius: 9999px;
  /* 마지막 드롭다운 색상 */
}
@media (max-width: 1024px) {
  #breadcrumb .container .dropdown_button {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #breadcrumb .container .dropdown_button {
    font-size: 16px;
  }
}
#breadcrumb .container .dropdown_button::after {
  filter: var(--filter-gray-12);
  margin-left: 0;
}
#breadcrumb .container .dropdown_button.last {
  background-color: var(--primary-light);
}
#breadcrumb .container .dropdown_button.last:after {
  filter: var(--filter-dark);
}
#breadcrumb .container .dropdown_button.last .dropdown_value {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--gray-12) !important;
}
@media (max-width: 1024px) {
  #breadcrumb .container .dropdown_button.last .dropdown_value {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #breadcrumb .container .dropdown_button.last .dropdown_value {
    font-size: 16px;
  }
}
#breadcrumb .container .dropdown.is-placeholder .dropdown_value {
  color: var(--gray-11);
}
#breadcrumb .container .dropdown_list {
  max-height: inherit !important;
  justify-content: center;
  border: var(--gray-5);
  background-color: var(--gray-2);
  border-radius: 20px;
  padding: 10px;
  top: calc(100% + 10px);
}
#breadcrumb .container .dropdown_list li + li {
  margin-top: 8px;
}
#breadcrumb .container .dropdown_option {
  height: 37px;
  justify-content: center;
  text-align: center;
}
#breadcrumb .container .dropdown_option[aria-selected=true] {
  height: 37px;
  border-radius: 9999px;
  background: var(--primary-light);
  color: var(--gray-12);
}
#breadcrumb .container .dropdown[aria-open=true] .dropdown_button {
  border: 1px solid var(--gray-5);
}
#breadcrumb .container .dropdown[aria-open=true] .dropdown_list {
  display: block;
}
#breadcrumb .container .depth:last-child .dropdown_button {
  background-color: var(--primary-light);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  #breadcrumb .container .depth:last-child .dropdown_button {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #breadcrumb .container .depth:last-child .dropdown_button {
    font-size: 16px;
  }
}
#breadcrumb .container .depth:last-child .dropdown_button::after {
  filter: var(--filter-gray-12);
}
#breadcrumb .container .depth:last-child .dropdown_value {
  color: var(--gray-12);
}
#breadcrumb .link-home {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#boardsearch {
  margin-bottom: 32px;
}
#boardsearch fieldset {
  min-inline-size: auto;
}
#boardsearch .search-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
#boardsearch .search-inputs .dropdown {
  width: 200px;
  margin-left: auto;
}

.search-keyword-box {
  width: 400px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--gray-8);
}
.search-keyword-box:hover, .search-keyword-box:focus-within {
  border-bottom-color: var(--color-primary);
}
.search-keyword-box:hover .icon, .search-keyword-box:focus-within .icon {
  filter: var(--filter-dark);
}
.search-keyword-box .text-field {
  height: 30px;
  flex-grow: 1;
  border: none;
  outline: none;
  padding-left: 0;
  color: var(--gray-12);
}
.search-keyword-box button {
  flex-shrink: 0;
}
.search-keyword-box button .icon {
  width: 24px;
  height: 24px;
  filter: var(--filter-default);
}

/* boardlist */
.board-list .board-head {
  display: grid;
  align-items: center;
  grid-template-columns: 130px 1fr 173px;
  gap: 0;
  padding: 22px 0;
  border-top: 3px solid var(--color-primary);
  border-bottom: 1px solid var(--gray-8);
}
.board-list .board-head .col {
  text-align: center;
}
.board-list .board-head .col.col-title, .board-list .board-head .col.col-date, .board-list .board-head .col.col-num {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .board-list .board-head .col.col-title, .board-list .board-head .col.col-date, .board-list .board-head .col.col-num {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .board-list .board-head .col.col-title, .board-list .board-head .col.col-date, .board-list .board-head .col.col-num {
    font-size: 20px;
  }
}
.board-list .board-row {
  border-bottom: 1px solid var(--gray-8);
}
.board-list .board-row.is-notice {
  background: var(--gray-3);
}
.board-list .board-row.is-notice .col.col-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .board-list .board-row.is-notice .col.col-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .board-list .board-row.is-notice .col.col-title {
    font-size: 18px;
  }
}
.board-list .board-item {
  display: grid;
  grid-template-columns: 130px 1fr 173px;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  position: relative;
  transition: background 0.15s ease;
  border: 1px solid transparent;
}
.board-list .board-item:hover {
  background: var(--primary-bg-2);
  border: 1px solid var(--primary-normal);
  border-radius: 10px;
}
.board-list .board-item:hover .col.col-num, .board-list .board-item:hover .col.col-date, .board-list .board-item:hover .col.col-title {
  color: var(--primary-deep-hover);
}
.board-list .board-item .col {
  color: var(--gray-12);
  text-align: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .board-list .board-item .col {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .board-list .board-item .col {
    font-size: 18px;
  }
}
.board-list .board-item .col.col-title {
  /* 두 줄 말줄임 */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

/* boarddetail */
.board-detail .title-box {
  border-top: 3px solid var(--color-primary);
  border-bottom: 1px solid var(--gray-8);
  padding: 27px 30px;
  display: flex;
}
.board-detail .title-box .left {
  display: flex;
  gap: 32px;
}
.board-detail .title-box .col {
  text-align: center;
  color: var(--gray-12);
}
.board-detail .title-box .col.col-num {
  display: inline-block;
  flex-shrink: 0;
}
.board-detail .title-box .col.col-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  text-align: left;
}
@media (max-width: 1024px) {
  .board-detail .title-box .col.col-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .board-detail .title-box .col.col-title {
    font-size: 24px;
  }
}
.board-detail .title-box .data {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-left: 30px;
  flex-shrink: 0;
}
.board-detail .title-box .col-view > span {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-11);
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  padding-top: 2px;
}
@media (max-width: 1024px) {
  .board-detail .title-box .col-view > span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .board-detail .title-box .col-view > span {
    font-size: 18px;
  }
}
.board-detail .title-box .col-view .icon {
  width: 24px;
  height: 24px;
  filter: var(--filter-gray-12);
}
.board-detail .title-box .col-date {
  position: relative;
}
.board-detail .title-box .col-date span {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-11);
}
@media (max-width: 1024px) {
  .board-detail .title-box .col-date span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .board-detail .title-box .col-date span {
    font-size: 18px;
  }
}
.board-detail .title-box .col-date::before {
  content: "";
  width: 1px;
  height: 12px;
  display: block;
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--gray-7);
}
.board-detail .attachment-box {
  background-color: var(--gray-3);
  border-bottom: 1px solid var(--gray-8);
  display: flex;
  padding: 22px 0;
}
.board-detail .attachment-box .box-title {
  flex-shrink: 0;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--gray-11);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 30px;
}
@media (max-width: 1024px) {
  .board-detail .attachment-box .box-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .board-detail .attachment-box .box-title {
    font-size: 20px;
  }
}
.board-detail .attachment-box .box-title .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.board-detail .attachment-box .box-title::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: var(--gray-9);
  margin-left: 26px;
}
.board-detail .attachment-box .btn-download {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--gray-9);
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .board-detail .attachment-box .btn-download {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .board-detail .attachment-box .btn-download {
    font-size: 20px;
  }
}
.board-detail .attachment-box .btn-download .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.board-detail .content-box {
  padding: 40px 40px 80px;
  border-bottom: 1px solid var(--gray-8);
}
.board-detail .content-box * {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .board-detail .content-box * {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .board-detail .content-box * {
    font-size: 18px;
  }
}

.post-navigation {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.post-navigation .post-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--gray-6);
  border-bottom: 1px solid var(--gray-6);
  background: var(--color-white);
}
.post-navigation .post-nav-item {
  display: flex;
  min-height: 56px;
}
.post-navigation .post-nav-item + .post-nav-item {
  border-top: 1px solid #e6e6e6;
}
.post-navigation .post-nav-item .post-nav-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background-color: var(--gray-2);
  flex-shrink: 0;
}
.post-navigation .post-nav-item .post-nav-label .icon {
  width: 24px;
  height: 24px;
}
.post-navigation .post-nav-item .post-nav-label span {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-12);
}
@media (max-width: 1024px) {
  .post-navigation .post-nav-item .post-nav-label span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .post-navigation .post-nav-item .post-nav-label span {
    font-size: 18px;
  }
}
.post-navigation .post-nav-item .post-nav-link {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  margin: 16px 20px;
  min-width: 0;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--gray-12);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .post-navigation .post-nav-item .post-nav-link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .post-navigation .post-nav-item .post-nav-link {
    font-size: 16px;
  }
}
.post-navigation .post-nav-item .post-nav-link:hover, .post-navigation .post-nav-item .post-nav-link:focus-visible {
  text-decoration: underline;
}
.post-navigation .post-nav-item.is-disabled .post-nav-label span {
  color: var(--gray-11);
}
.post-navigation .post-nav-item.is-disabled .post-nav-link {
  color: var(--gray-11);
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}
.post-navigation .post-nav-item.is-disabled .post-nav-link:hover, .post-navigation .post-nav-item.is-disabled .post-nav-link:focus-visible {
  text-decoration: none;
  outline: none;
}
.post-navigation .btn {
  width: 400px;
  margin: 0 auto;
}

/* cardlist */
.card-list .card-item {
  border: 2px solid var(--gray-5);
  border-radius: 10px;
  padding: 30px;
  background-color: var(--color-white);
}
.card-list .card-item:hover {
  border: 2px solid var(--primary-normal);
  background-color: var(--primary-bg-2);
}
.card-list .card-item:hover .cont {
  border-top: 2px solid var(--primary-normal);
}
.card-list .card-item:hover .cont,
.card-list .card-item:hover .date {
  color: var(--primary-deep-hover);
}
.card-list .card-item h3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--primary-deep-hover);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .card-list .card-item h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .card-list .card-item h3 {
    font-size: 24px;
  }
}
.card-list .card-item .cont {
  padding-top: 20px;
  margin-top: 16px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--gray-11);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border-top: 2px solid var(--gray-4);
}
@media (max-width: 1024px) {
  .card-list .card-item .cont {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .card-list .card-item .cont {
    font-size: 20px;
  }
}
.card-list .card-item .flex {
  margin-top: 48px;
}
.card-list .card-item .date {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-11);
  margin-left: auto;
}
@media (max-width: 1024px) {
  .card-list .card-item .date {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .card-list .card-item .date {
    font-size: 18px;
  }
}

/* galllist */
.gall-list .gall-item {
  border: 2px solid var(--gray-5);
  border-radius: 10px;
  padding: 30px;
  background-color: var(--color-white);
}
.gall-list .gall-item:hover {
  border: 2px solid var(--primary-normal);
  background-color: var(--primary-bg-2);
}
.gall-list .gall-item:hover h3 {
  color: var(--primary-deep-hover);
}
.gall-list .gall-item:hover .date {
  color: var(--primary-deep-hover);
}
.gall-list .gall-item .img-box {
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gall-list .gall-item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gall-list .gall-item h3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--gray-12);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .gall-list .gall-item h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .gall-list .gall-item h3 {
    font-size: 20px;
  }
}
.gall-list .gall-item .date {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-11);
  text-align: right;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .gall-list .gall-item .date {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .gall-list .gall-item .date {
    font-size: 18px;
  }
}

/* datalist */
.data-list .data-head {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  border-radius: 10px;
  background-color: var(--color-primary);
}
.data-list .data-head div {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-white);
  text-align: center;
}
@media (max-width: 1024px) {
  .data-list .data-head div {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .data-list .data-head div {
    font-size: 20px;
  }
}
.data-list .data-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.data-list .data-item {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid var(--gray-5);
  background-color: var(--color-white);
  transition: all 0.15s ease;
}
.data-list .data-item:hover {
  border: 1px solid var(--primary-normal-hover);
  background-color: var(--primary-light);
}
.data-list .data-item div {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--gray-12);
  text-align: center;
}
@media (max-width: 1024px) {
  .data-list .data-item div {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .data-list .data-item div {
    font-size: 18px;
  }
}
.data-list .data-item div:first-child {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .data-list .data-item div:first-child {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .data-list .data-item div:first-child {
    font-size: 18px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.pagination-list {
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-btn,
.page-num > a,
.page-num > span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--gray-6);
  transition: background 0.15s ease, color 0.15s ease;
}
@media (max-width: 1024px) {
  .page-btn,
  .page-num > a,
  .page-num > span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .page-btn,
  .page-num > a,
  .page-num > span {
    font-size: 20px;
  }
}

/* 숫자 기본 */
.page-num > a {
  background: var(--color-white);
  border: 1px solid transparent;
}

.page-num > a:hover {
  border: 1px solid var(--secondary-normal);
  background-color: var(--secondary-bg-2);
  color: var(--secondary-deep-hover);
}

/* 현재 페이지 (보라 원형, 흰색 숫자) */
.page-num.is-current > span {
  background: var(--color-primary);
  color: #fff;
}

.page-ctrl .icon {
  width: 24px;
  height: 24px;
}

/* 비활성 컨트롤 */
.page-ctrl .page-btn[aria-disabled=true] {
  color: var(--color-disabled);
  background: transparent;
  border-color: transparent;
}
.page-ctrl .page-btn[aria-disabled=true] .icon {
  filter: brightness(0) saturate(100%) invert(91%) sepia(8%) saturate(10%) hue-rotate(11deg) brightness(88%) contrast(96%);
}

.collapse-wrap {
  margin: 0 auto;
}
.collapse-wrap .collapse-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.collapse-wrap .collapse-list.col2 {
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
}
.collapse-wrap .collapse-item {
  border: 2px solid var(--gray-5);
  border-radius: 20px;
  background: var(--color-white);
  overflow: hidden;
}
.collapse-wrap .collapse-item.is-open .collapse-top .icon:before {
  transform: rotate(180deg);
}
.collapse-wrap .collapse-top {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 30px;
  align-items: center;
  padding: 15px 20px;
}
.collapse-wrap .collapse-top .bullet-title::before {
  top: 5px;
}
.collapse-wrap .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-8);
  background-color: var(--color-white);
}
.collapse-wrap .icon:before {
  background-image: url("../../assets/images/icon/icon-arrow-down-secondary.svg");
  background-size: 19px 12px;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  filter: var(--filter-secondary);
}
.collapse-wrap .collapse-panel {
  border-top: 2px solid var(--gray-4);
  overflow: hidden;
  height: 0;
}
.collapse-wrap .collapse-answer {
  padding: 24px 0 30px;
  margin: 0 30px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--gray-11);
}
@media (max-width: 1024px) {
  .collapse-wrap .collapse-answer {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .collapse-wrap .collapse-answer {
    font-size: 20px;
  }
}
.collapse-wrap .collapse-answer .text-list {
  padding-left: 24px;
}
.collapse-wrap .collapse-answer .text-list li .bullet-title.depth3 {
  color: var(--gray-11);
}
.collapse-wrap .collapse-answer .text-list li .shrink-0 {
  width: 60px;
}

.tabs {
  display: flex;
  align-items: center;
}
.tabs.col2 a {
  min-width: 240px;
}
.tabs a {
  height: 66px;
  border-radius: 12px 12px 0 0;
  background-color: var(--gray-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--gray-11);
  border-bottom: 1px solid var(--color-primary);
}
@media (max-width: 1024px) {
  .tabs a {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .tabs a {
    font-size: 20px;
  }
}
.tabs a.on {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-bottom: 0;
}

/* =========================================================
 * Modal (video)
 * markup:
 * .modal
 *  - .modal-backdrop [data-close]
 *  - .modal-dialog (role="dialog")
 *    - .modal-header
 *      - .modal-title
 *      - .modal-close
 *    - .modal-body
 *      - #videoModalMedia (inside .video-modal-media)
 * ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  padding: 24px;
  /* -------------------------
   * header
   * ------------------------- */
  /* -------------------------
   * body
   * ------------------------- */
  /* -------------------------
   * media area
   * ------------------------- */
}
.modal[aria-hidden=false] {
  display: block;
}
.modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal .modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1140px, 100%);
  max-height: calc(100vh - 48px);
  margin: 0 auto;
  padding: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modal .modal-dialog:focus {
  outline: none;
}
.modal .modal-dialog:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 4px;
}
.modal .modal-header {
  display: flex;
  align-items: center;
  background: var(--color-white);
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-4);
}
.modal .modal-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--gray-12);
  width: calc(100% - 40px);
  text-align: center;
}
@media (max-width: 1024px) {
  .modal .modal-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .modal .modal-title {
    font-size: 28px;
  }
}
.modal .modal-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
}
.modal .modal-close:hover {
  background: rgba(0, 0, 0, 0.6);
}
.modal .modal-close:focus {
  outline: none;
}
.modal .modal-close:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.6);
  outline-offset: 2px;
}
.modal .modal-close .icon {
  width: 20px;
  height: 20px;
}
.modal .modal-body {
  overflow: auto;
}
.modal .video-modal-media {
  width: 100%;
}
.modal .video-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
}
.modal .video-ratio iframe,
.modal .video-ratio video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.modal .video-thumb {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.modal .video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: var(--color-white);
}
.modal .video-play:hover {
  background: rgba(0, 0, 0, 0.7);
}
.modal .video-play:focus {
  outline: none;
}
.modal .video-play:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}
.modal .video-play .icon {
  width: 36px;
  height: 36px;
}
.modal .video-ratio.is-playing .video-thumb,
.modal .video-ratio.is-playing .video-play {
  display: none;
}
@supports not (aspect-ratio: 16/9) {
  .modal .video-ratio {
    height: 0;
    padding-top: 56.25%;
  }
  .modal .video-ratio iframe,
  .modal .video-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.modal .video-modal-desc {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--gray-11);
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 1024px) {
  .modal .video-modal-desc {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .modal .video-modal-desc {
    font-size: 20px;
  }
}

/* =========================================================
 * Body scroll lock (open 시)
 * ========================================================= */
body.is-modal-open {
  overflow: hidden;
}

/* =========================================================
 * Responsive
 * ========================================================= */
@media (max-width: 768px) {
  .modal {
    padding: 20px;
  }
  .modal .modal-header {
    align-items: flex-start;
  }
  .modal .modal-dialog {
    width: 100%;
    padding: 20px;
    gap: 16px;
  }
  .modal .modal-title {
    text-align: left;
  }
  .modal .video-modal-desc {
    margin-top: 16px;
  }
}
/* media */
/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - 핵심: selector 컨텍스트(&)로 미디어를 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 72px;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 40px;
  }
}

.title-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 48px;
}
@media (max-width: 1024px) {
  .title-1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .title-1 {
    font-size: 32px;
  }
}

.title-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
}
@media (max-width: 1024px) {
  .title-2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .title-2 {
    font-size: 28px;
  }
}

.title-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .title-3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .title-3 {
    font-size: 24px;
  }
}

.title-4 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .title-4 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .title-4 {
    font-size: 20px;
  }
}

.body-1-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-1 {
    font-size: 20px;
  }
}

.body-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .body-1-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .body-1-2 {
    font-size: 20px;
  }
}

.body-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-1 {
    font-size: 18px;
  }
}

.body-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .body-2-2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .body-2-2 {
    font-size: 18px;
  }
}

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-1 {
    font-size: 16px;
  }
}

.body-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

/* 햄버거 생기기 전 사이트맵 숨김 */
@media (min-width: 1431px) {
  #header .sitemap {
    display: none;
  }
  #header.all .sitemap {
    display: none;
  }
}
/* component media 1430 */
@media (max-width: 1430px) {
  /* section */
  .section {
    padding: 80px 0;
  }
  /* container */
  .container {
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
  .container.fluid {
    padding: 0;
  }
  /* table-wrap */
  .table-wrap.scroll-x {
    overflow-x: auto;
  }
  .table-wrap.scroll-x table {
    width: 1430px;
  }
  /* header */
  #header .header-inner {
    padding: 0;
  }
  #header nav {
    display: none;
  }
  #header .megamenu {
    display: none;
  }
  #header .btn-menu {
    display: block;
    margin-left: auto;
  }
  #header .sitemap li + li {
    margin-top: 0;
  }
  #header .sitemap .bullet-title:before {
    top: 35px;
  }
  /* footer */
  #footer {
    margin-top: 80px;
  }
  #footer .footer-inner {
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }
  #footer .box-item:first-child {
    order: 1;
    flex: 0 0 auto;
  }
  #footer .box-item + .box-item {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
  }
  #footer .dropdown {
    order: 2;
    margin-left: auto;
    flex: 0 0 auto;
  }
  /* breadcrumb */
  #breadcrumb .container .dropdown {
    width: auto;
    /* ✅ 마지막 뎁스가 아닌 드롭다운 (JS의 .dropdown.last 기준으로 판정) */
    /* ✅ 마지막 뎁스 드롭다운만 기존 버튼 형태 유지 (래퍼 last 기준) */
  }
  #breadcrumb .container .dropdown.last {
    width: 220px;
  }
  #breadcrumb .container .dropdown_button {
    height: 37px;
    padding: 0 10px;
  }
  #breadcrumb .container .dropdown:not(.last) .dropdown_button {
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: default;
    pointer-events: none;
    justify-content: center;
  }
  #breadcrumb .container .dropdown:not(.last) .dropdown_button::after {
    display: none;
  }
  #breadcrumb .container .dropdown:not(.last) .dropdown_button:hover, #breadcrumb .container .dropdown:not(.last) .dropdown_button:focus {
    border-color: transparent;
  }
  #breadcrumb .container .dropdown:not(.last) .dropdown_value {
    padding: 0;
    line-height: 1;
    color: var(--gray-9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #breadcrumb .container .dropdown:not(.last) .dropdown_list {
    display: none !important;
  }
  #breadcrumb .container .dropdown.last .dropdown_button {
    padding: 0 15px;
    cursor: pointer;
    pointer-events: auto;
  }
  #breadcrumb .container .dropdown.last .dropdown_button::after {
    display: block;
  }
  /* page title */
  .pagetitle-wrap {
    margin-bottom: 40px;
  }
}
/* media 1024 */
@media (max-width: 1024px) {
  /* table-wrap */
  .table-wrap.scroll-x table {
    width: 1024px;
  }
  /* header */
  #header .sitemap .container {
    overflow-y: auto;
    align-items: flex-start;
  }
  #header .sitemap ul {
    margin-top: 50px;
  }
  #header .sitemap li {
    flex-direction: column;
  }
  #header .sitemap li + li {
    margin-top: 0;
  }
  #header .sitemap li p {
    width: 100%;
    font-size: 36px;
    text-align: center;
    margin-left: 0;
  }
  #header .sitemap li a {
    font-size: 18px;
  }
  #header .sitemap li a:first-child {
    margin-left: 0;
  }
  #header .sitemap li .depth2 {
    width: 100%;
  }
  #header .sitemap .bullet-title:before {
    top: 33px;
  }
  /* breadcrumb */
  #breadcrumb .container .dropdown_button {
    height: 34px;
  }
  /* Collapse */
  .collapse-wrap .collapse-top {
    padding: 20px;
  }
  .collapse-wrap .collapse-top .bullet-title::before {
    top: 3px;
  }
  /* tabs */
  .tabs a {
    height: 60px;
  }
  /* board */
  .board-list .board-head {
    grid-template-columns: 160px 1fr;
  }
  .board-list .board-head .col-date {
    display: none;
  }
  .board-list .board-item {
    grid-template-columns: 160px 1fr;
  }
  .board-list .board-item .col-date {
    display: none;
  }
  .board-detail .title-box {
    padding: 20px;
    flex-wrap: wrap;
  }
  .board-detail .title-box .left {
    width: 100%;
    gap: 24px;
  }
  .board-detail .title-box .data {
    margin-left: 0;
    margin-top: 16px;
    padding-left: 0;
  }
  /* galllist */
  .gall-list .gall-item {
    padding: 20px;
  }
  /* cardlist */
  .card-list .card-item h3 {
    -webkit-line-clamp: 2;
  }
  .card-list .card-item .cont {
    font-size: 0;
  }
  .card-list .card-item .flex {
    margin-top: 0;
  }
  /* datalist */
  .data-list .data-head {
    grid-template-columns: 140px 1fr 140px;
  }
  .data-list .data-item {
    grid-template-columns: 140px 1fr 140px;
  }
}
/* media 768 */
@media (max-width: 768px) {
  /* ============================= */
  /* atoms */
  /* ============================= */
  /* chip */
  .chip.size-md {
    height: 31px;
    padding: 0 15px;
    font-family: "Pretendard", sans-serif;
    font-weight: 600;
    font-size: 20px;
  }
  /* section */
  /* container */
  /* table-wrap */
  /* header */
  /* footer */
  /* breadcrumb */
  /* collapse */
  /* boardsearch */
  /* cardlist */
  /* datalist */
  /* pagination */
}
@media (max-width: 768px) and (max-width: 1024px) {
  .chip.size-md {
    font-size: 18px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .chip.size-md {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container.fluid {
    padding: 0;
  }
  .table-wrap.scroll-x table {
    width: 768px;
  }
  #header::before {
    top: 80px;
  }
  #header .header-inner {
    height: 80px;
  }
  #header .sitemap {
    top: 80px;
  }
  #header .sitemap .container {
    height: calc(100vh - 80px);
    display: flex;
    padding: 0;
  }
  #header .sitemap .left {
    width: 40%;
    height: calc(100vh - 80px);
    display: block;
    background-color: var(--color-primary);
    padding: 40px 20px;
  }
  #header .sitemap .left button {
    width: 100%;
    display: block;
    font-family: "Pretendard", sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: var(--primary-light-active);
    padding: 20px 10px;
    border-radius: 10px;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  #header .sitemap .left button {
    font-size: 18px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #header .sitemap .left button {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #header .sitemap .left button.on {
    background-color: var(--primary-deep-hover);
    color: var(--color-white);
    text-decoration: underline;
  }
  #header .sitemap .left button + button {
    margin-top: 36px;
  }
  #header .sitemap .menu-list {
    width: 60%;
    height: calc(100vh - 80px);
    padding: 40px 10px;
  }
  #header .sitemap .menu-list .bullet-title {
    display: none;
  }
  #header .sitemap .menu-item {
    flex-direction: column;
    gap: 24px;
    padding: 0;
    border-bottom: 0;
    display: none;
  }
  #header .sitemap .menu-item.on {
    display: block;
  }
  #header .sitemap .menu-item .box {
    gap: 16px;
  }
  #header .sitemap .menu-item .box + .box {
    margin-top: 24px;
  }
  #header .sitemap .menu-item .box div {
    margin-bottom: 0;
  }
  #footer {
    margin-top: 40px;
  }
  #footer .box-item + .box-item {
    order: 2;
  }
  #footer .dropdown {
    order: 3;
    margin-left: 0;
    width: 100%;
    max-width: none;
  }
  #footer .dropdown_button {
    width: 100%;
  }
  #breadcrumb.is-bc-static .container .link-home,
  #breadcrumb.is-bc-static .container .icon-arrow-right {
    display: none;
  }
  #breadcrumb.is-bc-static .container .dropdown {
    display: none;
  }
  #breadcrumb.is-bc-static .container .dropdown.last {
    display: block;
    width: 100%;
  }
  .collapse-wrap .collapse-top .icon {
    width: 32px;
    height: 32px;
  }
  .collapse-wrap .collapse-list.col2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .tabs.col2 a {
    width: 50%;
    min-width: auto;
  }
  #boardsearch .search-inputs {
    flex-direction: column;
  }
  #boardsearch .search-inputs .dropdown {
    width: 100%;
  }
  #boardsearch .search-keyword-box {
    width: 100%;
  }
  .board-list .board-head {
    display: none;
  }
  .board-list .board-item {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .board-list .board-item .col-num {
    font-family: "Pretendard", sans-serif;
    font-weight: 600;
    font-size: 18px;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .board-list .board-item .col-num {
    font-size: 16px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .board-list .board-item .col-num {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .board-detail .title-box {
    flex-direction: column;
    gap: 0;
  }
  .board-detail .title-box .left {
    flex-direction: column;
    gap: 8px;
  }
  .board-detail .title-box .left .col.col-num {
    text-align: left;
  }
  .board-detail .attachment-box {
    padding: 15px 20px;
    flex-direction: column;
    gap: 0;
  }
  .board-detail .attachment-box .box-title {
    padding: 0;
  }
  .board-detail .attachment-box .box-title::after {
    display: none;
  }
  .board-detail .attachment-box .btn-download {
    width: 100%;
    padding-left: 32px;
    gap: 16px;
    align-items: flex-start;
  }
  .board-detail .attachment-box .btn-download .file-name {
    width: calc(100% - 38px);
  }
  .board-detail .attachment-box .btn-download .icon {
    margin-left: auto;
  }
  .board-detail .content-box {
    padding: 20px 20px 40px;
  }
  .post-navigation .btn {
    width: 100%;
    max-width: 400px;
  }
  .card-list .card-item {
    padding: 20px;
  }
  .data-list .data-head {
    display: none;
  }
  .data-list .data-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
  .data-list .data-item div {
    text-align: left;
  }
  .data-list .data-item div:last-child {
    margin-top: 16px;
    margin-left: auto;
  }
  #pagination .btn-pgn.next,
  #pagination .btn-pgn.prev {
    flex-shrink: 0;
  }
  #pagination .btn-pgn.first,
  #pagination .btn-pgn.last {
    flex-shrink: 0;
  }
}
/* media 360 */
@media (max-width: 360px) {
  /* breadcrumb */
  #breadcrumb .container {
    padding: 20px;
    gap: 8px;
  }
}