@charset "UTF-8";

/*** header ***/
#header{
	width: 100%;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	transition: var(--transition);
}
#header .gnb-bg{
	width: 100%;
	height: 400px;
	background: var(--white);
	backdrop-filter:blur(10px);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
#header .header-line{
	width: 100%;
	height: 1px;
	background: var(--gray04);
	position: absolute;
    top: 100%;
    left: 0;
	opacity: 1;
	visibility: hidden;
}
#header .layout,
#footer .layout{
	max-width: 1790px;
}
#header > .layout{
	display: flex;
    justify-content: space-between;
    align-items: center;
	height: 100%;
}
#header h1.logo{
	width: 133px;
}
#header h1.logo .cls-4,
#header h1.logo .cls-1{
    fill: var(--white);
}
#header h1.logo strong{
	position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}
#header .nav{
	height: 100%;
}
#header .nav > ul{
	display: flex;
	align-items: center;
	height: 100%;
    /*gap: 50px;*/
}
#header nav > ul > li{
	height: 100%;
	position: relative;
	z-index: 99;
	padding: 0 var(--space-30);
	transition: var(--transition);
}
#header nav > ul > li:after{
	content: '';
	width: 0;
	height: 1px;
	background: var(--orange);
	position: absolute;
	bottom: 0;
	left: 0;
	transition: var(--transition);
}
#header nav > ul > li > a{
	display: flex;
    align-items: center;
    height: 100%;
	font-size: 1.06rem;
	font-weight: var(--fw-600);
	color: var(--white);
}
#header nav > ul > li > .gnb-item{
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 98;
	width: 100%;
	height: 0;
	transition: var(--transition);
	visibility: hidden;
	opacity: 0;
}
#header nav > ul > li > .gnb-item > ul > li{
	text-align: center;
	transition: var(--transition);
}
#header nav > ul > li > .gnb-item > ul > li > a{
	display: block;
	width: 100%;
	font-weight: var(--fw-500);
	color: var(--white);
	padding: var(--space-15) 0;
}
#header nav > ul > li > .gnb-item > ul > li:first-child > a{
	padding-top: var(--space-30);
}
#header .sitemap-button{
	width: 22px;
	height: 22px;
	position: relative;
	cursor: pointer;
}
#header .sitemap-button .square{
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	background: var(--white);
	transition: var(--transition);
}
#header .sitemap-button .square1 {
	top: 0;
	left: 0;
}
#header .sitemap-button .square2 {
	top: 0;
	right: 0;
}
#header .sitemap-button .square3{
	bottom: 0;
	left: 0;
}
#header .sitemap-button .square4{
	bottom: 0;
	right: 0;
}

/* 공통 호버&동작 효과 */
#header:hover,
#header.on{
	background: var(--white);
}
#header:hover h1.logo .cls-4,
#header.on h1.logo .cls-4{
	fill: var(--blue);
}
#header:hover h1.logo .cls-1,
#header.on h1.logo .cls-1 {
    fill: #333333;
}
#header:hover nav > ul > li > a,
#header.on nav > ul > li > a{
	color: var(--black);
}
#header:hover nav > ul > li > .gnb-item > ul > li > a,
#header.on nav > ul > li > .gnb-item > ul > li > a{
	color: var(--gray01);
}
#header:hover .sitemap-button .square,
#header.on .sitemap-button .square{
	background: var(--black);
}

/* 호버효과 */
#header nav > ul:hover > li{
	padding: 0 var(--space-45);
}
#header nav > ul:hover .gnb-item{
	opacity: 1;
	visibility: visible;
}
#header nav > ul > li:hover:after{
	width: 100%;
}
#header nav > ul > li:hover > a,
#header nav > ul > li > .gnb-item > ul > li > a:hover{
	color: var(--orange);
}
#header .sitemap-button:hover .square1 {
  transform: translate(4px, 4px);
}
#header .sitemap-button:hover .square2 {
  transform: translate(-4px, 4px);
}
#header .sitemap-button:hover .square3{
  transform: translate(4px, -4px);
}
#header .sitemap-button:hover .square4{
  transform: translate(-4px, -4px);
}

