/* Reset */
* {margin: 0; padding: 0; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; word-break: keep-all;}
html, body {max-width: 100%; min-height: 100%; font-size: var(--text-base); }
html {height: 100%; -webkit-text-size-adjust: none;}
body {-webkit-print-color-adjust: exact; background: #FFFFFF; font-family: 'Pretendard', sans-serif; font-style: normal; font-weight: 400; color: #1E1E1E; line-height: 1.5; letter-spacing: -3%; }
body.mCustomScrollbar { height: 100%; }
ul, li, dl,dt,dd {margin: 0; padding: 0; list-style: none;}
a {color: inherit; text-decoration: none;}
img {border: 0; font-size: 0; max-width: 100%;}
table, tr, td {border-collapse: collapse;}
p {word-break: keep-all;}
textarea, select {font-family: 'Pretendard', sans-serif; font-size: 1em;}
textarea {resize: none;}
input, button {margin: 0; padding: 0; font-family: 'Pretendard', sans-serif; font-size: 1em;}
input[type="submit"], button {cursor: pointer;}
input {border-radius: 0;}
select, button {color: inherit;}
fieldset {border: none; margin: 0; padding: 0;}
caption, legend {font-size: 0; line-height: 0; height: 0; position: relative;}
input[type="search"] {-webkit-appearance: textfield; appearance: textfield;}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {display: none;}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0;}
input[type='number'] {-moz-appearance: textfield;}
input[type="date"]::-webkit-calendar-picker-indicator {display: none;}

