@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* ==================================================== */
/* 1. 기본 설정 (Reset & Common) */
/* ==================================================== */
html,
body {
  line-height: 150%;
  font-family: "Pretendard", sans-serif;
  letter-spacing: -0.04em;
  color: #222;
  margin: 0;
  padding: 0;
}

p {
  word-break: keep-all;
}
* {
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

:root {
  /* Font Size */
  --font-size-13: 0.813rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.9375rem;
  --font-size-16: 1rem;
  --font-size-17: 1.0625rem;
  --font-size-18: 1.125rem;
  --font-size-19: 1.188rem;
  --font-size-20: 1.25rem;
  --font-size-21: 1.313rem;
  --font-size-22: 1.375rem;
  --font-size-23: 1.438rem;
  --font-size-24: 1.5rem;
  --font-size-25: 1.563rem;
  --font-size-26: 1.625rem;
  --font-size-27: 1.688rem;
  --font-size-28: 1.75rem;
  --font-size-30: 1.875rem;
  --font-size-32: 2rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;
  --font-size-44: 2.75rem;
  --font-size-48: 3rem;
  --font-size-50: 3.125rem;
  --font-size-60: 3.75rem;
  --font-size-70: 4.375rem;
  --font-size-80: 5rem;
  --font-size-100: 6.25rem;

  /* Font Weight */
  --font-t: 100;
  --font-l: 300;
  --font-r: 400;
  --font-m: 500;
  --font-sb: 600;
  --font-b: 700;
  --font-eb: 800;
  --font-bl: 900;

  /* Color */
  --main-clr: #03318c;
  --point-clr: #00153e;
  --white-clr: #fff;
  --black-clr: #222;
}

/* 유틸리티 클래스 */
.fw_b {
  font-weight: var(--font-b);
}
.fc_main {
  color: var(--main-clr);
}

/* 레이아웃 공통 */
.je_container {
  width: 95%;
  max-width: 1480px;
  margin: 0 auto;
}

.je_section {
  padding: 150px 0;
}

/* 섹션 패딩 반응형 */
@media (max-width: 1280px) {
  .je_section {
    padding: 130px 0;
  }
}
@media (max-width: 1080px) {
  .je_section {
    padding: 100px 0;
  }
}
@media (max-width: 720px) {
  .je_section {
    padding: 70px 0;
  }
}

/* 애니메이션 키프레임 */
@keyframes upDown {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(10px);
  }
}

@keyframes upDown2 {
  0% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(20px);
  }
}

@keyframes txtLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* ==================================================== */
/* 2. 공통 헤더 타이틀 & UI 요소 */
/* ==================================================== */
.je_main .je_secHdr h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 44px;
  text-align: center;
}
.je_main .je_secHdr h6 {
  font-size: var(--font-size-20);
  font-weight: var(--font-m);
  line-height: 1.8;
  margin-bottom: 66px;
  color: #555;
  text-align: center;
}
.ch_box_sub_tit {
  z-index: 1;
  font-size: var(--font-size-20);
  font-weight: var(--font-b);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.6);
}
.ch_box_tit {
  z-index: 1;
  font-size: var(--font-size-32);
  font-weight: var(--font-b);
  margin-bottom: 22px;
  color: #fff;
  line-height: 1.375em;
}
.ch_box_art {
  z-index: 1;
  font-size: var(--font-size-20);
  font-weight: var(--font-r);
  color: #fff;
  line-height: 1.8;
}

