@import "reset.css";
@import "fonts.css";
@import "remixicon.css";

:root {
    --header-height: 100px;
	--header-open: 320px;
    --mobile-height: 60px;
	--inwrap-width: 1400px;
    --color3: #159946;
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%
}

img {
    max-width: 100%
}

.wrap {
    position: relative;
}

.inwrap {
    max-width: var(--inwrap-width);
    margin: 0 auto;
}

.container {
    position: relative;
    margin: 20px 0 120px;
}

.container::after {
    display: block;
    content: '';
    clear: both
}

.snb {
    flex: 0 0 250px;
    background: #f0f3f7;
    min-height: 580px;
    padding: 30px 0;
    margin-right: 30px
}

.snb h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0 20px
}

.content {
    min-height: 580px;
    flex-grow: 1;
	margin-top: 50px;
}

footer {
    background: #f8f8f8;
    min-height: 100px
}

.footer_in {position:relative;padding-top:40px;border-top:1px solid #ddd;}
.footer_in .info {display: flex;}
.footer_in .info li {padding:0 20px;position:relative;text-align:center;}
.footer_in .info li:first-child {padding-left:0;}
.footer_in .info li:not(:last-of-type):after {content:'';display:inline-block;width:2px;height:12px;background:#f0f0f0;position:absolute;right:0;top:50%;transform:translate(calc(-50% + 0.5px), calc(-50% + 0.5px));}
.footer_in .info li a {/* font-size:12px~16px; */font-size:clamp(0.75rem, 0.6429rem + 0.4762vw, 1rem);font-weight:500;color:#142347!important;}
.footer_in .info li a.privacy {color:var(--color3) !important;}
.footer_in .info li a:hover {text-decoration:underline;text-underline-position:under;}
.footer_in address {/* font-size:12px~14px; */font-size:clamp(0.75rem, 0.6964rem + 0.2381vw, 0.875rem);color:#4e4e4e;padding:30px 0 5px;word-break:keep-all;}
.footer_in .copy {font-size:14px;color:#4e4e4e;padding-bottom:50px;}
.footer_select {position:absolute;top:50%;right:0;transform:translateY(-50%);background-color:transparent;color:#fff;width:200px;}
.footer_select > div {display:flex;align-items:center;justify-content:space-between;padding:8px 16px;border:1px solid #ffffff59;border-radius:10px;cursor:pointer;transition:.4s ease;}
.footer_select > div.on {border-color:#ffffffa6;}
.footer_select > div p {font-size:14px;}
.footer_select > div i {font-size:20px;transition:.4s ease;}
.footer_select > div.on i {transform:rotate(180deg);}
.footer_select > ul {position:absolute;width:100%;padding:12px 16px;left:0;bottom:50px;border:1px solid #ffffffa6;border-radius:10px;display:none;backdrop-filter:blur(5px);}
.footer_select > ul li:not(:last-of-type) {margin-bottom:8px;}
.footer_select > ul li a {font-size:14px;color:#fff;padding-right:0;display:block;}
.footer_select > ul li a::after {content:none;}
.footer_select > ul li a:hover {text-decoration:underline;text-underline-position:under;}

.notScroll {
    overflow: hidden;
    touch-action: none
}

header {
    width: 100%;
    position: relative;
    height: var(--header-height);
    z-index: 10;
    transition: .85s cubic-bezier(0.77, 0, 0.175, 1);
}

header .header_inwrap {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    height: var(--header-height);
    transition: .85s;
    overflow: hidden;
    z-index: 101;
    border-top: 1px solid #eaeaea;
    background: #fff;
}

header .header_inwrap:before {
    content: '';
    position: absolute;
    top: var(--header-height);
    left: 0;
    display: block;
    width: 100%;
    background: #fff;
    height: calc(var(--header-open) - var(--header-height))
}

header.active .header_inwrap {
    height: var(--header-open);
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1)
}

header.active .header_inwrap:before {
    border-top: 1px solid #ddd
}

header .gnb_wrap {
    width: var(--inwrap-width);
    height: var(--header-height);
    margin: 0 auto;
    /* position: relative; */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between
}

header .gnb_wrap h1 {
    width: 200px;
    height: 100%
}

header .gnb_wrap h1 a {
    display: block;
    margin-top: 18px;
}

header .gnb {
    padding: 0;
    width: calc(100% - 430px);
    display: block;
}

header .gnb>ul {
    display: flex;
    justify-content: center
}

header .gnb ul>li {
    position: relative;
    text-align: center
}

header .gnb ul>li .dep1 a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.025em;
    color: #000;
    padding: 0 40px;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: var(--header-height)
}

header .gnb ul li:last-child .dep1 a:before {
    background: none;
    width: 0;
    height: 0
}

header.active .gnb ul>li:hover .dep1 a {
    color: var(--color3);
}

header .gnb ul>li:last-child .dep1 a {
    border-right: none
}

header .gnb ul>li .lnb {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    z-index: 9999;
    overflow: hidden;
    padding-top: 20px;
    height: calc(var(--header-open) - 20px);
    transition: .5s ease
}

header.active .gnb ul>li:hover .lnb {
    background-color: var(--color3);
}

header.active .gnb ul>li:hover .lnb .dep2 a {
    color: #fff
}

header .gnb ul>li .dep2 {
    transition: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    opacity: 0;
    width: 100%;
    margin-top: -50%
}

header .gnb ul>li .dep2 a {
    position: relative;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -.05em;
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 3px;
    display: inline-block
}

header .gnb ul>li .dep2 a:hover {
    color: #fff
}

header .gnb ul>li .dep2 a:before {
    content: '';
    display: block;
    position: absolute;
    top: 23px;
    left: 0;
    transform: scale(0);
    width: 100%;
    height: 2px;
    background: #fff;
    opacity: 0;
    transition: .3s
}

header .gnb ul>li .dep2 a:hover:before {
    color: var(--main-color);
    transform: rotate(90deg);
    opacity: 1;
    transform: scale(1)
}

header .gnb ul>li .dep2 a:after {
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    left: -10px;
    width: 2px;
    height: 7px;
    background: #fff;
    opacity: 0;
    transition: .3s
}

header .gnb ul>li .dep2 a:hover:after {
    color: #fff;
    transform: rotate(90deg);
    opacity: 1
}

header .gnb ul>li .dep2.active {
    margin-top: 0;
    opacity: 1;
    transition: opacity 1s 0.15s, margin .8s .15s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

header .gnb ul>li .dep1 {
    position: relative
}

header .gnb ul>li .dep1:after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    margin-left: 0;
    width: 0;
    bottom: 0;
    height: 5px;
    background: var(--color3);
    z-index: 1;
    transition: .8s;
    transition-duration: .9s;
    transition-delay: .5s;
    transition: .8s
}

header .gnb ul>li:hover>.dep1:after {
    left: 50%;
    margin-left: -25px;
    width: 50px;
    bottom: 0;
    transition: .4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

header.active .gnb ul>li .dep1>a {
    top: 0;
    transition-delay: 0
}

header:before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 100px;
    left: 0
}

header.on .gnb {
    display: none;
}

.top_util {
    display: flex;
    justify-content: space-between;
    width: auto
}

.top_util ul {
    display: flex;
}

.top_util ul li {
    display: inline-block
}

.top_util ul li:nth-of-type(1)::after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 10px;
	background: #8c8c8f;
}

.top_util ul li a {
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    color: #000;
}

.top_util ul li a:hover {
    color: #fff;
	font-weight: 500;
    transition: .4s ease;
    -moz-transition: .4s ease;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
	color: var(--color3);
}
/* 서브페이지 top_util */
.subpage .top_util ul li a {
	color:var(--color3);
	background:#e9f2f9;
	border-radius:30px;
}
.subpage .top_util ul li:nth-of-type(1)::after {
	background:transparent;
	width:5px;
}

header .Mgnb_wrap {
    display: none;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 90;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: #fff
}

.mMenu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 25px
}

.mMenu:before {
    content: '';
    display: block;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: all .4s;
    width: 27px
}

.mMenu:after {
    content: '';
    display: block;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: all .4s;
    width: 20px
}

.snb>ul {
    padding: 0 15px
}

.snb>ul>li>a {
    display: block;
    color: #000;
    border-bottom: 1px dashed #333;
    padding: 12px 10px;
    position: relative
}

.snb>ul>li>a:after {
    display: block;
    content: '\e913';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'xeicon';
    color: #0475f4
}

.snb>ul>li>a.on:after {
    content: '\e91a'
}

.snb>ul>li .dpt2_menu {
    background: #fff;
    display: none
}

.snb>ul>li .dpt2_menu li a {
    display: block;
    color: #000;
    padding: 10px;
    position: relative;
    border-bottom: 1px solid #eee
}

.breadcrumb {  
  position: relative;
   background: linear-gradient(135deg, #0057af 0%,#6db408 100%);
}
.breadcrumb .inwrap{
	display: flex;  
	justify-content: flex-end;
}

.breadcrumb_wrap {
      display: inline-flex; 
	 border-radius: 0;
}

.breadcrumb_wrap>li {
    position: relative;
    width: 250px
}

.breadcrumb_wrap>li:not(:last-of-type)::after {
    content: '';
	display:block;
	width:1px;
	height:10px;
	background:#b3b3b3;
	position:absolute;
	right:0;
	top:50%;
	transform:translateY(-50%);
}

.breadcrumb_wrap>li>a {
    display: block;
    padding: 15px 25px;
    color: #fff;
	font-size: 13px;
}

.breadcrumb_wrap>li>a:after {
    content: '\ea4e';
    font-family: 'remixicon';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
	font-size:22px;
	color:#fff;
}

.breadcrumb_wrap>li.home {
    width: 110px
}

.breadcrumb_wrap>li.home::after {
    content:'';
}

.breadcrumb_wrap>li.home>a {
    text-align: center;
   
	/* background: var(--color3); */
	border-radius: 30px;
}

.breadcrumb_wrap>li.home>a:after {
    content: none
}

.breadcrumb_wrap>li.home>a i {
	font-size: 18px;
    color:#fff;
}

.breadcrumb_sub {
    display: none;
    background: #fff;
    position: absolute;
    top: 60px;
    left: -1px;
    width: 95%;
    z-index: 3;
    border: 1px solid #ddd;
	border-radius: 15px;
	overflow:hidden;
}

.breadcrumb_sub>li>a {
    display: block;
    padding: 15px 25px;
    border-bottom: 1px solid #ddd
}

.breadcrumb_sub>li:last-child>a {
    border-bottom: none
}

.breadcrumb_sub>li>a {
	color:#333;
	transition:background .4s ease;
}

.breadcrumb_sub>li>a:hover {
	background:#f4f9fd;
	color:#000;
}

.breadcrumb_sub>li.on>a {
	font-weight:500;
	color:var(--color3);
	background:#f4f4f4;
}

.breadcrumb_sub>li:last-child>a li {
    border-bottom: none;
    border-right: none
}

section {
    margin: 0 0 clamp(2.5rem, 2.0673rem + 1.9231vw, 3.75rem);
}

section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

section h3:before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 17px;
    background: var(--color3);
    margin-right: 5px;
}

.content_util {
    position: absolute;
    top: 57%;
    right: 0;
    transform: translateY(-50%)
}

.content_util .print {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 1px solid #ababab59;
	border-radius:50%;
	transition:.4s ease;
}

.content_util .print i {
    font-size: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 50px;
    color: #333
}

.content_util .print:hover {
    background: var(--color3);
    border: 1px solid var(--color3)
}

.content_util .print:hover i {
    color: #fff
}

.content_util .print span {
    color: transparent;
    text-indent: -9999px;
    font-size: 0
}

.content_util .sns {
    display: inline-block;
    margin-right: 5px
}

.content_util .sns>a.active+ul {
    display: flex
}

.content_util .sns ul {
    display: none;
    position: absolute;
    right: 0;
	top:60px;
    border: 1px solid #ddd;
    padding: 18px 15px 15px;
    text-align: center;
    background: #fff;
	border-radius:20px;
}

.content_util .sns ul li {
    margin: 0 3px
}

.content_util .sns ul li a:hover {
    color: #1a4793;
    transition: .4s
}

.content_util .sns ul li a span {
    font-size: 11px;
    display: block;
    width: 50px;
	color:#000;
}
.content_util .sns ul li a:hover span {text-decoration:underline;text-underline-position:under;}

.content_util .sns ul li a span:before {
    content: '';
    display: block;
    width: 34px;
    height: 34px;
    background: #eee url(/images/sub/sns_icon.png) 0 0 no-repeat;
    margin: 0 auto 5px
}

.content_util .sns ul .facebook a span:before {background-position:-45px 0}
.content_util .sns ul .blog a span:before {background-position:-90px 0}
.content_util .sns ul .kakao a span:before {background-position:-135px 0}
.content_util .sns ul .urlcopy a span:before {background-position:-180px 0}

header.on .mMenu:before {
    margin: -1px 0;
    transform: rotate(45deg);
    background: #333
}

header.on .mMenu:after {
    margin: -2px 0;
    transform: rotate(-45deg);
    background: #333;
    width: 27px
}

header .Mgnb_wrap .inwrap {
    position: relative
}

header .Mgnb_wrap .gnb_M {
    width: 100%;
    height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: var(--header-height) 0 0;
}

header .Mgnb_wrap .gnb_M>ul>li {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px
}

header .Mgnb_wrap .gnb_M>ul>li .dep1 a {
    font-size: 16px;
    font-weight: 500;
	color: var(--color1);
}

header .Mgnb_wrap .gnb_M>ul>li .lnb {
    position: static
}

header .Mgnb_wrap .gnb_M>ul>li .dep2 {
    display: flex;
}

header .Mgnb_wrap .gnb_M>ul>li .dep2 li {
    padding-right: 30px
}

header .Mgnb_wrap .gnb_M>ul>li .dep2 li a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -.025em;
    width: 100%;
    margin-bottom: 0;
    padding: 8px 20px;
    display: inline-block;
	color: #333;
}

header .Mgnb_wrap .gnb_M ul>li .dep2 a:hover {
    color: var(--color3)!important;
	text-decoration: underline;
	text-underline-position: under;
}

header .Mgnb_wrap .gnb_M ul>li .dep2 a:before {
    content: none
}

header .Mgnb_wrap .gnb_M ul>li .dep2 a:after {
    content: none
}

header .Mgnb_wrap .gnb_M ul>li .dep1:after {
    content: none
}

header.on .header_top {
    display: none
}

@media (max-width: 1400px) {
    header .Mgnb_wrap .menu_close {
        position: absolute;
        right: 5px;
        top: 20px;
        z-index: 9990;
        width: 40px;
        height: 40px;
        text-align: center
    }

    header .Mgnb_wrap .menu_close a {
        font-size: 25px;
        color: #000 !important
    }

    header .top_util ul {
        display: none !important
    }

    header.on .header_inwrap {
        overflow: visible
    }

    header.on .top_util ul {
        display: flex !important;
        position: absolute;
        left: 0;
        top: var(--header-height);
        width: 100%;
        align-items: center;
        justify-content: space-evenly;
    }

    header.on .top_util ul li {
        width: 50%;
    }

	header.on .top_util ul li:not(:last-of-type) {
		border-right:1px solid #e8e8e8;
	}

    header.on .top_util ul li a {
        background:#f3f3f3;
		display:block;
		padding:15px;
		border-radius:0;
		color:#333;
    }

	header.on .top_util ul li a:hover {
		border:1px solid var(--color3);
	}

    header.on .Mgnb_wrap .gnb_M {
        margin: 0;
        margin-top: calc(var(--header-height) + 50px);
        height: auto
            /* calc(100vh - calc(var(--header-height) + 50px)) */
        ;
    }

    header .gnb,
    header .header_inwrap:before {
        display: none
    }

    header .Mgnb_wrapwrap .gnb {
        display: block;
        width: 100%
    }

    header .Mgnb_wrap nav {
        margin: 0 0 30px;
        width: 100%
    }

    header .Mgnb_wrap .gnb_M>ul {
        display: flex;
        flex-direction: column
    }

    header.active .Mgnb_wrap .gnb_M ul>li:hover .dep1 a {
        color: inherit
    }

    .wrap,
    header {
        min-width: 360px;
    }

    header .header_inwrap .gnb_wrap {
        width: 100%;
        position: relative;
        z-index: 102
    }
    header.on .header_inwrap .gnb_wrap {
    	position:static;
    }

    header .header_inwrap {
        top: 0;
        width: 100%;
        padding: 0 16px
    }
	/*
    header:before {
        height: 1px;
        overflow: hidden
    }
	*/
    header.on .Mgnb_wrap .inwrap {
        width: 100%
    }

    header.on .Mgnb_wrap .gnb_M>ul>li {
        flex-direction: column;
        align-items: center;
        height: auto;
        margin-bottom: 0
    }

	header.on .Mgnb_wrap .gnb_M>ul>li:not(:last-of-type) {
	
    }

    header.on .Mgnb_wrap .gnb_M>ul>li .dep1 {
        width: 100%;
        border-bottom:1px solid #ececec;
    }

    header.on .Mgnb_wrap .gnb_M>ul>li .dep1 a {
        display: block;
        padding: 15px 20px
    }

	header.on .Mgnb_wrap .gnb_M>ul>li .dep1 a:hover {
        text-decoration: underline;
		text-underline-position: under;
    }

    header.on .Mgnb_wrap .gnb_M>ul>li .lnb {
        width: 100%;
    }

    header.on .Mgnb_wrap .gnb_M>ul>li .dep2 {
        flex-wrap:wrap;
    	flex-direction: column;
    	background:#f0f3f8;
    	padding:10px 0;
    }

    header.on .Mgnb_wrap .gnb_M>ul>li .dep2 li {
        flex-basis: auto;
        padding-right:0;
    }

	.mMenu {display:flex;}
	header.on .mMenu {right:15px;}

	.top_util ul li:nth-of-type(1)::after {
		content: none;
	}

    .snb {
        display: none
    }

    .content {
        margin-left: 0;
    }

    .inwrap {
        padding: 0 16px
    }

    .container .inwrap {
        width: 100%
    }

    .breadcrumb .inwrap {
        padding: 0;
        width: auto
    }

    .breadcrumb_wrap>li {
        flex-grow: 1;
    }

    .breadcrumb_wrap>li.home {
        flex-grow: 0;
    }

    .breadcrumb_wrap>li.home>a:after {
        content: ''
    }
}

/* footer를 위한 미디어쿼리 768px ~ 1000px */
@media (max-width: 1000px) {
	/* footer */
	.footer_select {top:27.5%;}
}

/* Mobile 500px ~ 768px */
@media (max-width: 768px) {
	header {height: var(--mobile-height);}
	header:before {content:none;}
	header .header_inwrap {height: var(--mobile-height)!important;}
	header .header_inwrap .gnb_wrap {height: var(--mobile-height);}
	header .gnb_wrap h1 a {margin-top:3px;}
	header .gnb_wrap h1 a img {width:100px;}
	.mMenu {top:5px;}
	.breadcrumb {display:none;}
	.content_util {position:static;transform:translateY(0);margin-top:15px;}
	.content_util .print {width:45px;height:45px;}
	.content_util .print i {font-size:18px;line-height:45px;}
	.content_util .sns ul {left:0;right:auto;top:52px;}
	
	header.on .top_util ul {top:calc(var(--header-height) - 40px)}
	header.on .Mgnb_wrap .gnb_M {margin-top:calc(var(--header-height) + 20px)}
	
	/* footer */
	.footer_in {padding-bottom:50px;}
	.footer_in .info {justify-content:center;}
	.footer_in address {text-align:center;}
	.footer_in .copy {text-align:center;}
	.footer_select {position:static;margin:0 auto;}
	.footer_select > div {border-color:#4e4e4e59;}
	.footer_select > div.on {border-color:#333;}
	.footer_select > div p {color:#4e4e4e;}
	.footer_select > div i {color:#4e4e4e;}
	.footer_select > ul {border-color:#333;background:#fff;}
	.footer_select > ul li a {color:#4e4e4e;}
}

/* Mobile 360px ~ 500px */
@media (max-width: 500px) {
	/* footer */
	.footer_in .info li {padding:0 10px}
}

@media print {
	@page {
		size: A4;
		page-break-after: always;
		margin: .5cm
	}

    html,
    body {
        width: 210mm;
        height: 297mm
    }

    header {
        display: none
    }

    footer {
        display: none
    }

    .topNav {
        display: none
    }
    
    .sub_visual {
        display: none
    }
    .breadcrumb {
        display: none
    }
    
    .title {padding:10px 0;margin-bottom:40px;}
    .content_util {display:none;}

    .content {
        width: auto;
        position: relative;
        margin: 5px;
        background: #fff
    }

    a.btn,
    button.btn,
    input.btn {
        display: none
    }
}