@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 ::-webkit-scrollbar {
  /* 스크롤 바(배경)의 너비 */
  width: 13px;
  height: 13px;
  /* 스크롤 바의 배경색 */
  background-color: var(--gray-3);
}
html {
  /* 스크롤 바의 색상 지정 */
}
html ::-webkit-scrollbar-thumb {
  /* 스크롤 바의 색상 */
  background-color: var(--color-primary);
  border-radius: 9999px;
}
html {
  /* 스크롤 바 호버 시 색상 지정 */
}
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: #F0F0F0;
  --gray-3-rgb: 240, 240, 240;
  --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: #828282;
  --gray-10-rgb: 130, 130, 130;
  --gray-11: #646464;
  --gray-11-rgb: 100, 100, 100;
  --gray-12: #202020;
  --gray-12-rgb: 32, 32, 32;
  /* blue */
  --blue-1: #FAFDFF;
  --blue-1-rgb: 250, 253, 255;
  --blue-2: #F3FAFE;
  --blue-2-rgb: 243, 250, 254;
  --blue-3: #E0F5FF;
  --blue-3-rgb: 224, 245, 255;
  --blue-4: #CEEEFF;
  --blue-4-rgb: 206, 238, 255;
  --blue-5: #BBE5FE;
  --blue-5-rgb: 187, 229, 254;
  --blue-6: #A5D9F7;
  --blue-6-rgb: 189, 215, 246;
  --blue-7: #87C9EE;
  --blue-7-rgb: 135, 201, 238;
  --blue-8: #54B2E3;
  --blue-8-rgb: 84, 178, 227;
  --blue-9: #289DD2;
  --blue-9-rgb: 40, 157, 210;
  --blue-10: #2490C1;
  --blue-10-rgb: 36, 144, 193;
  --blue-11: #0079AC;
  --blue-11-rgb: 0, 121, 172;
  --blue-12: #143A4E;
  --blue-12-rgb: 20, 58, 78;
  /* Point blue */
  --pb-1: #FBFDFF;
  --pb-1-rgb: 251, 253, 255;
  --pb-2: #F5F9FE;
  --pb-2-rgb: 245, 249, 254;
  --pb-3: #E7F2FF;
  --pb-3-rgb: 231, 242, 255;
  --pb-4: #DAEAFE;
  --pb-4-rgb: 218, 234, 254;
  --pb-5: #CCE1FB;
  --pb-5-rgb: 204, 225, 251;
  --pb-6: #BDD7F6;
  --pb-6-rgb: 189, 215, 246;
  --pb-7: #A8C7EE;
  --pb-7-rgb: 168, 199, 238;
  --pb-8: #87B1E4;
  --pb-8-rgb: 135, 177, 228;
  --pb-9: #6592C8;
  --pb-9-rgb: 101, 146, 200;
  --pb-10: #5C86B8;
  --pb-10-rgb: 92, 134, 184;
  --pb-11: #426DA1;
  --pb-11-rgb: 66, 109, 161;
  --pb-12: #1E2F44;
  --pb-12-rgb: 30, 47, 68;
  /* Point pink */
  --pp-1: #FEFCFE;
  --pp-1-rgb: 254, 252, 254;
  --pp-2: #FCF8FC;
  --pp-2-rgb: 252, 248, 252;
  --pp-3: #F9ECFA;
  --pp-3-rgb: 249, 236, 250;
  --pp-4: #F5E0F6;
  --pp-4-rgb: 245, 224, 246;
  --pp-5: #EFD3F0;
  --pp-5-rgb: 239, 211, 240;
  --pp-6: #E7C3E8;
  --pp-6-rgb: 231, 195, 232;
  --pp-7: #DBAEDD;
  --pp-7-rgb: 219, 174, 221;
  --pp-8: #CC92CF;
  --pp-8-rgb: 204, 146, 207;
  --pp-9: #B67DB9;
  --pp-9-rgb: 182, 125, 185;
  --pp-10: #AA71AD;
  --pp-10-rgb: 170, 113, 173;
  --pp-11: #87518A;
  --pp-11-rgb: 135, 81, 138;
  --pp-12: #4F1E52;
  --pp-12-rgb: 79, 30, 82;
  /* Point green */
  --pg-1: #FAFDFD;
  --pg-1-rgb: 250, 253, 253;
  --pg-2: #F4FAFB;
  --pg-2-rgb: 244, 250, 251;
  --pg-3: #E5F4F7;
  --pg-3-rgb: 229, 244, 247;
  --pg-4: #D7EDF2;
  --pg-4-rgb: 215, 237, 242;
  --pg-5: #C9E5EC;
  --pg-5-rgb: 201, 229, 236;
  --pg-6: #B9DBE3;
  --pg-6-rgb: 185, 219, 227;
  --pg-7: #A3CED8;
  --pg-7-rgb: 163, 206, 216;
  --pg-8: #81BAC7;
  --pg-8-rgb: 129, 186, 199;
  --pg-9: #5D9DAA;
  --pg-9-rgb: 93, 157, 170;
  --pg-10: #55909C;
  --pg-10-rgb: 85, 144, 156;
  --pg-11: #337481;
  --pg-11-rgb: 51, 116, 129;
  --pg-12: #173035;
  --pg-12-rgb: 23, 48, 53;
  /* semantic color */
  --color-primary: var(--blue-9);
  --color-primary-rgb: var(--blue-9-rgb);
  --color-blue: var(--pb-9);
  --color-pink: var(--pp-9);
  --color-green: var(--pg-9);
  --color-darken: #000000;
  --color-white: #ffffff;
  --color-info: #3453d1;
  --color-success: #296d38;
  --color-warning: #e2ab22;
  --color-error: #d62b23;
  --color-disabled: var(--gray-8);
  --border-disabled: var(--color-disabled);
  --bg-disabled: var(--color-disabled);
  --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);
  --pb-bg-1: var(--pb-1);
  --pb-bg-2: var(--pb-2);
  --pb-light: var(--pb-3);
  --pb-light-hover: var(--pb-4);
  --pb-light-active: var(--pb-5);
  --pb-normal: var(--pb-6);
  --pb-normal-hover: var(--pb-7);
  --pb-normal-active: var(--pb-8);
  --pb-accent: var(--pb-9);
  --pb-deep: var(--pb-10);
  --pb-deep-hover: var(--pb-11);
  --pb-deep-active: var(--pb-12);
  --pp-bg-1: var(--pp-1);
  --pp-bg-2: var(--pp-2);
  --pp-light: var(--pp-3);
  --pp-light-hover: var(--pp-4);
  --pp-light-active: var(--pp-5);
  --pp-normal: var(--pp-6);
  --pp-normal-hover: var(--pp-7);
  --pp-normal-active: var(--pp-8);
  --pp-accent: var(--pp-9);
  --pp-deep: var(--pp-10);
  --pp-deep-hover: var(--pp-11);
  --pp-deep-active: var(--pp-12);
  --pg-bg-1: var(--pg-1);
  --pg-bg-2: var(--pg-2);
  --pg-light: var(--pg-3);
  --pg-light-hover: var(--pg-4);
  --pg-light-active: var(--pg-5);
  --pg-normal: var(--pg-6);
  --pg-normal-hover: var(--pg-7);
  --pg-normal-active: var(--pg-8);
  --pg-accent: var(--pg-9);
  --pg-deep: var(--pg-10);
  --pg-deep-hover: var(--pg-11);
  --pg-deep-active: var(--pg-12);
}