/* 타이틀 반응형 */
@media screen and (max-width: 1280px) {
  .je_main .je_secHdr h3 {
    font-size: var(--font-size-44);
    margin-bottom: 34px;
  }
  .je_main .je_secHdr h6 {
    font-size: var(--font-size-20);
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 1080px) {
  .je_main .je_secHdr h3 {
    font-size: var(--font-size-40);
    margin-bottom: 26px;
  }
  .je_main .je_secHdr h6 {
    font-size: var(--font-size-18);
    margin-bottom: 46px;
  }
}
@media screen and (max-width: 720px) {
  .je_main .je_secHdr h3 {
    font-size: var(--font-size-30);
    margin-bottom: 22px;
  }
  .je_main .je_secHdr h6 {
    font-size: var(--font-size-16);
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 480px) {
  .je_main .je_secHdr {
    text-align: center;
  }
  .je_main .je_secHdr h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .je_main .je_secHdr h6 {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

/* 관리자 퀵메뉴 */
.b_adm_list {
  position: fixed;
  right: 20px;
  bottom: 160px;
  z-index: 15;
}
.b_adm_list li {
  margin-bottom: 7px;
}
.b_adm_list li:last-child {
  margin-bottom: 0px;
}
.b_adm_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100px;
  height: 40px;
  border-radius: 6px;
  font-size: 16px;
  text-align: center;
  background-color: #111;
  border: 1px solid #666;
}

@media screen and (max-width: 920px) {
  .b_adm_list {
    right: 33px;
    z-index: 55;
  }
}
@media screen and (max-width: 767px) {
  .b_adm_list {
    right: 20px;
  }
  .b_adm_list li a {
    width: 70px;
  }
}
@media screen and (max-width: 480px) {
  .b_adm_list {
    bottom: 20px;
  }
}

/* 픽스 이동 버튼 (GoTop) */
.ch_fixed_btn {
  z-index: 2;
  position: fixed;
  bottom: 80px;
  left: 80px;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
}
.ch_fixed_btn svg {
  fill: #aaa;
}
.je_goTop {
  position: relative;
}
.je_goTop::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #e1e1e1;
}
.je_goTop,
.je_goDown {
  text-align: center;
  display: flex;
  align-items: center;
  padding: 14px;
}

@media screen and (max-width: 1824px) {
  .ch_fixed_btn {
    left: 20px;
  }
}
@media screen and (max-width: 1600px) {
  .ch_fixed_btn {
    left: unset;
    right: 40px;
    bottom: 40px;
  }
}
@media screen and (max-width: 1480px) {
  .ch_fixed_btn {
    right: 20px;
    bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .ch_fixed_btn {
    display: none;
  }
}

/* ==================================================== */
/* 3. 헤더 (Header) - 반응형 및 서브메뉴 보더 수정 적용 */
/* ==================================================== */
.je_header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 0.6s;
  height: 100px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

/* 헤더 컨테이너 */
.je_header .je_container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1920px;
  width: 95%;
  margin: 0 auto;
  padding: 0 20px;
}

/* 로고 */
.je_header .je_container h1.je_logo {
  flex-shrink: 0;
  z-index: 20;
}
.je_header .je_container h1.je_logo a,
.je_header .je_container h1.je_logo a img {
  display: block;
  height: auto;
   /* 로고 높이 제한 */
}

/* [PC] 네비게이션 (1024px 초과에서만 보임) */
.je_header .je_topNav {
  position: absolute;
  left: 53%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-right: 0;
  z-index: 10;
  display: block;
}

.je_header .je_navWrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.je_header .je_navList {
  position: relative;
}

.je_header .je_navList > a.je_mnNav {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  transition: color 0.3s;
  white-space: nowrap;
  padding: 10px 0;
}

.je_header .je_navList > a.je_mnNav:hover {
  color: #007bff;
}

/* [PC] 상담문의 버튼 스타일 */
.je_header .je_navList.je_nl06 > a.je_mnNav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #007bff;
  color: #fff !important;
  padding: 0 25px;
  border-radius: 50px;
  font-size: 15px;
  height: 45px;
  transition: 0.3s;
}
.je_header .je_navList.je_nl06 > a.je_mnNav:hover {
  background-color: #0056b3;
}

/* [PC] 서브메뉴 */
.je_header .je_navSub {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    /* 상위 메뉴 바로 아래에 붙도록 top 위치 조정 */
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff; /* 배경 흰색 */
    min-width: 140px;
    border-radius: 8px; /* 둥근 모서리 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* 그림자 */
    transition: 0.3s;
    
    /* [핵심] 전체 테두리 및 내부 항목 보더 관리 */
    border: 1px solid #eee; /* 전체 박스 테두리 */
    overflow: hidden; /* 내부 li 보더가 둥근 모서리를 넘지 않도록 */
    padding: 0; /* 패딩 제거 (li로 꽉 채움) */
    
    /* 마우스 이동 시 끊김 방지용 투명 가상 요소 */
    /* (필요시 사용, 현재는 top 위치로 제어 중이라 선택사항) */
}

/* 마우스 올렸을 때 */
.je_header .je_navList:hover .je_navSub,
.je_header .je_navList.on .je_navSub {
    opacity: 1;
    pointer-events: auto;
    /* hover 시 위치를 고정하거나 약간의 애니메이션 효과 */
    top: 80%; /* 필요시 조정 */
    margin-top: 10px;
}

.je_header .je_navSub li {
    display: block;
    width: 100%;
}

.je_header .je_navSub li a {
    display: block;
    padding: 12px 20px; /* 높이감 조정 */
    font-size: 15px; /* 글자 크기 조정 */
    color: #555; /* 기본 글자색 (너무 진하지 않게) */
    text-align: center;
    white-space: nowrap;
    transition: 0.2s;
    
    /* [핵심] 항목 사이 구분선 (마지막 항목 제외) */
    border-bottom: 1px solid #f1f1f1;
}

/* 마지막 항목은 아래쪽 보더 제거 (박스 자체 보더와 겹침 방지) */
.je_header .je_navSub li:last-child a {
    border-bottom: none;
}

.je_header .je_navSub li a:hover {
    color: #007bff; /* 포인트 컬러 */
    background-color: #f9f9f9; /* 호버 시 배경색 */
    font-weight: 700;
}

/* [공통] 헤더 오른쪽 영역 (모바일 버튼 + 햄버거) */
.je_header .je_hdrRight {
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 20;
  gap: 15px;
}

/* [모바일] 상담 버튼 (기본 숨김 -> 미디어쿼리에서 표시) */
.je_mo_btn {
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #007bff;
  color: #fff !important;
  padding: 0 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  height: 36px;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}
.je_mo_btn:hover {
  background-color: #0056b3;
}

/* [모바일] 햄버거 아이콘 (기본 숨김 -> 미디어쿼리에서 표시) */
.je_header .je_navBar {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}

.je_header .je_navBar .je_stick {
  display: block;
  height: 2px;
  background-color: #222;
  transition: 0.3s;
  border-radius: 2px;
}
.je_header .je_navBar .je_stick:nth-child(1) { width: 28px; }
.je_header .je_navBar .je_stick:nth-child(2) { width: 22px; }
.je_header .je_navBar .je_stick:nth-child(3) { width: 28px; }

/* 햄버거 호버 시 애니메이션 */
.je_header .je_navBar:hover .je_stick {
    width: 28px;
    background-color: #007bff;
}

/* ==================================================== */
/* 4. 모바일 슬라이드 메뉴 (Mobile Slide Menu) - 디자인 수정 */
/* ==================================================== */
.je_header .je_slideMenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff; /* 배경 흰색 */
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.je_header .je_slideMenu.on {
  right: 0;
}

/* 모바일 메뉴 내부 컨테이너 */
.je_header .je_slideMenu .je_container {
  width: 100%;
  height: 100%;
  padding: 72px 30px 50px; /* 상단 여백 확보 (닫기 버튼 고려) */
  display: flex;
  flex-direction: column;
  align-items: center; /* 가로 중앙 정렬 */
  justify-content: flex-start; /* 위에서부터 정렬 */
  overflow-y: auto;
}

/* 상단 타이틀 (선택사항 - 필요 없으면 삭제) */
/* 상단 로고 이미지로 변경 */
.je_header .je_slideMenu::before {
    content: "";
    display: block;
    position: absolute;
    top: 16px;
    left: 020px;
    width: 100%;
    height: 64px;
    background-image: url(/img/icon/ch_logo_b.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

/* 닫기 버튼 */
.je_header .je_slideMenu .je_slideCloseBtn {
  position: absolute;
  top: 25px;
  right: 20px;
  z-index: 100;
}
.je_header .je_slideMenu .je_slideCloseBtn button {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.je_header .je_slideMenu .je_slideCloseBtn button:hover {
  transform: rotate(90deg);
}
.je_header .je_slideMenu .je_slideCloseBtn button span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #222;
  position: relative;
  transform: rotate(45deg);
}
.je_header .je_slideMenu .je_slideCloseBtn button span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  transform: rotate(-90deg);
}

/* 모바일 메뉴 리스트 스타일 */
.je_slideNav {
  width: 100%;
  margin-top: 20px;
}
.je_slideNav ul.je_navWrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  text-align: center; /* 텍스트 중앙 정렬 */
}

.je_slideNav .je_navList {
    width: 100%;
    border-bottom: 1px solid #f5f5f5; /* 연한 구분선 */
}

/* 첫 번째 메뉴 위에도 선 추가 (선택사항) */
.je_slideNav .je_navList:first-child {
    border-top: 1px solid #f5f5f5;
}

.je_slideNav .je_navList > a.je_mnNav {
  display: block;
  font-size: 18px; /* 폰트 크기 조정 */
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 25px 0; /* 터치 영역 확보 */
  transition: 0.2s;
}

.je_slideNav .je_navList > a.je_mnNav:hover,
.je_slideNav .je_navList > a.je_mnNav:active {
  color: #007bff; /* 포인트 컬러 */
  background-color: #fafafa;
}

/* [중요] 모바일 서브메뉴 숨김 처리 */
.je_slideNav .je_navSub {
  display: none !important; /* 강제로 숨김 */
}

/* 모바일 메뉴 하단 상담 버튼 */
.je_slideNav .je_navList.je_nl06 {
  border-bottom: none;
  border-top: none;
  margin-top: 50px; /* 위쪽 여백 */
  display: flex;
  justify-content: center;
}
.je_slideNav .je_navList.je_nl06 > a.je_mnNav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 200px;
  height: 50px;
  background-color: #007bff;
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 0 30px;
  border-radius: 50px; /* 둥근 버튼 */
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  transition: 0.3s;
}
.je_slideNav .je_navList.je_nl06 > a.je_mnNav:hover {
    background-color: #0069d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

/* ==================================================== */
/* [반응형 미디어 쿼리 핵심] */
/* ==================================================== */

/* 1024px 이하 (태블릿/모바일) */
@media screen and (max-width: 1024px) {
    /* 헤더 높이 조정 */
    .je_header {
	height: 72px;
    }
    
    /* PC 메뉴 숨김 */
    .je_header .je_topNav {
        display: none; 
    }
    
    /* 햄버거 버튼 표시 */
    .je_header .je_navBar {
        display: flex; 
    }
    
    /* 모바일 상담 버튼 표시 */
    .je_mo_btn {
        display: none;
    }
    
    /* 로고 크기 조정 */
    .je_header .je_container h1.je_logo a img {
	height: 40px;	
    }
    
    /* 헤더 패딩 조정 */
    .je_header .je_container {
        padding: 0 15px;
    }
}

/* 480px 이하 (작은 모바일) */
@media screen and (max-width: 480px) {
    .je_mo_btn {
        padding: 0 15px;
        font-size: 12px;
        height: 32px;
    }
    .je_header .je_navBar {
        width: 30px;
        height: 30px;
        padding: 0;
    }
    .je_header .je_navBar .je_stick {
        height: 2px;
        margin: 1px 0;
    }
    .je_header .je_slideMenu .je_container {
        padding: 72px 20px;
    }
}

/* ==================================================== */
/* 5. 메인 배너 (Main Banner) */
/* ==================================================== */
.je_main {
  position: relative;
  padding-top: 100px;
}
.je_main .je_bannerView {
  width: 100%;
  height: 920px;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.je_main .je_bannerView .je_bannerGroup,
.je_main .je_bannerView .je_bannerItem {
  width: 100%;
  height: 100%;
  position: relative;
}

/* 비디오 배경 & 오버레이 */
.je_main .je_bannerView .je_videoSec {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 3s linear;
}
.je_main .je_bannerView .je_bannerItem.swiper-slide-active .je_videoSec {
  transform: scale(1);
}
.je_main .je_bannerView .je_bannerItem .je_video01 {
  background-image: url("/img/index/mnBanner/mnBanner01.jpg");
}
.je_main .je_bannerView .je_bannerItem .je_video02 {
  background-image: url("/img/index/mnBanner/mnBanner02.jpg");
}
.je_main .je_bannerView .je_bannerItem .je_video03 {
  background-image: url("/img/index/mnBanner/mnBanner03.jpg");
}
.je_main .je_bannerView .je_videoSec::after {
  z-index: 1;
  pointer-events: none;
}

/* 컨테이너 */
.je_main .je_bannerView .je_container {
  height: 100%;
  position: relative;
  z-index: 1;
}

/* 컨텐츠 영역 */
.je_banner_content {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
}

/* 상단 캡슐 네비게이션 */
.je_banner_top_nav {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  padding: 18px 60px;
  margin-bottom: 80px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
  gap: 100;
}
.je_banner_top_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  margin: 0;
  padding: 0;
  gap: 50px;
}
.je_banner_top_nav ul li {
  font-size: 1.25rem;
  color: #fff;
  position: relative;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.je_banner_top_nav ul li.point {
  color: #ffcc00;
  font-weight: 700;
}

/* 텍스트 영역 */
.je_main .je_bannerView .je_texts {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.je_main .je_bannerView .je_bannerText {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 48px;
  word-break: keep-all;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.je_main .je_bannerView .je_bannerSubText {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
}

/* 버튼 영역 */
.je_main .je_bannerView .je_banner_content {
  position: absolute;
  width: 100%;
  height: 100%;
}
.je_main .je_bannerView .je_btn_wrap {
  position: relative;
  z-index: 100;
  pointer-events: auto;
  display: inline-block;
}

/* 배너 버튼 */
.je_banner_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 49.24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 20;
  cursor: pointer;
  pointer-events: auto;
}
.je_banner_btn:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
.je_banner_btn span {
  font-size: 1.2rem;
  line-height: 1;
}

/* 하단 페이지네이션 */
.je_bottom_control {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
}
.je_bottom_control .num_current,
.je_bottom_control .num_total {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  width: 40px;
  text-align: center;
}
.je_bottom_control .mv_swiper_scrollbar {
  flex: 1;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 20px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  width: 300px;
}
.je_bottom_control .mv_swiper_scrollbar .swiper-scrollbar-drag {
  background-color: #fff;
  height: 100%;
  position: relative;
  border-radius: 0;
}
.je_bottom_control .mv_swiper_scrollbar .custom-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  width: 33.333%;
  transition: left 0.3s ease-out;
}

/* 메인 배너 반응형 */
@media screen and (max-width: 1024px) {
  .je_main .je_bannerView {
    height: 800px;
  }
  .je_main {padding-top:  72px;}
  .je_banner_content {
    top: 150px;
    max-width: 100%;
  }
  .je_banner_top_nav {
    display: inline-block !important;
    width: 96%;
    padding: 15px 10px;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 999px;
    box-sizing: border-box;
  }
  .je_main .je_bannerView .je_bannerText {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  .je_main .je_bannerView {
    height: 600px;
  }
  .je_banner_top_nav {
    padding: 16px 12px;
    margin-bottom: 40px;
    border-radius: 999px;
  }
  .je_main .je_bannerView .je_bannerText {
    line-height: 1.5;
    margin-bottom: 24px;
    font-size: 1.5rem;
    padding: 0;
  }
  .je_main .je_bannerView .je_bannerSubText {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
  }
  .je_banner_top_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 14px;
  }
  .je_banner_top_nav ul li {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
  }
  .je_banner_top_nav ul li:not(:last-child)::after {
    display: none;
  }
  .je_banner_content {
    top: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
  }
  .je_bottom_control {
    width: 300px;
    bottom: 40px;
  }
}

/* ==================================================== */
/* 6. 섹션 - 비즈니스 (Business) */
/* ==================================================== */
.ch_sect_business {
  display: flex;
  gap: 24px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.ch_sect_business li {
  position: relative;
  flex: 1;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ch_sect_business li:hover {
  transform: translateY(-5px);
}
.ch_sect_business li:nth-child(1) {
  background-image: url("/img/index/sect_business_info_img1.jpg");
}
.ch_sect_business li:nth-child(2) {
  background-image: url("/img/index/sect_business_info_img2.jpg");
}
.ch_sect_business li:nth-child(3) {
  background-image: url("/img/index/sect_business_info_img3.jpg");
}

.ch_sect_business li .hover_con {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) -35.52%,
    rgba(0, 0, 0, 0.9) 100%
  );
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.ch_sect_business li:hover .hover_con {
  opacity: 1;
}
.ch_sect_business li .hover_con h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-align: center;
  line-height: 1.3;
  width: 100%;
  word-break: keep-all;
}
.ch_sect_business li .hover_con a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  height: 45px;
  padding: 0 30px;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.ch_sect_business li .hover_con a:hover {
  background-color: #fff;
  color: #000;
}

/* 비즈니스 반응형 */
@media screen and (max-width: 1024px) {
  .ch_sect_business {
    flex-direction: column;
    gap: 20px;
  }
  .ch_sect_business li {
    width: 100%;
    height: 360px;
    flex: none;
  }
}
@media screen and (max-width: 768px) {
  .je_portfolio .je_secHdr {
    margin-bottom: 24px;
  }
  .je_portfolio .je_secHdr h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .je_portfolio .je_secHdr h6 {
    font-size: 15px;
    padding: 0 10px;
  }
  .ch_sect_business li {
    height: 280px;
  }
  .ch_sect_business li .hover_con {
    padding: 20px;
  }
  .ch_sect_business li .hover_con h4 {
    font-size: 1.6rem;
  }
  .ch_sect_business li .hover_con a {
    height: 40px;
    padding: 0 20px;
    font-size: 0.9rem;
  }
}

/* ==================================================== */
/* 7. 섹션 - 가치 (Value) */
/* ==================================================== */
.je_section.je_subBanner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 760px;
  padding: 160px 0;
  background: url("/img/index/sect_value_bg.jpg") no-repeat center center /
      cover,
    #ffffff;
  border: 1px solid #eeeeee;
  position: relative;
}
.je_main .je_subBanner .je_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 92%;
  max-width: 1480px;
  z-index: 1;
}
.je_main .je_subBanner .je_secHdr {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
  padding-top: 0;
}
.je_main .je_subBanner .je_secHdr h3 {
  margin-bottom: 20px;
  color: #222;
}
.je_main .je_subBanner .je_secHdr h6 {
  color: #666;
  margin-bottom: 0;
  font-weight: 400;
}

