@charset "utf-8";

/* === 0. 초기화 및 변수 === */
.cl-site{font-family:'Noto Sans KR',sans-serif;color:#333;overflow-x:hidden;}
.cl-site *{margin:0;padding:0;box-sizing:border-box;}
.cl-site a{text-decoration:none;color:inherit;}
.cl-site ul{list-style:none;}
.cl-site .sound_only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}
.cl-site #skip_to_container{position:absolute;top:-40px;left:0;width:100%;text-align:center;z-index:3000;}
.cl-site #skip_to_container a{display:inline-block;padding:8px 16px;background:#000;color:#fff;font-size:13px;}
.cl-site #skip_to_container a:focus{top:0;position:relative;}

/* === 1. 헤더 & 통짜 드롭다운 메가메뉴 === */
.cl-header-wrap{position:fixed;top:0;left:0;width:100%;height:110px;display:flex;justify-content:center;align-items:flex-start;z-index:2000;overflow:hidden;background:linear-gradient(to bottom,rgba(0,0,0,.2),transparent);transition:height .35s ease,background .3s,box-shadow .3s;}
.cl-header-wrap:hover{height:360px;background:#fff;box-shadow:0 8px 20px rgba(0,0,0,.08);}
.cl-header-wrap.cl-scrolled{background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.08);}
.cl-header-inner{width:100%;max-width:1600px;height:110px;display:flex;justify-content:space-between;align-items:center;
	padding: 0 15% 0 6%;position:relative;z-index:10;} /* 항상 상단 고정 */

/* 로고 */
.cl-logo{display:block;width:270px;height:60px;background:url('../img/logo_w.png') no-repeat center center;background-size:contain;text-indent:-9999px;overflow:hidden;transition:background-image .3s;margin-right:60px; margin-top: 10px;}
.cl-header-wrap.cl-scrolled .cl-logo,.cl-header-wrap:hover .cl-logo{background:url('../img/logo.png') no-repeat center center;background-size:contain;}

