@charset "utf-8";
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css'); 
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&family=Playfair+Display:wght@700;900&display=swap');


/* ************* */

@import url("reset.css");
@import url("font_NotoSans.css");
@import url("font_NotoSerif.css");

:root {
    --main_color: #604899; 
    --sub_color: #351e72;
    --sub_color2: #a58eea; 
    --sub_color3:#5934bd;
    --light_gray: #f9f9f9;
    --light_gray2: #dcdcdc;
    --light_gray3: #a0a0a0;    
    --light_m_color: #f7f8ff;
    --light_m_color2: #d0d0d0;
    --main_txt: #131313;
    --wt_txt: #ffffff;

    --main_bg: #25183a;

    --main_font_bold: 500;
    --main_font_light: 300;
    
    --highligth: rgba(41,62,239,.1);
    --highlight-color: #37FF8B; 

    --mo_gnb_bg: #0c081b;

    --hover_bg: #fff;
    --line: #ececec;
    --text: #1a1a1a;
    --text_sub: #666;

    --primary-navy: #2c3e50;
    --primary-dark: #1a1a1a;
    --accent-purple: #6b4c9a;
    --accent-blue: #4a90e2;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --text-dark: #2c2c2c;
    --text-gray: #666;
    --border-light: #e0e0e0;    



}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;  
    height: 100%;
}

body {
    color: #131313;
    font-size: 1.6rem;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
}

a:link { text-decoration: none; color: inherit; }
a:visited { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; color: var(--main_color); }
a:active { text-decoration: none; color: var(--main_color); }


button{
    color: inherit;
    font: inherit;
    margin: 0;
    padding: 0;
}
button {
    outline: 0;
}

button {
    border: 0;
    background-color: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.inner {
    max-width: 120rem;
    min-width: 36rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* ****** main ****** */
.header_wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    
    transition: background-color .3s;
}
.header_wrap header {
    height: 8.4rem;
}
.header_wrap a{font-family:'Noto Sans KR', sans-serif;}
.logo {
    width: 16.2rem;
    position: absolute;
    top: 2.5rem;
    z-index: 9;
}

.logo .logo-fixed { display: none; }
.header_wrap.fixed .logo .logo-default { display: none; }
.header_wrap.fixed .logo .logo-fixed { display: inline-block; }


/* main_navi */
.gnb {
    position: absolute;
    top: 3rem; 
    right: 0;
    z-index: 105;
    letter-spacing: -0.05rem;
}

.gnb_1depth {
    display: flex;
    text-align: center;
}

.gnb_1depth > ul {
    display: flex;
}

.gnb_1depth a {
    color: #fff;
    font-weight: 500;
}

.gnb_1depth > li > a {
    border-bottom: 1px solid rgba(255,255,255,0);
    font-size: 2rem;
    display: block;
    padding: 1rem 3.5rem;
}

.gnb_1depth > li:hover > a {
    border-bottom: 1px solid rgba(255,255,255,.5);
}

.gnb_2depth {
    display: none;
}

.gnb_2depth a {
    display: block;
    padding: 1.6rem 0;
    font-size: 1.6rem;
    font-weight: 300;
    transition: all .3s;
}

.gnb_2depth a:hover {
    background-color: rgba(0,0,0,.8);
}

.gnb_bg {    
    position: absolute;
    top: 7.1rem;
    left: 0;
    width: 100%;
    height: 21rem;
    background-color: rgba(0,0,0,.3);
    backdrop-filter: blur(1rem);
    display: none;
    z-index: 8;
}

/* mo_gnb */
.menu_btn { 
	position:absolute; top:5.4rem; right:5%;
    z-index: 106;
	width:3rem; height:3rem;	
	cursor:pointer;
    display: none;
}
.menu_btn span { 
	position:absolute;
	width:100%; height:3px;
	background: #fff;
	transition:.3s;
}
.menu_btn span:nth-child(1) {  
	top:0; left:0;
}
.menu_btn span:nth-child(2) { 
	top:50%; 
    transform: translateY(-50%);
}
.menu_btn span:nth-child(3) { 
	bottom:0; 
}
.menu_btn.on span:nth-child(1) { 
	top:1.5rem; left:-2px;
	width:120%;
	transform:rotate(45deg);
}
.menu_btn.on span:nth-child(2) { 
	opacity:0; 
}
.menu_btn.on span:nth-child(3) { 
	bottom:1.2rem; left:-2px;
	width:120%;
	transform:rotate(-45deg);
}

.menu_btn.on {
    position: fixed;
}

/* mo_gnb style */
.gnb.on {
    top: -100vh;
    background-color: var(--mo_gnb_bg);
    width: 100%;
    height: 100vh;
    padding: 10rem 0;
}

.gnb.on .gnb_1depth {
    display: block;
    text-align: left;
}

/* 메뉴 fixed일때 설정 260522수정 */
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 선택적으로 그림자 추가 */
    background-color: #fff;
    color: #000;
    /* background-color: var(--main_bg); */
  }