/* 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;
}
/* maplestory */
@font-face {
  font-family: "Maplestory";
  font-style: normal;
  src: url("fonts/Maplestory-Bold.woff") format("woff"), url("fonts/Maplestory-Bold.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Maplestory";
  font-style: normal;
  src: url("fonts/Maplestory-Light.woff") format("woff"), url("fonts/Maplestory-Light.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}
/* 김주철명조 */
@font-face {
  font-family: "KimjungchulMyungjo";
  font-style: normal;
  src: url("fonts/KimjungchulMyungjo-Bold.woff") format("woff"), url("fonts/KimjungchulMyungjo-Bold.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "KimjungchulMyungjo";
  font-style: normal;
  src: url("fonts/KimjungchulMyungjo-Regular.woff") format("woff"), url("fonts/KimjungchulMyungjo-Regular.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "KimjungchulMyungjo";
  font-style: normal;
  src: url("fonts/KimjungchulMyungjo-Light.woff") format("woff"), url("fonts/KimjungchulMyungjo-Light.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}
/* Paperozi */
@font-face {
  font-family: "Paperozi";
  font-style: normal;
  src: url("fonts/Paperlogy-9Black.woff") format("woff"), url("fonts/Paperlogy-9Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  font-style: normal;
  src: url("fonts/Paperlogy-8ExtraBold.woff") format("woff"), url("fonts/Paperlogy-8ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  font-style: normal;
  src: url("fonts/Paperlogy-7Bold.woff") format("woff"), url("fonts/Paperlogy-7Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  font-style: normal;
  src: url("fonts/Paperlogy-6SemiBold.woff") format("woff"), url("fonts/Paperlogy-6SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  font-style: normal;
  src: url("fonts/Paperlogy-5Medium.woff") format("woff"), url("fonts/Paperlogy-5Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  font-style: normal;
  src: url("fonts/Paperlogy-4Regular.woff") format("woff"), url("fonts/Paperlogy-4Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  font-style: normal;
  src: url("fonts/Paperlogy-3Light.woff") format("woff"), url("fonts/Paperlogy-3Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  font-style: normal;
  src: url("fonts/Paperlogy-2ExtraLight.woff") format("woff"), url("fonts/Paperlogy-2ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Paperozi";
  font-style: normal;
  src: url("fonts/Paperlogy-1Thin.woff") format("woff"), url("fonts/Paperlogy-1Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}
/* Ria Sans */
@font-face {
  font-family: "Ria Sans";
  font-style: normal;
  src: url("fonts/RiaSans-ExtraBold.woff") format("woff"), url("fonts/RiaSans-ExtraBold.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Ria Sans";
  font-style: normal;
  src: url("fonts/RiaSans-Bold.woff") format("woff"), url("fonts/RiaSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Ria Sans";
  font-style: normal;
  src: url("fonts/RiaSans-Regular.woff") format("woff"), url("fonts/RiaSans-Regular.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
/* JNE Yuna */
@font-face {
  font-family: "JNE Yuna";
  font-style: normal;
  src: url("fonts/JNEYuna-ExtraBold.woff") format("woff"), url("fonts/JNEYuna-ExtraBold.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "JNE Yuna";
  font-style: normal;
  src: url("fonts/JNEYuna-Bold.woff") format("woff"), url("fonts/JNEYuna-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "JNE Yuna";
  font-style: normal;
  src: url("fonts/JNEYuna-Regular.woff") format("woff"), url("fonts/JNEYuna-Regular.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "JNE Yuna";
  font-style: normal;
  src: url("fonts/JNEYuna-Light.woff") format("woff"), url("fonts/JNEYuna-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
.container {
  width: 100%;
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 50px;
}
.container.fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

/* ===== 첫 분기: 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 정의 (디자인 시스템) */
/* - 키: size, weight, family, line-height(선택) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* - 존재하는 레벨만 유지 (키 불일치 방지) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - line-height 키가 있으면 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 144px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 104px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 88px;
  }
}

.title-1-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .title-1-1 {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .title-1-1 {
    font-size: 56px;
  }
}

.title-2-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .title-2-1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .title-2-1 {
    font-size: 32px;
  }
}

.contents-1-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .contents-1-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contents-1-1 {
    font-size: 16px;
  }
}

.contents-1-2 {
  font-family: "Maplestory", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .contents-1-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contents-1-2 {
    font-size: 16px;
  }
}

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

.heading-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-2-1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .heading-2-1 {
    font-size: 24px;
  }
}

.heading-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-2-2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .heading-2-2 {
    font-size: 24px;
  }
}

.heading-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-1 {
    font-size: 20px;
  }
}

.heading-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-2 {
    font-size: 20px;
  }
}

.heading-3-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-3 {
    font-size: 20px;
  }
}

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

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

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

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

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
@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: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

.caption-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .caption-1-2 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .caption-1-2 {
    font-size: 14px;
  }
}

input[readonly] {
  background-color: var(--gray-2);
  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-8);
}
input::placeholder {
  color: var(--gray-8);
}

.text-field {
  height: 46px;
  border-radius: 5px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .text-field {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .text-field {
    font-size: 18px;
  }
}
.text-field {
  background-color: var(--color-white);
  border: 1px solid var(--gray-8);
}
.text-field.fluid {
  width: 100%;
}
.text-field:hover {
  border: 1px solid var(--color-primary);
}
.text-field:focus {
  border: 1px solid var(--primary-deep);
  background-color: var(--primary-bg-1);
  color: var(--gray-11);
}
.text-field:focus .icon {
  filter: var(--filter-gray-12);
}
.text-field {
  /* state */
}
.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;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .textarea-box textarea {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .textarea-box textarea {
    font-size: 18px;
  }
}
.textarea-box textarea {
  border: none;
  width: 100%;
  padding: 12px;
  resize: none;
  overflow-y: auto;
}
.textarea-box:hover {
  border: 1px solid var(--color-primary);
}
.textarea-box:focus {
  border: 1px solid var(--gray-11);
  background-color: var(--primary-bg-1);
  color: var(--gray-11);
}
.textarea-box:focus .icon {
  filter: var(--filter-gray-12);
}

.byte-guide {
  margin-top: 8px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .byte-guide {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .byte-guide {
    font-size: 14px;
  }
}
.byte-guide .current {
  color: var(--color-primary);
}
.byte-guide .slash,
.byte-guide .total {
  color: var(--gray-8);
}

/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* - 키: size, weight, family, line-height(선택) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* - 존재하는 레벨만 유지 (키 불일치 방지) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - line-height 키가 있으면 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 144px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 104px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 88px;
  }
}

.title-1-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .title-1-1 {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .title-1-1 {
    font-size: 56px;
  }
}

.title-2-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .title-2-1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .title-2-1 {
    font-size: 32px;
  }
}

.contents-1-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .contents-1-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contents-1-1 {
    font-size: 16px;
  }
}

.contents-1-2 {
  font-family: "Maplestory", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .contents-1-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contents-1-2 {
    font-size: 16px;
  }
}

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

.heading-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-2-1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .heading-2-1 {
    font-size: 24px;
  }
}

.heading-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-2-2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .heading-2-2 {
    font-size: 24px;
  }
}

.heading-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-1 {
    font-size: 20px;
  }
}

.heading-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-2 {
    font-size: 20px;
  }
}

.heading-3-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-3 {
    font-size: 20px;
  }
}

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

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

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

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

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
@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: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

.caption-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .caption-1-2 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .caption-1-2 {
    font-size: 14px;
  }
}

:root {
  /* ========================================= */
  /* 🚨 전역 필터 변수 (GLOBAL FILTER VARIABLES) 🚨 */
  /* ========================================= */
  --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(51%) sepia(74%) saturate(478%) hue-rotate(153deg) brightness(91%) contrast(92%);
  --filter-blue: brightness(0) saturate(100%) invert(65%) sepia(17%) saturate(1182%) hue-rotate(174deg) brightness(82%) contrast(88%);
  --filter-pink: brightness(0) saturate(100%) invert(63%) sepia(49%) saturate(335%) hue-rotate(249deg) brightness(81%) contrast(89%);
  --filter-green: brightness(0) saturate(100%) invert(64%) sepia(39%) saturate(387%) hue-rotate(143deg) brightness(83%) contrast(91%);
  --filter-white: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(0%) hue-rotate(59deg) brightness(103%) contrast(106%);
  --filter-darken: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(16%) hue-rotate(77deg) brightness(104%) contrast(100%);
}

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

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

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

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

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

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

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

/* dropdown */
.dropdown {
  position: relative;
  width: 100%;
}
.dropdown.type-round .dropdown_button {
  border-radius: 9999px;
}
.dropdown.type-round .dropdown_list {
  border-radius: 20px;
}
.dropdown_button {
  width: 100%;
  height: 46px;
  padding: 0 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gray-8);
  background-color: var(--color-white);
  color: var(--gray-9);
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .dropdown_button {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .dropdown_button {
    font-size: 18px;
  }
}
.dropdown_button {
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.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-color: var(--color-white);
  border: 1px solid var(--gray-8);
  border-radius: 20px;
  padding: 10px;
  display: none;
  z-index: 100;
}
.dropdown {
  /* 공간 부족 시 위로 펼치기 */
}
.dropdown.is-above .dropdown_list {
  top: auto;
  bottom: calc(100% + 8px);
}
.dropdown {
  /* 열림 상태 */
}
.dropdown[aria-open=true] .dropdown_button::after {
  transform: rotate(180deg);
}
.dropdown[aria-open=true] .dropdown_list {
  display: block;
}
.dropdown_option {
  min-height: 46px;
  height: auto;
  padding: 10px 15px;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .dropdown_option {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .dropdown_option {
    font-size: 18px;
  }
}
.dropdown_option {
  color: var(--gray-9);
  transition: background-color 0.15s ease, color 0.15s ease;
  border-radius: 5px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.4;
}
.dropdown_option:hover {
  background-color: var(--gray-2);
}
.dropdown_option.is-active {
  background: var(--gray-300);
}
.dropdown_option[aria-selected=true] {
  background-color: var(--primary-bg-2);
  color: var(--color-primary);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .dropdown_option[aria-selected=true] {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .dropdown_option[aria-selected=true] {
    font-size: 16px;
  }
}
.dropdown {
  /* 에러 상태 */
}
.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 {
  /* 비활성 */
}
.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 {
  /* 플레이스홀더 상태 */
}
.dropdown.is-placeholder .dropdown_value {
  color: var(--gray-9);
}
.dropdown {
  /* body로 이동된 portal 상태 */
}
.dropdown.is-portal-open {
  z-index: 3000;
}
.dropdown_list[data-portal-open=true] {
  position: absolute !important;
  left: 0;
  top: 0;
  right: auto;
  display: block !important;
  margin: 0;
  z-index: 3000 !important;
}
.dropdown {
  /* 선택 반영: data-selected=true 일 때 value 색상 포인트 */
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  /* color type */
}
.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);
}
.btn-primary:disabled {
  background-color: var(--gray-6);
  color: var(--gray-10);
}
.btn-primary:disabled .icon {
  filter: var(--filter-gray);
}
.btn-blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.btn-blue .icon {
  filter: var(--filter-white);
}
.btn-blue:hover {
  background-color: var(--pb-deep-hover);
}
.btn-blue:focus {
  background-color: var(--pb-deep-active);
}
.btn-blue:disabled {
  background-color: var(--gray-6);
  color: var(--gray-10);
}
.btn-blue:disabled .icon {
  filter: var(--filter-gray);
}
.btn-pink {
  background-color: var(--color-pink);
  color: var(--color-white);
}
.btn-pink .icon {
  filter: var(--filter-white);
}
.btn-pink:hover {
  background-color: var(--pp-deep-hover);
}
.btn-pink:focus {
  background-color: var(--pp-deep-active);
}
.btn-pink:disabled {
  background-color: var(--gray-6);
  color: var(--gray-10);
}
.btn-pink:disabled .icon {
  filter: var(--filter-gray);
}
.btn-green {
  background-color: var(--color-green);
  color: var(--color-white);
}
.btn-green .icon {
  filter: var(--filter-white);
}
.btn-green:hover {
  background-color: var(--pg-deep-hover);
}
.btn-green:focus {
  background-color: var(--pg-deep-active);
}
.btn-green:disabled {
  background-color: var(--gray-6);
  color: var(--gray-10);
}
.btn-green:disabled .icon {
  filter: var(--filter-gray);
}
.btn {
  /* line type */
}
.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(--color-white);
  border: 2px solid var(--gray-8);
}
.btn-primary-line:disabled .icon {
  filter: var(--filter-gray);
}
.btn-blue-line {
  background-color: var(--color-white);
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
}
.btn-blue-line .icon {
  filter: var(--filter-blue);
}
.btn-blue-line:hover {
  border: 2px solid var(--pb-deep-active);
  color: var(--pb-deep-active);
}
.btn-blue-line:hover .icon {
  filter: var(--filter-blue);
}
.btn-blue-line:focus {
  background-color: var(--pb-light);
  border: 2px solid var(--pb-deep-active);
}
.btn-blue-line:focus .icon {
  filter: var(--filter-pb-deep);
}
.btn-blue-line:disabled {
  background-color: var(--color-white);
  border: 2px solid var(--gray-8);
}
.btn-blue-line:disabled .icon {
  filter: var(--filter-gray);
}
.btn-pink-line {
  background-color: var(--color-white);
  border: 2px solid var(--color-pink);
  color: var(--color-pink);
}
.btn-pink-line .icon {
  filter: var(--filter-pink);
}
.btn-pink-line:hover {
  border: 2px solid var(--pp-deep-active);
  color: var(--pp-deep-active);
}
.btn-pink-line:hover .icon {
  filter: var(--filter-pink);
}
.btn-pink-line:focus {
  background-color: var(--pp-light);
  border: 2px solid var(--pp-deep-active);
}
.btn-pink-line:focus .icon {
  filter: var(--filter-pp-deep);
}
.btn-pink-line:disabled {
  background-color: var(--color-white);
  border: 2px solid var(--gray-8);
}
.btn-pink-line:disabled .icon {
  filter: var(--filter-gray);
}
.btn-green-line {
  background-color: var(--color-white);
  border: 2px solid var(--color-green);
  color: var(--color-green);
}
.btn-green-line .icon {
  filter: var(--filter-green);
}
.btn-green-line:hover {
  border: 2px solid var(--pg-deep-active);
  color: var(--pg-deep-active);
}
.btn-green-line:hover .icon {
  filter: var(--filter-green);
}
.btn-green-line:focus {
  background-color: var(--pg-light);
  border: 2px solid var(--pg-deep-active);
}
.btn-green-line:focus .icon {
  filter: var(--filter-pg-deep);
}
.btn-green-line:disabled {
  background-color: var(--color-white);
  border: 2px solid var(--gray-8);
}
.btn-green-line:disabled .icon {
  filter: var(--filter-gray);
}
.btn-gray-line {
  background-color: var(--color-white);
  border: 2px solid var(--gray-4);
  color: var(--color-darken);
}
.btn-gray-line .icon {
  filter: var(--filter-darken);
}
.btn-gray-line:hover {
  background-color: var(--gray-3);
  border: 2px solid var(--gray-9);
}
.btn-gray-line:hover .icon {
  filter: var(--filter-darken);
}
.btn-gray-line:focus {
  background-color: var(--gray-3);
  border: 2px solid var(--gray-9);
}
.btn-gray-line:focus .icon {
  filter: var(--filter-darken);
}
.btn-gray-line:disabled {
  background-color: var(--color-white);
  border: 2px solid var(--gray-8);
}
.btn-gray-line:disabled .icon {
  filter: var(--filter-gray);
}
.btn {
  /* size */
}
.btn.size-lg {
  height: 54px;
  padding: 10px 20px;
  gap: 8px;
  border-radius: 8px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@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: 46px;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .btn.size-md {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .btn.size-md {
    font-size: 18px;
  }
}
.btn.size-md {
  gap: 8px;
}
.btn.size-md .icon {
  width: 20px;
  height: 20px;
}
.btn.size-sm {
  height: 33px;
  padding: 5px 20px;
  gap: 10px;
  border-radius: 5px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@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: 16px;
  height: 16px;
}
.btn {
  /* only icon */
}
.btn-icon-only {
  padding: 0;
}
.btn-icon-only.size-lg {
  width: 54px;
  padding: 15px;
}
.btn-icon-only.size-md {
  width: 46px;
  padding: 10px;
}
.btn-icon-only.size-sm {
  width: 33px;
  padding: 5px;
}
.btn {
  /* with icon */
}
.btn-icon-center {
  gap: 8px;
}
.btn-icon-center .icon {
  margin-left: 0;
}
.btn-icon-right {
  gap: 0;
}
.btn-icon-right .icon {
  margin-left: auto;
}
.btn {
  /* shape */
}
.btn-shape-round {
  border-radius: 9999px !important;
}
.btn {
  /* hover style */
}
.btn-jelly:hover {
  animation: jelly 0.5s;
}

.btn-wrap {
  display: flex;
  align-items: center;
}
.btn-wrap:has(.size-lg) {
  gap: 24px;
}

@keyframes jelly {
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
/* -------------------------------
공통 control (체크/라디오 공용 가능)
---------------------------------*/
.control {
  display: flex;
  align-items: center;
  gap: 8px;
  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: 32px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .control label {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .control label {
    font-size: 16px;
  }
}
.control label {
  color: var(--color-darken);
}
.control.disabled label {
  cursor: not-allowed;
  opacity: 0.6;
}

/* -------------------------------
체크박스 단일
---------------------------------*/
.checkbox.shape-round label::before {
  border-radius: 9999px;
}
.checkbox label::before,
.checkbox label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.checkbox label::before {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gray-8);
  background-color: var(--color-white);
  border-radius: 4px;
  transition: border-color 0.2s, background-color 0.2s;
}
.checkbox label::after {
  width: 24px;
  height: 24px;
  background: url("../../assets/images/icon/icon-check.svg") no-repeat center/20px 20px;
  opacity: 0;
  transition: opacity 0.15s;
}
.checkbox input:focus + label::before,
.checkbox label:hover::before {
  border: 1.5px solid var(--Color-Primary-Deep-deep-hover, #0079AC);
  box-shadow: 0 0 4px 0 rgba(40, 157, 210, 0.5);
}
.checkbox input:checked + label::before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.checkbox input:checked + label::after {
  opacity: 1;
  filter: invert(1) brightness(10);
}
.checkbox.disabled label::before {
  background-color: var(--bg-disabled);
  border-color: var(--border-disabled);
}
.checkbox.disabled input:checked + label::before {
  background-color: var(--border-disabled);
  border-color: var(--border-disabled);
}

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

/* 라디오 (단일) — 공통 .control은 기존 것 사용 */
.radio {
  /* 시각 요소: 바깥 원(보더) + 안쪽 점 */
}
.radio label::before,
.radio label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.radio {
  /* 바깥 원 */
}
.radio label::before {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gray-8);
  border-radius: 50%;
  background: var(--color-white);
  transition: border-color 0.2s, background-color 0.2s;
}
.radio {
  /* 안쪽 점(선택 표시) */
}
.radio label::after {
  left: 4px; /* 바깥 원 기준 안쪽 여백 */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.15s;
}
.radio {
  /* hover/focus 시 보더 강조 */
}
.radio input:focus + label::before,
.radio label:hover::before {
  border-color: var(--color-primary);
}
.radio {
  /* checked 상태 */
}
.radio input:checked + label::before {
  border-color: var(--color-primary);
}
.radio input:checked + label::after {
  opacity: 1;
}
.radio {
  /* disabled 상태 */
}
.radio.disabled label {
  cursor: not-allowed;
  opacity: 0.6;
}
.radio.disabled label::before {
  background: var(--bg-disabled);
  border-color: var(--gray-6);
}
.radio.disabled label:hover::before {
  border-color: var(--gray-6);
}
.radio.disabled input:checked + label::before {
  border-color: var(--gray-6);
}
.radio.disabled input:checked + label::after {
  background: var(--gray-8);
}

/* button type */
.button-type.col3.horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
}
.button-type .radio {
  flex: 1 1 0;
  min-width: 0;
}
.button-type .radio label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding-left: 20px; /* 기본 radio left padding 덮어쓰기 */
  border: 2px solid var(--gray-4);
  border-radius: 9999px;
  background: var(--color-white);
  color: var(--color-darken);
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.button-type .radio {
  /* 기본 원형 UI 제거 */
}
.button-type .radio label::before,
.button-type .radio label::after {
  display: none;
}
.button-type .radio {
  /* hover / focus */
}
.button-type .radio label:hover,
.button-type .radio input:focus + label {
  border-color: var(--color-primary);
}
.button-type .radio {
  /* checked */
}
.button-type .radio input:checked + label {
  border-color: var(--color-primary);
  background-color: var(--primary-light);
  color: var(--color-primary);
}
.button-type .radio {
  /* disabled */
}
.button-type .radio.disabled label,
.button-type .radio input:disabled + label {
  background: var(--bg-disabled);
  border-color: var(--gray-6);
  color: var(--gray-8);
  cursor: not-allowed;
  opacity: 1;
  box-shadow: none;
}
.button-type .radio.disabled label:hover,
.button-type .radio input:disabled + label:hover,
.button-type .radio input:disabled:focus + label {
  border-color: var(--gray-6);
}
.button-type .radio.disabled input:checked + label,
.button-type .radio input:disabled:checked + label {
  background: var(--bg-disabled);
  border-color: var(--gray-6);
  color: var(--gray-8);
}
.button-type .radio.size-lg label {
  height: 54px;
  padding: 10px 20px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .button-type .radio.size-lg label {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .button-type .radio.size-lg label {
    font-size: 20px;
  }
}
.button-type .radio.size-md label {
  height: 46px;
  padding: 10px 20px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .button-type .radio.size-md label {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .button-type .radio.size-md label {
    font-size: 18px;
  }
}
.button-type .radio.size-sm label {
  height: 33px;
  padding: 5px 20px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .button-type .radio.size-sm label {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .button-type .radio.size-sm label {
    font-size: 16px;
  }
}

/* 라디오 그룹 */
.radio-group {
  border: 0;
  padding: 0;
}
.radio-group .field-title {
  margin-bottom: 12px;
}
.radio-group {
  display: flex;
}
.radio-group.vertical {
  flex-direction: column;
  gap: 12px;
}
.radio-group.horizontal {
  flex-direction: row;
  flex-wrap: wrap; /* 좁을 때 줄바꿈 */
  gap: 20px;
}
.radio-group.horizontal.align-start {
  margin-left: 0;
}
.radio-group.justify-center {
  justify-content: center;
}

/* 라디오 선택 시 none,block */
.radio1-content,
.radio2-content {
  display: none;
}

.radio-content.is-active {
  display: block;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.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-end:before {
  background-image: url(../images/icon/icon-arrow-right-end.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:before {
  background-image: url(../images/icon/icon-arrow-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-left-end:before {
  background-image: url(../images/icon/icon-arrow-left-end.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:before {
  background-image: url(../images/icon/icon-arrow-up.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-up-body:before {
  background-image: url(../images/icon/icon-arrow-up-body.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:before {
  background-image: url(../images/icon/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-down-body:before {
  background-image: url(../images/icon/icon-arrow-down-body.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-document:before {
  background-image: url(../images/icon/icon-document.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.icon-phone:before {
  background-image: url(../images/icon/icon-phone.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-print:before {
  background-image: url(../images/icon/icon-print.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-hospital:before {
  background-image: url(../images/icon/icon-hospital.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-syringe:before {
  background-image: url(../images/icon/icon-syringe.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-important:before {
  background-image: url(../images/icon/icon-important.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-time:before {
  background-image: url(../images/icon/icon-time.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-info-circle:before {
  background-image: url(../images/icon/icon-info-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-arrow-right-circle:before {
  background-image: url(../images/icon/icon-arrow-right-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon {
  /* size */
}
.icon.size-24:before {
  width: 24px;
  height: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  /* color */
}
.chip-primary {
  background-color: var(--color-primary);
}
.chip-checked {
  background-color: var(--color-primary);
  position: relative;
}
.chip-checked::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url("../../assets/images/icon/icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.chip-x {
  background-color: var(--color-error);
  position: relative;
}
.chip-x::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("../../assets/images/icon/icon-check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.chip-caution {
  background-color: var(--color-warning);
  position: relative;
}
.chip-caution::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("../../assets/images/icon/icon-caution.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.chip-recycle {
  background-color: var(--color-info);
  position: relative;
}
.chip-recycle::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("../../assets/images/icon/icon-recycle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.chip-info-primary {
  background-color: var(--color-primary);
  position: relative;
}
.chip-info-primary::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("../../assets/images/icon/icon-info.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: var(--filter-white);
}
.chip-info-gray {
  background-color: var(--gray-6);
  position: relative;
}
.chip-info-gray::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("../../assets/images/icon/icon-info.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: var(--filter-white);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* color */
}
.badge-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.badge-primary-line {
  background-color: var(--color-white);
  color: var(--color-darken);
  border: 2px solid var(--color-primary);
}
.badge-primary-bg {
  background-color: var(--primary-light-hover);
  color: var(--primary-deep-hover);
  border: 1px solid var(--primary-normal-active);
}
.badge-blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}
.badge-blue-line {
  background-color: var(--color-white);
  color: var(--color-darken);
  border: 2px solid var(--color-blue);
}
.badge-blue-bg {
  background-color: var(--pb-light-hover);
  color: var(--pb-deep-hover);
  border: 1px solid var(--pb-normal-active);
}
.badge-pink {
  background-color: var(--color-pink);
  color: var(--color-white);
}
.badge-pink-line {
  background-color: var(--color-white);
  color: var(--color-darken);
  border: 2px solid var(--color-pink);
}
.badge-pink-bg {
  background-color: var(--pp-light-hover);
  color: var(--pp-deep-hover);
  border: 1px solid var(--pp-normal-active);
}
.badge-green {
  background-color: var(--color-green);
  color: var(--color-white);
}
.badge-green-line {
  background-color: var(--color-white);
  color: var(--color-darken);
  border: 2px solid var(--color-green);
}
.badge-green-bg {
  background-color: var(--pg-light-hover);
  color: var(--pg-deep-hover);
  border: 1px solid var(--pg-normal-active);
}
.badge {
  /* size */
}
.badge.size-lg {
  height: 46px;
  padding: 10px 30px;
  border-radius: 10px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .badge.size-lg {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .badge.size-lg {
    font-size: 18px;
  }
}
.badge.size-md {
  height: 33px;
  padding: 5px 20px;
  border-radius: 5px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .badge.size-md {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .badge.size-md {
    font-size: 16px;
  }
}
.badge.size-sm {
  height: 31px;
  padding: 5px 15px;
  border-radius: 5px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .badge.size-sm {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .badge.size-sm {
    font-size: 16px;
  }
}
.badge-shape-round {
  border-radius: 9999px !important;
}

/* type은 3가지 */
/* type-rowcol, type-col, type-row */
/* ===============================
  Table Base Style
   =============================== */
.table-wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: 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);
  color: var(--color-white);
}
.table-wrap table tbody th {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .table-wrap table tbody th {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .table-wrap table tbody th {
    font-size: 16px;
  }
}
.table-wrap table tbody th {
  color: var(--gray-12);
}
.table-wrap table tbody td {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .table-wrap table tbody td {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .table-wrap table tbody td {
    font-size: 16px;
  }
}
.table-wrap table tbody td {
  color: var(--gray-12);
}
.table-wrap table tbody td .text-list li .depth3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .table-wrap table tbody td .text-list li .depth3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .table-wrap table tbody td .text-list li .depth3 {
    font-size: 16px;
  }
}
.table-wrap table tbody td .text-list li .depth3 {
  color: var(--gray-12);
}
.table-wrap table {
  /* 상단 라운드 */
}
.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);
}
.table-wrap.gridtable .tb-header {
  border-radius: 10px;
}
.table-wrap.gridtable .tb-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.table-wrap.gridtable .tb-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-radius: 10px;
  margin-top: 8px;
  height: 100%;
}
.table-wrap.gridtable .tb-row.equal-w .tb-td,
.table-wrap.gridtable .tb-row.equal-w .tb-th {
  width: 100%;
  height: auto;
}
.table-wrap.gridtable .tb-row .tb-td,
.table-wrap.gridtable .tb-row .tb-th {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.table-wrap.gridtable .tb-row .tb-td.w10,
.table-wrap.gridtable .tb-row .tb-th.w10 {
  width: 10%;
}
.table-wrap.gridtable .tb-row .tb-td.w20,
.table-wrap.gridtable .tb-row .tb-th.w20 {
  width: 20%;
}
.table-wrap.gridtable .tb-row .tb-td.w30,
.table-wrap.gridtable .tb-row .tb-th.w30 {
  width: 30%;
}
.table-wrap.gridtable .tb-row .tb-td.w33,
.table-wrap.gridtable .tb-row .tb-th.w33 {
  width: 33.3333%;
}
.table-wrap.gridtable .tb-row .tb-td.w40,
.table-wrap.gridtable .tb-row .tb-th.w40 {
  width: 40%;
}
.table-wrap.gridtable .tb-row .tb-td.w50,
.table-wrap.gridtable .tb-row .tb-th.w50 {
  width: 50%;
}
.table-wrap.gridtable .tb-row .tb-td.w60,
.table-wrap.gridtable .tb-row .tb-th.w60 {
  width: 60%;
}
.table-wrap.gridtable .tb-row .tb-td.w66,
.table-wrap.gridtable .tb-row .tb-th.w66 {
  width: 66.6666%;
}
.table-wrap.gridtable .tb-row .tb-td.w70,
.table-wrap.gridtable .tb-row .tb-th.w70 {
  width: 70%;
}
.table-wrap.gridtable .tb-row .tb-td.w80,
.table-wrap.gridtable .tb-row .tb-th.w80 {
  width: 80%;
}
.table-wrap.gridtable .tb-row .tb-td.w90,
.table-wrap.gridtable .tb-row .tb-th.w90 {
  width: 90%;
}
.table-wrap.gridtable .tb-row .tb-td:first-child,
.table-wrap.gridtable .tb-row .tb-th:first-child {
  border-radius: 10px 0 0 10px;
}
.table-wrap.gridtable .tb-row .tb-td:last-child,
.table-wrap.gridtable .tb-row .tb-th:last-child {
  border-radius: 0 10px 10px 0;
}
.table-wrap.gridtable .tb-row .tb-td.dir-col,
.table-wrap.gridtable .tb-row .tb-th.dir-col {
  flex-direction: column;
  gap: 8px;
}
.table-wrap.gridtable .tb-th {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .table-wrap.gridtable .tb-th {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .table-wrap.gridtable .tb-th {
    font-size: 20px;
  }
}
.table-wrap.gridtable .tb-th {
  padding: 10px;
}
.table-wrap.gridtable .tb-td {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .table-wrap.gridtable .tb-td {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .table-wrap.gridtable .tb-td {
    font-size: 18px;
  }
}
.table-wrap.gridtable .tb-td {
  padding: 10px;
  color: var(--color-darken);
}
.table-wrap.gridtable .badge {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .table-wrap.gridtable .badge {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .table-wrap.gridtable .badge {
    font-size: 16px;
  }
}
.table-wrap.gridtable .badge {
  padding: 5px 15px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
}
.table-wrap.gridtable .badge.is-morning {
  background-color: var(--pg-light-hover);
  border: 1px solid var(--pg-normal-active);
  color: var(--pg-deep-active);
}
.table-wrap.gridtable .badge.is-afternoon {
  background-color: var(--primary-light-hover);
  border: 1px solid var(--primary-normal-active);
  color: var(--primary-deep-active);
}
.table-wrap.gridtable .badge.is-evening {
  background-color: var(--pp-light-hover);
  border: 1px solid var(--pp-normal-active);
  color: var(--pp-deep-active);
}
.table-wrap.gridtable .badge.is-night {
  background-color: var(--pb-light-hover);
  border: 1px solid var(--pb-normal-active);
  color: var(--pb-deep-active);
}
.table-wrap.gridtable .badge.is-closed {
  background-color: var(--gray-4);
  border: 1px solid var(----gray-8);
  color: var(--gray-11);
}
.table-wrap.gridtable.color-primary .tb-header .tb-row {
  background-color: var(--primary-normal);
}
.table-wrap.gridtable.color-primary .tb-body .tb-row {
  background-color: var(--primary-bg-2);
}
.table-wrap.gridtable.color-primary .tb-row:hover {
  border-color: var(--primary-normal-active);
}
.table-wrap.gridtable.color-primary .tb-row:hover .tb-td {
  background-color: var(--primary-light-hover);
  border-color: var(--primary-normal-active);
}
.table-wrap.gridtable.color-primary .tb-row .tb-th {
  border-right: 1px solid var(--primary-normal-hover);
  color: var(--primary-deep-active);
}
.table-wrap.gridtable.color-primary .tb-row .tb-th:last-child {
  border-right: 0;
}
.table-wrap.gridtable.color-primary .tb-row {
  border: 1px solid var(--primary-normal);
}
.table-wrap.gridtable.color-primary .tb-row .tb-td {
  background-color: var(--primary-bg-2);
  border-right: 1px solid var(--primary-normal);
}
.table-wrap.gridtable.color-primary .tb-row .tb-td:last-child {
  border-right: 0;
}
.table-wrap.gridtable.color-primary .checkbox input:focus + label::before,
.table-wrap.gridtable.color-primary .checkbox label:hover::before {
  border: 2px solid var(--primary-accent);
  box-shadow: 0 0 4px 0 rgba(40, 157, 210, 0.5);
}
.table-wrap.gridtable.color-primary .checkbox input:checked + label::before {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
}
.table-wrap.gridtable.color-primary .checkbox label::after {
  filter: var(--filter-white);
}
.table-wrap.gridtable.color-pink .tb-header .tb-row {
  background-color: var(--pp-normal);
}
.table-wrap.gridtable.color-pink .tb-body .tb-row {
  background-color: var(--pp-bg-2);
}
.table-wrap.gridtable.color-pink .tb-row .tb-th {
  border-right: 1px solid var(--pp-normal-hover);
  color: var(--pp-deep-active);
}
.table-wrap.gridtable.color-pink .tb-row .tb-th:last-child {
  border-right: 0;
}
.table-wrap.gridtable.color-pink .tb-row {
  border: 1px solid var(--pp-normal);
}
.table-wrap.gridtable.color-pink .tb-row .tb-td {
  background-color: var(--pp-bg-2);
  border-right: 1px solid var(--pp-normal);
}
.table-wrap.gridtable.color-pink .tb-row .tb-td:last-child {
  border-right: 0;
}
.table-wrap.gridtable.color-pink .checkbox input:focus + label::before,
.table-wrap.gridtable.color-pink .checkbox label:hover::before {
  border: 2px solid var(--pp-accent);
  box-shadow: 0 0 4px 0 rgba(40, 157, 210, 0.5);
}
.table-wrap.gridtable.color-pink .checkbox input:checked + label::before {
  background-color: var(--pp-accent);
  border-color: var(--pp-accent);
}
.table-wrap.gridtable.color-pink .checkbox label::after {
  filter: var(--filter-white);
}
.table-wrap.gridtable.color-blue .tb-header .tb-row {
  background-color: var(--pb-normal);
}
.table-wrap.gridtable.color-blue .tb-body .tb-row {
  background-color: var(--pb-bg-2);
}
.table-wrap.gridtable.color-blue .tb-row {
  background-color: var(--pb-bg-2);
}
.table-wrap.gridtable.color-blue .tb-row .tb-th {
  border-right: 1px solid var(--pb-normal-hover);
  color: var(--pb-deep-active);
}
.table-wrap.gridtable.color-blue .tb-row .tb-th:last-child {
  border-right: 0;
}
.table-wrap.gridtable.color-blue .tb-row {
  border: 1px solid var(--pb-normal);
}
.table-wrap.gridtable.color-blue .tb-row .tb-td {
  border-right: 1px solid var(--pb-normal);
}
.table-wrap.gridtable.color-blue .tb-row .tb-td:last-child {
  border-right: 0;
}
.table-wrap.gridtable.color-blue .checkbox input:focus + label::before,
.table-wrap.gridtable.color-blue .checkbox label:hover::before {
  border: 2px solid var(--pb-accent);
  box-shadow: 0 0 4px 0 rgba(40, 157, 210, 0.5);
}
.table-wrap.gridtable.color-blue .checkbox input:checked + label::before {
  background-color: var(--pb-accent);
  border-color: var(--pb-accent);
}
.table-wrap.gridtable.color-blue .checkbox label::after {
  filter: var(--filter-white);
}
.table-wrap.gridtable.color-green .tb-header .tb-row {
  background-color: var(--pg-normal);
}
.table-wrap.gridtable.color-green .tb-body .tb-row {
  background-color: var(--pg-bg-2);
}
.table-wrap.gridtable.color-green .tb-row {
  background-color: var(--pg-bg-2);
}
.table-wrap.gridtable.color-green .tb-row .tb-th {
  border-right: 1px solid var(--pg-normal-hover);
  color: var(--pp-deep-active);
}
.table-wrap.gridtable.color-green .tb-row .tb-th:last-child {
  border-right: 0;
}
.table-wrap.gridtable.color-green .tb-row {
  border: 1px solid var(--pg-normal);
}
.table-wrap.gridtable.color-green .tb-row .tb-td {
  border-right: 1px solid var(--pg-normal);
}
.table-wrap.gridtable.color-green .tb-row .tb-td:last-child {
  border-right: 0;
}
.table-wrap.gridtable.color-green .checkbox input:focus + label::before,
.table-wrap.gridtable.color-green .checkbox label:hover::before {
  border: 2px solid var(--pg-accent);
  box-shadow: 0 0 4px 0 rgba(40, 157, 210, 0.5);
}
.table-wrap.gridtable.color-green .checkbox input:checked + label::before {
  background-color: var(--pg-accent);
  border-color: var(--pg-accent);
}
.table-wrap.gridtable.color-green .checkbox label::after {
  filter: var(--filter-white);
}

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

/* 키보드 포커스 가시화 */
/* 스킵 내비게이션 */
#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-color: 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;
}
.section.fluid {
  padding: 0 0 120px;
}
.section.fluid .container.fluid {
  padding: 0;
}

.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;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.nowrap {
  flex-wrap: nowrap;
}
.flex {
  /* 방향 */
}
.flex.dir-row {
  flex-direction: row;
}
.flex.dir-col {
  flex-direction: column;
}
.flex {
  /* 정렬 */
}
.flex.align-center {
  align-items: center;
}
.flex.align-start {
  align-items: flex-start;
}
.flex.align-end {
  align-items: flex-end;
}
.flex { /* ← align-ent 오타 수정 */ }
.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 {
  /* 간격 */
}
.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 .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;
}

.text-bold {
  font-weight: bold !important;
}

.underline {
  text-decoration: underline;
}

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

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

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

.color-blue {
  color: var(--color-blue);
}

.color-pink {
  color: var(--color-pink);
}

.color-green {
  color: var(--color-green);
}

.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 .depth1 {
  word-break: break-all;
}
.list-type.dot .depth1.dot {
  position: relative;
  display: block;
  padding-left: 30px;
}
.list-type.dot .depth1.dot::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  background-color: transparent;
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 0;
}
.list-type.dot .depth1.dot::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-primary);
  position: absolute;
  top: 10px;
  left: 4px;
  z-index: 1;
}
.list-type.dot .depth2 {
  word-break: break-all;
}
.list-type.dot .depth2.dot {
  position: relative;
  display: block;
  padding-left: 16px;
}
.list-type.dot .depth2.dot:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-pink);
  font-size: 0;
  position: absolute;
  top: 8px;
  left: 0;
}
.list-type.dot .depth3 {
  word-break: break-all;
}
.list-type.dot .depth3.dot {
  position: relative;
  display: block;
  padding-left: 16px;
}
.list-type.dot .depth3.dot:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--gray-8);
  font-size: 0;
  position: absolute;
  top: 7px;
  left: 0;
}
.list-type.number p {
  display: flex;
  gap: 8px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .list-type.number p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .list-type.number p {
    font-size: 18px;
  }
}
.list-type.number p {
  word-break: break-all;
}
.list-type.number p .num {
  position: relative;
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  font-size: 0;
}
.list-type.number p .num::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.list-type.number p .num::after {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .list-type.number p .num::after {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .list-type.number p .num::after {
    font-size: 16px;
  }
}
.list-type.number p .num::after {
  color: var(--color-white);
  text-align: center;
}
.list-type.number p .num.n1:after {
  content: "1";
}
.list-type.number p .num.n2:after {
  content: "2";
}
.list-type.number p .num.n3:after {
  content: "3";
}
.list-type.number p .num.n4:after {
  content: "4";
}
.list-type.number p .num.n5:after {
  content: "5";
}
.list-type.number p .num.n6:after {
  content: "6";
}
.list-type .depth1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .list-type .depth1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .list-type .depth1 {
    font-size: 20px;
  }
}
.list-type .depth1 .chip {
  margin-top: 7px;
}
.list-type .depth1.info-text:before {
  top: 4px;
}
.list-type .depth1.info-text:after {
  top: 8px;
}
.list-type .depth2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .list-type .depth2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .list-type .depth2 {
    font-size: 18px;
  }
}
.list-type .depth2 {
  color: var(--gray-12);
}
.list-type .depth3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .list-type .depth3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .list-type .depth3 {
    font-size: 16px;
  }
}
.list-type .depth3 {
  color: var(--gray-11);
}
.list-type .depth-space {
  padding-left: 18px;
  margin-top: 8px;
}

/* 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: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .text-list li .depth3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .text-list li .depth3 {
    font-size: 18px;
  }
}
.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: 16px;
  color: var(--gray-11);
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .guide-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .guide-text {
    font-size: 16px;
  }
}
.guide-text {
  position: relative;
}
.guide-text::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../../assets/images/icon/icon-important.svg");
  background-size: contain;
  background-position: center center;
}

.info-text {
  padding-left: 32px;
  color: var(--gray-11);
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .info-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .info-text {
    font-size: 14px;
  }
}
.info-text {
  position: relative;
}
.info-text::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--gray-6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -3px;
  left: 0;
}
.info-text::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 4px;
  background-image: url("../../assets/images/icon/icon-info.svg");
  background-size: contain;
  background-position: center center;
  filter: var(--filter-white);
}

.line-box {
  border-radius: 20px;
  border: 1px solid var(--gray-6);
  background-color: var(--color-white);
}
.line-box.shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1) inset;
}
.line-box.shadow.has-img {
  position: relative;
  box-shadow: inherit;
}
.line-box.shadow.has-img:after {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1) inset;
  pointer-events: none;
  z-index: 2;
}
.line-box.bg-gray {
  background-color: var(--gray-2);
  border: 0;
}

.link-text {
  color: var(--primary-deep-hover);
  text-decoration: underline;
}

/* space */
.mt0 {
  margin-top: 0px !important;
}

.mt4 {
  margin-top: 4px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt12 {
  margin-top: 12px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mt36 {
  margin-top: 36px !important;
}

.mt48 {
  margin-top: 48px !important;
}

.mt56 {
  margin-top: 56px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb12 {
  margin-bottom: 12px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mb36 {
  margin-bottom: 36px !important;
}

.mb48 {
  margin-bottom: 48px !important;
}

.mb56 {
  margin-bottom: 56px !important;
}

/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* - 키: size, weight, family, line-height(선택) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* - 존재하는 레벨만 유지 (키 불일치 방지) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - line-height 키가 있으면 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 144px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 104px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 88px;
  }
}

.title-1-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .title-1-1 {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .title-1-1 {
    font-size: 56px;
  }
}

.title-2-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .title-2-1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .title-2-1 {
    font-size: 32px;
  }
}

.contents-1-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .contents-1-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contents-1-1 {
    font-size: 16px;
  }
}

.contents-1-2 {
  font-family: "Maplestory", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .contents-1-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contents-1-2 {
    font-size: 16px;
  }
}

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

.heading-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-2-1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .heading-2-1 {
    font-size: 24px;
  }
}

.heading-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-2-2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .heading-2-2 {
    font-size: 24px;
  }
}

.heading-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-1 {
    font-size: 20px;
  }
}

.heading-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-2 {
    font-size: 20px;
  }
}

.heading-3-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-3 {
    font-size: 20px;
  }
}

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

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

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

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

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
@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: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

.caption-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .caption-1-2 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .caption-1-2 {
    font-size: 14px;
  }
}

/* z-index map */
:root {
  --dynamic-after-height: 0px;
}

#header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 5000;
}
#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.logo-sb a {
  display: block;
  width: 280px;
  height: 60px;
  background-image: url("../../assets/images/logo-black-sb.png");
  background-size: contain;
  background-repeat: no-repeat;
}
#header h1 a {
  display: block;
  width: 280px;
  height: 60px;
  background-image: url("../../assets/images/logo-black.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: 240px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  #header nav a {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #header nav a {
    font-size: 20px;
  }
}
#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-color: var(--color-darken);
  transition: transform 0.4s ease;
}
#header .megamenu {
  width: 100%;
  background-color: var(--color-white);
  position: absolute;
  top: 100px;
  z-index: 5010;
}
#header .megamenu .container {
  display: flex;
  position: relative;
}
#header .megamenu .left {
  margin-top: 40px;
}
#header .megamenu .left img {
  position: absolute;
  width: 812px;
  height: 353px;
  left: -245px;
  bottom: 0;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .megamenu .left ul li {
  min-width: 227px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
}
#header .megamenu .left ul li + li {
  margin-top: 8px;
}
#header .megamenu .left ul li:first-child {
  background-color: var(--pp-light);
}
#header .megamenu .left ul li:first-child .con {
  color: var(--pp-deep-hover);
}
#header .megamenu .left ul li:nth-child(2) {
  background-color: var(--pg-light);
}
#header .megamenu .left ul li:nth-child(2) .con {
  color: var(--pg-deep-hover);
}
#header .megamenu .left ul li .icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
#header .megamenu .left ul li .con {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  #header .megamenu .left ul li .con {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #header .megamenu .left ul li .con {
    font-size: 20px;
  }
}
#header .megamenu .menu-list {
  display: flex;
  margin-top: 40px;
  margin-left: auto;
  padding-bottom: 20px;
}
#header .megamenu .menu-item {
  width: 240px;
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}
#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 .box + .box {
  margin-top: 16px;
}
#header .megamenu .menu-item .depth2 {
  height: auto;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-bg-2);
  color: var(--primary-deep-hover);
  padding: 5px 15px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
@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;
  text-align: center;
  color: var(--gray-12);
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
@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);
  overflow-y: auto;
  padding-bottom: 150px;
  background-image: url("../../assets/images/img-megamenu.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: bottom 0 left 0;
}
#header .sitemap .left {
  display: none;
}
#header .sitemap .menu-list {
  margin-top: 40px;
}
#header .sitemap .list-type .depth1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  #header .sitemap .list-type .depth1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  #header .sitemap .list-type .depth1 {
    font-size: 24px;
  }
}
#header .sitemap .list-type .depth1 .dot {
  margin-top: 11px;
}
#header .sitemap .menu-item {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gray-4);
}
#header .sitemap .menu-item .box {
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#header .sitemap .menu-item .box div {
  margin-bottom: 16px;
}
#header .sitemap .menu-item .depth2 {
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: var(--primary-bg-2);
  color: var(--primary-deep-hover);
  text-align: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  #header .sitemap .menu-item .depth2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #header .sitemap .menu-item .depth2 {
    font-size: 18px;
  }
}
#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;
  text-align: center;
  color: var(--gray-12);
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
@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 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  #header .sitemap .menu-item .depth3:hover {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #header .sitemap .menu-item .depth3:hover {
    font-size: 16px;
  }
}
#header .sitemap .menu-item .depth3:hover {
  color: var(--primary-deep-hover);
  text-decoration: underline;
}
#header .sitemap .menu-item .depth3 + .depth3 {
  margin-top: 8px;
}
#header .sitemap .bottom-tel-guide {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: auto;
  margin-left: auto;
}
#header .sitemap .bottom-tel-guide .tel-box {
  border-radius: 999px;
  padding: 5px 15px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  #header .sitemap .bottom-tel-guide .tel-box {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #header .sitemap .bottom-tel-guide .tel-box {
    font-size: 20px;
  }
}
#header .sitemap .bottom-tel-guide .tel-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#header .sitemap .bottom-tel-guide .tel-box.pink {
  background-color: var(--pp-light);
  color: var(--pp-deep-hover);
}
#header .sitemap .bottom-tel-guide .tel-box.green {
  background-color: var(--pg-light);
  color: var(--pg-deep-hover);
}
#header .sitemap .bottom-tel-guide .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* - 키: size, weight, family, line-height(선택) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* - 존재하는 레벨만 유지 (키 불일치 방지) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - line-height 키가 있으면 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 144px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 104px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 88px;
  }
}