/* 대메뉴 */
.cl-desktop-nav{width: 50%;display:flex;/* gap: 5%; */height:110px;align-items:center;justify-content: space-evenly;}
.cl-menu-item-wrap{position:relative;height:110px;display:flex;align-items:center;justify-content:center;flex-direction:column;}
.cl-menu-item-wrap>a{position:relative;color:#fff;font-size:20px;font-weight:600;text-transform:uppercase;line-height:80px;display:block;transition:color .3s;}
.cl-header-wrap.cl-scrolled .cl-menu-item-wrap>a,.cl-header-wrap:hover .cl-menu-item-wrap>a{color:#111;}
.cl-menu-item-wrap>a::after{content:'';position:absolute;bottom:0;left:50%;width:0;height:2px;background:#690b7f;transform:translateX(-50%);transition:width .3s;}
.cl-menu-item-wrap:hover>a::after{width:100%;}

/* 서브메뉴 – 상단 메뉴 바로 아래에 절대 위치 (갭 없음) */
.cl-mega-submenu{position:absolute;top:100px;left:50%;align-items: center;transform:translateX(-50%) translateY(10px);display:flex;flex-direction:column;gap:8px;padding:20px 0;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s,transform .3s;z-index:9;}
.cl-mega-submenu a{font-size:17px;color:#555;white-space:nowrap;transition:color .2s;}
.cl-mega-submenu a:hover{color:#c00d58;}

/* ★ 헤더 전체에 마우스를 올리면 흰 배경 + 모든 서브메뉴 유지 */
.cl-header-wrap:hover .cl-mega-submenu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
.cl-mega-bg{display:none!important;}

/* === 1-2. 햄버거 버튼 === */
.cl-hamburger{width:30px;height:24px;position:fixed;top:36px;right:5%;cursor:pointer;z-index:3500;display:block;}
.cl-header-inner .cl-hamburger.cl-open-btn{display:block!important;position:fixed;top:36px;right:5%;margin-left:0;z-index:20;}
.cl-header-inner .cl-hamburger.cl-open-btn.active{opacity:0;pointer-events:none;}
.cl-fullmenu .cl-hamburger{position:fixed;top:36px;right:5%;}
.cl-hamburger span{display:block;position:absolute;height:2px;width:100%;background:#fff;transition:all .25s ease-in-out;border-radius:2px;}
.cl-hamburger span:nth-child(1){top:0;}
.cl-hamburger span:nth-child(2){top:10px;}
.cl-hamburger span:nth-child(3){top:20px;}

/* 스크롤/드롭다운 상태에서는 검정 */
.cl-header-wrap.cl-scrolled .cl-hamburger span,.cl-header-wrap:hover .cl-hamburger span,.cl-header-inner .cl-hamburger.cl-open-btn span{background:#111!important;}
/* 초기(투명 헤더)에서만 흰색 */
.cl-header-wrap:not(.cl-scrolled):not(:hover) .cl-header-inner .cl-hamburger.cl-open-btn span{background:#fff!important;}
.cl-hamburger.active{display:block;position:fixed!important;right:calc(5% + 5px);}
.cl-hamburger.active span{background:#111!important;}
.cl-hamburger.active span:nth-child(1){top:10px;transform:rotate(135deg);}
.cl-hamburger.active span:nth-child(2){opacity:0;left:-60px;}
.cl-hamburger.active span:nth-child(3){top:10px;transform:rotate(-135deg);}

/* === 2. 전체 메뉴 Overlay === */
.cl-fullmenu-overlay{position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.5);z-index:2500;opacity:0;visibility:hidden;transition:opacity .4s ease-in-out,visibility .4s;pointer-events:none;}
.cl-fullmenu-overlay.active{opacity:1;visibility:visible;pointer-events:auto;}

.cl-fullmenu{position:fixed;top:0;right:-70%;width:70%;height:100vh;background:#fff;z-index:3000;pointer-events:none;opacity:0;transition:right .4s ease-in-out,opacity .4s;overflow-y:auto;padding:100px 5% 50px;}
.cl-fullmenu.active{right:0;pointer-events:auto;opacity:1;}

/* 기본값(모바일 기준) */
.cl-fullmenu>ul{text-align:left;width:100%;margin:0 auto;}
.cl-fullmenu>ul>li{margin-bottom:5px;border-bottom:1px solid #eee;}
.cl-fullmenu>ul>li>a{font-size:1.5rem;font-weight:700;color:#333;display:block;padding:10px 0;}
.cl-fullmenu>ul>li>a:hover{color:#c00d58;}
.cl-fullmenu .sub-ul{padding:0 0 0 20px;overflow:hidden;height:0;transition:height .4s ease-in-out;}
.cl-fullmenu .sub-ul li a{font-size:1.2rem;padding:8px 0;color:#666;font-weight:500;line-height:2.5;}
.cl-fullmenu .sub-ul li a:hover{color:#c00d58;}
.cl-fullmenu li.cl-has-sub>a i{float:right;margin-top:12px;font-size:.9rem;transition:transform .3s;}
.cl-fullmenu li.cl-has-sub.cl-open>a i{transform:rotate(180deg);}

/* --- PC 전용: 참고 이미지 스타일 (글자 크게 + 자간/레이아웃) --- */
@media (min-width:1025px){
  .cl-fullmenu{padding:100px 8% 80px;}
  .cl-fullmenu>ul{max-width:900px;margin:0 auto;display:flex;flex-direction:column;gap:40px;}
  .cl-fullmenu>ul>li{margin-bottom:0;border-bottom:none;}
  .cl-fullmenu>ul>li>a{font-size:2.4rem;font-weight:700;color:#111;padding:0;margin-bottom:24px;letter-spacing:-0.03em;}
  .cl-fullmenu .sub-ul{padding:0;display:flex;flex-wrap:wrap;gap:28px;height:auto!important;overflow:visible!important;}
  .cl-fullmenu .sub-ul li a{font-size:1.05rem;padding:0;color:#666;font-weight:400;line-height:1.8;letter-spacing:-0.02em;}
  .cl-fullmenu li.cl-has-sub>a i{display:none;}
}

/* 작은 모바일에서만 폭 80%로 */
@media (max-width:480px){
  .cl-fullmenu{width:80%;right:-80%;}
 

 }

/* 모바일 메뉴 1차 메뉴 전체 클릭 영역 복원 */
.cl-fullmenu ul>li>a{
    display:flex !important;
    width:100% !important;
    padding:14px 22px !important;
    align-items:center;
    justify-content:space-between;
    box-sizing:border-box;
}

/* 모바일 메뉴 2차 메뉴 전체 클릭 영역 복원 */
.cl-fullmenu .sub-ul li>a{
    display:block !important;
    width:100% !important;
    padding:10px 26px !important;
    box-sizing:border-box;
}

/* === 3. 히어로 & 현재위치 (Breadcrumb) === */
.cl-hero{position:relative;width:100%;height:500px;display:flex;flex-direction:column;justify-content:center;align-items:center;color:#fff;padding-top:80px;text-align:center;overflow:visible;}
.cl-hero-bg{position:absolute;top:0;left:0;width:100%;height:100%;background-position:center;background-size:cover;background-repeat:no-repeat;z-index:-2;animation:clZoom 20s infinite alternate;overflow:hidden;}
.cl-hero::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.1);z-index:-1;}
.cl-hero-title{font-size:3.5rem;font-weight:700;letter-spacing:2px;margin-bottom:30px;z-index:1;}
.cl-hero--m1 .cl-hero-bg{background-image:url('../img/hero_01.jpg');}
.cl-hero--m2 .cl-hero-bg{background-image:url('../img/hero_02.jpg');}
.cl-hero--m3 .cl-hero-bg{background-image:url('../img/hero_03.jpg');}
.cl-hero--m4 .cl-hero-bg{background-image:url('../img/hero_04.jpg');}
.cl-hero--m5 .cl-hero-bg{background-image:url('../img/hero_05.jpg');}
.cl-hero:not(.cl-hero--m1):not(.cl-hero--m2):not(.cl-hero--m3):not(.cl-hero--m4):not(.cl-hero--m5) .cl-hero-bg{background-image:url('../img/hero_default.jpg');}
@keyframes clZoom{0%{transform:scale(1);}100%{transform:scale(1.15);}}

/* ▼ 현재위치(Breadcrumb) 새 디자인 */
.cl-breadcrumb{display:flex;align-items:center;gap:14px;font-size:15px;color:rgba(255,255,255,.85);position:relative;z-index:10;}
 

/* HOME */
.cl-bc-home a{display:flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;background:rgba(255,255,255,.25);color:#fff;font-size:13px;transition:.25s ease;}
.cl-bc-home a:hover{background:#fff;color:#690b7f;}

/* WRAP */
.cl-breadcrumb{display:flex;align-items:center;gap:14px;font-size:15px;color:rgba(255,255,255,.85);position:relative;z-index:10;}

/* ITEM */
.cl-bc-item{position:relative;display:flex;align-items:center;gap:6px;padding-left:14px;cursor:pointer;}
.cl-bc-item::before{content:"›";position:absolute;left:0;top:50%;transform:translateY(-50%);font-size:13px;color:rgba(255,255,255,.45);}
.cl-bc-item span{color:rgba(255,255,255,.8);font-weight:400;white-space:nowrap;}
.cl-breadcrumb>.cl-bc-item:last-of-type span{color:#fff;font-weight:700;}

/* 화살표 버튼 */
.cl-bc-item i.fa-chevron-down{width:20px;height:20px;border-radius:50%;border:1px solid rgba(255,255,255,.4);display:flex;align-items:center;justify-content:center;font-size:10px;color:#fff;background:transparent;transition:.25s;}
.cl-bc-item:hover i.fa-chevron-down{background:rgba(255,255,255,.3);}
.cl-bc-item.active i.fa-chevron-down{background:#fff;color:#222;border-color:#fff;transform:rotate(180deg);}

/* DROPDOWN (밝은색) */
.cl-bc-dropdown{position:absolute;top:28px;left:14px;min-width:150px;margin:0;padding:6px 0;border-radius:6px;background:#fff;color:#333;box-shadow:0 8px 20px rgba(0,0,0,.25);list-style:none;opacity:0;visibility:hidden;transform:translateY(6px);transition:.22s ease;z-index:50;}
.cl-bc-item.active .cl-bc-dropdown{opacity:1;visibility:visible;transform:translateY(0);}
.cl-bc-dropdown li a{display:block;padding:8px 14px;font-size:13px;color:#444;transition:.18s;white-space:nowrap;}
.cl-bc-dropdown li a:hover,.cl-bc-dropdown li a.on{background:#f2f2f2;color:#690b7f;}

/* MOBILE */
@media (max-width:768px){
.cl-breadcrumb{gap:10px;font-size:13px;}
.cl-bc-item{padding-left:10px;}
.cl-bc-item::before{font-size:11px;}
.cl-bc-item i.fa-chevron-down{width:18px;height:18px;font-size:9px;}
.cl-bc-dropdown{left:10px;min-width:130px;}
}
 


/* === 4. 서브 내비게이션 (탭 스타일) === */
.cl-sub-nav-wrap{background:#fff;border-bottom:1px solid #e5e5e5;padding:0;margin:0 0 30px 0;}
.cl-sub-nav-inner{max-width:1200px;margin:0 auto;padding:0;}
.cl-sub-nav{margin:0 auto;padding:0;display:flex;justify-content:center;align-items:stretch;flex-wrap:nowrap;}
.cl-sub-nav-item{position:relative;margin:0;padding:0 60px;text-align:center;}
.cl-sub-nav-item+.cl-sub-nav-item::before{content:'';position:absolute;left:0;top:50%;width:1px;height:16px;background:#dddddd;transform:translateY(-50%);}
.cl-sub-nav-item a{display:inline-block;padding:18px 0 14px 0;color:#888;font-size:16px;font-weight:500;text-decoration:none;position:relative;transition:color .2s ease;}
.cl-sub-nav-item a::after{content:'';position:absolute;left:50%;bottom:-1px;transform:translateX(-50%);width:0;height:3px;background:#19a5f2;transition:width .25s ease;}
.cl-sub-nav-item a:hover{color:#19a5f2;}
.cl-sub-nav-item a:hover::after{width:100%;}
.cl-sub-nav-item.active a{color:#19a5f2;font-weight:700;}
.cl-sub-nav-item.active a::after{width:100%;}

/* 반응형 조정 */
@media (max-width:768px){
.cl-sub-nav-wrap{margin-bottom:20px;}
.cl-sub-nav{flex-wrap:wrap;}
.cl-sub-nav-item{padding:0 16px;margin-bottom:4px;}
.cl-sub-nav-item+.cl-sub-nav-item::before{height:12px;}
.cl-sub-nav-item a{font-size:14px;padding:12px 0 10px 0;}
}


/* === 5. 서브 내비게이션 아래 페이지 제목 (기업이념 스타일) === */
.cl-page-header-title{background:#fff;padding:80px 0 70px;border-bottom:1px solid #f3f3f3;margin:0;}
.cl-page-header-inner{max-width:1200px;margin:0 auto;padding:0 15px;text-align:center;}
.cl-page-title{margin:0;font-size:40px;font-weight:700;color:#333;letter-spacing:-0.04em;}

 
/* === 6. 반응형 === */
@media (max-width:1024px){
.cl-desktop-nav{display:none;}
.cl-mega-bg{display:none;}
.cl-header-wrap:hover{height:80px;background:linear-gradient(to bottom,rgba(0,0,0,.6),transparent);box-shadow:none;}
.cl-header-wrap.cl-scrolled{height:100px;}
.cl-header-inner .cl-hamburger.cl-open-btn{position:absolute;right:5%;margin-left:0;}
.cl-header-wrap:not(.cl-scrolled) .cl-header-inner .cl-hamburger.cl-open-btn span{background:#fff!important;}
	.cl-page-header-title{padding:60px 0 50px;}
.cl-page-title{font-size:32px;}
}
@media (max-width:768px){
.cl-hero{height:380px;}
.cl-hero-title{font-size:2.2rem;}
.cl-breadcrumb{flex-direction:row;gap:10px;font-size:.8rem;}
.cl-bc-item{min-width:120px;padding:5px 10px;}
.cl-hamburger.active{right:20px!important;}
.cl-sub-nav{justify-content:center;}
.cl-sub-nav-item a{padding:12px 15px;font-size:14px;}
.cl-sub-nav-wrap{margin-bottom:20px;}
.cl-page-header-title{padding:40px 0 35px;}
.cl-page-title{font-size:26px;}
}
@media (max-width:480px){
.cl-fullmenu{width:80%;right:-80%;}
}