.header_wrap.fixed .menu_btn span{
    background: #000;
}

.header_wrap.fixed .gnb_bg {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1rem);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.header_wrap.fixed .gnb_1depth a {
    color: #000;
}

.header_wrap.fixed .gnb_1depth > li:hover > a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.header_wrap.fixed .gnb_2depth a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.header_wrap.fixed header.inner {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gnb.on {
    background-color: #fff;
}

.gnb.on .gnb_1depth a {
    color: #000;
}

.gnb.on .gnb_1depth > li:hover > a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}



/* 상담신청 */
.help {
    position: fixed;
    top: 1rem; right: 2rem;
    color: var(--wt_txt);
    white-space: nowrap;
    z-index: 999;
    font-size: 1.4rem;
    line-height: 1.3;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    /* background: var(--main_color) url("../images/ico_check.png") no-repeat 10px center;
    background-size: 20px 20px; */
    background-color: var(--sub_color2);
    width: 16rem;
    border-radius: 2rem;
    background-image: url(../images/ico_arrow.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
}

.help a {
    display: block;
    width: 100%; height: 100%;
    padding: 1rem;
    text-indent: .5rem;
    font-family:'Noto Sans KR', sans-serif;        
}

.help a:hover {
    color: var(--wt_txt);
}
.help a p {
    font-weight: var(--main_font_light);
}

.help a h3 {
    width: 100%;
    font-weight: var(--main_font_bold);
}



/* ****** sub ****** */
.sub_hero {
    height: 38rem;
    background-color: #000;background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sub_hero {
    animation-name: s_hero;
    animation-duration: 25s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes s_hero {
    0% { background-size: 100%; }
    100% { background-size: 120%; }
}

.sub_hero.bg01 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/sub1_hero.jpg");
}
.sub_hero.bg02 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/sub2_hero.jpg");
    background-position: center, center -30rem;
}
.sub_hero.bg03 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/sub4_hero.jpg");
}
.sub_hero.bg04 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/sub4_hero_1.jpg");
    background-position: center, center -40rem;
}
.sub_hero.bg05 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/sub5_hero.jpg");
}
.sub_hero.bg06 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/sub6_hero.jpg");
}

.sub_hero.dcrime_bg05 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/dcr_m_s01.jpg");
}

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


/* 260514 추가 */
.sub_hero .sub_title h2{
    margin-bottom: 3rem;
    padding-top: 2rem;
    letter-spacing: -1px;
    font-weight: 600;
    font-size: 4rem;
}
.sub_hero .sub_desc{
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    word-break: keep-all;
    letter-spacing: -0.3px;
    line-height: 1.4;
    font-weight: 300;
}

.sub_hero p.sub_desc {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    word-break: keep-all;
    letter-spacing: -0.3px;
    line-height: 1.4;
    font-weight: 300;
}




.sub_cate {
    border-bottom: 1px solid #E8E8E8;
    height: 6rem;
    margin-bottom: 4rem;
}

.sub_cate ul {
    display: flex;
    justify-content: center;
}

.sub_cate ul li {
    width: 20rem;
    height: 6rem;
    text-align: center;
    line-height: 6rem;
    font-size: 2rem;
}

.sub_cate ul li a:hover, .sub_cate a.active {
    color: var(--main_color);
    border-bottom: 3px solid var(--main_color);
    padding-bottom: 1.2rem;
}



/* ****** footer ****** */
footer.sub {
    margin-top: 10rem;
}

footer.main.sub {
    margin-top: 0;
    font-weight: normal;

}

footer {
    background-color: #2E2F33;
    color: #fff;
    line-height: 1.6;
}

.footer_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5rem 0 12rem;
}

.footer_logo {
    width: 17rem;
}

.footer_menu, .footer_txt, .footer_txt2, .footer_tel {
    display: flex;
}

.footer_menu {
    margin-bottom: 2rem;
}

.footer_menu a:hover {
    color: var(--sub_color2);
}