.title-1-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .title-1-1 {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .title-1-1 {
    font-size: 56px;
  }
}

.title-2-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .title-2-1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .title-2-1 {
    font-size: 32px;
  }
}

.contents-1-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .contents-1-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contents-1-1 {
    font-size: 16px;
  }
}

.contents-1-2 {
  font-family: "Maplestory", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .contents-1-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contents-1-2 {
    font-size: 16px;
  }
}

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

.heading-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-2-1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .heading-2-1 {
    font-size: 24px;
  }
}

.heading-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-2-2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .heading-2-2 {
    font-size: 24px;
  }
}

.heading-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-1 {
    font-size: 20px;
  }
}

.heading-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-2 {
    font-size: 20px;
  }
}

.heading-3-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-3 {
    font-size: 20px;
  }
}

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

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

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

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

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
@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: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

.caption-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .caption-1-2 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .caption-1-2 {
    font-size: 14px;
  }
}

#footer {
  background-color: var(--gray-12);
}
#footer .footer-inner {
  padding: 80px 0;
  display: flex;
  gap: 60px;
}
#footer .footer-inner .box-item + .box-item {
  margin-left: auto;
}
#footer .logo-box {
  width: 280px;
  height: 60px;
  background-image: url("../../assets/images/logo-white.png");
  background-size: contain;
  background-repeat: no-repeat;
}
#footer .logo-box.logo-sb {
  background-image: url("../../assets/images/logo-white-sb.png");
  background-size: contain;
  background-repeat: no-repeat;
}
#footer .terms-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
#footer .terms-list a {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  #footer .terms-list a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #footer .terms-list a {
    font-size: 16px;
  }
}
#footer .terms-list a {
  color: var(--color-white);
  position: relative;
  flex-shrink: 0;
}
#footer .terms-list a:after {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  background-color: var(--color-white);
  border-radius: 0.5px;
  position: absolute;
  right: -8px;
  top: 5px;
}
#footer .terms-list a:last-child:after {
  display: none;
}
#footer .info {
  margin-top: 24px;
}
#footer .info div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#footer .info div + div {
  margin-top: 10px;
}
#footer .info p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  #footer .info p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #footer .info p {
    font-size: 16px;
  }
}
#footer .info p {
  color: var(--gray-8);
  position: relative;
}
#footer .dropdown {
  max-width: 300px;
  margin-left: auto;
}
#footer .dropdown_button {
  justify-content: center;
  gap: 20px;
  background-color: 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-color: 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: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  #footer .dropdown_option {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #footer .dropdown_option {
    font-size: 16px;
  }
}
#footer .dropdown_option {
  color: var(--gray-4);
  padding: 10px 11.5px;
  border-radius: 0;
}
#footer .dropdown_option:hover {
  background-color: var(--gray-11);
  color: var(--color-white);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