:focus-visible { outline: 3px dotted #ff0000; }

.ovh {overflow: hidden;}

/* ===== Page Intro (FOUC 방지) { ===== */
html:not(.is-page-ready) [data-aos] { opacity: 0; }
[data-aos].is-aos-done { transition-delay: 0s !important; }
/* ===== } Page Intro ===== */

/* ===== Web Accessibility { ===== */
/* sound only */
.sr-only{display: inline-block !important; position: absolute; top: 0; left: 0; width: 0; height: 0; margin: 0 !important; padding: 0 !important; font-size: 0; line-height: 0; border: 0 !important; overflow: hidden !important;}

/* skip navigation */
#skip_nav { position: absolute; left: 0; top: -1000px; width: 100%; height: 0px; z-index: 30000; line-height: 0px; font-size: 0; }
#skip_nav a { display: block; text-align: center; width: 100%; line-height: 0px; font-size: 0; }
#skip_nav a:focus, #skip_nav a:hover, #skip_nav a:active { position: absolute; left: 0px; top: 1000px; padding: 8px 0; display: block; height: 30px; background: #333; font-size: 12px; font-weight: bold; line-height: 18px; color: #fff; }
/* ===== } Web Accessibility ===== */

:root {
  /* Colors { */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-main-light: #7C51A1;
  --color-main: #513882;
  --color-main-dark: #2D0F69;
  --color-sub-1: #E1E6FF;
  --color-sub-2: #EFF4FE;
  --color-point-mint: #79CDD0;
  --color-point-yellow: #FFF100;
  --color-point-salmon: #EB614B;
  --color-main-gradient : linear-gradient(90deg, #7C51A1 50%, #79CDD0 100%);
  /* } Colors */

  /* Font sizes { */
  --text-16: 16px;
  --text-base: 18px;
  --text-20: 20px;
  --text-22: 22px;
  --text-23: 23px;
  --text-24: 24px;
  --text-25: 25px;
  --text-26: 26px;
  --text-28: 28px;
  --text-30: 30px;
  --text-35: 35px;
  /* } Font sizes */
}

/* ===== Scrollbar { ===== */
html::-webkit-scrollbar { width: 6px; height: 6px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background-color: var(--color-main); border-radius: 999px; }
html::-webkit-scrollbar-button { display: none; width: 0; height: 0; }
/* ===== } Scrollbar ===== */

/* ===== Typography { ===== */
strong {font-weight: 600;}
i, em {font-style: normal;}

/* Remixicon 아이콘 기본 스타일 */
i[class*="ri-"] { display: inline-flex; align-items: center; justify-content: center; aspect-ratio: 1/1; height: 1em; overflow: hidden; line-height: 1; }

/* Link Text */
.link-txt > a:link { color: #0077FF; text-decoration: revert; }
.link-txt > a:visited { color: revert; text-decoration: revert; }
.link-txt > a:active { color: revert; }

/* Fonts { */
.font-omt {font-family: "OneMobileTitle", sans-serif;}
.font-ptd {font-family: "Pretendard", sans-serif;}
.font-ria {font-family: "RiaSans", sans-serif;}
/* } Fonts */

/* Font Size { */
.fs-16 { font-size: var(--text-16); }
.fs-base { font-size: var(--text-base); }
.fs-20 { font-size: var(--text-20); }
.fs-22 { font-size: var(--text-22); }
.fs-23 { font-size: var(--text-23); }
.fs-24 { font-size: var(--text-24); }
.fs-25 { font-size: var(--text-25); }
.fs-26 { font-size: var(--text-26); }
.fs-28 { font-size: var(--text-28); }
.fs-30 { font-size: var(--text-30); }
.fs-35 { font-size: var(--text-35); }
/* } Font Size */

/* Font Weight { */
.fw-100 { font-weight: 100; }
.fw-200 { font-weight: 200; }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
/* } Font Weight */

/* Line Height { */
.lh-noramal { line-height: normal; }
/* } Line Height */

/* Font Color { */
.fc-white { color: var(--color-white); }
.fc-balck { color: var(--color-balck); }
.fc-main { color: var(--color-main); }
.fc-main-light { color: var(--color-main-light); }
.fc-point-mint { color: var(--color-point-mint); }
.fc-point-yellow { color: var(--color-point-yellow); }
.fc-point-salmon { color: var(--color-point-salmon); }
/* } Font Color */

/* Text Cut { */
.t-row-1 {white-space: nowrap; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.t-row-2 {white-space: normal; overflow: hidden; line-height: 1.5; max-height: 3em; text-align: left; word-break: break-all; word-wrap: break-word; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}
.t-row-3 {white-space: normal; overflow: hidden; line-height: 1.5; max-height: 4.5em; text-align: left; word-break: break-all; word-wrap: break-word; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;}
/* } Text Cut */

/* Text Align { */
.ta-center { text-align: center; }
.ta-left { text-align: left; }
.ta-right { text-align: right; }
/* } Text Align */

/* Title { */
.section-title-01 { font-size: 45px; font-weight: 700; color: var(--color-main); margin-bottom: 64px; }
.section-title-02 { --section-title-02-dot: 17px; --section-title-02-dot-offset: 8px; --section-title-02-dot-border: 3px; --section-title-02-padding-left: 35px; position: relative; font-size: var(--text-28); font-weight: 700; color: var(--color-black); padding-left: var(--section-title-02-padding-left); margin-bottom: 32px; }
.section-title-02::before { content: ''; box-sizing: border-box; position: absolute; aspect-ratio: 1/1; width: var(--section-title-02-dot); border-radius: 50%; top: calc((1lh - var(--section-title-02-dot)) / 2); left: 0; z-index: 1; background: var(--color-main-light); opacity: .5; }
.section-title-02::after { content: ''; box-sizing: border-box; position: absolute; aspect-ratio: 1/1; width: var(--section-title-02-dot); border-radius: 50%; top: calc((1lh - var(--section-title-02-dot)) / 2); left: var(--section-title-02-dot-offset); z-index: 2; background: transparent; border: var(--section-title-02-dot-border) solid var(--color-point-mint); opacity: .7; }
/* } Title */
/*  ===== } Typography ===== */

/* ===== Sizing { ===== */
/* Content Line { */
.container {padding-left: 80px; padding-right: 80px; width: 100%;}
.wrapper {width: 1600px; max-width: 100%; margin: 0 auto;}
/* } Content Line */

/* Column { */
.i-col-0{font-size: 0;}
.i-col-1{font-size: 0;}
.i-col-2{font-size: 0;}
.i-col-3{font-size: 0;}
.i-col-4{font-size: 0;}
.i-col-5{font-size: 0;}
.i-col-6{font-size: 0;}
.i-col-7{font-size: 0;}
.i-col-8{font-size: 0;}
.i-col-9{font-size: 0;}
.i-col-10{font-size: 0;}
.i-col-11{font-size: 0;}
.i-col-12{font-size: 0;}

.i-col-0 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: auto;}
.i-col-1 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 100%;}
.i-col-2 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 50%;}
.i-col-3 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 33.333%;}
.i-col-4 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 25%;}
.i-col-5 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 20%;}
.i-col-6 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 16.666%;}
.i-col-7 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 14.285%;}
.i-col-8 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 12.5%;}
.i-col-9 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 11.111%;}
.i-col-10 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 10%;}
.i-col-11 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 9.09%;}
.i-col-12 > *{display: inline-block; font-size: var(--text-base); vertical-align: middle; width: 8.333%;}
/* } Column */