.footer_menu li, 
.footer_txt li, 
.footer_txt2 li,
.footer_tel li {
    margin-right: 2rem;
}

.footer_menu li:last-child, 
.footer_txt li:last-child, 
.footer_txt2 li:last-child,
.footer_tel li:last-child {
    margin-right: 0;
}

.footer_tel {
    margin-bottom: 2rem;
}

.footer_site {
    width: 20rem;
    border: 1px solid #131313;
    box-sizing: border-box;
    border-radius: 1rem;
    padding: 1rem;
    background-color: rgba(0,0,0,.5);
    color: #f9f9f9;
}

.footer_site:focus, .footer_site:hover {
    border: 1px solid #293EEF;
    border-radius: 10px;
}

.footer_site option {
    background-color: #fff;
    color: #131313;
}

.footer_site option:active {
    border: 1px solid #293EEF;
}
.f_site_area .f_sns {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
}

.f_site_area .f_sns img {
    width: 3rem; height: 3rem;
}


/*---- 26년05월26일 수정 ----*/
.only-m{display: none;}
.bottom_banner{
    width: 100%;
    height: 70px;
    background: linear-gradient(90deg, rgb(11, 24, 56) 0%, rgb(58, 31, 122) 55%, rgb(108, 70, 198) 100%);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
}