/* 동작효과 */
#header .gnb-bg.active{
	/*height: 400px;*/
	opacity: 1;
	visibility: visible;
}
#header .header-line.active{
	opacity: 1;
	visibility: visible;
}
#header nav.hide {
	display: none;
}
#header .sitemap-button.active .square1 {
	width: 100%;
    height: 2px;
	transform: rotate(45deg) translate(7px, 7px);
}
#header .sitemap-button.active .square2 {
	opacity: 0;
}
#header .sitemap-button.active .square3 {
	width: 100%;
    height: 2px;
	transform: rotate(-45deg) translate(7px, -7px);
}
#header .sitemap-button.active .square4 {
	opacity: 0;
}

/*** sitemap ***/
#sitemap{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0px;
    left: 0px;
	z-index: -1;
    overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
#sitemap:before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--black);
	backdrop-filter:blur(10px);
}
#sitemap .layout{
	display: flex;
    align-items: center;
	justify-content: center;
	height: 100%;
}
#sitemap .menu{
	display: flex;
    justify-content: space-between;
	width: 100%;
	text-align: center;
}
#sitemap .menu > li{
	width: calc((100%)/6);
}
#sitemap .menu > li:not(:first-child){
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}
#sitemap .menu > li > h3{
	color: var(--white);
	transition: var(--transition);
}
#sitemap .menu > li > h3 .more{
	display: none;
	width: 18px;
	height: 18px;
	position: relative;
}
#sitemap .menu > li > h3 .more:before,
#sitemap .menu > li > h3 .more:after{
	content: '';
	width: 100%;
	height: 2px;
	background: var(--white);
	position: absolute;
	top: 50%;
	transition: var(--transition);
}
#sitemap .menu > li > h3 .more:before{
	left: 0;
	transform: translateY(-50%);
}
#sitemap .menu > li > h3 .more:after{
	left: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
}
#sitemap .menu > li > .category{
	margin-top: var(--space-30);
}
#sitemap .menu > li > .category > li{
	transition: var(--transition);
}
#sitemap .menu > li > .category > li > a {
	display: block;
    width: 100%;
	font-size: 1.125rem;
	color: var(--white);
    padding: var(--space-10) 0;
	transition: var(--transition);
}
/* 호버효과 */
#sitemap .menu > li:hover h3{
	color: var(--yellow);
}
#sitemap .menu > li > .category li.dim {
  opacity: 0.6;
}
#sitemap .menu > li > .category li.on {
  opacity: 1;
}
/* 작동효과 */
#sitemap.active {
	opacity: 1;
	visibility: visible;
}
#header.sitemap-open h1.logo .cls-4,
#header.sitemap-open h1.logo .cls-1 {
    fill: var(--white);
}
#header.sitemap-open .sitemap-button .square,
#header.sitemap-open:hover .sitemap-button .square{
	background: var(--white) !important;
}

	/* @header 미디어쿼리 */
	@media all and (max-width: 1400px){
		#header .nav{
			display: none;
		}
	}
	@media all and (max-width: 1200px){
		#sitemap .layout{
			width: 100%;
			align-items: flex-start;
		}
		#sitemap .menu{
			flex-direction: column;
			justify-content: flex-start;
			text-align: left;
			margin-top: var(--space-80);
		}
		#sitemap .menu > li{
			width: 100%;
			border-bottom: 1px solid rgba(255, 255, 255, 0.2);
			padding: var(--space-20) 0;
		}
		#sitemap .menu > li:first-child{
			border-top: 1px solid rgba(255, 255, 255, 0.2);
		}
		#sitemap .menu > li:not(:first-child) {
			border-left: none;
		}
		#sitemap .menu > li > h3{
			display: flex;
			align-items: center;
			justify-content: space-between;
			width: 90%;
			font-size: 1.25rem;
			margin: 0 auto;
		}
		#sitemap .menu > li > h3 .more{
			display: block;
		}
		#sitemap .menu > li > .category{
			display: none;
			width: 90%;
			margin: var(--space-30) auto 0;
		}
		#sitemap .menu > li > .category > li > a{
			font-size: 1rem;
		}
		/* 동작효과 */
		#sitemap .menu > li:hover h3 {
			color: var(--white);
		}
		#sitemap .menu > li.open h3{
			color: var(--yellow);
		}
		#sitemap .menu > li.open h3 .more:after{
			opacity: 0;
			transform: translate(-50%, -50%) rotate(0deg);
		}
	}
	@media all and (max-width: 640px){
		#header{
			height: 65px;
		}
		#header h1.logo {
			width: 100px;
		}
		#header .sitemap-button {
			width: 16px;
			height: 16px;
		}
		#header .sitemap-button .square{
			width: 6px;
			height: 6px;
		}
		#header .sitemap-button:hover .square1 {
		  transform: translate(2px, 2px);
		}
		#header .sitemap-button:hover .square2 {
		  transform: translate(-2px, 2px);
		}
		#header .sitemap-button:hover .square3{
		  transform: translate(2px, -2px);
		}
		#header .sitemap-button:hover .square4{
		  transform: translate(-2px, -2px);
		}
		#sitemap .menu{
			margin-top: var(--space-70);
		}
		#sitemap .menu > li{
			padding: var(--space-15) 0;
		}
		#sitemap .menu > li > h3{
			font-size: 1.142rem;
		}
		#sitemap .menu > li > h3 .more{
			width: 14px;
			height: 14px;
		}
		#sitemap .menu > li > .category{
			margin: var(--space-20) auto 0;
		}
		/* 동작효과 */
		#header .sitemap-button.active .square1{
			transform: rotate(45deg) translate(5px, 5px);
		}
		#header .sitemap-button.active .square3{
			transform: rotate(-45deg) translate(5px, -5px);
		}
	}