.ch_sect_value {
  width: 100%;
}
.ch_sect_value_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.ch_sect_value_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  height: 400px;
  padding: 40px 30px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  overflow: hidden;
}
.ch_sect_value_box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--main-clr);
}
.ch_value_icon {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.ch_value_icon img {
  display: block;
  width: 60px;
  height: auto;
}
.ch_sect_value_tit_wrap {
  width: 100%;
  word-break: keep-all;
  text-align: left;
}
.ch_sect_value .ch_box_sub_tit {
  font-size: 16px;
  font-weight: 600;
  color: #999;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ch_sect_value .ch_box_tit {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  margin-bottom: 0;
}

/* 가치 반응형 */
@media screen and (max-width: 1480px) {
  .je_section.je_subBanner {
    padding: 120px 0;
    min-height: auto;
  }
  .ch_sect_value_box {
    height: 360px;
    padding: 30px 24px;
  }
}
@media screen and (max-width: 1024px) {
  .ch_sect_value_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ch_sect_value_box {
    max-width: none;
    height: 320px;
  }
}
@media screen and (max-width: 640px) {
  .je_section.je_subBanner {
    padding: 80px 0;
  }
  .ch_sect_value_wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .ch_sect_value_box {
    height: auto;
    min-height: 250px;
  }
  .je_main .je_subBanner .je_secHdr h3 {
    font-size: 28px;
  }
}

/* ==================================================== */
/* 8. 섹션 - 에이전시 소개 (Agency Intro) */
/* ==================================================== */
.je_section.je_agency_intro {
  background: url("/img/index/bg_agency_intro.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 160px 0;
  text-align: center;
}
.je_section.je_agency_intro .je_container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.je_section.je_agency_intro .je_secHdr {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 40px;
  width: 100%;
  max-width: 1052px;
  height: auto;
  margin: 0 auto;
}
.je_section.je_agency_intro .je_secHdr > * {
  margin-bottom: 0 !important;
}
.je_section.je_agency_intro .je_sub_txt {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #d8ad3d;
  font-family: "pretendard", sans-serif;
}
.je_section.je_agency_intro h3 {
  font-weight: 700;
  color: #222;
  letter-spacing: -0.02em;
}
.je_section.je_agency_intro .je_desc_wrap p {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
  word-break: keep-all;
}
.je_section.je_agency_intro .je_desc_wrap p:last-child {
  margin-bottom: 0;
}
.je_section.je_agency_intro .je_btn_inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 50px;
  background-color: #007bff;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
.je_section.je_agency_intro .je_btn_inquiry:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* 소개 반응형 */
@media screen and (max-width: 768px) {
  .je_section.je_agency_intro {
    padding: 80px 0;
  }
  .je_section.je_agency_intro .je_secHdr {
    gap: 30px;
  }
  .je_section.je_agency_intro h3 {
    font-size: 1.8rem;
  }
  .je_section.je_agency_intro .je_desc_wrap p {
    font-size: 14px;
    padding: 0 20px;
  }
}

/* ==================================================== */
/* 9. 섹션 - 픽업 서비스 (Pickup) */
/* ==================================================== */
.je_section.je_pickup_sec {
  width: 100%;
  height: 653px;
  padding: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
    url("/img/index/bg_pickup_service.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.je_section.je_pickup_sec .je_container {
  width: 100%;
  max-width: 1400px;
  z-index: 2;
}
.je_pickup_txt_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.je_section.je_pickup_sec h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.je_section.je_pickup_sec .je_desc p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  word-break: keep-all;
}
.je_section.je_pickup_sec .je_desc p.mt_txt {
  margin-top: 15px;
}

/* 픽업 반응형 */
@media screen and (max-width: 1280px) {
  .je_section.je_pickup_sec {
    height: 500px;
  }
  .je_section.je_pickup_sec h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .je_section.je_pickup_sec {
    height: 400px;
  }
  .je_section.je_pickup_sec h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding: 0 20px;
    word-break: keep-all;
    line-height: 1.5;
  }
  .je_section.je_pickup_sec .je_desc p {
    font-size: 14px;
    padding: 0 20px;
  }
}

/* ==================================================== */
/* 10. 섹션 - 고객센터 (Customer) */
/* ==================================================== */
.je_section.je_customer_sec {
  background-color: #f7f8f9;
  padding: 120px 0;
  position: relative;
}
.je_customer_sec .je_secHdr {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.je_customer_sec .je_deco_bar {
  display: block;
  width: 40px;
  height: 4px;
  background-color: #0056b3;
  margin-bottom: 2.5%;
  border-radius: 2px;
}
.je_customer_sec h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
}
.je_customer_sec h6 {
  font-size: 1.125rem;
  color: #666;
  font-weight: 400;
}
.je_cs_wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.je_cs_box {
  flex: 1;
  background: #fff;
  border-radius: 24px;
  padding: 50px 30px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
}
.je_cs_box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.cs_icon_circle {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs_icon_circle img {
  width: 40px;
  height: auto;
}
.icon_phone {
  background-color: #ffebf7;
}
.icon_kakao {
  background-color: #ffca42;
}
.icon_tele {
  background-color: #cbf0ff;
}
.cs_txt_group {
  margin-bottom: 40px;
}
.cs_txt_group h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.cs_txt_group .cs_desc {
  font-size: 0.9375rem;
  color: #888;
  margin-bottom: 20px;
}
.cs_txt_group .cs_val {
  font-size: 1.75rem;
  font-weight: 800;
  color: #222;
}
.cs_link_wrap {
  border-top: 1px solid #f0f0f0;
  padding-top: 25px;
}
.cs_link_wrap a {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 0.3s;
}
.cs_link_wrap a:hover {
  color: #0056b3;
}
.cs_link_wrap .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.cs_link_wrap a:hover .arrow {
  transform: translateX(5px);
}

/* 고객센터 반응형 */
@media screen and (max-width: 1024px) {
  .je_cs_wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
  .je_cs_box {
    min-width: 280px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .je_section.je_customer_sec {
    padding: 80px 0;
  }
  .je_customer_sec h3 {
    font-size: 1.8rem;
  }
  .je_customer_sec h6 {
    font-size: 1rem;
    padding: 0 20px;
    word-break: keep-all;
  }
  .je_cs_wrap {
    flex-direction: column;
  }
  .je_cs_box {
    width: 100%;
    margin-bottom: 0;
  }
}

/* ==================================================== */
/* 11. 푸터 (Footer) */
/* ==================================================== */
.je_footer {
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #eee;
}
.je_footer .je_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  text-align: center;
}
.je_btn_inquiry_ftr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 60px;
  background-color: #007bff;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}
.je_btn_inquiry_ftr:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  color: #fff;
}
.je_btn_inquiry_ftr .arrow {
  font-size: 1.2rem;
  font-weight: 400;
}
.je_ftr_copy {
  font-size: 0.9375rem;
  color: #888;
  font-weight: 400;
  letter-spacing: 0;
}

/* 푸터 반응형 */
@media screen and (max-width: 768px) {
  .je_footer {
    height: auto;
    padding: 40px 0;
  }
  .je_btn_inquiry_ftr {
    min-width: 240px;
    height: 50px;
    font-size: 1rem;
  }
  .je_ftr_copy {
    font-size: 0.8125rem;
  }
}

/* ==================================================== */
/* 12. 팝업 & 기타 유틸리티 */
/* ==================================================== */
.add_pop_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
}
.add_pop_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94%;
  max-width: 800px;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0.9);
  transition: transform 0.3s ease;
}
.add_pop_wrap.active .add_pop_inner {
  transform: translate(-50%, -50%) scale(1);
}
.add_pop_tit {
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  background: var(--main-clr);
}
.add_pop_close {
  width: 20px;
  height: 60px;
  position: relative;
}
.add_pop_close span {
  position: absolute;
  top: 29px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  z-index: 1;
  transition: transform 0.3s ease;
}
.add_pop_close span:nth-child(1) {
  transform: rotate(45deg);
}
.add_pop_close span:nth-child(2) {
  transform: rotate(-45deg);
}
.add_pop_close:hover span {
  transform: rotate(0);
}
.add_pop_con {
  background: #fff;
  padding: 22px 25px;
  overflow-y: scroll;
  height: calc(100% - 60px);
}
.add_pop_con h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.add_pop_con p {
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .add_pop_con p {
    font-size: 12px;
  }
}