.bottom_contain{
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bottom_contain a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 3rem;
    height: 100%;
    width: auto;
    color: #000;
    font-size: 1.5rem;
    font-weight: 500;
    white-space: nowrap;
}
.bottom_contain a:first-child{
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* ─── 왼쪽 메시지 ─── */
.bottom_left {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.consult-btn:hover,.consult-btn:active {
    background: rgba(255, 255, 255, 0.08);
}

/* ─── 버튼 아이콘 ─── */
.consult-btn__ico {
    width: 2.2rem;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consult-btn__ico svg {
    width: 100%;
    height: 100%;
}

.consult-btn__txt{
    font-size: 1.5rem;
    font-weight: 500;
    white-space: nowrap;
}

.banner-txt{
    font-size: 2.2rem;
}

.bottom_right{
    height: 100%;
}
.slogan-line1 {
    color:rgb(226, 220, 245);
}
.slogan-line2 {
    color: rgb(255, 216, 77);
}

/* 버튼 그룹 */
.cta-buttons {
    display: flex;
}

.cta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    padding: 0 30px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
}

.cta-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-item:active {
    background: rgba(255, 255, 255, 0.05);
}

.cta-icon {
    font-size: 22px;
    color: #fff;
}

.cta-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

/* 전화 버튼만 2줄 구조 */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cta-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.cta-phone {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
}


.consult-btn__ico,
.consult-btn__ico svg,
.consult-btn__ico svg * {
    pointer-events: none;
}


.bottom_banner.cta .consult-btn {
    position: relative;
    z-index: 10;
}

/* 태블릿 */
@media (max-width: 1024px) {
    .consult-bar {
        padding: 24px 30px;
    }
    .bottom_left {
        font-size: 18px;
    }
    .consult-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
}


/* PC 중간 사이즈 (901px ~ 1200px) */
@media (max-width: 1200px) and (min-width: 901px) {

    .slogan-area {
        padding: 0 30px;
    }

    .slogan-text {
        font-size: 18px;
    }

    .cta-item {
        padding: 0 24px;
    }
}

/* CTA - 모바일 화이트 그리드 (900px 이하)      */
/* ============================================ */
@media (max-width: 900px) {
    .only-pc{display: none;}
    .only-m{display: block;}
    .bottom_banner.cta {
        display: block;
        background: linear-gradient(180deg, #534AB7 0%, #3C3489 100%);
    }

    .bottom_right{
        width: 100%;
    }

    .slogan-area {
        display: none;
    }

    .cta-buttons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .bottom_contain a:first-child{
        border-left: 0;
    }

    .cta-item {
        flex-direction: column;
        gap: 6px;
        padding: 14px 12px;
        height: auto;
        border-right: 0.5px solid rgba(255, 255, 255, 0.1);
    }

    .cta-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .cta-icon {
        color:#fff;
    }

    .consult-btn__ico svg{
        color:#fff;
    }

    .cta-title, .cta-label {
        font-size: 12px;
        color:#fff;
    }

    .cta-content {
        align-items: center;
        gap: 0;
    }

    .cta-phone {
        font-size: 12px;
        font-weight: 500;
        color:#fff;
        letter-spacing: 0;
    }
    .bottom_contain a:first-child{
        border-left: none;
    }
}



.foot_gotop{
    margin-top: 0.8rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 10px;
    border-radius: 1.2rem;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 100%;
    background-color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: opacity 0.3s ease; 
}

.foot_gotop button{
    text-align: center;
    width: 100%;
    color: #121212;
    font-weight: 600;
    padding: 1.6rem 0; 
    background: transparent;
    border: none;
    display: block; 
}

.foot_gotop button span {
    pointer-events: none; 
}





/* 딤 처리 스타일 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
}

/* 레이어 팝업 스타일 */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    /* padding: 20px; */
    z-index: 10000;
    max-width: 80%;
    max-height: 80vh;
    height: auto;
    overflow: auto;
    pointer-events: auto; /* 클릭 가능한 상태로 설정 */
}

.popup img {
    display: block;
    /* height: 100%; */
    width: 100%;
}

/* 닫기 버튼 스타일 */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.sub_tit_area {
    border-bottom: 4px solid var(--light_gray);
    padding-bottom: 3rem;
    margin-bottom: 5rem;
}

.sub_tit_area .s_tit {
    display: flex;
    align-items: flex-end;
}

.sub_tit_area .s_tit h2 {
    font-size: 6rem;
    font-weight: var(--main_font_bold);
    margin-right: 3rem;
    color: var(--sub_color);
}


.sub_tit_area .page_tit {

}


.sub_tit_area .s_location {
    font-size: 1.4rem;
    font-weight: var(--main_font_light);
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
}

.sub_tit_area .s_location span {
    font-weight: var(--main_font_bold);
}


/* 스크롤top */
a.sc_top {
    position: fixed;
    right: 7rem; bottom: 1rem;
    display: block;
    display: none;
    z-index: 10;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    background: url("../images/btn_top.png") no-repeat center;
    background-size: cover;
    width: 3rem; height: 3rem;
    font-size: 0;
    filter: grayscale(1);
}






ul {padding-inline-start:0;}
img {vertical-align:middle;}
fieldset {border:1px solid #ccc;}
.center {text-align:center;}

/*메인페이지*/
/* #wrap {height:100%;} */
#header {height:100px;text-align:center;}
#header ul li {display:inline-block;margin:0 20px;height:100px;line-height:100px;}



/* sub_common */
.br {
    display: block;
}

.p_mg_top {
    margin-top:2rem;
    display: block;
}

.p_mg_bottom {
    margin-bottom:2rem;
    display: block;
}

.help, .foot_quick{display: none;}

/* res */

@media (max-width: 75rem){ /* 1200px */
    html { font-size: 62.5%; }
    .inner{
        padding: 0 2.5rem;
    }
    .footer {
        height: 50rem;
    }
    .footer_wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
    }
    .footer_logo {
        margin-bottom: 2rem;
    }
    .footer_menu, .footer_txt, .footer_txt2, .footer_tel {
        justify-content: flex-start;
    }
    .footer_menu{
        flex-direction: column;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.7);
    }
    .footer_txt, .footer_tel{
        flex-direction: column ;
    }
    .footer_copy {
        /* text-align: center; */
        margin-bottom: 2rem;
    }

    .sub_hero.bg04 {
        background-position: center;
    }

    .sub_tit_area .s_tit {
        flex-wrap: wrap;
    }

    .sub_tit_area .s_tit h2 {
        width: 100%;
        margin-right: 0;
    }

    .sub_tit_area .s_tit p {
        margin-top: 2rem;
        line-height: 1.3;
    }

    
    .sub_cate ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        height: 100%;
    }

    .sub_cate ul li a:hover, 
    .sub_cate a.active {
        padding: 0;
    }

    .gnb_1depth > li > a {
        padding: 1rem 2.2rem;
        font-size: 1.9rem;
        letter-spacing: -.1rem;
    }

    
}