/*** footer ***/
#footer{
	background: var(--gray05);
	padding: var(--space-55) 0;
}
#footer .top{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--space-20);
}
#footer .top .footer-logo{
	width: 184px;
}
#footer .top .footer-menu{
	display: flex;
	align-items: center;
	gap: 45px;
}
#footer .top .footer-menu li a{
	font-weight: var(--fw-600);
	color: var(--black);
	transition: var(--transition);
}
#footer .top .footer-menu li:nth-child(5) a{
	color: var(--orange);
}
#footer .bottom{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	border-top: var(--border);
	padding-top: var(--space-40);
}
#footer .bottom .left .adress,
#footer .bottom .left .info{
	display: flex;
	align-items: center;
	gap: 34px;
}
#footer .bottom .left .info{
	margin-top: var(--space-5);
}
#footer .bottom .left .adress li,
#footer .bottom .left .info li{
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}
#footer .bottom .left .adress li:after,
#footer .bottom .left .info li:after{
	content: '/';
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-51%);
	color: var(--gray03);
}
#footer .bottom .left .adress li:last-child::after,
#footer .bottom .left .info li:last-child::after{
	display: none;
}
#footer .bottom .left .adress li strong,
#footer .bottom .left .info li strong{
	font-weight: var(--fw-600);
}
#footer .bottom .left .copyright{
	font-size: 0.93rem;
	color: var(--gray02);
	margin-top: var(--space-5);
}
#footer .bottom .right .tel{
	font-weight: var(--fw-600);
	color: var(--gray02);
}
#footer .bottom .right .deco{
	display: inline-block;
	margin-left: var(--space-3);
}
	/* @footer 미디어쿼리 */
	@media all and (max-width: 1400px){
		#footer .top .footer-menu{
			gap: 40px;
		}
		#footer .bottom .left .adress,
		#footer .bottom .left .info{
			gap: 20px
		}
		#footer .bottom .left .adress li:after,
		#footer .bottom .left .info li:after{
			right: -12px;
		}
	}
	@media all and (max-width: 1200px){
		#footer .top .footer-logo {
			width: 160px;
		}
		#footer .top .footer-menu {
			gap: 35px;
		}
		#footer .bottom{
			flex-direction: column-reverse;
			align-items: flex-start;
			padding-top: var(--space-20);
		}
		#footer .bottom .left{
			margin-top: var(--space-15);
		}
		#footer .bottom .right .tel{
			color: var(--gray01);
		}
		#footer .bottom .right .deco{
			margin-left: var(--space-6);
		}
	}
	@media all and (max-width: 1000px){
		#footer .top{
			flex-direction: column;
			align-items: self-start;
			gap: 25px;
		}
		#footer .bottom .left .adress,
		#footer .bottom .left .info{
			flex-direction: column;
			align-items: stretch;
			gap: 5px;
		}
		#footer .bottom .left .adress li:after,
		#footer .bottom .left .info li:after{
			display: none;
		}
	}
	@media all and (max-width: 640px){
		#footer .top .footer-logo {
			width: 130px;
		}
		#footer .top .footer-menu {
			flex-wrap: wrap;
			gap: 15px 25px;
		}
	}


