.wrap { position: relative; width: 1600px; margin: 0 auto; }

@keyframes floatLeftRight {
	0%   { transform: translateX(0); }
	50%  { transform: translateX(10px); }
	100% { transform: translateX(0); }
}

/* head */
.head { position: fixed; top: 0px; left: 0px; z-index: 99; display: flex; flex-wrap: wrap; align-items: center; width: 100%; height: 100px; transition: 0.3s; }
.head:hover { background: #fff; }
.head.scrolled { position: fixed; top: 0; left: 0; z-index: 99; background: #fff; box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1); }

.head .wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }

.head .logo { position: absolute; left: 0px; }
.head .logo .logo_bl { display: none;  }
.head .logo .logo_wh { display: inline-block;  }

.head:hover .logo .logo_bl, .head.scrolled .logo .logo_bl { display: inline-block;  }
.head:hover .logo .logo_wh, .head.scrolled .logo .logo_wh { display: none;  }

.menu_inr { display: flex; flex-wrap: wrap; }
.menu_inr li { padding: 0 40px; }
.menu_inr li > a { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; height: 100px; color: #fff; font-family: 'Presentation'; font-size: 24px; font-weight: 600; letter-spacing: 0.03em; transition: 0.3s; }
.head:hover .menu_inr li > a, .head.scrolled .menu_inr li > a { color: #222; }
.head:hover .menu_inr li:hover > a { color: #123962; }

.smenu { overflow: hidden; display: block; position: fixed; top: 100px; left: 0; z-index: 99; width: 100%; height: 0px; padding: 0px 0; background: #fff; border-top: 0px solid #ddd; border-radius: 0 0 0 0px; transition: 0.3s; }
.menu_inr li:hover > .smenu { display: block; height: auto; padding: 50px 0; border-top: 1px solid #ddd; box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);  }

.menu_inr li:hover > .smenu:after, .menu_inr li:hover > .smenu:before { content:''; position: absolute; }
.menu_inr li:hover > .smenu:after { top: 30px; left: 0%; width: 103px; height: 117px; background: url('../image/main/main_con04_deco01.png') center center no-repeat; }
.menu_inr li:hover > .smenu:before { bottom: 10px; right: 0%; width: 146px; height: 178px; background: url('../image/main/main_con04_deco02.png') center center no-repeat; }

.smenu > .wrap { align-content: center; justify-content: flex-start; align-items: flex-start; display: none; }
.menu_inr li:hover > .smenu > .wrap { display: flex; z-index: 9; }

.smenu_left { display: flex; flex-wrap: wrap; align-content: flex-start; width: 25%; }
.smenu_left h3 { margin-bottom: 15px; color: #123962; font-size: 35px; font-weight: 900; letter-spacing: -0.025em; }
.smenu_left p { color: #aaa; font-size: 1em; word-break: keep-all; line-height: 1.5; letter-spacing: -0.03em; }

.smenu_right { width: 75%; padding-left: 80px; }
.smenu_right dl { display: flex; flex-wrap: wrap; gap: 10px 0; }
.smenu_right dl dd { display: flex; flex-wrap: wrap; align-items: center; width: 32%; height: 60px; margin-left: 2%; }
.smenu_right dl dd:nth-child(3n+1) { margin-left: 0%; }
.smenu_right dl dd a { position: relative; display: flex; flex-wrap: wrap; align-items: center; width: 100%; height: 100%; padding: 0 20px; border: 1px solid #ddd; color: #22282d; font-size: 1em; font-weight: 600; letter-spacing: -0.03em; transition: 0.3s; }
.smenu_right dl dd a:hover, .smenu_right dl dd a:hover:after { color: #fff; }
.smenu_right dl dd a:hover { background: #123962; border: 1px solid #123962; }
.smenu_right dl dd a:after { content:'\e93f'; display: flex; flex-wrap: wrap; align-items: center; position: absolute; top: 0px; right: 20px; height: 100%; font-family: 'xeicon'; color: #aaa; transition: 0.3s; }

.menu-toggler, .mobile_menu { display: none; }

nav.mobile_menu { position: fixed; top: -100vh; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; width: 100%; height: 100vh; z-index: 9001; background: rgba(0, 0, 0, 0.85); border-bottom-right-radius: 100%; border-bottom-left-radius: 100%; transition: all 650ms cubic-bezier(1,0,0,1); }
nav.mobile_menu.open { top: 0; border-radius: initial; }

.menu-toggler { position: relative; width: 30px; height: 21px; display: flex; flex-direction: column; justify-content: space-between; z-index: 9999; transition: all 650ms ease-out; cursor: pointer; }
.menu-toggler.open { /* transform: rotate(-45deg); */ }
.bar { background-color: #fff; width: 100%; height: 3px; border-radius: 0.8rem; }
.head:hover .bar, .head.scrolled .bar { background-color: #123962; }
.menu-toggler.on .bar { background-color: #222; }
.bar.half { width: 100%; }
.bar.top { transform-origin: right; transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57); }
.bar.bottom { align-self: flex-end; transform-origin: left; transition: transform 650ms cubic-bezier(0.54, -0.81, 0.57, 0.57); }
.open .bar { background-color: #fff; }
.open .bar.top { /* transform: rotate(-450deg) translateX(0.45rem); */ }
.open .bar.bottom { /* transform: rotate(-450deg) translateX(-0.45rem); */ }

.mobile_menu .mobile-close-btn { position: absolute; top: 0px; right: 0px; z-index: 2000; width: 100px; height: 100px; background: #123962; border: none; color: #fff; font-size: 28px; cursor: pointer; }
.mobile_menu .mobile-close-btn i { font-size: 28px; }

.nav-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; width: 96%; max-width: 1600px; height: 100%; margin: 0 auto; }
.nav-inner .sns_list { position: absolute; right: 110px; bottom: 20px; }

.nav-list { display: flex; flex-wrap: wrap; width: 100%; height: 100%; }
.nav-list > li { flex: 1; display: flex; flex-wrap: wrap; align-content: center; text-align: left; position: relative; padding: 0 30px; border-left: 1px solid rgba(255, 255, 255, 0.1); }
.nav-list > li:first-child { border-left: none; }
.nav-list > li:last-child { margin-bottom: 0px; }
.nav-list > li > a { position: relative; display: flex; flex-wrap: wrap; align-items: flex-end; width: auto; height: 80px; color: #fff; font-size: 26px; font-weight: 800; letter-spacing: 0.03em; word-break: keep-all; }
.nav-link { padding: 1rem; font-size: 2rem; }
.nav-link:hover, .nav-link:focus { color: #fff; }

.nav-inner ul ul { /* display: none;*/ display: block; width: 100%; height: 360px; margin-top: 30px; }
.nav-inner ul ul li { position: relative; margin-bottom: 15px; }
.nav-inner ul ul li:last-child { margin-bottom: 0px; }
.nav-inner ul ul li a { position: relative; display: inline-block; padding: 0px; color: rgba(255, 255, 255, 0.5); font-size: 18px; font-weight: 500; line-height: 1.8; letter-spacing: -0.03em; text-decoration: none; transition: all 0.3s; }
.nav-inner ul ul li a:hover { margin-left: 10px; color: rgba(255, 255, 255, 1); }
.nav-inner ul ul li a:before { content:''; position: absolute; left: 0px; bottom: 0px; width: 0px; height: 1px; background: #fff; transition: all 0.3s; }
.nav-inner ul ul li a:hover:before { width: 100%; }

.head_right { position: absolute; top: 30px; right: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0 10px; }
.head_right .sns_icon { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; background: rgba(255, 255, 255, 0.2); border-radius: 500px; }
.head:hover .head_right .sns_icon, .head.scrolled .head_right .sns_icon { background: #123962; }
.head_right .sns_icon03 { margin-right: 10px; }

/* footer */
.footer { position: relative; padding: 100px 0; background: #131313; font-size: 0.9em; }
.footer .wrap { position: relative; display: flex; flex-wrap: wrap; }
.footer p, .footer a { color: rgba(255, 255, 255, 0.3); }

.ft_logo { display: flex; flex-wrap: wrap; gap: 20px; width: 100%; margin-bottom: 30px; }
.ft_infobox { position: relative; width: 100%; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }
.ft_menu { position: absolute; right: 0; bottom: 0px; }
.ft_menu ul { display: flex; flex-wrap: wrap; }
.ft_menu ul li { position: relative; padding: 0 20px; }
.ft_menu ul li:first-child { padding-left: 0px; }
.ft_menu ul li:last-child { padding-right: 0px; }
.ft_menu ul li:after { content:''; position: absolute; top: 15%; right: 0px; width: 1px; height: 70%; background: rgba(255, 255, 255, 0.2); }
.ft_menu ul li:last-child:after { display: none; }
.ft_menu ul li a { color: rgba(255, 255, 255, 0.45); transition: 0.3s; }
.ft_menu ul li a:hover { color: rgba(255, 255, 255, 0.6); text-decoration: underline; }

.ft_infobox span { position: relative; padding: 0 20px; }
.ft_infobox span.pl00 { padding-left: 0px; }
.ft_infobox span:after { content:''; position: absolute; top: 15%; right: 0px; width: 1px; height: 70%; background: rgba(255, 255, 255, 0.4); }
.ft_infobox span.noline:after { display: none; }

.ft_copy { position: relative; width: 100%; margin-top: 30px; padding-top: 30px; border-top:1px solid rgba(255, 255, 255, 0.2); }

/* main */
.swiper { width: 100%; height: 100%; }
.swiper-slide {  }
.swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }

.main_vis { position: relative; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 100%; height: 910px; padding-top: 0px; background: #222; background-size: cover; }

.swiper-slide .main_vis_bg { position: absolute; left: 0%; top: 0%; width: 100%; height: 100%; transform: scale(1.1); transition: all 4s; }
.swiper-slide-active .main_vis_bg { transform:scale(1); }

.main_vis_bg01 { background: #222 url('../image/main/main_vis01.jpg') center top no-repeat; background-size: cover; }
.main_vis_bg02 { background: #222 url('../image/main/main_vis01.jpg') center top no-repeat; background-size: cover; }
.main_vis_bg03 { background: #222 url('../image/main/main_vis01.jpg') center top no-repeat; background-size: cover; }

/* ===========================
   메인 전체 컨테이너
=========================== */
.main_arrow { position: relative; z-index: 98; display: flex; flex-wrap: nowrap; justify-content: flex-start; align-items: center; width: 100%; }
.main_vis .swiper-pagingbox { position: relative; z-index: 1000; display: flex; align-items: center; gap: 15px; }

/* ===========================
   숫자 (현재 / 전체)
=========================== */
.page_num { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; color: rgba(255, 255, 255, 0.5); font-size: 0.9em; font-family: 'Presentation'; }
.page-current, .page-total { text-align: center; width: 24px; height: 24px; line-height: 24px; font-size: 1em; font-weight: 700; }
.page-current { color: rgba(255, 255, 255, 1); }

/* ===========================
   Progressbar (fill div 방식)
=========================== */
.swiper-progress-bar { overflow: hidden; position: relative; width: 130px; height: 2px; background: rgba(255,255,255,0.3); border-radius: 2px; }

/* 채워지는 바 */
.swiper-progress-bar .progress-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: #fff; transition: width 5s linear; }

/* ===========================
   Prev / Next 버튼
=========================== */
.main_vis .swiper-button-prev, .main_vis .swiper-button-next { position: relative; top: auto; left: auto; right: auto; width: auto; height: auto; margin-top: 0; color: rgba(255,255,255,0.9); }

.main_vis .swiper-button-prev:after, .main_vis .swiper-button-next:after { font-family: 'xeicon' !important; font-size: 24px; }
.main_vis .swiper-button-prev:after { content: "\e93c"; /* < */ }
.main_vis .swiper-button-next:after { content: "\e93f"; /* > */ }

/* ===========================
   Pause / Play 버튼
=========================== */
.swiper-button-pause { position: relative; text-align: center; width: 24px; height: 24px; color: rgba(255,255,255,0.9); line-height: 24px; cursor: pointer; }
.swiper-button-pause:after { font-family: 'xeicon' !important; font-size: 22px; content: "\ea3b"; /* ❚❚ 일시정지 */ }
.swiper-button-pause.playing:after { content: "\ea3e"; /* ▶ 재생 */ }

/* ===========================
   Swiper 기본 Fraction 숨김
=========================== */
.main_vis .swiper-pagination { display: none !important; }

.main_text { position: absolute; top: 0px; left: 0px; z-index: 8; display: flex; flex-direction: column; flex-wrap: wrap; justify-content: center; text-align: left; width: 100%; height: 100%; padding-top: 100px; color: #fff; }
.main_text:after { content:''; position: absolute; top: 0px; left: 0px; width: 100%; height: 50%; background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
.main_text h2 { position: relative; z-index: 9; margin: 0px 0 50px; color: #fff; font-family: 'Presentation'; font-size: 93px; font-weight: 800; }
.main_text p { position: relative; z-index: 9; margin-bottom: 100px; color: rgba(255, 255, 255, 0.7); font-size: 24px; line-height: 1.7; }

.main_quick { position: relative; width: 100%; z-index: 9000; margin-top: 80px; }
.main_quick_menu { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 1660px; max-width: 96%; margin: 0 auto; padding: 10px 30px; background: #fff; border-radius: 20px; }
.main_quick_menu li { position: relative; display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 12.5%; height: 80px; transition: 0.3s; }

.main_quick_menu li:after { content:''; position: absolute; top: 15%; left: 0px; width: 1px; height: 70%; background: #d9e1eb; }
.main_quick_menu li:first-child:after { display: none; }

.main_quick_menu li:hover { background: #123962; border-radius: 10px; }
.main_quick_menu li:hover:after { display: none; }

.main_quick_menu li a { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0 5px; width: 100%; height: 100%; padding: 0 10px; }
.main_quick_menu li a:hover { color: #123962; }
.main_quick_menu li a .icon { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 50px; height: 50px; transition: all 0.3s; }
.main_quick_menu li a .icon01 { background: url('../image/main/main_quick_icon01.png') center top no-repeat; }
.main_quick_menu li a .icon02 { background: url('../image/main/main_quick_icon02.png') center top no-repeat; }
.main_quick_menu li a .icon03 { background: url('../image/main/main_quick_icon03.png') center top no-repeat; }
.main_quick_menu li a .icon04 { background: url('../image/main/main_quick_icon04.png') center top no-repeat; }
.main_quick_menu li a .icon05 { background: url('../image/main/main_quick_icon05.png') center top no-repeat; }
.main_quick_menu li a .icon06 { background: url('../image/main/main_quick_icon06.png') center top no-repeat; }
.main_quick_menu li a .icon07 { background: url('../image/main/main_quick_icon07.png') center top no-repeat; }
.main_quick_menu li a .icon08 { background: url('../image/main/main_quick_icon08.png') center top no-repeat; }

.main_quick_menu li.active { background: #123962; border-radius: 10px; }
.main_quick_menu li.active a .icon01, .main_quick_menu li a:hover .icon01 { background: url('../image/main/main_quick_icon01.png') center bottom no-repeat; }
.main_quick_menu li.active a .icon02, .main_quick_menu li a:hover .icon02 { background: url('../image/main/main_quick_icon02.png') center bottom no-repeat; }
.main_quick_menu li.active a .icon03, .main_quick_menu li a:hover .icon03 { background: url('../image/main/main_quick_icon03.png') center bottom no-repeat; }
.main_quick_menu li.active a .icon04, .main_quick_menu li a:hover .icon04 { background: url('../image/main/main_quick_icon04.png') center bottom no-repeat; }
.main_quick_menu li.active a .icon05, .main_quick_menu li a:hover .icon05 { background: url('../image/main/main_quick_icon05.png') center bottom no-repeat; }
.main_quick_menu li.active a .icon06, .main_quick_menu li a:hover .icon06 { background: url('../image/main/main_quick_icon06.png') center bottom no-repeat; }
.main_quick_menu li.active a .icon07, .main_quick_menu li a:hover .icon07 { background: url('../image/main/main_quick_icon07.png') center bottom no-repeat; }
.main_quick_menu li.active a .icon08, .main_quick_menu li a:hover .icon08 { background: url('../image/main/main_quick_icon08.png') center bottom no-repeat; }

.main_quick_menu li a h4 { width: calc(100% - 55px); color: #627c9f; font-family: 'Presentation'; font-size: 1.05em; font-weight: 600; transition: all 0.3s; }
.main_quick_menu li a h4 span { display: block; font-size: 14px; }
.main_quick_menu li.active a h4, .main_quick_menu li a:hover h4 { color: #fff; }

.main_con { padding: 100px 0; }

.main_con_title { position: relative; margin-bottom: 50px; }
.main_con_title h2 { color: #0e2f57; font-family: 'Presentation'; font-size: 48px; font-weight: 400; }
.main_con_title h2 .en_title { display: block; margin-bottom: 30px; color: #d9e1eb; font-family: 'Pretendard'; font-size: 16px; line-height: 1; text-transform: uppercase; }
.main_con_title h2 strong { font-weight: 800; }

.main_btn { position: relative; display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.main_btn02 { position: absolute; right: 0px; bottom: 0px; }
.main_btn span { display: inline-flex; flex-wrap: wrap; align-items: center; width: auto; height: 60px; padding: 0 50px 0 20px; border-radius: 500px; color: #123962; font-weight: 600; }
.main_btn01 span { background: #fff; }
.main_btn02 span { background: #f5f7fa; }
.main_btn i { position: relative; margin-left: -30px; display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 60px; height: 60px; background: #0e2f57; border-radius: 500px; color: #fff; font-size: 24px; }
.main_btn:hover i { animation: floatLeftRight 1s ease-in-out infinite; }

.main_con01 { text-align: center; background: url('../image/main/main_con01_bg01.jpg') center center no-repeat; background-size: cover; color: #fff; }
.main_con01 h2 .en_title { display: block; margin-bottom: 30px; color: #1e88e5; font-family: "Archivo"; font-size: 18px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.main_con01 h2 { margin-bottom: 50px; font-size: 52px; font-weight: 300; letter-spacing: -0.03em; word-break: keep-all; }
.main_con01 h2 strong { font-weight: 800; }
.main_con01 p { margin-bottom: 50px; color: #d9e1eb; font-size: 1.2em; line-height: 1.6; }
.main_con01 p strong { font-weight: 800; }
.main_con01 p span.point { color: #1e88e5; }

.main_con03 { position: relative; text-align: center; background: #edf1f6; }
.main_con03 h2 { margin-bottom: 40px; color: #0e2f57; font-family: 'Presentation'; font-size: 42px; font-weight: 800; line-height: 1; }
.main_con03 p { font-size: 24px; word-break: keep-all; }

.main_con04 { display: flex; flex-wrap: wrap; justify-content: flex-end; padding: 0; }
.main_con04_inr { width: 50%; }
.main_con04 h2 { margin-bottom: 30px; font-family: 'Presentation'; font-size: 52px; font-weight: 300; }
.main_con04 h2 strong { font-weight: 700; }
.main_con04 p { margin-bottom: 80px; color: #333; font-size: 20px; }

.left-section { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
.left-section-inr { width: 100%; max-width: 800px; padding-right: 80px; }

.branch-tabs { display: flex; gap: 15px; margin-bottom: 50px; }
.branch-tab { width: 160px; height: 50px; background: #d9e1eb; border: none; border-radius: 50px; font-size: 20px; font-weight: 500; color: #0e2f57; cursor: pointer; transition: all 0.3s ease; }
.branch-tab:hover {	 background: #d0dcea; }
.branch-tab.active { background: #123962; color: white; }

.info-list { display: flex; flex-direction: column; gap: 25px; }
.info-item { display: flex; align-items: center; gap: 20px; }
.info-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 45px; height: 45px; background: #2d5c8c; border-radius: 50%; color: #fff; font-size: 20px; }
.info-icon img { max-width: 100%; }

.info-content { flex: 1; display: flex; flex-wrap: wrap; align-items: center; }
.info-label { width: 150px; color: #333; font-size: 20px; font-weight: 700; }
.info-text { width: calc(100% - 150px); color: #555; font-size: 20px; line-height: 1.6; }

.right-section { position: relative; overflow: hidden; min-height: 750px; }

.map-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.map-container.active { opacity: 1; visibility: visible; }

/* 카카오맵 약도 스타일 조정 */
.root_daum_roughmap { width: 100% !important; height: 100% !important; }
.root_daum_roughmap_landing { width: 100% !important; height: 100% !important; }
.main_con04 .map_border { display: none !important; }

/* sub */
.sub_vis { overflow: hidden; position: relative; display: flex; flex-wrap: wrap; align-items: center; width: 100%; height: 500px; background: #000; background-size: cover; color: #fff; }
.sub_vis .bg { position: relative; width: 100%; height: 100%; background: #010005; animation: zoomOut 5s ease-out forwards;}

.sub_vis .bg01 { background: #222 url('../image/sub/sub_vis_bg01.jpg') center top no-repeat; background-size: cover; }
.sub_vis .bg02 { background: #222 url('../image/sub/sub_vis_bg02.jpg') center top no-repeat; background-size: cover; }
.sub_vis .bg03 { background: #222 url('../image/sub/sub_vis_bg03.jpg') center top no-repeat; background-size: cover; }
.sub_vis .bg04 { background: #222 url('../image/sub/sub_vis_bg04.jpg') center top no-repeat; background-size: cover; }
.sub_vis .bg05 { background: #222 url('../image/sub/sub_vis_bg05.jpg') center top no-repeat; background-size: cover; }

.sub_vis .sub_textbox { position: absolute; left: 0; top: 0; width: 100%; height: 100%; padding-top: 50px; }
.sub_vis .sub_textbox .wrap { position: relative; display: flex; flex-wrap: wrap; align-content: center; justify-content: center; align-items: center; text-align: center; height: 100%; }
.sub_vis .sub_textbox h2 { font-size: 55px; line-height: 1.3; font-weight: 800; }
.sub_vis .sub_textbox p { display: block; width: 100%; margin-top: 30px; color: rgba(255, 255, 255, 0.7); font-size: 24px; }

@keyframes zoomOut {
	0% { transform: scale(1.2); }
	100% { transform: scale(1); /* 원래 크기로 */ }
}

.sidebar { position: absolute; left: 0; top: -60px; z-index: 9; text-align: center; width: 100%; }
.sidebar .main_quick_menu { box-shadow: 0 0.4rem 1.6rem rgba(11, 44, 97, 0.23); }

.sideber_inr { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; width: auto; margin: 10px auto 0; padding: 20px 30px; background: #fff; border-radius: 20px; box-shadow: 0 0.4rem 1.6rem rgba(11, 44, 97, 0.23); }
.sideber_inr li { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; width: 32%; height: 60px; border-left: 1px solid #d9e1eb; }
.sideber_inr.wh02 li { min-width: 250px; }
.sideber_inr li:first-child { border-left: none; }
.sideber_inr li a { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0 5px; width: 100%; min-width: 200px; padding: 0 10px; color: #627c9f; font-family: 'Presentation'; font-size: 22px; font-weight: 600; transition: all 0.3s; }
.sideber_inr li.active a, .sideber_inr li a:hover { color: #123962; }

.sub_contents { position: relative; padding: 150px 0; }
.sub_contents img { max-width: 100%; }

.sub_title { position: relative; text-align: center; margin-bottom: 80px; }
.sub_title h2 { margin-bottom: 30px; font-size: 52px; font-weight: 800; line-height: 1; }
.sub_title h2 span { position: relative; z-index: 1; }
.sub_title p { position: relative; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0 5px; color: #666; line-height:1; }
.sub_title p span { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }

#sub_page h3 { position: relative; margin-bottom: 50px; padding-left: 50px; font-family: 'Presentation'; font-size: 38px; font-weight: 800; letter-spacing: 0.03em; line-height: 1; }
#sub_page h3:after { content:''; position: absolute; top: 2px; left: 0px; width: 35px; height: 35px; background: linear-gradient(320deg, #123962, #1e88e5); border-radius: 4px; }
#sub_page h3:before { content:''; position: absolute; top: 9px; left: 7px; z-index: 9; width: 21px; height: 21px; background: #fff; border-radius: 2px; }

.subpage_inr { padding-bottom: 150px; }
.subpage_inr_last, .subpage_inr:last-child { padding-bottom: 0px; }

.overview { display: flex; flex-wrap: wrap; }
.overview_imgbox { width: 600px; }
.overview_textbox { width: calc(100% - 600px); padding-left: 80px; }
.overview_title { margin-bottom: 50px; color: #123962; font-family: 'BonmyeongjoSourceHanSerif'; font-size: 36px; font-weight: 800; }
.overview_text { font-size: 1.15em; font-family: 'Presentation'; line-height: 1.7; }
.overview_text p { text-align: justify; margin-bottom: 50px; word-break: keep-all; }
.overview_text .sign { display: block; text-align: right; font-family: 'BonmyeongjoSourceHanSerif'; }

.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; width: 100%; margin-bottom: 50px; }
.tabs li { overflow: hidden; position: relative; width: 250px; }
.tabs li a { display: flex; flex-wrap: wrap; align-content: center; justify-content: center; text-align: center; height: 60px; padding: 0 20px; background: #d9e1eb; border-radius: 3px; color: #123962; font-size: 1.1em; font-weight: 500; letter-spacing: -0.03em; }
.tabs li a:hover, .tabs li.active a  { background: #123962; color: #fff; }

/*Tab Conent CSS*/
.tab_container { overflow: hidden; clear: both; width: 100%; }
.tab_content { }

.location .info-list { margin-top: 50px; }

.members_tab { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 50px;}
.members_tab li a { display: flex; flex-wrap: wrap; align-content: center; justify-content: center; text-align: center; width: 250px; height: 60px; padding: 0 20px; background: #d9e1eb; border-radius: 3px; color: #123962; font-size: 1.1em; font-weight: 500; letter-spacing: -0.03em; }
.members_tab li a:hover, .members_tab li.active a  { background: #123962; color: #fff; }

.members_list { display: flex; flex-wrap: wrap; gap: 50px 1.333%; }
.members_list li { position: relative; width: 24%; }
.members_list li.members_modal { cursor: pointer; }
.members_list li .members_img { overflow: hidden; position: relative; text-align: center; display: block; padding-top: 20px; border-radius: 15px; background: #d9e1eb; }
.members_list li .members_img:after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 50%; background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)); }
.members_list li .members_img img { display: inline-block; width: 100%; max-width: 90%; height: 100%; object-fit: contain; object-position: center bottom; transition: transform 0.3s; }
.members_list li:hover .members_img img { transform: scale(1.1); transition: transform 0.3s; }
.members_list li .members_name { position: absolute; left: 0px; bottom: 30px; width: 100%; padding: 0 30px; color: #fff; font-family: 'Presentation'; font-size: 32px; font-weight: 700; letter-spacing: 0.03em; text-shadow: 0 0px 10px rgb(0 6 73 / 30%); }
.members_list li .members_name span { margin-left: 10px; font-size: 20px; }

.members_list li .members_name .more { display: flex; flex-wrap: wrap; align-items: center; margin-top: 10px; font-size: 18px; font-weight: 500; }
.members_list li .members_name .more i { margin-left: 5px; font-size: 15px; }

/* 모달 스타일 */
.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.7); }
.modal.active { display: flex; align-items: center; justify-content: center; }
.modal-content { background-color: #fff; margin: auto; padding: 0; border-radius: 15px; max-width: 800px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; animation: modalSlideIn 0.3s ease; }
@keyframes modalSlideIn { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header { padding: 30px 30px 20px 30px; border-bottom: 2px solid #2c5aa0; }
.modal-header h2 { color: #2c5aa0; font-size: 28px; font-weight: 700; margin-bottom: 5px; }
.modal-header .position { color: #666; font-size: 18px; }
.modal-body { padding: 30px; line-height: 1.2; color: #333; }
.modal-body h3 { color: #2c5aa0; font-size: 20px; margin-top: 25px; margin-bottom: 15px; font-weight: 700; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body ul {  }
.modal-body ul li { position: relative; margin-bottom: 15px; padding-left: 20px; }
.modal-body ul li:before { content: '•'; position: absolute; left: 0; color: #2c5aa0; font-weight: 700; }
.modal-detail {margin-top: 15px;}
.close-modal { position: absolute; right: 20px; top: 20px; font-size: 35px; font-weight: 300; color: #999; cursor: pointer; line-height: 1; transition: color 0.3s ease; }
.close-modal:hover { color: #2c5aa0; }

@media (max-width: 768px) {
    .members_list li { width: 48%; }
    .modal-content { width: 95%; }
    .modal-header { padding: 20px; }
    .modal-header h2 { font-size: 22px; }
    .modal-body { padding: 20px; }
}

.subpage_titlebox { position: relative; text-align: justify; margin-top: 100px; margin-bottom: 100px; padding: 50px; padding-left: 350px; background: #eff2f9; border-radius: 10px; color: #222; font-size: 1.05em; line-height: 1.8; word-break: keep-all; }
.subpage_titlebox strong {
    position: absolute;
    top: -40px;
    left: 50px;
    text-align: center;
    width: 250px;
    margin: 0px;
    padding: 40px 10px;
    background: linear-gradient(320deg, #123962, #1e88e5);
    border-radius: 10px 0;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    box-shadow: 0 0.4rem 1.6rem rgba(11, 44, 97, 0.23);
}
.subpage_titlebox strong span { display: block; font-size: 18px; }

.faq-container { width: 100%; margin: 0 auto; }

.faq-item { overflow: hidden; margin-bottom: 15px; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; transition: all 0.3s ease; }
.faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.faq-question { position: relative; display: flex; align-items: center; padding: 20px 60px 20px 25px; background: #f8f9fa; color: #333; font-size: 1.1em; font-weight: 700; transition: all 0.3s ease; cursor: pointer; }
.faq-question:hover { background: #e9ecef; }
.faq-question.active { background: #2c5aa0; color: #fff; }
.faq-question::before { content: 'Q'; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 35px; height: 35px; margin-right: 15px; background: #2c5aa0; border-radius: 50%; color: #fff; font-size: 16px; font-weight: 700; }
.faq-question.active::before { background: #fff; color: #2c5aa0; }

.faq-icon { position: absolute; right: 25px; width: 24px; height: 24px; transition: transform 0.3s ease; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: #666; transition: all 0.3s ease; }
.faq-icon::before { width: 24px; height: 3px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after { width: 3px; height: 24px; left: 50%; top: 0; transform: translateX(-50%); }
.faq-question.active .faq-icon::before, .faq-question.active .faq-icon::after { background: #fff; }
.faq-question.active .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer { overflow: hidden; max-height: 0; padding: 0 25px; background: #fff; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer.active { max-height: 500px; padding: 25px; }
.faq-answer-content { display: flex; align-items: flex-start; color: #555; line-height: 1.8; }
.faq-answer-content::before { content: 'A'; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 35px; height: 35px; margin-right: 15px; background: #e8f0f7; border-radius: 50%; color: #2c5aa0; font-weight: 700; font-size: 16px; }

.ia_list01 li { position: relative; margin-bottom: 20px; padding-left: 30px; font-size: 1.1em; font-weight: 600; line-height: 1.5; }
.ia_list01 li:last-child { margin-bottom: 0px; }
.ia_list01 li:after { content: "\e928"; position: absolute; left: 0px; top: 2px; color: #123962; font-family: 'xeicon' !important; }
.ia_list01 li .point_stitle { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; width: auto; height: 45px; padding: 0 30px; background: #ecf2f3; border-radius: 500px; color: #003e4a; font-weight: 500; letter-spacing: -0.03em; }

.process-container { margin: 0 auto; margin-bottom: 100px; }
.process-container:last-child { margin-bottom: 0px; }
.process-start { position: relative; display: flex; justify-content: center; margin-bottom: 50px; }
.process-start:after { content:''; position: absolute; left: 50%; bottom: -50px; width: 2px; height: 50px; background: #ddd; }
.start-box { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; text-align: center; width: 280px; min-height: 100px; padding: 30px 20px; background: linear-gradient(320deg, #123962, #1e88e5); border-radius: 10px; color: #fff; font-family: 'Presentation'; font-size: 1.2em; font-weight: 700; box-shadow: 0 4px 15px rgb(74 114 138 / 30%); }

.process-flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 50px; }
.process-step { flex: 1; display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; position: relative; text-align: center; max-width: 280px; min-height: 100px; padding: 0px 20px; background: white; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 1.05em; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.process-step:hover { border-color: #1e88e5; transform: translateY(-5px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.process-step:after { content: '→'; position: absolute; right: -42px; top: calc(50% - 19px); color: #ddd; font-size: 32px; }
.process-step:last-child:after { display: none; }

.process-stepbox { flex: 1; position: relative; display: flex; flex-direction: column; gap: 20px; max-width: 280px; }
.process-stepbox:after { content: '→'; position: absolute; right: -42px; top: calc(50% - 19px); color: #ddd; font-size: 32px; }
.process-stepbox .process-step:after { display: none; }

.process-step h4 { color: #333; font-family: 'Presentation'; font-weight: 700; line-height: 1.5; white-space: pre-line; }
.process-step h4 span { display: block; font-size: 15px; }

p.notibox { color: #444; font-family: 'Presentation'; font-size: 1.1em; font-weight: 500; letter-spacing: 0.03em; }

.diagram_imgbox { text-align:center; }
.diagram_imgbox img { max-width: 100%; }

.labor03_diagram { font-family: 'Presentation'; font-size: 1.05em; letter-spacing: 0.03em; }
.labor03_diagram_inr { display: flex; flex-direction: column; flex-wrap: wrap; gap: 30px; }
.labor03_diagram_inr li { display: flex; flex-wrap: wrap; gap: 50px; }
.labor03_diagram_inr li .labor03_diagram_title { position: relative; display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; text-align: center; width: 250px; min-height: 80px; padding-top: 50px; font-size: 1.15em; font-weight: 700; }

.labor03_diagram_inr li:nth-child(1) .labor03_diagram_title { background: #d9e1eb; }
.labor03_diagram_inr li:nth-child(2) .labor03_diagram_title { background: #c1d2e7; }
.labor03_diagram_inr li:nth-child(3) .labor03_diagram_title { background: #adc7e7; }
.labor03_diagram_inr li:nth-child(4) .labor03_diagram_title { background: #98bbe7; }
.labor03_diagram_inr li:nth-child(5) .labor03_diagram_title { background: #76a9e9; }

.labor03_diagram_inr li .labor03_diagram_title:after { content:''; position: absolute; left: 0px; bottom: -30px; width: 0; height: 0; border-bottom: 0px solid transparent; border-top: 30px solid #d9e1eb; border-left: 125px solid transparent; border-right: 125px solid transparent; }
.labor03_diagram_inr li:nth-child(1) .labor03_diagram_title:after { border-top: 30px solid #d9e1eb; }
.labor03_diagram_inr li:nth-child(2) .labor03_diagram_title:after { border-top: 30px solid #c1d2e7; }
.labor03_diagram_inr li:nth-child(3) .labor03_diagram_title:after { border-top: 30px solid #adc7e7; }
.labor03_diagram_inr li:nth-child(4) .labor03_diagram_title:after { border-top: 30px solid #98bbe7; }
.labor03_diagram_inr li:nth-child(5) .labor03_diagram_title:after { border-top: 30px solid #76a9e9; }

.labor03_diagram_inr li .labor03_diagram_title:before { content:''; position: absolute; left: 0px; top: 0px; width: 0; height: 0; border-bottom: 0px solid transparent; border-top: 30px solid #fff; border-left: 125px solid transparent; border-right: 125px solid transparent; }

.labor03_diagram_inr li .labor03_diagram_cont { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; width: calc(100% - 300px); }
.labor03_diagram_inr li .labor03_diagram_cont > p { position: relative; width: 100%; padding-left: 30px; font-size: 1.1em; font-weight: 600; line-height: 1.5; }
.labor03_diagram_inr li .labor03_diagram_cont > p:after { content: "\e928"; position: absolute; left: 0px; top: 2px; color: #123962; font-family: 'xeicon' !important; }

.labor03_diagram_inr li .labor03_diagram_cont dl { display: flex; flex-wrap: wrap; gap: 2%; width: 100%; }
.labor03_diagram_inr li .labor03_diagram_cont dl dd { display: inline-flex; flex-wrap: wrap; align-content: center; justify-content: center; align-items: center; text-align: center; width: 32%; min-height: 130px; padding: 5px 30px; border-radius: 10px; font-size: 1.05em; font-weight: 600; word-break: keep-all; }

.labor03_diagram_inr li .labor03_diagram_cont dl.diagram_in_list01 dd { background: transparent; border: 2px solid #0e2f57; }
.labor03_diagram_inr li .labor03_diagram_cont dl.diagram_in_list02 dd { background: #d9e1eb; }
.labor03_diagram_inr li .labor03_diagram_cont dl.diagram_in_list03 dd { background: #2d5c8c; color: #fff; }

.labor03_diagram_inr li .labor03_diagram_cont dl dd p { display: block; margin-top: 5px; font-size: 15px; font-weight: 400; }

.emailrefuse { word-break: keep-all; line-height: 1.6; letter-spacing: -0.02em; }
.noemail_textbox { margin-bottom: 50px; padding: 50px; background: rgba(0, 0, 0, 0.05); border-radius: 10px; }
#sub_page.emailrefuse h4 { margin-bottom: 30px; font-size: 1.15em; font-weight: 600; }
.emailrefuse p { margin-bottom: 30px; word-break: keep-all; }