@charset "utf-8";
:root {
	--lnb-mb: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="7" viewBox="0 0 11 7" fill="none"><path d="M10.0005 5.24264L5.75781 1" stroke="white" stroke-width="2" stroke-linecap="round"/><path d="M1.51465 5.24264L5.75729 1" stroke="white" stroke-width="2" stroke-linecap="round"/></svg>') no-repeat;
	--gr: linear-gradient(90deg, #27A075 -5.21%, #007DD7 100%);
	--gr2: linear-gradient(127deg, rgba(1, 126, 210, 0.80) 0%, rgba(86, 59, 183, 0.80) 100%)
}

.wrap {
	margin: 0 auto;
	max-width: 1560px	;
	width: 100%;
}

header {
	position: relative;
	z-index: 999;
}

header .wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1720px	;
	height: 9.8rem;
}

header h1 a {
	display: block;
	line-height: 0;
}

header h1 a img {
	max-width: 22rem;
}

nav {
	height: 100%;
}

header .sitemap {
	position: relative;
	display: block;
	width: 2.8rem;
	height: 2.8rem;
	transition: .3s;
}

header .sitemap::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background: #06345C;
	box-shadow: 1.8rem 0 #06345C, 0 1.8rem #51B2EA, 1.8rem 1.8rem #06345C;
}

footer {
	padding-top: 5rem;
	padding-bottom: 7rem;
	background: #06011E;
}

footer .logo {
	padding-bottom: 1rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid #323232;
	line-height: 0;
}

footer .logo img {
	max-width: 22rem;
}

footer .con {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 3rem;
}

footer .addr address,
footer .addr ul li,
footer .addr ul li a {
	color: #9C9C9C;
	font-weight: 400;
	line-height: normal;
}

footer .addr ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5rem;
	margin-top: 0.3rem;
}

footer .addr span {
	display: inline-block;
	padding-right: 1.5rem;
	color: #CBCBCB;
	font-weight: 700;
}

footer .copy {
	margin-top: 2rem;
	color: #9C9C9C;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}

footer .call {
	display: flex;
	gap: 1rem;
	padding: 1rem 2rem;
	color: #DFDFDF;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: normal;
	border-radius: 5rem;
	border: 1px solid #424242;
}

footer .call i {
	width: 2.6rem;
	height: 2.6rem;
	background: url(/img/btm-call.svg) no-repeat 0 0 / 2.6rem;
}

/*** pc ***/
@media all and (min-width:1025px) {
	html{
		font-size: 62.5% !important;
	}

	#lnb {
		display: flex;
		align-items: center;
		gap: 7rem;
		height: 100%;
	}
	
	#lnb>li {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	
	#lnb>li>a {
		color: #333;
		font-size: 2rem;
		font-weight: 500;
		line-height: normal;
		letter-spacing: -0.02rem;
	}
	
	#lnb>li.select>a,
	#lnb>li>a:hover {
		color: #027FD0;
		font-weight: 700;
	}
	
	#lnb .sub-menu {
		position: absolute;
		left: calc(50% - 7.1rem);
		top: 8.4rem;
		display: none;
		flex-direction: column;
		gap: 1rem;
		text-align: center;
		width: 14.2rem;
		padding: 2rem;
		margin: 0 auto;
		border-radius: 1.5rem;
		background: #FFF;
		box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.10);
	}
	
	#lnb .on .sub-menu {
		display: flex;
	}
	
	#lnb .sub-menu a {
		display: block;
		width: 10.2rem;
		color: #333;
		font-size: 1.7rem;
		font-weight: 500;
		line-height: normal;
	}

	#lnb .dept-menu {
		display: none;
	}

	header .sitemap:hover {
		transform: rotate(180deg);
	}
}

@media all and (max-width:1559px) {
	.wrap {
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}
}

/*** min-pc ***/
@media all and (max-width:1024px) {
	html{
		font-size: 50% !important;
	}

	#lnb {
		display: none;
	}
	
	#lnb>li {
		display: block;
		margin-bottom: 10px;
		width: 100%;
		height: auto;
	}
	
	#lnb>li>a {
		position: relative;
		display: block;
		text-align: left;
		padding: 10px;
		color: #fff;
		font-size: 15px;
		font-weight: 500;
		line-height: normal;
		border-radius: 5px;
		background: #06345C;
	}
	
	#lnb>li.select>a {
		font-weight: 700;
		background: var(--gr);
	}

	#lnb>li>a::after {
		content: '';
		position: absolute;
		right: 10px;
		top: calc(50% - 3.5px);
		width: 11px;
		height: 7px;
		background: #fff;
    -webkit-mask: var(--lnb-mb);
    mask: var(--lnb-mb);
    mask-size: 11px; 
    -webkit-mask-size: 11px;
		transform: rotate(180deg);
	}

	#lnb>li.select>a::after {
		transform: rotate(0);
	}

	#lnb .sub-menu {
		display: none;
		padding: 0rem 10px;
		margin-top: 10px;
	}
	
	#lnb .sub-menu .tit {
		display: none;
	}

	#lnb .select .sub-menu,
	#lnb li.select>.dept-menu {
		display: block;
	}

	#lnb .sub-menu>li {
		margin-left: 10px;
		margin-right: 10px;
		border-top: 1px dashed #CDCDCD;
	}
	
	#lnb .sub-menu>li:first-child {
		border-top: none;
	}

	#lnb .sub-menu>li>a {
		position: relative;
		display: block;
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 14px;
		line-height: normal;
	}

	#lnb .sub-menu>li>a::after {
		content: '';
		position: absolute;
		right: 0;
		top: calc(50% - 3.5px);
		width: 11px;
		height: 7px;
		background: #888;
    -webkit-mask: var(--lnb-mb);
    mask: var(--lnb-mb);
    mask-size: 11px; 
    -webkit-mask-size: 11px;
		transform: rotate(180deg);
	}
	
	#lnb .sub-menu>li.select>a {
		color: #222;
		font-weight: 700;
		text-decoration: underline;
	}

	#lnb .dept-menu {
		display: none;
		padding: 10px;
		margin-bottom: 10px;
		border-radius: 5px;
		background: #F5F5F5;
	}
	
	#lnb .dept-menu a {
		display: block;
		margin-top: 10px;
		font-size: 14px;
		line-height: normal;
	}
	
	#lnb .dept-menu li:first-child a {
		margin-top: 0;
	}

	#lnb .dept-menu>li.select a {
		color: #0065AA;
		font-weight: 700;
	}

	header .sitemap {		
		transition: unset;
	}

	.fix {
		overflow: hidden;
	}

	.fix header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		background: #fff;
	}

	.fix #lnb {
		position: absolute;
		left: 0;
		top: 9.8rem;
		display: block;
		padding: 20px;
		width: 100%;
		height: calc(100vh - 9.8rem);
		background: #fff;
		box-sizing: border-box;
		overflow: scroll;
	}

	.fix .sitemap {
		background: url(/img/lnb-close.svg) no-repeat center;
	}
	
	.fix .sitemap::before {
		display: none;
	}
}

/*** mobile ***/
@media screen and (max-width:840px) {
	html{
		font-size: 40% !important;
	}

	footer .con {
		flex-direction: column;
	}

	footer .addr ul {
		gap: 1rem;
	}

	footer .call {
		text-align: center;
		justify-content: center;
		width: 100%;
	}
}