:root {
    /* ============================
       FONT Family
       ============================ */
    --paybooc: 'paybooc';
    --aritaburi: 'Aritaburi';

    /* ============================
       FONT Size (기준: 62.5% → 1rem = 10px)
       ============================ */
    --font-12: 1.2rem;
    --font-14: 1.4rem;
    --font-16: 1.6rem;
    --font-18: 1.8rem;
    --font-20: 2rem;
    --font-24: 2.4rem;
    --font-28: 2.8rem;
    --font-32: 3.2rem;
    --font-40: 4rem;
    --font-48: 4.8rem;
    --font-54: 5.4rem;
    --font-56: 5.6rem;
    --font-64: 6.4rem;
    --font-72: 7.2rem;
    --font-80: 8rem;

    /* ============================
       FONT Weight
       ============================ */
    --weight-900: 900;
    --weight-800: 800;
    --weight-700: 700;
    --weight-600: 600;
    --weight-500: 500;
    --weight-300: 300;

    /* ============================
       Color — 프로젝트 공용 팔레트
       ============================ */
    /* Brand Colors */
    --color-primary: #0078C1;
    --color-blue: #0065BD;
    --color-blue-dark: #225bcc;
    --color-point: #0079c2;

    /* Neutral Colors */
    --color-white: #fff;
    --color-black: #000;
    --color-dark: #17181A;
    --color-gray-dark: #2F3133;
    --color-gray-mid: #5F6266;
    --color-gray-text: #595959;
    --color-gray-light: #8F9294;
    --color-gray-border: #CBCCCA;
    --color-gray-line: #E5E5E3;
    --color-gray-bg: #F5F5F5;
    --color-bg-light: #f7f7f7;

    /* Alias — layout.css에서 이관 (하위 호환성 유지) */
    --c-white: #fff;
    --c-black: #000;
    --c-gray-bg: #f7f7f7;
    --c-gray-text: #595959;
    --c-border: #dedede;
    --c-primary: #225bcc;
    --c-point: #0079c2;

    /* 미정의 변수 해결 — 각 서브 파일에서 참조 중 */
    --color-text-main: #17181A;
    --color-border: #E5E5E3;
    
    /* 메일 로딩 */
    --brand: #0065BD;
    /* 브랜드 메인 컬러 */
    --brand-light: #3d8fd4;
    /* 브랜드 밝은 변형 */
    --brand-dark: #00468a;
    /* 브랜드 어두운 변형 */
    --overlay-bg: rgba(0, 0, 0, 0.45);
    --overlay-blur: 5px;

    /* ============================
       Spacing — Margin
       ============================ */
    --mg-200: 20rem;
    --mg-160: 16rem;
    --mg-150: 15rem;
    --mg-120: 12rem;
    --mg-64: 6.4rem;

    /* ============================
       Spacing — Padding
       ============================ */
    --space-04: 0.4rem;
    --space-08: 0.8rem;
    --space-16: 1.6rem;
    --space-24: 2.4rem;
    --space-40: 4rem;

    /* ============================
       Layout
       ============================ */
    --w-max: 1760px;
    --h-header: 10rem;

    /* ============================
       Border-radius
       ============================ */
    --radius-16: 16px;
    --radius-8: 8px;
    --radius-pill: 9999px;

    /* ============================
       Z-Index 계층 구조
       ============================ */
    --z-back: -1;
    --z-default: 1;
    --z-content: 10;
    --z-gnb: 20;
    --z-header: 50;
    --z-popup: 50;
    --z-top: 99;
    --z-skip: 9999;
    --z-overlay: 10000;
    /* GNB depth2, 모바일 네비 등 최상위 오버레이 */
}

/* ================================================================ */
/* !!!!!!!!!!! jsp로 옮길때 #testfooter -> #footer 로 변경!!!!!!!!  */
/* ================================================================ */
#footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

#footer.is-active {
    z-index: 20;
}