@media (max-width: 56.25rem){ /* 900 */
    .help, .foot_quick{display: block;}
    html { font-size: 56.25%; }

    .header_wrap header {
        height: 7rem;
    }

    .logo { 
        top: 2rem;
        left: 8rem;
        width: 15rem;
    }

    .menu_btn {
        top: 2.4rem;
        left: 3rem;
        right: auto;
    }

    .menu_btn.on span{
        background: #000;
    }

    .sub_hero.bg02 {
        background-position: center, center;
    }
    
    .help {
        width: 11rem;
        background-position: calc(100% - 1rem) calc(100% - 1.3rem);
        background-size: 1rem 1rem;
    }

    .gnb, .gnb.on {
        top: -100vh;
        position: fixed;
        width: 100%;
        height: 100vh;
        overflow: auto;
    }
    .gnb.on {
        padding-bottom: 5rem;
    }
    .gnb.on .gnb_1depth {
        width: 100%;
    }
    .gnb_1depth > li > a {
        
    }
    .gnb_1depth > li:hover > a {
        border-bottom: 1px solid rgba(255,255,255,0);
    }
    .gnb_2depth {
        background-color: rgba(0,0,0,.05);
        display: block;
    }
    .gnb.on .gnb_2depth {
        text-indent: 5rem;
        border-top: 1px solid rgba(0,0,0,.1);
        border-bottom: 1px solid rgba(0,0,0,.1);
    }
    .menu_btn {
        display: block;
    }

    a.sc_top {
        display: none;
        left: auto;
        right: 1rem;
        bottom: 10rem;
    }
    .foot_gotop{
        display: none;
    }

    .footer_wrap {
        padding: 5rem 2rem 8rem;
    }

    .sub_cate {
        margin-bottom: 2rem;
    }

    

    .sub_tit_area .s_location {
        display: none;
    }

    .sub_tit_area .s_tit h2 {
        display: none;
    }

    .sub_tit_area .s_tit p {
        font-size: 2rem;
        color: var(--sub_color);
        font-weight: var(--main_font_bold);
    }

    .sub_tit_area {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

    
    .sub_cate.sm {
        letter-spacing: -.2rem;
    }

    .popup {
        width: calc(100% - 20px);
        max-width: none;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);        
    }
    .bottom_banner{display: none;}

    /* 260518추가 */
    .help{
        font-size: 1.3rem;
        border-radius: 1.2rem;
    }
    .help a{
        padding: 0.68rem;
    }

    .f_site_area{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 2rem;
        width: 100%;        
    }
    .f_site_area .f_sns{
        display: flex;
        justify-content: unset;
        padding: 0;
        gap: 0.6rem;        
    }
}

@media (max-width: 37.5rem) { /* 600 */
    html { font-size: 56.25%; }
    .gnb_1depth > li > a {
        font-size: 2.2rem;
    }

    .gnb_2depth a {
        font-size: 1.9rem;
    }
    .gnb_2depth a::before {
        content: "- ";
    }

    footer {
        font-size: 1.4rem;
    }
    .footer_txt {
        flex-wrap: wrap;
    }
    .footer_txt li:first-child {
        width: 100%;
        margin-right: 0;
        /* text-align: center; */
    }
    .footer_txt2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .sub_hero {
        animation-name: s_m_hero;
        width: 100%; 
        height: 32rem;
    }
    
    .sub_hero .sub_title {
        font-size: 3rem;
    }
    
    .sub_hero .sub_title h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
        padding-top: 3rem;
    }

    .sub_hero .sub_desc {
        font-size: 1.6rem;
    }
    
    .sub_hero p.sub_desc {
        font-size: 1.8rem;
    }
        
    .sub_cate ul li {
        width: auto;
        padding: 0 .6rem;
        line-height: 1;
    }

    .sub_cate ul li a {
        padding-bottom: .1rem;
        font-size: 1.72rem;
    }

    .sub_cate ul li a:hover, .sub_cate a.active{
        padding-top: 2px;
        padding-bottom: 0;
    }
    
    .foot_quick .foot_contain a{
        flex-direction: row;
    }
    .foot_quick .foot_contain span{
        margin-top: 0;
        margin-left: .4rem;
    }
    .foot_quick .foot_contain span:first-child{
        margin-left: 0;
    }
    .foot_quick .foot_contain a img{
        width: 22px;
    }




}
@keyframes s_m_hero {
    0% { background-size: 120%; }
    100% { background-size: 200%; }
}



/* 260528 header 변경 */

/* ========== Site Header (전체 래퍼) ========== */
.dch-site_header {
    display: contents;
}