@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 {
  /* 선택 상태: 배경과 글자 강조 */
}
#footer .dropdown_option[aria-selected=true] {
  background-color: var(--gray-11);
  color: var(--color-primary);
}
#footer .dropdown[aria-open=true] .dropdown_button {
  z-index: 9999;
}

/* bullet title */
.bullet-title.depth1 {
  color: var(--color-darken);
  position: relative;
  padding-left: 32px;
}
.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: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .bullet-title.depth2 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .bullet-title.depth2 {
    font-size: 18px;
  }
}
.bullet-title.depth2 {
  color: var(--color-darken);
  padding-left: 16px;
  position: relative;
}
.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: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .bullet-title.depth3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .bullet-title.depth3 {
    font-size: 16px;
  }
}
.bullet-title.depth3 {
  color: var(--gray-12);
  padding-left: 16px;
  position: relative;
}
.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 {
  color: var(--color-darken);
  position: relative;
  padding-left: 32px;
}
.bullet-title.num.depth1:before {
  content: "";
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .bullet-title.num.depth1:before {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .bullet-title.num.depth1:before {
    font-size: 16px;
  }
}
.bullet-title.num.depth1:before {
  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;
}
.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: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .bullet-title.num.depth3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .bullet-title.num.depth3 {
    font-size: 16px;
  }
}
.bullet-title.num.depth3 {
  color: var(--color-darken);
  position: relative;
  padding-left: 26px;
}
.bullet-title.num.depth3:before {
  content: "";
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .bullet-title.num.depth3:before {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .bullet-title.num.depth3:before {
    font-size: 16px;
  }
}
.bullet-title.num.depth3:before {
  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;
}
.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 */
#breadcrumb {
  margin-top: 24px;
}
#breadcrumb .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#breadcrumb .icon-arrow-right {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(83%) sepia(0%) saturate(4566%) hue-rotate(76deg) brightness(92%) contrast(78%);
}
#breadcrumb .link-home {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}
#breadcrumb .link-home .icon {
  width: 20px;
  height: 20px;
  filter: var(--filter-white);
}
#breadcrumb .bc-dropdown {
  position: relative;
  width: auto;
  display: flex;
}
#breadcrumb .bc-dropdown:hover .bc-dropdown_button {
  background-color: var(--color-white);
}
#breadcrumb .bc-dropdown:hover .bc-dropdown_value {
  background-color: var(--color-white);
  color: var(--primary-deep-hover);
}
#breadcrumb .bc-dropdown_button {
  height: 30px;
  border: 0;
  padding: 0 15px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}