/* ================================================================ */
/* !!!!!!!!!!! jsp로 옮길때 #testfooter -> #footer 로 변경!!!!!!!!  */
/* ================================================================ */

/* 메일 로딩 스타일 */
.test-container {
    text-align: center;
    background: #fff;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.test-container h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.test-container p {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* 테스트 작동 버튼 */
.btn-trigger-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 101, 189, 0.3);
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-trigger-loading:hover {
    background: var(--brand-dark);
    box-shadow: 0 6px 20px rgba(0, 101, 189, 0.45);
}

.btn-trigger-loading:active {
    transform: scale(0.98);
}

.btn-trigger-loading svg {
    width: 20px;
    height: 20px;
}

/* ====================================================
   풀스크린 오버레이 (실제 적용 컴포넌트)
   position: fixed + z-index: 9999 + flex 정중앙 정렬
==================================================== */
.loading-overlay {
    /* 화면 전체를 완전히 덮는 고정 레이어 */
    position: fixed;
    inset: 0;
    z-index: 9999;

    /* flex로 정중앙 정렬 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;

    /* 딤드 배경 + 블러 */
    background: var(--overlay-bg);
    backdrop-filter: blur(var(--overlay-blur));
    -webkit-backdrop-filter: blur(var(--overlay-blur));

    /* 진입/퇴장 트랜지션 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* 활성화 상태: .is-active 클래스로 제어 */
.loading-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.loading-overlay .overlay-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.03em;
}

/* ============================================================
   TYPE 1: Classic Ring — 회전 링 스피너 (대시 애니메이션)
============================================================ */
.spinner-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;

    /* 바깥쪽 트랙: 얇고 반투명한 흰색 원 */
    border: 4px solid rgba(255, 255, 255, 0.2);

    /* 실제로 보이는 호(Arc): 브랜드 컬러 */
    border-top-color: var(--brand);
    border-right-color: var(--brand-light);

    /* 회전 애니메이션 적용 */
    animation: ring-spin 0.9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

/* 🔄 ring-spin: 0° → 360° 무한 회전 */
@keyframes ring-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* PC/Mobile 표시 제어 */
.pc_only {
    display: block;
}

.mob_only {
    display: none;
}

/* 더보기 버튼 */
.view-more-wrap {
    margin-top: 4rem;
    display: flex;
    justify-content: flex-end;
}

.btn-add-more {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: .4rem;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--paybooc);
    color: #17181A;
}

.btn-add-more::after {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url(/static/kor/images/icon/view-more.png) no-repeat center/cover;
}

/* 상단 이동 버튼 */
.btn-scrolltop {
    width: 6.4rem;
    height: 6.4rem;
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: var(--font-14);
    font-weight: 800;
    font-family: var(--paybooc);
    z-index: var(--z-top);
    cursor: pointer;
    background: #2F3133 url(/static/kor/images/icon/btn-scrollTop-icon.png) center top 1rem no-repeat;
    border-radius: 50%;
}

.btn-scrolltop span {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
}

/* 하단 border radius */
.last-content {
    position: relative;
    background: #fff;
    border-bottom-left-radius: var(--radius-16);
    border-bottom-right-radius: var(--radius-16);
}

/* 메인 콘텐츠 래퍼 */
#content {
    position: relative;
    z-index: var(--z-content);
    background-color: #fff;
    border-bottom-left-radius: var(--radius-16);
    border-bottom-right-radius: var(--radius-16);
    /* overflow: clip — hidden과 달리 scroll container를 생성하지 않아 position:sticky 정상 작동 */
    /* 동시에 자식 요소(.sub-common-top 배경 이미지 등)가 border-radius 밖으로 삐져나오지 않도록 클리핑 */
    overflow: clip;
}

/* 하단 border-radius 유틸리티 */
.radius16 {
    border-bottom-left-radius: var(--radius-16);
    border-bottom-right-radius: var(--radius-16);
}

.common-wrap {
    margin: 0 auto;
    padding: 0 var(--space-40);
    position: relative;
    max-width: 160rem;
    width: 100%;
}