/*** quick ***/
#quick{
	position: fixed;
	bottom: 80px;
	right: 0;
	z-index: 97;
	pointer-events: none;
}
#quick .menu{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	overflow: hidden;
}
#quick .menu li{
	position: relative;
	display: flex;
	align-items: center;
	height: 50px;
	background: white;
	border-radius: 5px 0 0 5px;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
	transform: translateX(calc(100% - 60px));
	transition: var(--transition);
	white-space: nowrap;
	pointer-events: auto;
}
#quick .menu li:nth-child(1){
	background: var(--orange);
}
#quick .menu li:nth-child(2){
	background: #ffe600;
}
#quick .menu li:nth-child(3){
	background: #2cb24a;
}
#quick .menu li:nth-child(4){
	background: #155c75;
}
#quick .menu li a{
	display: flex;
	align-items: center;
	padding: 0 var(--space-18);
	height: 100%;
}
#quick .menu li:nth-child(1) a .icon{
	width: 26px;
}
#quick .menu li:nth-child(2) a .icon{
	width: 27px;
}
#quick .menu li:nth-child(3) a .icon{
	width: 26px;
}
#quick .menu li:nth-child(4) a .icon{
	width: 23px;
}
#quick .menu li a .text{
	margin-left: var(--space-8);
	font-size: 0.93rem;
	font-weight: bold;
	color: var(--white);
	opacity: 0;
	transition: var(--transition);
}
#quick .menu li:nth-child(2) a .text {
	color: #381e1e;
}
/* 호버효과 */
#quick .menu li:hover {
	transform: translateX(0);
}
#quick .menu li:hover a .text{
	opacity: 1;
}
/* 동작효과 */
#quick .menu li.show {
  transform: translateX(0);
  pointer-events: auto;
}
#quick .menu li.show a{
	padding: 0 var(--space-20);
}
	/* @quick 미디어쿼리 */
	@media all and (max-width: 1200px){
		#quick .menu li{
			height: 45px;
		}
	}
	@media all and (max-width: 640px){
		#quick{
			bottom: 50px;
		}
		#quick .menu{
			gap: 7px;
		}
		#quick .menu li{
			height: 40px;
			transform: translateX(calc(100% - 40px));
		}
		#quick .menu li a {
			padding: 0 var(--space-10);
		}
		#quick .menu li:nth-child(1) a .icon{
			width: 21px;
		}
		#quick .menu li:nth-child(2) a .icon{
			width: 22px;
		}
		#quick .menu li:nth-child(3) a .icon{
			width: 21px;
		}
		#quick .menu li:nth-child(4) a .icon{
			width: 20px;
		}
		#quick .menu li a .text{
			font-size: 0.857rem;
		}
		/* 동작 효과 */
		#quick .menu li.show a{
			padding: 0 var(--space-15);
		}
	}