#breadcrumb .bc-dropdown_button::after {
  display: none;
}
#breadcrumb .bc-dropdown_button:active {
  transform: translateY(1px);
}
#breadcrumb .bc-dropdown_value {
  color: var(--color-white);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  #breadcrumb .bc-dropdown_value {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #breadcrumb .bc-dropdown_value {
    font-size: 16px;
  }
}
#breadcrumb .bc-dropdown_list {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  transform: translateY(-6px);
  pointer-events: none;
  margin: 0;
  list-style: none;
  width: -moz-max-content;
  width: max-content;
  border-radius: 9999px;
}
#breadcrumb .bc-dropdown_option {
  height: 30px;
  border-radius: 9999px;
  background-color: var(--color-white);
  color: var(--primary-deep-hover);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  #breadcrumb .bc-dropdown_option {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #breadcrumb .bc-dropdown_option {
    font-size: 16px;
  }
}
#breadcrumb .bc-dropdown_option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
  cursor: pointer;
}
#breadcrumb .bc-dropdown_option + .bc-dropdown_option {
  margin-top: 8px;
}
#breadcrumb .bc-dropdown_option:hover {
  transform: translateY(-1px);
}
#breadcrumb .bc-dropdown_option[aria-selected=true] {
  background-color: var(--primary-light);
}
#breadcrumb .bc-dropdown .bc-dropdown_option:nth-child(1) {
  transition-delay: 0s;
}
#breadcrumb .bc-dropdown .bc-dropdown_option:nth-child(2) {
  transition-delay: 0.05s;
}
#breadcrumb .bc-dropdown .bc-dropdown_option:nth-child(3) {
  transition-delay: 0.1s;
}
#breadcrumb .bc-dropdown .bc-dropdown_option:nth-child(4) {
  transition-delay: 0.15s;
}
#breadcrumb .bc-dropdown .bc-dropdown_option:nth-child(5) {
  transition-delay: 0.2s;
}
#breadcrumb .bc-dropdown .bc-dropdown_option:nth-child(6) {
  transition-delay: 0.25s;
}
#breadcrumb .bc-dropdown .bc-dropdown_option:nth-child(7) {
  transition-delay: 0.3s;
}
#breadcrumb .bc-dropdown .bc-dropdown_option:nth-child(8) {
  transition-delay: 0.35s;
}
#breadcrumb .bc-dropdown .bc-dropdown_option:nth-child(9) {
  transition-delay: 0.4s;
}
#breadcrumb .bc-dropdown .bc-dropdown_option:nth-child(10) {
  transition-delay: 0.45s;
}
#breadcrumb .bc-dropdown[aria-open=true] .bc-dropdown_button {
  background-color: var(--color-white);
}
#breadcrumb .bc-dropdown[aria-open=true] .bc-dropdown_value {
  background-color: var(--color-white);
  color: var(--primary-deep-hover);
}
#breadcrumb .bc-dropdown[aria-open=true] .bc-dropdown_list {
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
#breadcrumb .bc-dropdown[aria-open=true] .bc-dropdown_list .bc-dropdown_option {
  opacity: 1;
}