/* 메인 공통 텍스트 */
.title-box-main {
    margin-bottom: var(--mg-64);
    text-align: center;
}

.section-main-title {
    font-size: var(--font-56);
    font-weight: 800;
    font-family: var(--paybooc);
    color: #17181A;
}

/* 메인 공통 텍스트 */
.section-sub-title {
    font-size: var(--font-20);
    font-weight: 700;
    color: var(--color-primary);
}

.tab-menu.y-scroll {
    height: 58.4rem;
    overflow-y: auto;
    padding-right: .8rem;
    gap: .6rem;
}

.tab-menu.y-scroll::-webkit-scrollbar {
    width: 6px;
}

.tab-menu.y-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #B1B3B3;
}

.root_daum_roughmap .wrap_map {
    height: 50.1rem !important;
}

.root_daum_roughmap .wrap_map a,
.root_daum_roughmap .wrap_map button,
.root_daum_roughmap .wrap_map [class*="btn"],
.root_daum_roughmap .wrap_map [class*="control"],
.root_daum_roughmap .wrap_controllers {
    pointer-events: auto !important;
}

.business-performance {
    padding: var(--mg-200) 0;
    width: 100%;
    max-width: 192rem;
    background: url(/static/kor/images/main/businessPf-earth.svg) left bottom no-repeat;
}

.business-performance .common-wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.business-performance .title-box-main {
    text-align: left;
}

.business-performance .num-box {
    width: 76rem;
}

.business-performance .num-box.finance {
    width: 74rem;
}

.business-performance .num-box ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.business-performance .num-box dl {
    display: flex;
    align-items: center;
    height: 15.2rem;
    border: 1px solid #CBCCCA;
    border-radius: 16px;
    background: var(--c-white);
}

.business-performance .num-box dl dt {
    padding-left: 2.8rem;
    width: 16rem;
    height: 100%;
    align-content: center;
    text-align: left;
    border-right: 1px solid #E5E5E3;
}

.business-performance .num-box dl dt em {
    font-size: var(--font-16);
    font-family: var(--paybooc);
    font-weight: 800;
    font-style: normal;
    color: var(--color-primary);
}

.business-performance .num-box dl dt strong {
    display: block;
    font-size: var(--font-28);
    font-weight: 700;
}

.business-performance .num-box dl dd {
    padding-right: 3.2rem;
    flex: 1;
    text-align: right;
}

.business-performance .num-box dl dd strong {
    padding-right: .8rem;
    font-size: var(--font-80);
    font-weight: var(--weight-900);
    font-family: var(--paybooc);
    font-variant-numeric: tabular-nums;
    -moz-font-feature-settings: "tnum";
    -webkit-font-feature-settings: "tnum";
    font-feature-settings: "tnum";
}

.business-performance .num-box dl dd span {
    font-size: var(--font-24);
    font-weight: var(--weight-500);
    font-family: var(--paybooc);
}

.business-performance .num-box dl dd #num1+span {
    padding-right: .8rem;
}

.business-performance .num-box small {
    display: block;
    margin-top: 1.6rem;
    font-size: var(--font-16);
    font-weight: var(--weight-300);
    text-align: right;
}

/* ==========================================================================
CS Center (고객센터) 공통 컴포넌트 스타일 (이관됨)
========================================================================== */
.cs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.cs-list li {
    position: relative;
    height: 10rem;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s;
}

.cs-list.customer li {
    height: 12rem;
}

.cs-list li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 2.4rem 0 2.8rem;
    color: #CBCCCA;
    border-radius: 8px;
    border: 1px solid rgba(0, 101, 189, .3);
    background: rgba(0, 101, 189, 0.03);
    transition: all 0.3s;
}

.cs-list li a::after {
    content: '';
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    background: url(/static/kor/images/icon/mail_blue.png) no-repeat center / cover;
    transition: opacity 0.3s;
}

.cs-list li:nth-child(4) a::after,
.cs-list li:last-child a::after {
    background: url(/static/kor/images/icon/vMore_blue.png) no-repeat center / cover;
}

