@charset "utf-8";
/* layout.css는 전체적인 레이아웃 스타일을 정의합니다. */ 

#skipToContent a {z-index:100000;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#skipToContent a:focus, 
#skipToContent a:active {width:200px;height:50px;background:#21272e;color:#fff;font-size:14px;font-weight:bold;text-align:center;text-decoration:none;line-height:50px;outline-color:#f37736;}

.only-desktop-tablet {display:block;}
.only-desktop {display:block;}
.only-tablet {display:none;}
.only-mobile {display:none;}

.contain {max-width:1260px; padding-left:30px; padding-right:30px; margin:0 auto;}

#wrapper {position:relative; overflow:hidden; padding-top:var(--header-height);}

/* header */
#header {position:fixed; top:0; left:0; width:100%; z-index:100; transition:.3s; background:#fff;}
#header .contain {max-width:1660px; position:relative; display:flex; justify-content:space-between; height:var(--header-height); z-index:10;}

.sitelogo {padding-top:30px;}

#gnb {text-align:center; margin-right:-32px;}
#gnb>ul {display:flex;} 
#gnb>ul>li {position:relative; padding:0 32px;}
#gnb>ul>li>a {padding-top:35px; position:relative; display:flex; justify-content:center; height:var(--header-height); font-weight:700; font-size:var(--fz19); letter-spacing:-.03em; line-height:1.3em;}
#gnb>ul>li>a:after {content:""; opacity:0; position:absolute; bottom:35px; left:50%; margin-left:-4px; width:9px; height:9px; background:var(--color-primary); transition:.2s; border-radius:100%;}
#gnb>ul>li.active>a:after {bottom:39px; opacity:1;}
#gnb .submenu {display:none; position:absolute; top:100px; left:50%; width:180px; transform:translateX(-50%); background:#fff; border:1px solid #ddd; text-align:center;}
#gnb .submenu>ul {padding:20px 5px;}
#gnb .submenu>ul>li>a {display:block; padding:10px 0; color:#121212; font-size:var(--fz18); line-height:1.33em;}
#gnb .submenu>ul>li>a:hover {text-decoration:underline; color:var(--color-primary);}