#boardsearch {
  margin-bottom: 32px;
}
#boardsearch .board-searchbox {
  display: flex;
  justify-content: center;
}
#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: 460px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 7px 20px;
  flex-shrink: 0;
  border: 1px solid var(--gray-8);
  border-radius: 9999px;
}
.search-keyword-box:hover, .search-keyword-box:focus-within {
  border-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);
  width: 100%;
}
.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: 108px 1fr 186px;
  gap: 0;
  padding: 15px 0;
  border-radius: 10px;
  border: 1px solid var(--gray-8);
  background-color: var(--gray-4);
}
.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: 20px;
  line-height: 1.3;
}
@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: 18px;
  }
}
@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: 18px;
  }
}
.board-list .board-head .col.col-title, .board-list .board-head .col.col-date, .board-list .board-head .col.col-num {
  color: var(--color-darken);
  position: relative;
}
.board-list .board-head .col-num::after {
  content: "";
  width: 1px;
  height: 18px;
  background-color: var(--gray-8);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.board-list .board-head .col-date::after {
  content: "";
  width: 1px;
  height: 18px;
  background-color: var(--gray-8);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.board-list .board-item {
  display: grid;
  grid-template-columns: 110px 1fr 186px;
  align-items: center;
  gap: 0;
  padding: 15px 0;
  position: relative;
  transition: background 0.15s ease;
  border: 1px solid var(--gray-8);
  border-radius: 10px;
  margin-top: 8px;
}
.board-list .board-item:hover {
  background-color: var(--primary-bg-2);
  border: 1px solid var(--primary-normal-active);
  box-shadow: 0 4px 2px 0 rgba(0, 0, 0, 0.1) inset;
}
.board-list .board-item:hover .col.col-title {
  color: var(--primary-deep-hover);
}
.board-list .board-item .col {
  color: var(--color-darken);
  text-align: center;
  position: relative;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@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-num::after {
  content: "";
  width: 1px;
  height: 18px;
  background-color: var(--gray-8);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.board-list .board-item .col.col-date {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .board-list .board-item .col.col-date {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .board-list .board-item .col.col-date {
    font-size: 18px;
  }
}
.board-list .board-item .col.col-date {
  color: var(--gray-11);
}
.board-list .board-item .col.col-date::after {
  content: "";
  width: 1px;
  height: 18px;
  background-color: var(--gray-8);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.board-list .board-item .col.col-title {
  /* 두 줄 말줄임 */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
  padding-left: 20px;
}

/* boarddetail */
.board-detail .title-box {
  border: 1px solid var(--color-primary);
  background-color: var(--primary-bg-2);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.board-detail .title-box .left {
  display: flex;
  gap: 32px;
  flex: 1;
}
.board-detail .title-box .col {
  text-align: center;
  color: var(--gray-12);
  position: relative;
}
.board-detail .title-box .col:after {
  content: "";
  width: 1px;
  height: 18px;
  background-color: var(--gray-8);
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
}
.board-detail .title-box .col span {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .board-detail .title-box .col span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .board-detail .title-box .col span {
    font-size: 20px;
  }
}
.board-detail .title-box .col.col-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .board-detail .title-box .col.col-num {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .board-detail .title-box .col.col-num {
    font-size: 16px;
  }
}
.board-detail .title-box .col.col-title {
  text-align: left;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
}
@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 .col.col-title:after {
  display: none;
}
.board-detail .title-box .data {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}
.board-detail .title-box .col-view span {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .board-detail .title-box .col-view span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .board-detail .title-box .col-view span {
    font-size: 16px;
  }
}
.board-detail .title-box .col-view span {
  color: var(--gray-11);
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  padding-top: 2px;
}
.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::after {
  content: "";
  width: 1px;
  height: 18px;
  display: block;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--gray-8);
}
.board-detail .title-box .col-date span {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .board-detail .title-box .col-date span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .board-detail .title-box .col-date span {
    font-size: 16px;
  }
}
.board-detail .title-box .col-date span {
  color: var(--gray-11);
}
.board-detail .content-box {
  padding: 20px 20px 80px;
  margin-top: 24px;
}
.board-detail .content-box * {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .board-detail .content-box * {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .board-detail .content-box * {
    font-size: 16px;
  }
}
.board-detail .content-box * {
  color: var(--gray-12);
}

.post-navigation {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.post-navigation .post-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-navigation .post-nav-item {
  display: flex;
  min-height: 46px;
  border: 1px solid var(--gray-4);
  border-radius: 5px;
}
.post-navigation .post-nav-item + .post-nav-item {
  margin-top: 8px;
}
.post-navigation .post-nav-item .post-nav-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background-color: var(--gray-2);
  border-right: 1px solid var(--gray-4);
  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;
  line-height: 1.3;
}
@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-label span {
  color: var(--color-darken);
}
.post-navigation .post-nav-item .post-nav-link {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  margin: 10px 15px;
  min-width: 0;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .post-navigation .post-nav-item .post-nav-link {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .post-navigation .post-nav-item .post-nav-link {
    font-size: 18px;
  }
}
.post-navigation .post-nav-item .post-nav-link {
  color: var(--color-darken);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.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: 200px;
  margin: 0 auto;
}

/* cardlist */
.card-list {
  display: grid;
  gap: 40px;
}
.card-list.col3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-list.color-list .card-item {
  border: 1px solid var(--gray-4);
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
.card-list.color-list .card-item:nth-child(3n+2) .badge {
  background-color: var(--pb-accent);
  color: var(--color-white);
}
.card-list.color-list .card-item:nth-child(3n+2):hover {
  border: 1px solid var(--pb-accent);
  background-color: var(--pb-bg-2);
  box-shadow: 6px 6px 0 0 var(--pb-light-hover);
}
.card-list.color-list .card-item:nth-child(3n+3) .badge {
  background-color: var(--pp-accent);
  color: var(--color-white);
}
.card-list.color-list .card-item:nth-child(3n+3):hover {
  border: 1px solid var(--pp-accent);
  background-color: var(--pp-bg-2);
  box-shadow: 6px 6px 0 0 var(--pp-light-hover);
}
.card-list.color-list .card-item:nth-child(3n+1) .badge {
  background-color: var(--pg-accent);
  color: var(--color-white);
}
.card-list.color-list .card-item:nth-child(3n+1):hover {
  border: 1px solid var(--pg-accent);
  background-color: var(--pg-bg-2);
  box-shadow: 6px 6px 0 0 var(--pg-light-hover);
}
.card-list.color-list .card-item .cont {
  margin-top: 0;
}
.card-list.color-list .card-item .cont h3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .card-list.color-list .card-item .cont h3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .card-list.color-list .card-item .cont h3 {
    font-size: 20px;
  }
}
.card-list.color-list .card-item .cont .sub {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .card-list.color-list .card-item .cont .sub {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .card-list.color-list .card-item .cont .sub {
    font-size: 18px;
  }
}
.card-list.color-list .card-item .cont .sub {
  color: var(--gray-11);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 16px;
}
.card-list.color-list .card-item .cont .bottom {
  display: flex;
  align-items: flex-end;
  margin-top: 24px;
}
.card-list.color-list .card-item .cont .badge {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .card-list.color-list .card-item .cont .badge {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .card-list.color-list .card-item .cont .badge {
    font-size: 16px;
  }
}
.card-list.color-list .card-item .cont .badge {
  padding: 5px 20px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
}
.card-list.color-list .card-item .cont .date {
  margin-top: 0;
  margin-left: auto;
}
.card-list .card-item:hover .img-box {
  border: 2px solid var(--color-primary);
}
.card-list .card-item:hover .img-box img {
  transform: scale(1.1);
}
.card-list .card-item .img-box {
  border: 1px solid var(--gray-4);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  max-height: 450px;
  aspect-ratio: 1;
  position: relative;
  background-image: url("../../assets/images/sub/thumb-noimg.png");
  background-size: cover;
  background-position: center;
}
.card-list .card-item .img-box img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1s 0.2s;
}
.card-list .card-item .cont {
  margin-top: 16px;
}
.card-list .card-item .cont h3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .card-list .card-item .cont h3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .card-list .card-item .cont h3 {
    font-size: 20px;
  }
}
.card-list .card-item .cont h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-list .card-item .cont .date {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .card-list .card-item .cont .date {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .card-list .card-item .cont .date {
    font-size: 16px;
  }
}
.card-list .card-item .cont .date {
  color: var(--gray-11);
  margin-top: 16px;
}

/* datalist */
.data-list.type-blue .data-head {
  background-color: var(--pb-normal);
}
.data-list.type-blue .data-head div {
  color: var(--pb-deep-active);
}
.data-list.type-pink .data-head {
  background-color: var(--pp-normal);
}
.data-list.type-pink .data-head div {
  color: var(--pp-deep-active);
}
.data-list.type-green .data-head {
  background-color: var(--pg-normal);
}
.data-list.type-green .data-head div {
  color: var(--pg-deep-active);
}
.data-list .data-head {
  display: grid;
  align-items: center;
  gap: 0;
  border-radius: 10px;
  background-color: var(--color-primary);
}
.data-list .data-head div {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .data-list .data-head div {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .data-list .data-head div {
    font-size: 16px;
  }
}
.data-list .data-head div {
  color: var(--color-white);
  text-align: center;
}
.data-list .data-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.data-list .data-item {
  display: grid;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  border-radius: 10px;
  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;
  line-height: 1.3;
}
@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 {
  color: var(--color-darken);
  text-align: center;
}
.data-list .data-item div.title-box {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .data-list .data-item div.title-box {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .data-list .data-item div.title-box {
    font-size: 18px;
  }
}

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

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

.page-num,
.page-ctrl {
  height: 32px;
  line-height: 1;
  overflow: hidden;
}

.page-btn,
.page-num > a,
.page-num > span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .page-btn,
  .page-num > a,
  .page-num > span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .page-btn,
  .page-num > a,
  .page-num > span {
    font-size: 16px;
  }
}
.page-btn,
.page-num > a,
.page-num > span {
  color: var(--gray-11);
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}

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

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

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

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

.page-ctrl .page-btn {
  background-color: var(--gray-2);
  border-color: transparent;
}
.page-ctrl .page-btn .icon {
  filter: brightness(0) saturate(100%) invert(56%) sepia(8%) saturate(13%) hue-rotate(1deg) brightness(90%) contrast(87%);
}

/* 비활성 컨트롤 */
.page-ctrl .page-btn[aria-disabled=true] {
  color: var(--color-disabled);
}

.tabs {
  display: flex;
}
.tabs.type-default .tab {
  width: 100%;
  padding: 15px 0px;
  cursor: pointer;
  background-color: var(--gray-2);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .tabs.type-default .tab {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .tabs.type-default .tab {
    font-size: 18px;
  }
}
.tabs.type-default .tab {
  color: var(--gray-8);
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 1px solid var(--color-primary);
}
.tabs.type-default .tab:first-child {
  border-radius: 10px 0 0 0;
}
.tabs.type-default .tab:last-child {
  border-radius: 0 10px 0 0;
}
.tabs.type-default .tab:hover, .tabs.type-default .tab:focus {
  color: var(--color-primary);
}
.tabs.type-default .tab.is-active {
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-bottom: transparent;
  border-radius: 10px 10px 0 0;
}
.tabs.type-default .tab:disabled {
  color: var(--gray-7);
  cursor: not-allowed;
}
.tabs.type-box .tab {
  width: 100%;
  padding: 15px 14px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .tabs.type-box .tab {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .tabs.type-box .tab {
    font-size: 18px;
  }
}
.tabs.type-box .tab {
  color: var(--gray-11);
  border: 1px solid var(--gray-4);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tabs.type-box .tab:hover, .tabs.type-box .tab:focus {
  color: var(--color-primary);
}
.tabs.type-box .tab.is-active {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.tabs.type-box .tab:disabled {
  color: var(--gray-7);
  cursor: not-allowed;
}
.tabs.type-text {
  display: flex;
  border-bottom: 1px solid var(--gray-8);
}
.tabs.type-text .tab {
  width: 100%;
  padding: 15px 24px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .tabs.type-text .tab {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .tabs.type-text .tab {
    font-size: 20px;
  }
}
.tabs.type-text .tab {
  color: var(--gray-11);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tabs.type-text .tab:hover, .tabs.type-text .tab:focus {
  color: var(--color-primary);
}
.tabs.type-text .tab.is-active {
  color: var(--color-primary);
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .tabs.type-text .tab.is-active {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .tabs.type-text .tab.is-active {
    font-size: 20px;
  }
}
.tabs.type-text .tab.is-active {
  border-color: var(--color-primary);
}
.tabs.type-text .tab:disabled {
  color: var(--gray-7);
  cursor: not-allowed;
}
.tabs.type-round {
  display: flex;
  gap: 16px;
}
.tabs.type-round .tab {
  width: 100%;
  padding: 15px 24px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .tabs.type-round .tab {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .tabs.type-round .tab {
    font-size: 18px;
  }
}
.tabs.type-round .tab {
  color: var(--gray-11);
  background: none;
  border: 1px solid var(--gray-4);
  border-radius: 9999px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tabs.type-round .tab:hover, .tabs.type-round .tab:focus {
  color: var(--color-primary);
}
.tabs.type-round .tab.is-active {
  color: var(--color-white);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .tabs.type-round .tab.is-active {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .tabs.type-round .tab.is-active {
    font-size: 18px;
  }
}
.tabs.type-round .tab.is-active {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.tabs.type-round .tab:disabled {
  color: var(--gray-7);
  cursor: not-allowed;
}
.tabs.nscroll .tab {
  width: 100%;
}

.tab-panels {
  margin-top: 24px;
}
.tab-panels .tab-panel {
  display: none;
  background: var(--color-white);
}
.tab-panels .tab-panel.is-active {
  display: block;
}

/* Modal (theme-aware) */
.modal {
  /* ✨ 모달 전용 변수: 테마별로 표면/전경/오버레이 제어 */
  --modal-surface: var(--color-white);
  --modal-foreground: var(--color-darken);
  --modal-overlay: rgba(0, 0, 0, .45);
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none; /* aria-hidden="true"일 때 숨김 */
}
.modal[aria-hidden=false] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: var(--modal-overlay);
  backdrop-filter: blur(2px); /* 어둠 속에서도 레이어 분리감 */
}
.modal .modal-container {
  position: relative;
  width: min(700px, 100% - 32px);
  max-height: calc(100dvh - 80px);
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--modal-surface);
  color: var(--color-darken);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
  outline: none;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.modal[aria-hidden=false] .modal-container {
  transform: translateY(0);
  opacity: 1;
}
.modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 20px;
  border-radius: 9999px;
  background-color: var(--primary-light);
}
.modal .modal-header .modal-title {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .modal .modal-header .modal-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .modal .modal-header .modal-title {
    font-size: 20px;
  }
}
.modal .modal-header .modal-title {
  text-align: center;
  width: calc(100% - 50px);
}
.modal .modal-header .modal-close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  color: var(--color-darken);
  flex-shrink: 0;
}
.modal .modal-header .modal-close::before, .modal .modal-header .modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background-color: var(--color-primary);
  transform-origin: 50% 50%;
}
.modal .modal-header .modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal-header .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .modal-header .modal-close:hover {
  background: var(--gray-200);
}
.modal .modal-header .modal-close:focus-visible {
  outline: 2px solid rgba(var(--color-primary-rgb), 0.4);
  outline-offset: 2px;
}
.modal .modal-body {
  overflow: auto;
  color: inherit; /* ✅ 전경색 상속 */
}
.modal .modal-body .gray-box {
  border-radius: 20px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1) inset;
  background-color: var(--gray-2);
  padding: 20px;
  min-height: 136px;
}
.modal .modal-body .gray-box.col2 .box {
  width: 50%;
}
.modal .modal-body .gray-box.col2 .box + .box {
  position: relative;
  padding-left: 24px;
}
.modal .modal-body .gray-box.col2 .box + .box::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--gray-4);
  position: absolute;
  left: 0;
  top: 0;
}
.modal .modal-body .gray-box.col2 .box .title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .modal .modal-body .gray-box.col2 .box .title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .modal .modal-body .gray-box.col2 .box .title {
    font-size: 18px;
  }
}
.modal .modal-body .gray-box.col2 .box .title {
  color: var(--primary-deep-hover);
}
.modal .modal-body .gray-box.col2 .box .cont {
  margin-top: 16px;
}
.modal .modal-body .gray-box.col2 .box .cont p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .modal .modal-body .gray-box.col2 .box .cont p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .modal .modal-body .gray-box.col2 .box .cont p {
    font-size: 18px;
  }
}
.modal .modal-body .gray-box.col2 .box .cont p {
  text-align: left;
}
.modal .modal-body .gray-box.align-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-body .gray-box .title {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .modal .modal-body .gray-box .title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .modal .modal-body .gray-box .title {
    font-size: 18px;
  }
}
.modal .modal-body .gray-box .title {
  text-align: center;
}
.modal .modal-body .gray-box .cont {
  margin-top: 24px;
}
.modal .modal-body .gray-box .cont p {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .modal .modal-body .gray-box .cont p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .modal .modal-body .gray-box .cont p {
    font-size: 16px;
  }
}
.modal .modal-body .gray-box .cont p {
  text-align: center;
}
.modal .modal-footer {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.modal .modal-footer.center {
  justify-content: center;
}
.modal .modal-footer .btn {
  min-width: 200px;
}
.modal {
  /* 사이즈 변형 */
}
.modal.size-sm .modal-container {
  width: min(420px, 100% - 32px);
}
.modal.size-lg .modal-container {
  width: min(1000px, 100% - 32px);
}

/* 바디 스크롤 잠금 */
.body-lock {
  overflow: hidden;
}

/* 🌙 다크 테마 전용 오버라이드 */
:root {
  /* 폴백: color-mix 미지원 시 사용될 약간 어두운 표면색 */
  --modal-surface-dark-fallback: #f2f2f5;
}

/* 최신 브라우저: color-mix 사용 (OKLab 추천) */
@supports (color: color-mix(in oklab, white, black)) {
  :root {
    --modal-surface-dark: color-mix(in oklab, var(--color-white), black 16%);
  }
}
#visual {
  padding: 95px 0 94px;
}
#visual .title-box .title-main {
  text-align: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  #visual .title-box .title-main {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  #visual .title-box .title-main {
    font-size: 32px;
  }
}
#visual .title-box .title-main {
  color: var(--color-white);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
}
#visual .title-box .title-sub {
  text-align: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  #visual .title-box .title-sub {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #visual .title-box .title-sub {
    font-size: 18px;
  }
}
#visual .title-box .title-sub {
  color: var(--color-white);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
  margin-top: 8px;
}
#visual.visual-medical {
  background-image: url("../images/visual/visual_1.png");
  background-size: cover;
  background-repeat: repeat;
}
#visual.visual-reserve {
  background-image: url("../images/visual/visual_2.png");
  background-size: cover;
  background-repeat: repeat;
}
#visual.visual-guide {
  background-image: url("../images/visual/visual_3.png");
  background-size: cover;
  background-repeat: repeat;
}
#visual.visual-about {
  background-image: url("../../assets/images/visual/visual_4.png");
  background-size: cover;
  background-repeat: repeat;
}
#visual.visual-about-sb {
  background-image: url("../../assets/images/visual/visual_4_sb.png");
  background-size: cover;
  background-repeat: repeat;
}
#visual.visual-terms {
  background-image: url("../../assets/images/visual/visual_5.png");
  background-size: cover;
  background-repeat: repeat;
}