/* ========== Header Wrap ========== */
.dch-header_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.dch-header_wrap.dch-is-fixed {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dch-header_wrap.dch-is-menu-active {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}
.dch-header_wrap.dch-is-menu-active .dch-logo a img.dch-logo-default {
    opacity: 0;
}
.dch-header_wrap.dch-is-menu-active .dch-logo a img.dch-logo-fixed {
    opacity: 1;
}
.dch-header_wrap.dch-is-menu-active .dch-gnb_1depth > li > a {
    color: var(--text);
}
.dch-header_wrap.dch-is-menu-active .dch-gnb_1depth > li:hover > a {
    color: var(--sub_color);
}
.dch-header_wrap.dch-is-menu-active .dch-gnb_1depth > li.dch-is-active > a {
    color: var(--sub_color);
}

.dch-header_wrap.dch-is-menu-active .dch-gnb_1depth > li > a::after {
    background: var(--sub_color);
}
.dch-header_wrap.dch-is-menu-active .dch-cta_btn:not(.dch-kakao) {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}
.dch-header_wrap.dch-is-menu-active .dch-menu_btn span {
    background: var(--text);
}
.dch-header_wrap .dch-inner {
    max-width: 144rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 9rem;
    position: relative;
}

/* ========== Logo ========== */
.dch-logo {
    flex-shrink: 0;
}
.dch-logo a {
    display: block;
    position: relative;
}

.dch-logo a img.dch-logo-default,
.dch-logo a img.dch-logo-fixed {
    height: 3.6rem !important;
    width: auto !important;
    max-width: none !important;
    display: block;
    transition: opacity 0.3s ease;
}
.dch-logo a img.dch-logo-fixed {
    position: absolute;
    top: 0;
    left: 0;
}

.dch-logo a img.dch-logo-default {
    opacity: 1;
}
.dch-logo a img.dch-logo-fixed {
    opacity: 0;
}
.dch-header_wrap.dch-is-fixed .dch-logo a img.dch-logo-default {
    opacity: 0;
}
.dch-header_wrap.dch-is-fixed .dch-logo a img.dch-logo-fixed {
    opacity: 1;
}

@media (max-width: 1024px) {
    .dch-logo a img.dch-logo-default,
    .dch-logo a img.dch-logo-fixed {
        height: 3.8rem !important;
    }
}

@media (max-width: 900px) {
    .dch-logo a img.dch-logo-default,
    .dch-logo a img.dch-logo-fixed {
        height: 3rem !important;
    }
}

/* ========== GNB (PC: Mega Menu) ========== */
.dch-gnb {
    flex: 1;
    display: flex;
    justify-content: center;
    height: 9rem;
    position: relative;
}
.dch-gnb_1depth {
    display: flex;
    align-items: stretch;
    height: 100%;
    width: 100%;
    max-width: 100rem;
    margin: 0 0 0 auto;
    padding: 0;
}
.dch-gnb_1depth > li {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease;
}
.dch-gnb_1depth > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2.4rem;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.05rem;
    position: relative;
    transition: color 0.25s;
    white-space: nowrap;
}
.dch-header_wrap.dch-is-fixed .dch-gnb_1depth > li > a {
    color: var(--text);
}
.dch-gnb_1depth > li:hover {
    background-color: rgba(255,255,255,0.12);
}
.dch-gnb_1depth > li:hover > a {
    color: #fff;
}

.dch-header_wrap.dch-is-fixed .dch-gnb_1depth > li:hover > a {
    color: var(--sub_color);
}
.dch-gnb_1depth > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.dch-gnb_1depth > li.dch-is-active > a::after,
.dch-gnb_1depth > li:hover > a::after {
    opacity: 1;
}
.dch-gnb_1depth > li > a::after {
    background: #fff;
}
.dch-header_wrap.dch-is-fixed .dch-gnb_1depth > li > a::after {
    background: var(--sub_color);
}

/* ========== Mega Menu Panel (한 번에 다 나오는 구조) ========== */
.dch-mega_panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100rem;
    margin: 0 0 0 auto;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
    z-index: 99;
}
.dch-mega_panel::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    right: -100vw;
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    z-index: -1;
}
.dch-gnb:hover .dch-mega_panel,
.dch-header_wrap.dch-is-open .dch-mega_panel,
.dch-mega_panel:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dch-mega_panel .dch-mega_inner {
    width: 100%;
    display: flex;
    min-height: 24rem;
    margin: 0;
    padding: 0;
}

.dch-mega_col {
    flex: 1 1 0;
    min-width: 0;
    padding: 3rem 0.6rem 3.5rem;
    text-align: center;
    border-right: 1px solid var(--line);
    transition: background-color 0.25s;
    background-color: transparent !important;
}
.dch-mega_col:last-child {
    border-right: none;
}

.dch-mega_col ul li a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1.6rem;
    white-space: nowrap;

    color: #555;
    transition: all 0.2s;
    border-radius: 0.4rem;
}
.dch-mega_col ul li a:hover {
    color: var(--sub_color);

}