/* 줄바꿈 유틸리티 */
.br_1080o {
  display: none;
}
@media (max-width: 1080px) {
  .br_1080o {
    display: block;
  }
}
.br_768o {
  display: none;
}
@media (max-width: 768px) {
  .br_768o {
    display: block;
  }
}
.br_1080yes,
.br_480no,
.pc_br {
  display: block;
}
@media screen and (max-width: 768px) {
  .br_1080yes,
  .br_480no,
  .pc_br {
    display: none;
  }
}

/* ======================================================== */
/* [최종 해결] Swiper 슬라이드 겹침 방지 및 버튼 활성화 (Fix) */
/* ======================================================== */

/* 1. 모든 슬라이드 초기화: 클릭 금지 & 뒤로 보내기 */
.je_bannerView .swiper-slide {
  pointer-events: none !important; /* 마우스 무시 */
  z-index: 0 !important; /* 맨 뒤로 */
  opacity: 0 !important; /* 확실하게 숨김 (Swiper transition 유지됨) */
}

/* 2. 현재 활성화된 슬라이드만: 클릭 허용 & 맨 앞으로 가져오기 */
.je_bannerView .swiper-slide.swiper-slide-active {
  pointer-events: auto !important; /* 마우스 인식 */
  z-index: 10 !important; /* 맨 앞으로 */
  opacity: 1 !important; /* 보이게 */
}