.attachment-box {
  margin-top: 50px;
  border-top: 1px solid var(--border-darken);
}
.attachment-box .attachment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.attachment-box .attachment-header .icon {
  display: block;
  width: 24px;
  height: 24px;
}
.attachment-box .attachment-header span {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .attachment-box .attachment-header span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .attachment-box .attachment-header span {
    font-size: 18px;
  }
}

.attachment-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--gray-8);
  border-radius: 10px;
  padding: 10px 15px;
}
.attachment-list .attachment-item {
  display: flex;
  gap: 8px;
}
.attachment-list .attachment-item .filename {
  display: flex;
  gap: 8px;
  padding: 7px 0;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .attachment-list .attachment-item .filename {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .attachment-list .attachment-item .filename {
    font-size: 18px;
  }
}
.attachment-list .attachment-item .filename {
  color: var(--gray-11);
}
.attachment-list .attachment-item .filename .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(42%) sepia(0%) saturate(1464%) hue-rotate(196deg) brightness(90%) contrast(86%);
}
.attachment-list .attachment-item .btn {
  width: 40px;
  height: 40px;
  margin-left: auto;
  flex-shrink: 0;
  border-radius: 5px;
}
.attachment-list .attachment-item .btn .icon {
  width: 20px;
  height: 20px;
  margin-left: 0;
}