/* Width { */
.w-per100 {width: 100%;}
.w-per95 {width: 95%;}
.w-per90 {width: 90%;}
.w-per85 {width: 85%;}
.w-per80 {width: 80%;}
.w-per75 {width: 75%;}
.w-per70 {width: 70%;}
.w-per66 {width: 66.667%;}
.w-per65 {width: 65%;}
.w-per60 {width: 60%;}
.w-per55 {width: 55%;}
.w-per50 {width: 50%;}
.w-per45 {width: 45%;}
.w-per40 {width: 40%;}
.w-per35 {width: 35%;}
.w-per33 {width: 33.333%;}
.w-per30 {width: 30%;}
.w-per25 {width: 25%;}
.w-per20 {width: 20%;}
.w-per15 {width: 15%;}
.w-per10 {width: 10%;}
.w-per5 {width: 5%;}
.w-auto {width: auto;}
/* } Width */

/* Height { */
.h-per100 {height: 100%;}
/* } Height */
/* ===== } Sizing ===== */

/* ===== Border Radius { ===== */
.round-3px { border-radius: 3px; overflow: hidden; }
.round-5px { border-radius: 5px; overflow: hidden; }
.round-8px { border-radius: 8px; overflow: hidden; }
.round-10px { border-radius: 10px; overflow: hidden; }
.round-15px { border-radius: 15px; overflow: hidden; }
.round-100 { border-radius: 999px; overflow: hidden; }
.round-circle { border-radius: 50%; overflow: hidden; }
/* ===== } Border Radius ===== */

/* Lenis Scroll { */
html.lenis, html.lenis body {height: auto !important; width: 100%;}
.lenis.lenis-smooth {scroll-behavior: auto !important;}
.lenis.lenis-smooth [data-lenis-prevent] {overscroll-behavior: contain;}
.lenis.lenis-stopped {overflow: hidden;}
.lenis.lenis-scrolling iframe {pointer-events: none;}
/* } Lenis Scroll

/* ===== Mobile Scroll { ===== */
.mobile-scroll { position: relative; width: 100%; padding: 5px; box-sizing: border-box; }
.mobile-scroll.bp-1024 { --ms-design-w: 1024px; --ms-container-inset-x: 40px; --ms-scroll-inset-x: 22px; --mobile-scroll-content-min-w: calc(var(--ms-design-w) - var(--ms-container-inset-x) - var(--ms-scroll-inset-x)); }
.mobile-scroll.bp-768 { --ms-design-w: 768px; --ms-container-inset-x: 20px; --ms-scroll-inset-x: 22px; --mobile-scroll-content-min-w: calc(var(--ms-design-w) - var(--ms-container-inset-x) - var(--ms-scroll-inset-x)); }
.mobile-scroll-track { width: 100%; outline: none; }
.mobile-scroll-content { width: 100%; }
.mobile-scroll-content > img { display: block; width: 100%; height: auto; }
.mobile-scroll-content > table { width: 100%; }
.mobile-scroll::after { content: none; }
.mobile-scroll-track .mCustomScrollBox.mCSB_horizontal.mCSB_inside > .mCSB_container { margin-bottom: 10px; }
.mobile-scroll-track .mCSB_scrollTools.mCSB_scrollTools_horizontal { height: 4px; bottom: 0px; opacity: 1 !important; visibility: visible !important; }
.mobile-scroll-track .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerContainer { background: rgba(0, 0, 0, 0.1); }
.mobile-scroll-track .mCSB_scrollTools .mCSB_buttonLeft,
.mobile-scroll-track .mCSB_scrollTools .mCSB_buttonRight { display: none; }
.mobile-scroll-track .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail { width: 100%; height: 4px; margin: 0; background: rgba(66, 36, 91, 0.12); border-radius: 999px; }
.mobile-scroll-track .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger { height: 100%; }
.mobile-scroll-track .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar { width: 100%; height: 4px; margin: 0; border-radius: 999px; background: var(--color-main); }
.mobile-scroll-track .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger:hover .mCSB_dragger_bar,
.mobile-scroll-track .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger:active .mCSB_dragger_bar,
.mobile-scroll-track .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar { background: var(--color-main); }
.mobile-scroll.is-scroll-active .mobile-scroll-track { overflow: visible; }
.mobile-scroll.is-scroll-active .mobile-scroll-track.mCustomScrollbar { overflow: hidden; }
.mobile-scroll.is-scroll-active .mobile-scroll-track:focus-visible { outline: 2px solid var(--color-main); outline-offset: 2px; }
.mobile-scroll.is-scroll-active .mobile-scroll-content { width: var(--mobile-scroll-content-min-w); min-width: var(--mobile-scroll-content-min-w); max-width: none; }
.mobile-scroll.is-scroll-active::after { content: ''; position: absolute; z-index: 2; top: 50%; left: 50%; aspect-ratio: 1/1; width: 80px; transform: translate(-50%, -50%); background: url('../img/ico-mobile-scroll.png') center / contain no-repeat; pointer-events: none; opacity: 1; transition: opacity 0.6s ease; }
.mobile-scroll.is-scroll-active.is-hint-hidden::after { opacity: 0; }
/* ===== } Mobile Scroll ===== */