/* 3. 활성화된 슬라이드 안에서도 '버튼'만 콕 집어서 최상위로 올림 */
.je_bannerView .swiper-slide.swiper-slide-active .je_banner_btn {
  pointer-events: auto !important; /* 클릭 허용 */
  cursor: pointer !important; /* 손가락 모양 */
  position: relative !important;
  z-index: 100 !important; /* 버튼을 제일 위로 */
}

/* 4. 활성화된 슬라이드의 배경(빈 공간)은 드래그를 위해 클릭 통과 */
.je_bannerView .swiper-slide.swiper-slide-active .je_banner_content {
  pointer-events: none !important;
}

/* 5. 버튼을 감싸는 박스도 인식되게 함 */
.je_bannerView .swiper-slide.swiper-slide-active .je_btn_wrap {
  pointer-events: auto !important;
  position: relative !important;
 z-index: 50 !important;
 }
 
 
 #k_board_view_00 {max-width: 1024px;margin: 0 auto;}
 
 #bo_v_con img {width: 100% !important;   /* 가로 사이즈를 무조건 컨테이너의 100%로 설정 */
    height: auto !important;  /* 높이는 비율에 맞춰 자동 조절 */
    max-width: 100%;}
#bo_v_img img{width: 100% !important;   /* 가로 사이즈를 무조건 컨테이너의 100%로 설정 */
    height: auto !important;  /* 높이는 비율에 맞춰 자동 조절 */
    max-width: 100%;}