.cs-name {
    display: flex;
    align-items: baseline;
    color: #0065BD;
    transition: color 0.3s;
    text-align: left;
}

.cs-name.long {
    flex-direction: column;
}

.cs-name strong {
    font-size: var(--font-24);
    font-weight: 500;
    transition: all 0.3s;
}

.cs-name sub {
    font-size: var(--font-18);
    font-weight: var(--weight-500);
}

.cs-list li span {
    font-size: var(--font-16);
    font-weight: var(--weight-800);
    font-family: var(--paybooc);
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.cs-list li span::after {
    content: "";
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url(/static/kor/images/icon/arrow-deg-r-icon.png) no-repeat center/cover;
}

.cs-list li a:hover {
    background: var(--color-primary);
    color: #fff;
}

.cs-list li a:hover .cs-name {
    color: #fff;
}

.cs-list li a:hover .cs-name strong {
    font-size: var(--font-24);
    font-weight: var(--weight-700);
}

.cs-list li a:hover::after {
    opacity: 0;
}

.cs-list li a:hover span {
    max-height: 3rem;
    margin-top: .4rem;
    opacity: 1;
}

/* 문의하기 스타일 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
}

.modal.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal__content {
    position: relative;
    width: 100%;
    max-width: 100rem;
    background: #fff;
    border-radius: 1.6rem;
    z-index: 1010;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    max-height: 90dvh;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.modal__header {
    padding: 2.4rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E5E3;
    flex-shrink: 0;
}

.modal__title {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--paybooc);
    color: #1a1a1a;
    word-break: keep-all;
}

.modal__title .point-color {
    color: #0065BD;
}

.modal__close {
    background: url(/static/kor/images/icon/inquiry-close-btn.svg) no-repeat center/cover;
    width: 2.4rem;
    height: 2.4rem;
    cursor: pointer;
}

.modal__body {
    padding: 2.4rem 4rem 0;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    max-height: 70.2rem;
}

/* =========================================
    Form & Grid Layout
========================================= */
.form__notice-req {
    text-align: right;
    font-size: 1.2rem;
    color: #e53935;
    margin-bottom: 1.6rem;
}

.form__grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form__grid--2cols {
    grid-template-columns: repeat(2, 1fr);
}

.form__grid--3cols {
    grid-template-columns: repeat(3, 1fr);
}

.form__grid--1col {
    grid-template-columns: 1fr;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form__label {
    font-size: var(--font-16);
    font-weight: 300;
    color: #46494D;
}
.modal__footer.modal__footer--center .form__agreement::after {
	padding-left: 0;
	content: "*";
	display: inline-block;
	font-size: var(--font-16);
	color: #DE3412;
	margin-left: -.4rem;
}
.form__label::after {
	padding-left: .4rem;
	content: "*";
	display: inline-block;
	font-size: var(--font-16);
	color: #DE3412;
}

.form__label .req {
    color: #e53935;
    margin-left: 0.4rem;
}

.grid__sapn2 {
    grid-column: span 2;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem 1.6rem;
    border: 1px solid #CBCCCA;
    border-radius: 4px;
    font-size: var(--font-16);
    font-weight: 500;
    color: #17181A;
    outline: none;
    transition: border-color 0.2s ease;
    word-break: keep-all;
}

.form__textarea {
    resize: unset;
    min-height: 21.2rem;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #aaa;
}

.form__input:focus,
.form__textarea:focus {
    border-color: #0065BD;
}

.form__desc {
    font-size: 1.2rem;
    color: #0065BD;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.modal__footer {
    padding: 0 0 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0;
}

.inquiry-privacy-table {
	margin: 1.2rem 0;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #E5E5E3;
}
.inquiry-privacy-table::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #2F3133;
	position: absolute;
    top: 0;
}

.inquiry_small {
	margin-bottom: 4rem;
	font-size: var(--font-14);
    font-weight: 300;
    color: #DE3412;
}

.inquiry-privacy-table__th {
	border-bottom: 1px solid #E5E5E3;
    background: #F5F5F5;
    color: #0065BD;
    font-size: var(--font-14);
    font-weight: 700;
    padding: .8rem 0;
}
.inquiry-privacy-table__th:not(:last-child) {
	border-right: 1px solid #E5E5E3;
}

.inquiry-privacy-table__td {
	font-size: var(--font-14);
    font-weight: 500;
    color: #17181A;
    text-align: center;
    padding: 1.2rem 0;
    word-break: keep-all
}
.inquiry-privacy-table__td:not(:last-child) {
	border-right: 1px solid #E5E5E3;
}

.modal__footer--center {
    flex-direction: column;
    justify-content: center;
}

.form__agreement {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: var(--font-16);
    font-weight: 500;
    color: #17181A;
    cursor: pointer;
    user-select: none;
}

.btn-submit {
	align-self: center;
    font-family: var(--paybooc);
    font-size: var(--font-18);
    font-weight: 600;
    background-color: #5F6266;
    color: #fff;
    border: none;
    padding: 1.4rem 4rem;
    border-radius: 3rem;
    cursor: pointer;
    width: 18rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-submit.is-active {
    background-color: #0065BD;
}

/* 체크박스 */
.form__agreement {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

/* 1. 기본 체크박스 숨기고 빈 상자 이미지 넣기 */
.js-agree-chk {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    /* 이미지 파일의 실제 비율에 맞게 조절하세요 */
    height: 18px;
    margin: 0;
    cursor: pointer;
    background-image: url('/static/kor/images/btn/Check-OFF.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 2. 체크되었을 때 V 체크된 이미지로 교체 */
.js-agree-chk:checked {
    background-image: url('/static/kor/images/btn/Check-ON.png');
}

/* =========================================
    Completion Message Modal (완료창)
========================================= */
.modal__content--small {
    max-width: 100rem;
    width: 100%;
    background: #fff;
    border-radius: 1.2rem;
    z-index: 1010;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.completion-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 4rem;
}

.completion-message__icon {
    padding-top: 9.45rem;
    margin-bottom: 2.4rem;
    display: flex;
    justify-content: center;
}

.completion-message__icon svg {
    width: 8rem;
    height: 6rem;
}

.completion-message__title {
    margin-bottom: .4rem;
    font-size: 2.4rem;
    color: #17181A;
    font-weight: 700;
}

.completion-message__desc {
    margin-bottom: 17.45rem;
    font-size: 1.8rem;
    font-weight: 300;
    color: #0065BD;
}

.btn-submit--blue {
    background-color: #0065BD;
}

/* 문의하기 스타일 */


@media screen and (max-width: 1023px) {

    /* [이관] Business Performance 모바일 (1023px) */
    .business-performance .common-wrap {
        flex-direction: column;
    }

    .business-performance .num-box {
        align-self: flex-end;
    }

    .business-performance .num-box dl {
        height: 13.2rem;
        border-radius: 8px;
    }

    /* [이관] CS Center 모바일 (1023px) */
    .cs-list li a {
        padding: 0 1.6rem;
    }

    .cs-list li a::after {
        right: 1.6rem;
    }

    .cs-list-mob {
        margin: 0 auto;
        max-width: 32.8rem;
        display: flex;
        align-items: stretch;
        width: 100%;
        background: #0065BD;
        border-radius: 8px;
    }

    .cs-list-mob+ul {
        margin-bottom: 4rem;
    }

    .custom-select {
        position: relative;
        flex: 1;
    }

    .select-trigger {
        padding: 18px 20px;
        color: #fff;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .select-trigger .text {
        font-size: 1.4rem;
    }

    .select-trigger .text strong {
        font-size: var(--font-18);
        font-weight: 600;
        display: flex;
        align-items: baseline;
    }

    .select-trigger .arrow-icon {
        width: 2rem;
        height: 2rem;
        background: url("/static/kor/images/icon/arrow-w-icon.png") no-repeat center;
        transition: all .3s;
    }

    .arrow-icon.active {
        transform: rotate(180deg);
    }

    .go-button {
        width: 6.4rem;
        border: none;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        font-size: 30px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
        background: #0065BD url(/static/kor/images/icon/CS-link.png) no-repeat center;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .select-options {
        display: none;
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid var(--color-primary);
        border-radius: 0 0 12px 12px;
        list-style: none;
        padding: 0;
        margin: 0;
        z-index: 100;
    }

    .select-options li {
        padding: 15px 20px;
        color: #333;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        font-size: 1.4rem;
    }

    .select-options li strong {
        font-size: var(--font-18);
        font-weight: 700;
        color: var(--color-primary);
        display: flex;
        align-items: baseline;
    }

    .select-options li:hover {
        background: #f4f7ff;
    }

    .pc_only {
        display: none !important;
    }

    .mob_only {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .none-767 {
        display: none !important;
    }

    .view-more-wrap {
        margin-top: 2rem;
    }

    .btn-add-more {
        font-size: 1.4rem;
    }

    .btn-add-more::after {
        width: 1.6rem;
        height: 1.6rem;
    }

    /* [이관] Business Performance 모바일 (767px) */
    .business-performance {
        background: url(/static/kor/images/main/businessPf-earth-mob.svg) left bottom no-repeat;
        background-position-x: left;
        background-position-y: center;
    }

    .business-performance .num-box,
    .business-performance .num-box.finance {
        width: 75%;
    }

    .business-performance .num-box dl {
        flex-direction: column;
        align-items: flex-end;
        height: unset;
        border-radius: 8px;
    }

    .business-performance .num-box dl dt {
        padding: 1rem 1.6rem;
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 4px;
        border-right: unset;
        border-bottom: 1px solid #CBCCCA;
    }

    .business-performance .num-box dl dt em {
        padding-top: .2rem;
    }

    /* [이관] CS Center 모바일 (767px) */
    .cs-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .cs-list-mob+ul {
        margin-bottom: unset;
    }

    .cs-list.customer li,
    .cs-list li {
        height: 9.2rem;
    }

    .cs-list li a {
        padding: 0 1.6rem;
        color: #fff;
        background: var(--color-primary);
    }

    .cs-list li a::after {
        opacity: 0;
        display: none;
    }

    .cs-name {
        flex-direction: column;
        justify-content: flex-start;
        min-height: 3.8rem;
        color: #fff;
    }

    .cs-name:not(:has(sub))::after {
        content: "\00a0";
        font-size: 1.4rem;
        visibility: hidden;
    }

    .cs-list li:last-child .cs-name::after {
        content: none;
        display: none;
    }

    .cs-name strong {
        font-size: 1.6rem;
        font-weight: 700;
    }

    .cs-name sub {
        font-size: 1.4rem;
    }

    .cs-list li span {
        margin-top: 1rem;
        max-height: unset;
        height: auto;
        font-size: 1.2rem;
        opacity: 1;
    }

    /* Disable hover effects under 767px */
    .cs-list li a:hover {
        background: var(--color-primary);
        color: #fff;
    }

    .cs-list li a:hover .cs-name {
        color: #fff;
    }

    .cs-list li a:hover .cs-name strong {
        font-size: 1.6rem;
        font-weight: 700;
    }

    .cs-list li a:hover span {
        max-height: unset;
        margin-top: 1rem;
        opacity: 1;
    }

    :root {
        /* font */
        --font-80: 6rem;
        --font-72: 5.2rem;
        --font-64: 4.4rem;
        --font-56: 3.8rem;
        --font-40: 2.8rem;
        --font-24: 2rem;
        --font-20: 1.8rem;
        --font-18: 1.6rem;
        /* margin */
        --mg-200: 15rem;
        --mg-120: 4.8rem;
        /* padding */
        --space-40: 1.6rem;
    }

    .btn-scrolltop {
        width: 5.6rem;
        height: 5.6rem;
        right: 16px;
        background: #2F3133 url(/static/kor/images/icon/btn-scrollTop-icon.png) center top .8rem no-repeat;
    }

    .btn-scrolltop span {
        font-size: 1.2rem;
        bottom: .8rem;
    }

    .root_daum_roughmap .wrap_map {
        height: 46rem !important;
    }

    /* 문의하기 스타일 */
    .modal.is-active {
        align-items: flex-end;
    }

    .modal__content {
        min-height: 0;
        height: 90vh;
        height: 90dvh;
        max-height: 90vh;
        max-height: 90dvh;
        border-radius: .8rem .8rem 0 0;
    }

    .modal__content.modal__content--small {
        gap: 10rem;
    }

    .modal__header {
        padding: 1.6rem 2rem;
    }

    .modal__title {
        font-size: 1.8rem;
    }

    .modal__body {
        padding: 2rem 2rem 2.4rem;
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }

    .form__grid--2cols,
    .form__grid--3cols {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .form__grid {
        margin-bottom: 1.6rem;
    }

    .modal__footer {
        position: relative;
        padding: unset;
        flex-direction: column !important;
        align-items: stretch;
        flex-shrink: 0;
    }
    
    .inquiry_small {
    	margin-bottom: 2rem;
    }

    .form__agreement {
        padding-left: 0.4rem;
        justify-content: flex-start;
    }
    
    .inquiry-privacy-table__th,
    .inquiry-privacy-table__td {
    	padding: .4rem .2rem;
    }

    .btn-submit {
        position: relative;
        bottom: auto;
        margin: 0 auto;
        width: 100%;
        padding: 1.4rem 2rem;
    }

    .form__desc {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .completion-message__title {
        font-size: var(--font-20);
    }

    .grid__sapn2 {
        grid-column: unset;
    }

    .modal__footer--center::before {
        content: "";
        display: block;
        width: 100%;
        height: 2.4rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
        position: absolute;
        left: 0;
        top: -2.4rem;
        pointer-events: none;
    }

    #modal-02 .modal__footer,
    #modal-03 .modal__footer,
    #modal-05 .modal__footer,
    #modal-06 .modal__footer {
        position: relative;
        width: 100%;
        bottom: auto;
    }

    /* 문의하기 스타일 */

    .modal__close {
        width: 1.6rem;
        height: 1.6rem;
    }
}

@media screen and (max-width: 580px) {

    /* [이관] CS Center & Custom Select 모바일 (580px) */
    .cs-list-mob {
        width: calc(100% - 3.2rem);
        max-width: 100%;
        margin: 0 1.6rem;
    }

    .custom-select {
        width: 100%;
        max-width: 100%;
    }

    .select-trigger {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* [이관] Business Performance 모바일 (580px) */
    .business-performance {
        background-position-y: bottom;
    }

    .business-performance .common-wrap {
        gap: unset;
    }

    .business-performance .num-box ul {
        gap: 8px;
    }

    .business-performance .num-box small {
        margin-top: 0.8rem;
        font-size: 1.2rem;
    }

    .business-performance .num-box dl dt em {
        font-size: 1rem;
    }

    .business-performance .num-box dl dt strong {
        font-size: 1.6rem;
    }

    .business-performance .num-box dl dd {
        padding: 1.2rem 1.6rem;
    }

    .business-performance .num-box dl dd strong {
        font-size: 4rem;
        padding-right: .4rem;
    }

    .business-performance .num-box dl dd #num1+span {
        padding-right: 0.4rem;
    }

    .business-performance .num-box dl dd span {
        font-size: 1.4rem;
    }

    :root {
        /* font */
        --font-14: 1.2rem;
	    --font-16: 1.4rem;
	    --font-18: 1.6rem;
        --font-72: 3.2rem;
        --font-64: 2.8rem;
        --font-56: 2.6rem;
        --font-20: 1.4rem;
        /* margin */
        --mg-200: 10rem;
        --mg-64: 4rem;
        /* padding */
    }
}