/* ===== Button { ===== */
.i-btn-wrap { display: flex; align-items: center; gap: 16px; }
.i-btn-wrap.right { justify-content: flex-end; }
.i-btn { border: 1px solid transparent; background: transparent; display: flex; align-items: center; justify-content: center; gap: 5px; overflow: hidden; transition: all .3s; }
.i-btn.between { justify-content: space-between; }
.i-btn i { transition: all .2s; }

/* Color */
.i-btn-line-gray { border-color: #CCCCCC; background: var(--color-white); color: var(--color-balck); }
.i-btn-line-gray:hover { background: #EFEFEF; }
.i-btn-fill-main { background: var(--color-main); color: var(--color-white); }
.i-btn-fill-main:hover { background: var(--color-main-dark); }

/* Size */
.i-btn-xs {  }
.i-btn-sm {  }
.i-btn-md { height: 40px; min-width: 40px; padding: 8px 12px; font-size: var(--text-16); }
.i-btn-lg { height: 50px; min-width: 50px; padding: 12px 18px; font-size: var(--text-18); }
.i-btn-xl { height: 75px; min-width: 75px; padding: 20px 30px; gap: 10px; font-size: var(--text-22); font-weight: 600; }
.i-btn-w-120 { width: 120px; }
.i-btn-w-260 { width: 260px; }

/* Top Btn
  --top-btn-bottom: 기본 fixed bottom (반응형에서 덮어쓰기)
  --top-btn-show-offset: 최상단으로부터 이 px만큼 스크롤 시 버튼 표시 (index/sub 공통)
  z-index: 평소 footer(100)보다 위(150). 관련사이트 패널 열림 시 90으로 내려 footer 아래로
  JS가 footer와 겹칠 때 bottom을 올려, footer 상단 기준 본인 높이의 1/2만 침범 */
.top-btn { --top-btn-bottom: 50px; --top-btn-show-offset: 400px; position: fixed; bottom: var(--top-btn-bottom); right: 50px; z-index: 150; flex-direction: column; gap: 0; aspect-ratio: 70/85; width: 70px; border-radius: 999px; background: var(--color-point-salmon); color: var(--color-point-yellow); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(14px); }
body:has(.footer .rel-site.is-open) .top-btn,
body:has(.footer .rel-site.is-closing) .top-btn,
.top-btn.is-under-rel-site { z-index: 90; }
/* ===== } Button ===== */

/* ========== UI Componenets { ========== */
/* ===== Tab { ===== */
/* 링크형 탭(.tab-typeA) */
.link-tab-nav { display: flex; align-items: center; justify-content: center; width: 100%; }
.tab-typeA { --tab-gap: 10px; --tab-cols: 5; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--tab-gap); width: 100%; }
.tab-typeA > li { --tab-w: calc((100% - (var(--tab-gap) * (var(--tab-cols) - 1))) / var(--tab-cols)); flex: 0 0 auto; width: min(256px, var(--tab-w)); height: 65px; min-width: 0; }
.tab-typeA > li > .link-tab-btn { position: relative; z-index: 0; display: flex; align-items: center; justify-content: center; box-sizing: border-box; width: 100%; height: 100%; padding: 10px 34px; border: 1px solid #CCCCCC; border-radius: 5px; background-color: var(--color-white); font-weight: 600; font-size: var(--text-22); color: #666666; text-align: center; text-decoration: none; overflow: hidden; transition: color 0.35s ease, border-color 0.35s ease; }
.tab-typeA > li > .link-tab-btn::before { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, #7C51A1 50%, #79CDD0 100%); transform: scaleX(0); transform-origin: left center; transition: transform 0.35s ease; }
.tab-typeA > li > .link-tab-btn:hover, .tab-typeA > li > .link-tab-btn:focus-visible, .tab-typeA > li > .link-tab-btn.active { border-color: transparent; color: var(--color-white); }
.tab-typeA > li > .link-tab-btn:hover::before, .tab-typeA > li > .link-tab-btn:focus-visible::before, .tab-typeA > li > .link-tab-btn.active::before { transform: scaleX(1); }

/* 컨텐츠 전환형 탭(.tab-typeB) */
.tab-nav { display: flex; align-items: center; justify-content: center; width: 100%; }
.tab-typeB { --tab-gap: 20px; margin: 40px 0 70px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--tab-gap); width: 100%; }
.tab-typeB > li { flex: 0 0 auto; width: auto; min-width: 0; }
.tab-typeB .tab-btn { display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; width: auto; height: 50px; padding: 12px 28px; border: 1px solid #CCCCCC; border-radius: 999px; background: var(--color-white); color: #959595; font-weight: 700; font-size: var(--text-23); line-height: 1.2; white-space: nowrap; cursor: pointer; transition: all .3s; }
.tab-typeB .tab-btn:hover, .tab-typeB .tab-btn:focus-visible { border-color: var(--color-main); color: var(--color-main); }
.tab-typeB .tab-btn.active, .tab-typeB .tab-btn.active:hover, .tab-typeB .tab-btn.active:focus-visible { border-color: var(--color-main); background: var(--color-main); color: var(--color-white); }
.tab-cont-item.is-fade-up { animation: tab-fade-up 0.6s ease both; }
@keyframes tab-fade-up {
  from { opacity: 0; transform: translate3d(0, 100px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@media (prefers-reduced-motion:reduce) {
  .tab-cont-item.is-fade-up { animation: none; }
}
/* ===== } Tab ===== */

/* ===== Badge { ===== */
.badge { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 3px 14px; border-radius: 999px; overflow: hidden; }
.badge.orange { background: var(--color-point-salmon); color: var(--color-point-yellow); }
.badge.black { background: var(--color-black); color: var(--color-white); }
/* ===== } Badge ===== */

/* ===== Box { ===== */
.border-box { border: 1px solid #CCCCCC; }

/* Text Box { */
.text-box-orange { background: #FFFCF4; border: 1px solid #F3E0DB; border-radius: 8px; overflow: hidden; padding: 25px 42px; }
.text-box-orange .badge { margin-bottom: 10px; }
.text-box-orange .cont { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }

.text-box-gray { background: #F2F3F6; border-radius: 10px; overflow: hidden; padding: 22px 120px; display: flex; align-items: center; justify-content: flex-start; gap: 60px; }
.text-box-gray .icon { background: #D5D7EF; aspect-ratio: 1/1; width: 108px; }
.text-box-gray .icon-01 { background: url('../img/graybox-icon-01.svg') no-repeat center / contain; }
.text-box-gray .icon-02 { background: url('../img/graybox-icon-02.svg') no-repeat center / contain; }
.text-box-gray .icon-03 { background: url('../img/graybox-icon-03.svg') no-repeat center / contain; }
.text-box-gray .icon-04 { background: url('../img/graybox-icon-04.svg') no-repeat center / contain; }
.text-box-gray .icon-05 { background: url('../img/graybox-icon-05.svg') no-repeat center / contain; }
.text-box-gray .text { flex: 1; }
/* } Text Box */

/* Gradient Box { */
.gradient-box-01 { background: linear-gradient(107.57deg, rgba(121, 205, 208, 0.2) 1.84%, rgba(255, 255, 255, 0) 21.36%), linear-gradient(283.5deg, rgba(124, 81, 161, 0.29) 1.66%, rgba(255, 255, 255, 0.29) 26.93%); border: 1px solid rgba(124, 81, 161, 0.3); box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); border-radius: 10px; overflow: hidden; }
.gradient-box-02 { background: linear-gradient(149.83deg, rgba(124, 81, 161, 0.2) 1.34%, rgba(255, 255, 255, 0.2) 21.35%), #FFFFFF; overflow: hidden; }
/* } Gradient Box */
/* ===== } Box ===== */

/* ===== Card { ===== */
.label-card { display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; }
.label-card > .label { height: 50px; display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: var(--text-20); font-weight: 600; }
.label-card > .card-body {border-top: none; flex: 1; }
.label-card.radius-8px > .label { overflow: hidden; border-radius: 8px 8px 0 0; }
.label-card.radius-8px > .card-body { overflow: hidden; border-radius: 0 0 8px 8px; }
.label-card.gray > .label { background: #9E9E9E; color: var(--color-white); }
.label-card.gray > .card-body { border: 1px solid #9E9E9E; }
.label-card.light-gray > .label { background: #F3F3F3; }
.label-card.navy > .label { background: #00216D; color: var(--color-white); }
.label-card.navy > .card-body { border: 1px solid #9E9E9E; }
.label-card.mint > .label { background: var(--color-point-mint); color: var(--color-white); }
.label-card.mint > .card-body { background: rgba(121, 205, 208, 0.1); border: 3px solid var(--color-point-mint); }
.label-card.purple > .label { background: var(--color-main); color: var(--color-white); }
.label-card.purple > .card-body { background: rgba(124, 81, 161, 0.1); border: 3px solid var(--color-main); }
.label-card.shadow > .card-body { box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05); }

.card-list { --card-list-gap: 16px; display: flex; flex-wrap: wrap; gap: var(--card-list-gap); align-items: stretch; }
.card-list.gap-16 { --card-list-gap: 16px; }
.card-list.gap-24 { --card-list-gap: 24px; }
.card-list.gap-32 { --card-list-gap: 32px; }
.card-list.gap-40 { --card-list-gap: 40px; }
.card-list.gap-46 { --card-list-gap: 46px; }
.card-list.gap-70 { --card-list-gap: 70px; }
.card-list .item { flex: 0 0 100%; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; min-width: 0; }
.card-list .item.col2 { flex-basis: calc((100% - (var(--card-list-gap) * 1)) / 2); }
.card-list .item.col3 { flex-basis: calc((100% - (var(--card-list-gap) * 2)) / 3); }
.card-list .item.col4 { flex-basis: calc((100% - (var(--card-list-gap) * 3)) / 4); }
.card-list .item.col5 { flex-basis: calc((100% - (var(--card-list-gap) * 4)) / 5); }

.card-list.numbering-st01 .item { position: relative; border-radius: 8px; overflow: hidden; }
.card-list.numbering-st01 .num { position: absolute; z-index: 1; top: 0; left: 0; min-width: 74px; height: 47px; display: flex; align-items: center; justify-content: center; background: var(--color-main); border-radius: 0 0 23px 0; overflow: hidden; color: var(--color-white); font-size: var(--text-20); font-weight: 600; }

.card-list.numbering-st02 .item { position: relative; border-radius: 15px; overflow: hidden; padding: 30px; padding-left: 84px; }
.card-list.numbering-st02 .num { position: absolute; z-index: 1; top: 0; left: 0; aspect-ratio: 1/1; width: 65px; display: flex; align-items: center; justify-content: center; background: linear-gradient(306.34deg, #7C51A1 24.79%, #79CDD0 115.53%); border-radius: 0 0 15px 0px; overflow: hidden; color: var(--color-white); font-size: var(--text-25); font-weight: 600; }

.card-list.label-gradient > .item > .label { display: flex; align-items: center; min-height: 75px; padding: 22px 40px; border-radius: 10px 10px 0 0; overflow: hidden; font-size: var(--text-20); font-weight: 600; background: linear-gradient(270.27deg, #42245B 73.96%, #79CDD0 94.52%); color: var(--color-white); }
.card-list.numbering-st01.label-gradient > .item > .label { padding: 22px 40px 22px 104px; }
.card-list.label-gradient > .item > .card-body { flex: 1; border-radius: 0 0 10px 10px; overflow: hidden; border: 3px solid #DAD0E3; border-top: none; padding: 40px 22px; }

.step-list { display: flex; flex-direction: column; align-items: stretch; gap: 62px; }
.step-list .item { position: relative; border: 1px solid #CCCCCC; border-radius: 8px; padding: 28px 60px; display: flex; align-items: center; justify-content: space-between; }
.step-list .item:not(:last-child)::after { content: '\ea4c'; font-family: remixicon; position: absolute; left: 50%; top: calc(100% + 18px); transform:translateX(-50%); display: flex; align-items: center; justify-content: center; font-size: 30px; line-height: 1; color: #676767; pointer-events: none; }
.step-list .item.purple { color: var(--color-white); background: var(--color-main-light); }
.step-list .step-tit { display: flex; align-items: center; justify-content: flex-start; gap: 9px; margin-bottom: 15px; }
.step-list .item .icon-img { aspect-ratio: 1/1; width: 100px; }
/* ===== } Card ===== */

/* ===== Table { ===== */
.table-default { width: 100%; table-layout: fixed; border-collapse: separate; border-spacing: 0; border: 1px solid #D9D9D9; border-radius: 10px; }
.table-default thead th { padding: 18px 20px; background: var(--color-main); color: var(--color-white); font-size: var(--text-20); font-weight: 600; text-align: center; box-shadow: 0 -1px 0 var(--color-main); }
.table-default thead th:first-child { border-radius: 10px 0 0 0; box-shadow: -1px 0 0 var(--color-main), 0 -1px 0 var(--color-main); }
.table-default thead th:last-child { border-radius: 0 10px 0 0; box-shadow: 1px 0 0 var(--color-main), 0 -1px 0 var(--color-main); }
.table-default thead th:not(:last-of-type) { border-right: 1px solid rgba(255, 255, 255, 0.15); }
.table-default tbody th,
.table-default tbody td { padding: 15px 20px; border-right: 1px solid #D9D9D9; border-top: 1px solid #D9D9D9; vertical-align: middle; }
.table-default tbody *:last-child { border-right: none; }
.table-default tbody tr:last-child *:first-child { border-radius: 0 0 0 10px; }
.table-default tbody tr:last-child *:last-child { border-radius: 0 0 10px 0; }
/* ===== } Table ===== */

/* ===== List { ===== */
.list-bullet-01 > li { position: relative; padding-left: 10px }
.list-bullet-01 > li::before { content: ''; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #1E1E1E; top: calc((1lh - 4px) / 2); left: 0; }
.list-bullet-01.white > li { color: var(--color-white) }
.list-bullet-01.white > li::before { background: var(--color-white); }
.list-bullet-01 > li.bullet-color-main::before { background: var(--color-main); }

.list-bullet-02 > li { position: relative; padding-left: 12px; }
.list-bullet-02 > li::before { content: ''; position: absolute; box-sizing: border-box; width: 7px; height: 7px; border-radius: 50%; border: 2px solid var(--color-main); background: var(--color-white); top: calc((1lh - 7px) / 2); left: 0; }

.list-dash > li { position: relative; padding-left: 10px }
.list-dash > li::before { content: ''; position: absolute; width: 4px; height: 1px; background: #1E1E1E; top: calc((1lh - 1px) / 2); left: 0; }
/* ===== List { ===== */

/* ===== Search Bar { ====== */
.search-form-bar .search-form { background: #F0F0F0; padding: 26px; display: flex; align-items: stretch; justify-content: center; gap: 10px; }
.search-form-bar .search-input { width: 430px; height: 50px; border: 1px solid #CCCCCC; font-size: var(--text-16); padding: 12px 18px; }
.search-form-bar .search-btn { width: 120px; }
/* ===== } Search Bar ====== */

/* ===== Custom Select { ===== */
/* 공통 — 래퍼 포지셔닝 + 아이콘 트랜지션 */
.custom-select-wrap { position: relative; display: inline-flex; align-items: stretch; }
.custom-select-wrap > select { width: 100%; appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 36px; }
.custom-select-wrap > i { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); pointer-events: none; line-height: 1; transition: transform 0.25s ease; }
.custom-select-wrap.is-open > i { transform: translateY(-50%) rotate(180deg); }

/* search-select-wrap 개별 사이즈 */
.search-select-wrap { width: 160px; height: 50px; }
.search-select-wrap > select { border: 1px solid #CCCCCC; font-size: var(--text-16); padding: 12px 40px 12px 18px; }
.search-select-wrap > i { right: 12px; font-size: 24px; }
/* ===== } Custom Select ===== */

.no-img { position: relative; background: #F0F0F0; }
.no-img::before { content: ''; position: absolute; z-index: 1; top: 50%; left: 50%; transform: translate(-50%, -50%); aspect-ratio: 75/29; width: 60%; min-width: 0; max-width: 70%; height: 60%; min-height: 0; max-height: 70%; background: url('../img/logo/ci_kr_en_dark.svg') no-repeat center / contain; filter: grayscale(100%); opacity: 0.4; }
/* ========== } UI Componenets ========== */


/* ====================  반응형 ==================== */
@media screen and (max-width:1920px) {
  
}

@media screen and (max-width:1600px) {
  :root {
    --text-16: 14px;
    --text-base: 16px;
    --text-20: 18px;
    --text-22: 20px;
    --text-23: 21px;
    --text-24: 22px;
    --text-25: 23px;
    --text-26: 24px;
    --text-28: 26px;
    --text-30: 28px;
    --text-35: 33px;
  }

  .container { padding-left: 30px; padding-right: 30px; }
  .top-btn { --top-btn-bottom: 30px; right: 30px; }
}

@media screen and (max-width:1440px) {
  :root {
    --text-23: 20px;
    --text-24: 21px;
    --text-25: 22px;
    --text-26: 23px;
    --text-28: 25px;
    --text-30: 27px;
    --text-35: 32px;
  }

  .i-btn-xl { height: 64px; min-width: 64px; padding: 12px 24px; }

  .card-list.gap-16 { --card-list-gap: 10px; }
  .card-list.gap-24 { --card-list-gap: 12px; }
  .card-list.gap-32 { --card-list-gap: 16px; }
  .card-list.gap-40 { --card-list-gap: 20px; }
  .card-list.gap-46 { --card-list-gap: 20px; }
  .card-list.gap-70 { --card-list-gap: 16px; }

  .section-title-01 { font-size: 43px; }
  .section-title-02 { margin-bottom: 18px; }

  .text-box-gray { padding: 20px 80px; gap: 40px; }
  .text-box-gray .icon { width: 80px; }

  .card-list.numbering-st01.label-gradient > .item > .label { padding: 18px ; }
  .card-list.numbering-st02 .num { width: 50px; }
  .card-list.numbering-st02 .item { padding: 14px 20px 20px 20px; }

  .top-btn { --top-btn-show-offset: 300px; width: 60px; }
}

@media screen and (max-width:1280px) {
  .label-card > .label { height: 40px; }
  .tab-typeA > li { height: 56px; }
  .tab-typeB { --tab-gap: 10px; }
}

@media screen and (max-width:1024px) {
  :root {
    --text-16: 13px;
    --text-base: 14px;
    --text-20: 15px;
    --text-22: 16px;
    --text-23: 17px;
    --text-24: 18px;
    --text-25: 19px;
    --text-26: 20px;
    --text-28: 22px;
    --text-30: 23px;
    --text-35: 25px;
  }

  .round-3px { border-radius: 3px; overflow: hidden; }
  .round-5px { border-radius: 3px; overflow: hidden; }
  .round-8px { border-radius: 3px; overflow: hidden; }
  .round-10px { border-radius: 5px; overflow: hidden; }
  .round-15px { border-radius: 5px; overflow: hidden; }

  .container { padding-left: 20px; padding-right: 20px; }
  .top-btn { --top-btn-bottom: 20px; right: 20px; --top-btn-show-offset: 250px; width: 50px; }
  .section-title-02 { --section-title-02-dot: 15px; --section-title-02-dot-offset: 7px; --section-title-02-dot-border: 2px; --section-title-02-padding-left: 30px; font-size: 22px; margin-bottom: 10px; }
  .text-box-gray { padding: 20px 40px; gap: 20px; border-radius: 5px; }
  .text-box-gray .icon { width: 60px; }
  .mobile-scroll.bp-1024 { border: 1px solid #CCCCCC; border-radius: 3px; }
  .card-list.gap-16, .card-list.gap-24, .card-list.gap-32, .card-list.gap-40, .card-list.gap-46, .card-list.gap-70 { --card-list-gap: 10px; }
  .table-default thead th { padding: 8px 10px; }
  .table-default tbody th, .table-default tbody td { padding: 6px 10px; }
  .card-list.numbering-st02 .num { width: 40px; font-size: 16px; }
  .card-list.numbering-st02 .item { padding: 14px 16px 16px 16px; border-radius: 5px; }
  .tab-typeA > li { height: 50px; }
  .tab-typeA > li > .link-tab-btn { padding: 5px 12px; }
  .tab-typeB { margin: 30px 0 50px; }
  .tab-typeB .tab-btn { height: 44px; padding: 5px 20px; font-size: 15px; }
}

@media screen and (max-width:768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .top-btn { --top-btn-bottom: 10px; right: 10px; --top-btn-show-offset: 200px; }
  .mobile-scroll.bp-768 { border: 1px solid #CCCCCC; border-radius: 3px; }
  .section-title-02 { font-size: 21px; }
  .text-box-gray { flex-direction: column; padding: 12px 18px; gap: 10px; }
  .text-box-gray .icon { display: none; }
  .tab-typeA { --tab-cols: 3; justify-content: flex-start; }
  .tab-typeA { --tab-gap: 5px; }
  .tab-typeA > li { height: 44px; }
  .tab-typeB { --tab-gap: 8px; margin: 25px 0 40px; }
  .tab-typeB .tab-btn { height: 40px; padding: 5px 16px; }
}

@media screen and (max-width:480px) {
  .tab-typeA { --tab-cols: 2; }
}