/* ========== Right: CTA Area ========== */
.dch-header_cta {
    display: none;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}
.dch-cta_tel {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.6rem;
    background: var(--main_color);
    color: #fff;
    border-radius: 0.6rem;
    font-size: 1.5rem;
    font-weight: 600;
    transition: background 0.25s;
}
.dch-cta_tel:hover {
    background: var(--sub_color);
}
.dch-cta_tel .dch-icon {
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
}
.dch-cta_tel .dch-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}
.dch-cta_btn {
    padding: 1rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 0.6rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dch-cta_btn:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.dch-header_wrap.dch-is-fixed .dch-cta_btn {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}
.dch-header_wrap.dch-is-fixed .dch-cta_btn:hover {
    border-color: var(--main_color);
    color: var(--main_color);
    background: #fff;
}
.dch-cta_btn.dch-kakao,
.dch-header_wrap.dch-is-fixed .dch-cta_btn.dch-kakao {
    background: #FEE500;
    border-color: #FEE500;
    color: #3C1E1E;
}
.dch-cta_btn.dch-kakao:hover,
.dch-header_wrap.dch-is-fixed .dch-cta_btn.dch-kakao:hover {
    background: #ffd900;
    border-color: #ffd900;
    color: #3C1E1E;
}

/* ========== Mobile Menu Button ========== */
.dch-menu_btn {
    display: none;
    width: 3rem;
    height: 2.4rem;
    position: relative;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 120;
}

.dch-menu_btn::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
}
.dch-menu_btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: 0.3s;
    border-radius: 2px;
}
.dch-header_wrap.dch-is-fixed .dch-menu_btn span {
    background: var(--text);
}
.dch-menu_btn span:nth-child(1) {
    top: 0;
}
.dch-menu_btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.dch-menu_btn span:nth-child(3) {
    bottom: 0;
}
.dch-header_wrap.dch-is-fixed .dch-menu_btn.dch-is-open span,
.dch-menu_btn.dch-is-open span {
    background: #1a1a1a;
}
.dch-menu_btn.dch-is-open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.dch-menu_btn.dch-is-open span:nth-child(2) {
    opacity: 0;
}
.dch-menu_btn.dch-is-open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ========== Mobile Full Menu ========== */
.dch-mobile_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}
.dch-mobile_menu.dch-is-open {
    opacity: 1;
    visibility: visible;
}
/* 상단 고정 흰색 띠: 스크롤되는 메뉴 항목이 헤더(햄버거·로고) 뒤로 비치지 않게 가림 */
.dch-mobile_menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    background: #ffffff;
    z-index: 1;
    pointer-events: none;
}
.dch-mobile_menu_top {
    height: 7rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #ececec;
}
.dch-mobile_menu_top .dch-m_logo {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.05rem;
}
.dch-mobile_menu_top .dch-m_logo span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
    margin-right: 0.5rem;
}
.dch-mobile_menu_body {
    padding: 2rem 0 20rem;
}
.dch-mobile_menu_body .dch-m_section {
    padding: 0;
    border-bottom: 1px solid #ececec;
}

.dch-mobile_menu_body .dch-m_title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.05rem;
    padding: 1.8rem 2.5rem 1rem;
    margin: 0;
}

.dch-mobile_menu_body .dch-m_sublist {
    display: block;
    background: #f5f5f5;
    padding: 0.8rem 0;
}
.dch-mobile_menu_body .dch-m_sublist li a {
    display: block;
    padding: 1.1rem 2.5rem 1.1rem 3.2rem;
    background: transparent;
    color: #666;
    font-size: 1.9rem;
    font-weight: 400;
    border-radius: 0;
    transition: color 0.2s;
}
/* '- ' 머리 기호 */
.dch-mobile_menu_body .dch-m_sublist li a::before {
    content: '- ';
    color: #888;
}
.dch-mobile_menu_body .dch-m_sublist li a:active,
.dch-mobile_menu_body .dch-m_sublist li a:hover {
    background: transparent;
    color: var(--sub_color);
    font-weight: 500;
}

/* 모바일 메뉴 하단 고정 CTA */
.dch-mobile_cta_bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
    z-index: 106;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease 0.15s;
}
.dch-mobile_cta_bar.dch-is-open {
    display: flex;
    transform: translateY(0);
}
/* 공통 버튼 */
.dch-mobile_cta_bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 0.8rem;
    transition: opacity 0.2s;
}
.dch-mobile_cta_bar a:active {
    opacity: 0.85;
}
.dch-mobile_cta_bar a .dch-cta_icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dch-mobile_cta_bar a .dch-cta_icon svg {
    width: 100%;
    height: 100%;
}