.suggest-form .form-divider {
  width: 100%;
  height: 1px;
  background-color: var(--gray-4);
  margin: 24px auto;
}
.suggest-form .line-box {
  padding: 40px;
}
.suggest-form .form-group + .form-group {
  margin-top: 24px;
}
.suggest-form .form-group.form-row {
  display: flex;
  gap: 40px;
}
.suggest-form .form-field {
  width: 100%;
}
.suggest-form .form-field .text-field {
  width: 100%;
}
.suggest-form .form-label {
  display: flex;
  align-items: center;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .suggest-form .form-label {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .suggest-form .form-label {
    font-size: 18px;
  }
}
.suggest-form .form-label {
  margin-bottom: 8px;
}
.suggest-form .form-label .required {
  position: relative;
}
.suggest-form .form-label .required::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../../assets/images/icon/icon-important.svg");
  background-size: contain;
  background-position: center center;
}
.suggest-form .form-desc {
  margin-top: 8px;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .suggest-form .form-desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .suggest-form .form-desc {
    font-size: 14px;
  }
}
.suggest-form .form-desc {
  color: var(--gray-11);
}
.suggest-form .btn-wrap {
  margin-top: 48px;
  justify-content: center;
}
.suggest-form .btn-wrap .btn {
  min-width: 200px;
}

.search-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
}
.search-box .dropdown {
  width: 200px;
}

/* media */
/* ================================================= */
/* 1. 폰트 가중치 Map 및 기본 변수 정의 (핵심 유틸리티) */
/* ================================================= */
/* ============================================== */
/* 2. 타이포그래피 스타일 Map 정의 (디자인 시스템) */
/* - 키: size, weight, family, line-height(선택) */
/* ============================================== */
/* ================================================= */
/* 2-1. 반응형 size Map (PC 대비 size만 오버라이드) */
/* - 존재하는 레벨만 유지 (키 불일치 방지) */
/* ================================================= */
/* ============================================= */
/* 3. 공용 유틸: 레벨별 size 조회 (브레이크포인트) */
/* ============================================= */
/* ============================================= */
/* 4. 범용 믹스인: @include body-1-1 형태로 사용 */
/* - line-height 키가 있으면 함께 출력 */
/* ============================================= */
/* ============================================= */
/* 5. 레벨별 믹스인: 최종 사용 형태 유지 */
/* ============================================= */
/* ========================================== */
/* 6. 클래스 자동 생성(선택): 기존 형태 유지 */
/* ========================================== */
.display-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 144px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .display-1 {
    font-size: 104px;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 88px;
  }
}

.title-1-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .title-1-1 {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .title-1-1 {
    font-size: 56px;
  }
}

.title-2-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .title-2-1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .title-2-1 {
    font-size: 32px;
  }
}

.contents-1-1 {
  font-family: "Maplestory", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .contents-1-1 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contents-1-1 {
    font-size: 16px;
  }
}

.contents-1-2 {
  font-family: "Maplestory", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .contents-1-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contents-1-2 {
    font-size: 16px;
  }
}

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

.heading-2-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-2-1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .heading-2-1 {
    font-size: 24px;
  }
}

.heading-2-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-2-2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .heading-2-2 {
    font-size: 24px;
  }
}

.heading-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-1 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-1 {
    font-size: 20px;
  }
}

.heading-3-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-2 {
    font-size: 20px;
  }
}

.heading-3-3 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .heading-3-3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .heading-3-3 {
    font-size: 20px;
  }
}

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

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

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

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

.body-3-1 {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
@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: 16px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .body-3-2 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .body-3-2 {
    font-size: 16px;
  }
}

.caption-1-2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .caption-1-2 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .caption-1-2 {
    font-size: 14px;
  }
}

/* 햄버거 생기기 전 사이트맵 숨김 */
@media (min-width: 1431px) {
  #header .sitemap {
    display: none;
  }
  #header.all .sitemap {
    display: none;
  }
}
/* component media 1430 */
@media (max-width: 1430px) {
  /* section */
  .section {
    padding: 40px 0;
  }
  /* container */
  .container {
    max-width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }
  .container.fluid {
    padding: 0;
  }
  /* table-wrap */
  .table-wrap.scroll-x table {
    width: 1430px;
  }
  .table-wrap.scroll-x {
    overflow-x: auto;
  }
  /* 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;
  }
  #breadcrumb .container .dropdown.last {
    width: 220px;
  }
  #breadcrumb .container .dropdown_button {
    height: 37px;
    padding: 0 10px;
  }
  #breadcrumb .container .dropdown {
    /* ✅ 마지막 뎁스가 아닌 드롭다운 (JS의 .dropdown.last 기준으로 판정) */
  }
  #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 기준) */
  }
  #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) {
  /* rario group */
  .button-type.col3.horizontal {
    gap: 16px 24px;
  }
  .button-type .radio.size-lg label {
    height: 48px;
  }
  .list-type.dot .depth1.dot:before {
    top: 3px;
  }
  .list-type.dot .depth1.dot::after {
    top: 7px;
  }
  .list-type.dot .depth2.dot {
    margin-top: 5px;
  }
  .list-type.dot .depth3.dot {
    margin-top: 5px;
  }
  .list-type .depth1 .chip {
    margin-top: 3px;
  }
  .list-type .depth1.info-text:before {
    top: 2px;
  }
  .list-type .depth1.info-text:after {
    top: 6px;
  }
  /* 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;
  }
  /* tabs */
  .tabs a {
    height: 60px;
  }
  /* board */
  .board-list .board-item .col.col-title {
    padding-left: 0;
  }
  .board-list .board-item .col.col-date {
    margin-left: auto;
  }
  .board-list .board-item .col.col-date:after {
    display: none;
  }
  .board-detail .title-box {
    padding: 20px;
    flex-wrap: wrap;
  }
  .board-detail .title-box .left {
    width: 100%;
    gap: 24px;
  }
  /* cardlist */
  .card-list.col3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .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;
  }
  /* form */
  .suggest-form .line-box {
    padding: 20px;
  }
  .suggest-form .form-group.form-row {
    gap: 24px;
  }
}
/* 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: 18px;
    line-height: 1.3;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .chip.size-md {
    font-size: 16px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .chip.size-md {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .tabs.type-default {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    scrollbar-width: none;
  }
  .tabs.type-default::-webkit-scrollbar {
    display: none;
  }
  .tabs.type-default .tab {
    flex: 0 0 auto;
    min-width: 220px;
    width: auto;
    padding: 20px;
    white-space: normal;
  }
  .tabs.type-default.nscroll {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
  .tabs.type-default.nscroll .tab {
    width: 100%;
    flex: 1;
  }
  .btn-wrap:has(.size-lg) {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  /* rario group */
  .button-type.col3.horizontal {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
  .button-type .radio.size-lg label {
    height: 48px;
  }
  .search-keyword-box {
    width: 100%;
  }
  .table-wrap.gridtable .tb-header {
    position: relative;
    padding-top: 35px;
  }
  .table-wrap.gridtable .tb-header .tb-row {
    display: none;
  }
  .table-wrap.gridtable .tb-header .tb-row .checkbox {
    position: absolute;
    top: 0;
  }
  .table-wrap.gridtable .tb-body {
    min-height: 80vh;
    overflow-y: auto;
  }
  .table-wrap.gridtable .tb-row {
    flex-direction: column;
  }
  /* section */
  .section {
    padding: 40px 0;
  }
  /* container */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container.fluid {
    padding: 0;
  }
  /* table-wrap */
  .table-wrap.scroll-x table {
    width: 768px;
  }
  /* header */
  #header::before {
    top: 80px;
  }
  #header .header-inner {
    height: 80px;
  }
  #header .sitemap {
    top: 80px;
  }
  #header .sitemap .container {
    height: calc(100vh - 80px);
    display: flex;
    padding: 0;
    background-image: none;
  }
  #header .sitemap .left {
    width: 40%;
    height: calc(100vh - 80px);
    display: block;
    padding: 40px 20px;
  }
  #header .sitemap .left button {
    width: 100%;
    display: block;
    font-family: "Pretendard", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    color: var(--gray-11);
    padding: 5px 20px;
    border-radius: 9999px;
  }
}
@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(--color-primary);
    color: var(--color-white);
  }
  #header .sitemap .left button + button {
    margin-top: 23px;
  }
  #header .sitemap .menu-list {
    width: 60%;
    height: calc(100vh - 80px);
    padding: 40px 10px;
    margin-top: 0;
    background-color: var(--primary-bg-2);
    display: flex;
    flex-direction: column;
  }
  #header .sitemap .list-type {
    display: none;
  }
  #header .sitemap .menu-item {
    flex-direction: column;
    gap: 24px;
    padding: 0;
    border-bottom: 0;
    margin-bottom: 0;
    display: none;
  }
  #header .sitemap .menu-item.on {
    display: block;
  }
  #header .sitemap .menu-item .depth2 {
    padding: 5px 20px;
    background-color: var(--primary-light-hover);
    color: var(--primary-deep-hover);
  }
  #header .sitemap .menu-item .box {
    gap: 8px;
  }
  #header .sitemap .menu-item .box + .box {
    margin-top: 16px;
  }
  #header .sitemap .menu-item .box div {
    margin-bottom: 0;
  }
  #header .sitemap .bottom-tel-guide {
    flex-direction: column;
  }
  #visual {
    padding: 55px 0 55px;
  }
}
@media (max-width: 768px) {
  /* footer */
  #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 */
  #breadcrumb .container {
    padding-left: 50px;
    padding-right: 50px;
  }
  #breadcrumb .container .link-home,
  #breadcrumb .container .icon-arrow-right {
    display: none;
  }
  #breadcrumb .container .depth {
    display: none;
  }
  #breadcrumb .container .depth.last {
    display: flex !important;
    width: 100%;
  }
  #breadcrumb .container .depth.last .bc-dropdown_button {
    width: 100%;
    justify-content: center;
  }
  #breadcrumb .container .depth.last .bc-dropdown_list {
    width: 100%;
    padding: 0 20px;
  }
  #breadcrumb .container .depth.last .bc-dropdown_list li {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  }
  .tabs.col2 a {
    width: 50%;
    min-width: auto;
  }
  /* boardsearch */
  #boardsearch form {
    width: 100%;
  }
  #boardsearch .search-inputs {
    flex-direction: column;
    gap: 8px;
  }
  #boardsearch .search-inputs .dropdown {
    width: 100%;
  }
  #boardsearch .search-keyword-box {
    width: 100%;
  }
  .board-list .board-head {
    display: none;
  }
  .board-list .board-item {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .board-list .board-item .col.col-title {
    padding-left: 0;
    -webkit-line-clamp: 2;
  }
  .board-list .board-item .col.col-date {
    margin-left: auto;
  }
  .board-list .board-item .col.col-date:after {
    display: none;
  }
  .board-detail .title-box {
    flex-direction: column;
    gap: 0;
  }
  .board-detail .title-box .left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .board-detail .title-box .left .col.col-num {
    text-align: left;
  }
  .board-detail .title-box .left .col.col-num:after {
    display: none;
  }
  .board-detail .title-box .data {
    margin-top: 8px;
    margin-left: auto;
  }
  .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 .attachment-item .filename {
    padding: 0;
  }
  .board-detail .content-box {
    padding: 20px 20px 40px;
  }
  .post-navigation {
    gap: 40px;
  }
  /* cardlist */
  .card-list.col3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
  }
  .card-list .card-item {
    width: 100%;
  }
  .card-list .card-item .img-box {
    max-height: 100%;
  }
  /* datalist */
  .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 */
  .pagination {
    margin-top: 40px;
  }
  .pagination .pagination-list .page-ctrl:first-child, .pagination .pagination-list .page-ctrl:last-child {
    display: none;
  }
  /* form */
  .suggest-form .form-group.form-row {
    flex-direction: column;
  }
  .suggest-form .btn-wrap {
    flex-direction: column;
  }
  .suggest-form .btn-wrap .btn {
    width: 100%;
  }
}
/* media 360 */
@media (max-width: 500px) {
  /* breadcrumb */
  #breadcrumb .container {
    padding: 0 20px;
    gap: 8px;
  }
  /* header */
  #header .sitemap .left {
    padding: 40px 10px;
  }
  #header .sitemap .left button {
    font-size: 16px;
  }
}