.language {position:relative; display:inline-block;}
.language .toggle-button {display:flex; align-items:center; gap:10px; padding:6px; background:none; border:0; color:#2c2c2c; font-weight:700; text-align:left;}
.language .toggle-button .ico {width:16px;}
.language .toggle-button .txt {width:36px;}
.language .toggle-button .chevron {width:12px; margin-top:-.1em;}
.language .toggle-button svg {display:block; width:100%; height:auto;}
.language .toggle-button path {fill:#2c2c2c;}
.language .toggle-layer {display:none; position:absolute; left:0; width:100%; padding:8px; background:#fff; border:1px solid #ddd; border-radius:6px; text-align:center;}
.language .toggle-layer ul {display:grid; gap:2px;}
.language .toggle-layer a {display:block; color:#767676; font-weight:600; line-height:1.5em;}
.language .toggle-layer a:hover {color:#2c2c2c;}
.language.active .toggle-button .chevron {transform:scaleY(-1);}

#header.header-fixed {box-shadow:0px 3px 5px rgba(0,0,0,0.1);}

/* for mobile */
.btn-m-menu {display:none; position:relative; width:26px; height:26px;}
.btn-m-menu span {position:absolute; left:0; right:0; top:50%; height:2px; margin-top:-1px; background:#121212;}
.btn-m-menu span:before,
.btn-m-menu span:after {content:" "; position:absolute; left:0; right:0; height:2px; background:#121212;}
.btn-m-menu span:before {top:-9px;}
.btn-m-menu span:after {bottom:-9px;}

.mobile-navigation {display:none; position:fixed; top:0; right:0; width:300px; height:100%; overflow:auto; transition:.2s linear; -ms-transform:translateX(100%); transform:translateX(100%); background:#fff; z-index:102;}
.mobile-navigation .home {display:flex; align-items:center; height:80px; padding:0 20px; color:#242424; font-size:19px; font-weight:700; line-height:1.5em;}
.mobile-navigation .home img {height:48px;}
.mobile-navigation .nav-menu>ul {border-top:1px solid #ddd;}
.mobile-navigation .nav-menu>ul>li {border-bottom:1px solid #ddd;}
.mobile-navigation .nav-menu>ul>li>a {position:relative; padding:10px 48px 10px 20px; display:block; color:#242424; font-size:19px; font-weight:700; line-height:1.5em;}
.mobile-navigation .nav-menu>ul>li>a:after {content:""; position:absolute; top:50%; right:20px; transform:translateY(-75%) rotate(45deg); width:11px; height:11px; border-right:2px solid #505050; border-bottom:2px solid #505050;}
.mobile-navigation .nav-menu>ul>li.active>a {color:#fff; background:var(--color-primary);}
.mobile-navigation .nav-menu>ul>li.active>a:after {transform:translateY(-35%) rotate(-135deg); border-color:#fff;}
.mobile-navigation .nav-menu .submenu {display:none; background:#f8f8f8; color:#454545; font-size:16px; font-weight:400; line-height:1.5em;}
.mobile-navigation .nav-menu .submenu ul li {border-top:1px solid #e5e5e5;}
.mobile-navigation .nav-menu .submenu ul li a {display:block; padding:12px 20px;}
.mobile-navigation .nav-menu .submenu ul li a:hover {color:var(--color-primary);}
.mobile-navigation .close {position:absolute; top:25px; right:15px; width:26px; height:26px; text-indent:-9999em; overflow:hidden;}
.mobile-navigation .close:before,
.mobile-navigation .close:after {content:" "; position:absolute; top:12px; left:0; width:100%; height:3px; background:#242424; border-radius:3px;}
.mobile-navigation .close:before {transform:rotate(45deg);}
.mobile-navigation .close:after {transform:rotate(-45deg);}
.mobile-overlay {display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:#000; opacity:0.6; z-index:101;}

html.menu-opened {overflow:hidden;}
html.menu-opened .mobile-navigation {-ms-transform:translateX(0); transform:translateX(0);}
html.menu-opened .mobile-overlay {display:block;}

/* main */
#main #container .contain {max-width:1660px;}

.main-wrap {padding:80px 0;}
.main-wrap .contain {display:flex; justify-content:space-between;}
.main-links {width:57%;}
.main-links .row {display:flex; margin:-14px;}
.main-links .row .col {padding:14px; width:33.333%;}
.main-links .item {border-radius:16px; display:block; color:#fff; height:100%; padding:68px 40px; background-repeat:no-repeat; background-position:95% 95%;}
.main-links .item1 {background-color:var(--color-info); background-image:url('/images/main/link1.png');}
.main-links .item2 {background-color:var(--color-success); background-image:url('/images/main/link2.png');}
.main-links .item3 {background-color:var(--color-secondary); background-image:url('/images/main/link3.png');}
.main-links .item .tit {margin-bottom:145px; font-size:var(--fz28); font-weight:800; letter-spacing:-.03em; line-height:1.4em;}
.main-links .item .btn {border-radius:22px; color:#454545; min-width:110px; font-size:var(--fz15); font-weight:400; line-height:1.4em; height:44px; display:inline-flex; align-items:center; justify-content:center; text-align:center; background:#fff;}
.main-notice {position:relative; padding:35px 40px; width:41.25%; border:1px solid #ddd; border-radius:24px;}
.main-notice h2 {margin-bottom:20px; font-size:var(--fz28); font-weight:800; letter-spacing:-.03em; line-height:1.4em;}
.main-notice .newly {display:block; padding-bottom:27px; margin-bottom:27px; border-bottom:1px solid #e1e1e1;}
.main-notice .newly .title {margin-bottom:18px; display:flex; align-items:center;}
.main-notice .newly .title .date {margin-right:24px; width:85px; height:85px; background:var(--color-primary); display:flex; flex-direction:column; align-items:center; justify-content:center; font-weight:500; line-height:1.4em; font-size:var(--fz14); color:#fff;}
.main-notice .newly .title .date strong {font-size:2.43em; line-height:1em;}
.main-notice .newly .title .tit {flex:1 1 auto; min-width:0; width:1%; font-size:var(--fz20); font-weight:500; line-height:1.4em; line-height:1.6em; max-height:3.2em; overflow:hidden; text-overflow:ellipsis; word-break:break-all; white-space:normal; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;}
.main-notice .newly .txt {max-height:1.4em; overflow:hidden; text-overflow:ellipsis; word-break:break-all; white-space:nowrap; color:#686868;}
.main-notice .list ul li a {position:relative; display:block; font-weight:400; color:#454545; line-height:1.75em; max-height:1.75em; overflow:hidden; text-overflow:ellipsis; word-break:break-all; white-space:nowrap; padding-right:100px;}
.main-notice .list ul li a span {position:absolute; right:0; color:#a8a8a8;}
.main-notice .plus {transition:.3s; position:absolute; right:35px; top:35px; font-size:0; display:block; width:24px; height:24px; background:url('/images/main/plus.png') no-repeat 50% 50% / contain;}
.main-notice .plus:hover {transform:rotate(180deg);}

/* sub */
.sub-visual {position:relative; height:370px; text-align:center; overflow:hidden; background:#333;}
.sub-visual .bg {position:absolute; top:0; left:0; width:100%; height:100%; overflow:hidden; transition:2s; opacity:1; transform:scale(1.1); background-repeat:no-repeat; background-position:100% 0; background-size:cover;}
.sub-visual .inner {position:absolute; top:50%; left:0; width:100%; padding:0 20px; transform:translateY(-50%);}
.sub-visual h2 {font-size:var(--fz42); line-height:1.3em; letter-spacing:0; color: #242424;}
.sub-visual .bg1 {background-image:url("../images/common/sv1.jpg");}
.sub-visual .bg2 {background-image:url("../images/common/sv2.jpg");}
.sub-visual .bg3 {background-image:url("../images/common/sv3.jpg");}
.sub-visual .bg4 {background-image:url("../images/common/sv4.jpg");}
.sub-visual .bg5 {background-image:url("../images/common/sv5.jpg");}
.sub-visual .bg6 {background-image:url("../images/common/sv6.jpg");}
.loaded .sub-visual .bg {transform:scale(1); opacity:1;}

.path-wrap {position:relative; border-bottom:1px solid #ddd; border-top:1px solid #ddd; z-index:50;}
.path-wrap .wrap {max-width:1200px; margin:0 auto;}
.path-wrap .inner {display:flex;}
.path-wrap .home {position:relative;}
.path-wrap .home:before {content:''; position:absolute; left:0; top:50%; height:18px; margin-top:-9px; width:1px; background:#ddd;}
.path-wrap .home a {display:block; width:80px; height:70px; background:url("../images/common/home.png") 50% 50% no-repeat; text-indent:-999em; overflow:hidden;}
.path-wrap .part {border:1px solid transparent; position:relative; min-width:255px; z-index:50;}
.path-wrap .part:before {content:''; position:absolute; left:0; top:50%; height:18px; margin-top:-9px; width:1px; background:#ddd;}
.path-wrap .part:last-child:after {content:''; position:absolute; right:0; top:50%; height:18px; margin-top:-9px; width:1px; background:#ddd;}
.path-wrap .part > a {display:flex; align-items:center; position:relative; height:70px; font-weight:600; line-height:1.3em; padding:0 60px 0 30px;}
.path-wrap .part > a img {position:absolute; right:30px;}
.path-wrap .part.active {border-color:#454545;}
.path-wrap .part.active:before {display:none;}
.path-wrap .part:last-child.active:after {display:none;}
.path-wrap .part ul {padding:24px 30px; display:none; position:absolute; left:-1px; right:-1px; background:#fff;  z-index:50;}
.path-wrap .part ul:after {pointer-events:none; content:''; position:absolute; left:0; bottom:0; right:0; top:0; border:1px solid #454545; border-top:0;}
.path-wrap .part ul li {margin-bottom:20px; color:#737373; line-height:1.3em;}
.path-wrap .part ul li:last-child {margin-bottom:0;}
.path-wrap .part ul li a:hover,
.path-wrap .part ul li.active a {color:var(--color-primary); font-weight:600;}

#contArea {max-width:1260px; padding-left:30px; padding-right:30px; margin:0 auto;}
#contArea.wide {max-width:100%; padding-left:0; padding-right:0;}
#contArea.wide .sub-title {padding-left:10px; padding-right:10px;}
.contain {width:100%; max-width:1260px; padding-left:30px; padding-right:30px; margin:0 auto;}

.sub-title {padding:93px 0 80px; text-align:center;}
.sub-title h1 {font-size:var(--fz38); font-weight:700; letter-spacing:-.02em; line-height:1.4em;}

.real-cont {min-height:300px; padding-bottom:155px;}

/* footer */
#footer {position:relative; padding:45px 0; background:#f6f6f6; color:#454545; font-size:var(--fz15); line-height:1.5em; letter-spacing:-.03em;}
#footer .contain {position:relative; max-width:1660px;}
#footer span {display:inline-block;}
#footer a:hover {text-decoration:underline;}

#footer .comp-name {margin-bottom:10px; font-weight:700; line-height:1.75em; font-size:var(--fz16);}
#footer address {margin-bottom:15px;  font-style:normal;}
#footer address span {margin-right:33px; font-weight:400; color:#454545;}
#footer .etc {font-weight:300; color:#454545;}
#footer .etc .link {margin-left:25px;}
#footer .family {position:absolute; right:30px; bottom:0;}
#footer .family ul {display:flex;}
#footer .family ul li {margin-right:30px;}
#footer .family ul li:last-child {margin-right:0;}
#footer .family ul li a {display:block;}

.scroll-top {font-size:0; position:absolute; top:50px; right:40px; width:44px; height:44px; background:url('/images/common/top.png') no-repeat 50% 50% /contain; z-index:90;}