/* 1줄: 전화상담 (네이비 전체폭) */
.dch-mobile_cta_bar a.dch-tel {
    background: var(--sub_color);
    color: #fff;
}
.dch-mobile_cta_bar a.dch-tel svg {
    fill: #fff;
}

/* 2줄: 카톡·빠른상담 (흰 배경 + 테두리, 2등분) */
.dch-mobile_cta_bar .dch-cta_row {
    display: flex;
    gap: 1rem;
}
.dch-mobile_cta_bar .dch-cta_row a {
    flex: 1;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #d5d5d5;
}
.dch-mobile_cta_bar a.dch-kakao .dch-cta_icon svg {
    fill: var(--sub_color);
}

.dch-mobile_cta_bar a.dch-quick .dch-cta_icon svg{
    fill: var(--sub_color);
}

/* ========== Responsive ========== */
@media (max-width: 1280px) {
    .dch-gnb_1depth > li > a {
        padding: 0 1.6rem;
        font-size: 1.6rem;
    }
    .dch-cta_btn span.dch-label {
        display: none;
    }
}

@media (max-width: 1024px) {
    .dch-header_wrap .dch-inner {
        height: 7rem;
        padding: 0 2rem 0 6rem;
    }
    .dch-gnb {
        display: none;
    }
    .dch-mega_panel {
        display: none;
    }
    .dch-mobile_menu {
        display: block;
    }
    .dch-cta_btn {
        display: none;
    }
    .dch-cta_tel {
        padding: 0.8rem 1.2rem;
        font-size: 1.4rem;
    }

    /* ── 모바일 헤더 배치 ── */
    .dch-header_cta {
        display: flex;
        margin-left: auto;
    }
    .dch-menu_btn {
        display: block;
        position: absolute;
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 120;
    }

    body.dch-is-menu-open .dch-header_cta .dch-cta_btn,
    body.dch-is-menu-open .dch-header_cta .dch-cta_tel {
        display: none;
    }
    body.dch-is-menu-open .dch-header_wrap {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
        z-index: 110;
    }

    body.dch-is-menu-open .dch-logo {
        visibility: visible;
    }
    body.dch-is-menu-open .dch-logo a img.dch-logo-default {
        opacity: 0 !important;
    }
    body.dch-is-menu-open .dch-logo a img.dch-logo-fixed {
        opacity: 1 !important;
    }
}

@media (max-width: 640px) {
    .dch-cta_btn .dch-label,
    .dch-cta_tel .dch-label {
        display: none;
    }
    .dch-cta_tel {
        padding: 0.9rem;
    }
    .dch-header_cta {
        gap: 0.5rem;
    }
}

.dch-hero {
    min-height: 70rem;
    background: linear-gradient(135deg, #25183a 0%, #604899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12rem 2rem 6rem;
    color: #fff;
}
.dch-hero_inner {
    max-width: 90rem;
}
.dch-hero_sub {
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}
.dch-hero_title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.1rem;
    margin-bottom: 3rem;
}
.dch-hero_guide {
    font-size: 1.5rem;
    opacity: 0.7;
}
@media (max-width: 1024px) {
    .dch-hero {
        min-height: 56rem;
        padding: 10rem 2rem 5rem;
    }
    .dch-hero_title {
        font-size: 2.8rem;
    }
}
@media (max-width: 640px) {
    .dch-hero_title {
        font-size: 2.2rem;
    }
}


/* ==========페이지하단 cta섹션 추가 260529 =========
   ====================CTA 섹션 ==================== */
.cta-section {
    padding: 0;
    margin: 5rem 0 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-image: linear-gradient(135deg, rgb(26, 40, 96) 0%, rgb(10, 17, 48) 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-title-view {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-subtitle {
    font-size: 1.9rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: white;
    padding: 1.4rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.5);
    color: inherit;
}

/* ========== 반응형 ========== */
@media (max-width: 768px) {
    .cta-title-view {
        font-size: 2.6rem;
    }

    .cta-subtitle {
        font-size: 1.6rem;
    }

    .cta-container {
        padding: 3rem 2rem;
    }

    .cta-button {
        padding: 1.6rem 2.4rem;
        font-size: 1.6rem;
    }
}
