@charset "utf-8";

#gnb {
    display: flex;
    width: 100%;
    /* margin: 1em 0 1em; */
    /* padding: 0em 5em; */
    position: absolute;
    z-index: 10;
    top: 0;
    /* visibility: hidden; */
    height: 100px;
    /* transition: all 1s ease-in-out; */
    background: #ffffff;
    flex-direction: column;
    transition: .6s;
    border-bottom: 1px solid #ffffff00;
}
#gnb.hide {visibility: hidden; 
	height:0; top:-82px;
	transition: all 0.6s;
	}
#gnb.none {
	animation: fadeInDown .6s;
	position:
	absolute;
	transition: all 0.6s;
	top:0px;
}
#gnb.fixed {
	/* transition: all 1s ease-in-out; */
	position: fixed;
	/* border-color: #e2e2e2; */
	height: 80px;
	/* box-shadow: 0 3px 10px hsl(0deg 0% 0% / 10%); */
	border: 1px solid #eee;
	}
#gnb.fixed .site_map_div {height:100%;}
#gnb.fixed .gnb_right {height:100%;}
#gnb.fixed .gnb_top {display:none;}
#gnb.fixed .gnb_menu {height:100%}
#gnb.fixed h1 {
	/* background-image: url(/img/logo/logo.svg); */
	background-size: 80%;
	}
#gnb.fixed > ul > li > a {color:#121212;}
#gnb.fixed .site_map_d2 a {/* color: #fff; */}
#gnb.fixed .site_map_d2 a:hover {color:var(--color-main)}
#gnb h1{
    width: 15%;
    min-width: 160px;
    height: 60px;
    background-image: url(/img/logo/logo.svg);
    background-position-x: left;
    background-position-y: center;
    background-size: contain;
    background-repeat: no-repeat;
}
#gnb h1 > a {
    width: 100%;
    height: 100%;
    display: table;
	text-indent:-111111px;
}
#gnb h1.fix_view {display:none;background-size: 100%;width: 240px;}
#gnb .gnb_top form {
    display: flex;
    border-radius: 40px;
    background-color: #fff;
}

#gnb .gnb_top input {
    border-radius: 40px;
    width: 30%;
    height: 40px;
    border: 1px solid var(--color-main);
}
#gnb .gnb_top input[type=text] {
	padding:0 1rem;
	font-size: 16px;
	font-weight: 300;
	/* background-image: url(/img/common/search.png); */
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: 96%;
	width: 300px;
	border-radius: 40px 0 0 40px;
	border-right: 0;
	background-color: #fff;
}
#gnb .gnb_top input[type=text]:hover, #gnb .gnb_top input[type=text]:focus {background-color:#fff}
#gnb .gnb_top input[type=submit] {
	background-image: url(/img/common/search.png);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
	width: 50px;
	border-left: 0;
	border-radius: 0 40px 40px 0;
	background-color: #fff;
}
#gnb .gnb1_ul{
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
    /* left: 50%; */
    /* margin-left: -251px; */
    /* top: 3em; */
    align-items: center;
    /* margin-left: 20%; */
    /* overflow: hidden; */
    height: 100%;
}
#gnb .gnb1_ul > li{
    position: relative;
    width: 25%;
    min-width: 130px;
    display: flex;
    height: 100%;
    /* overflow: hidden; */
    flex-direction: column;
    border-radius: 1em 1em 0 0;
    /* box-shadow: 3px 3px 3px gray; */
    /* overflow: hidden; */
    transition:
    all 0.5s;
    /* margin-top: 0.4em; */
    /* padding: 1em 0 1em; */
    height: 100%;
}
#gnb .gnb1_ul > li:hover {/* background-color:#fff; */}
#gnb .gnb1_ul > li:last-child::before {display:none;}
/*#gnb > ul > li:nth-of-type(2):hover {background-color:var(--color-point2); }
#gnb > ul > li:nth-of-type(3):hover {background-color:var(--color-point3); }
#gnb > ul > li:nth-of-type(4):hover {background-color:var(--color-point4); }*/
#gnb .gnb1_ul > li > a{
    /* padding: .5em; */
    width: 100%;
    height: 100%;
    text-align: center;
    /* z-index: -1; */
    position: relative;
    font-weight: 600;
    font-size: 18px;
    /* box-shadow: 3px 3px 3px gray; */
    color: #232323;
    /* font-family: var(--font-point); */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#gnb .gnb1_ul > li:after{content:"";border-bottom:4px solid var(--color-main);width:0;bottom: -7px;left: 50%;position: absolute;display: block;overflow: hidden;-webkit-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;transform:translateX(-50%);border-radius: 1em;}
#gnb > ul > li:hover > a, #gnb .gnb1_ul > li > a:hover  {color: var(--color-main);}

#gnb .gnb1_ul > li:hover::after {width: 60%;-webkit-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;}

#gnb .gnb1_ul > li ul{
    /* display: none; */
    position: absolute;
    top: 65px;
    left: 0;
    height:0;
    width: 198px;
    background-color: #fff;
    visibility: hidden;
    opacity:0;
    height:0;
    overflow:
    hidden;
    /* padding: .1em; */
    /* transition:all 0.26s; */
    z-index: -1;
    border-radius: .5em;
    padding: 1rem 0;
    box-shadow: 6px 6px 17px -4px rgb(0 0 0 / 12%);
    transition: 0.1s ease-in-out;
    /* animation: fadeOutUp .5s; */
    border: 1px solid #ccc;
    left: 50%;
    transform: translateX(-50%);
}

#gnb .gnb1_ul > li.over ul {
	visibility:visible;
	opacity:1;
	height:auto;
	/* animation: fadeIn .5s; */
	transition: 0.5s cubic-bezier(0.47, 0, 0.75, 0.72);
}
#gnb.fixed .gnb1_ul > li ul {
    top: 78px;
}
#gnb.fixed .gnb1_ul > li:after {
    bottom: -3px;
}
/*
#gnb > ul > li ul.none {
	visibility:hidden;
	height:0;
}*/


#gnb .gnb1_ul .gnb2_ul li{
    /* background-color: white; */
    padding: .5rem 0;
}
#gnb .gnb1_ul > li:first-of-type .gnb2_ul li:first-of-type a {color: #00BCD4}
#gnb .gnb1_ul > li:first-of-type .gnb2_ul li:nth-of-type(2) a {color: #00BCD4}
#gnb .gnb1_ul .gnb2_ul li a{
    /* padding: .5em 0 .5em 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    /* color: #fff; */
    font-weight: 400;
    /* font-family: var(--font-point); */
}
#gnb .gnb1_ul .gnb2_ul li:first-child a {/* padding-top:0; */}
#gnb .gnb1_ul .gnb2_ul li a:hover {color: var(--color-main);}
/*#gnb > ul > li:nth-of-type(1) ul li a:hover {background-color:var(--color-point1);}
#gnb > ul > li:nth-of-type(2) ul li a:hover {background-color:var(--color-point2);}
#gnb > ul > li:nth-of-type(3) ul li a:hover {background-color:var(--color-point3);}
#gnb > ul > li:nth-of-type(4) ul li a:hover {background-color:var(--color-point4);}*/
#gnb .gnb_wrap {
    display: flex;
    align-items: center;
    width: var(--width-size);
    margin: 0 auto;
    height: 100%;
}
#gnb .gnb_right {display:flex;flex-direction: column;width: 85%;}
#gnb .gnb_top {
    display: flex;
    height: 30px;
    justify-content: flex-end;
    align-items: center;
}
.gnb_top .top_login {background-color:#f6f6f6;padding: 2px 20px;border-radius: 20px;}
#gnb .gnb_menu {width:100%;height: 60px;position: relative;/* border-bottom: 1px solid #ddd; */background-color: #fff;display: flex;align-items: center;justify-content: space-between;}
#gnb .menu_inner {
    position: relative;
    /* width: var(--width-size); */
    /* margin: 0 auto; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    height: 100%;
    width: 90%;
}
#gnb .m_btn {
    /* width: 15%; */
}

#gnb .gnb_sns {width: 12%;}
#gnb .gnb_sns ul {
    display: flex;
    justify-content: flex-end;
}
#gnb .gnb_sns ul li {margin-left:1rem}
#gnb > div iconify-icon, #gnb > div i {color: #222;font-size: 1.5em;/* margin-right: 5px; */cursor: pointer;/* margin-left: 5px; */}
#gnb .gnb_top a{
    padding: 0 5px;
    position: relative;
    color: #555;
    font-weight: 300;
    font-size: 15px;
}
#gnb .gnb1_ul a:nth-of-type(1){
    padding-left: 0;
}
#gnb .gnb1_ul a:after {content:"";display: table;width: 1px;height: 14px;background: #ccc;position: absolute;left: 0;top: 7px;}
#gnb .gnb1_ul a:first-child::after {display:none;}
#gnb .gnb1_ul a.sitemap{
    width: 40px;
    height: 40px;
    display: flex;
    align-content: space-between;
    flex-direction: column;
    padding: .5em .3em;
    border: 1px solid #ccc;
    position: relative;
    justify-content: space-between;
}
#gnb > div a.sitemap div {
    height: 2px;
    width: 100%;
    /* position: absolute; */
    background-color: var(--color-gray);
}
#gnb > div a.sitemap div:nth-of-type(1){}
#gnb > div a.sitemap div:nth-of-type(2){}
#gnb > div a.sitemap div:nth-of-type(3){}
#gnb button{
    padding: 0;
    border: 0 none;
    /* background: none; */
    cursor: pointer;
    /* vertical-align: unset; */
    height: unset;
    /* display: flex; */
    /* align-items: center; */
    /* width: 100%; */
    /* justify-content: flex-end; */
    /* background-color: var(--color-main); */
    border-radius: 50%;
    width: 38px;
    height: 38px;
    }
#gnb button i {
    font-size: 2rem;
    transition: all 1s;
    transform: rotate(0);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: #fff; */
    transition: all .4s
}

#gnb .m_btn button:hover i, #gnb .m_btn button:hover span {}
#gnb.fixed .m_btn button i,
#gnb.fixed .m_btn iconify-icon {/* color:#fff; */}
#gnb.fixed h1.fix_view {display:unset;}
#gnb .m_btn button span {color: #232323;transition: all .4s}
#gnb .m_btn button i.ri-close-fill{transform: rotate(180deg);}
#gnb .gnb_top .all_menu {
    display:none;
    border: 0;
    background-color: var(--color-main);
    border-radius: 50%;
    height: 45px;
    width: 45px;
}
#gnb .gnb_top .all_menu i {color:#ffffff}
.nav_float {
    display: flex;
    height: 70px;
    width: 100%;
    /* border-bottom: 1px solid #ddd; */
    justify-content: center;
    position: relative;
    padding-top: 1rem;
}
.nav_float ul{
    display: flex;
    justify-content: flex-start;
    width: 100%;
    gap: 5rem;
}
.nav_float ul li{
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav_float ul li.on a:before{
	content:"";
	position:absolute;
	background-color: var(--color-main);
	width: 10px;
	height: 10px;
	border-radius:50%;
	left: 0;
	top: 15%;
	z-index: 1;
}
.nav_float ul li a {
    display: flex;
    /* width: 100%; */
    height: 100%;
    justify-content: center;
    font-weight: 500;
    font-size: 22px;
    align-items: center;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    padding: 0 1rem;
}
.nav_float ul li a:hover {color:var(--color-main)}
.nav_float ul li.on a, .nav_float ul li.on a:hover {color: var(--color-main);/* background-color: var(--color-main); *//* border-radius: 100px; */}

.icon_10 ul li.on a,.icon_10 ul li a:hover {}
.icon_20 ul li.on a,.icon_20 ul li a:hover {
    background-color: #0b98d3;
}
.icon_30 ul li.on a,.icon_30 ul li a:hover {background-color: #e98612;}
.icon_50 ul li.on a,.icon_50 ul li a:hover {background-color: #048d4c;}

/*.icon_10 ul li:nth-of-type(1) a{background-image:url(/img/icon/10_icon1.png);}
.icon_10 ul li.on:nth-of-type(1) a,.icon_10 ul li:nth-of-type(1) a:hover{background-image:url(/img/icon/10_icon1_over.png);}
.icon_10 ul li:nth-of-type(2) a{background-image:url(/img/icon/10_icon2.png);}
.icon_10 ul li.on:nth-of-type(2) a,.icon_10 ul li:nth-of-type(2) a:hover{background-image:url(/img/icon/10_icon2_over.png);}
.icon_10 ul li:nth-of-type(3) a{background-image:url(/img/icon/10_icon3.png);}
.icon_10 ul li.on:nth-of-type(3) a,.icon_10 ul li:nth-of-type(3) a:hover{background-image:url(/img/icon/10_icon3_over.png);}
.icon_10 ul li:nth-of-type(4) a{background-image:url(/img/icon/10_icon4.png);}
.icon_10 ul li.on:nth-of-type(4) a,.icon_10 ul li:nth-of-type(4) a:hover{background-image:url(/img/icon/10_icon4_over.png);}
.icon_10 ul li:nth-of-type(5) a{background-image:url(/img/icon/10_icon5.png);}
.icon_10 ul li.on:nth-of-type(5) a,.icon_10 ul li:nth-of-type(5) a:hover{background-image:url(/img/icon/10_icon5_over.png);}
.icon_10 ul li:nth-of-type(6) a{background-image:url(/img/icon/10_icon6.png);}
.icon_10 ul li.on:nth-of-type(6) a,.icon_10 ul li:nth-of-type(6) a:hover{background-image:url(/img/icon/10_icon6_over.png);}
.icon_10 ul li:nth-of-type(7) a{background-image:url(/img/icon/10_icon7.png);}
.icon_10 ul li.on:nth-of-type(7) a,.icon_10 ul li:nth-of-type(7) a:hover{background-image:url(/img/icon/10_icon7_over.png);}

.icon_20 ul li:nth-of-type(1) a{background-image:url(/img/icon/20_icon1.png);}
.icon_20 ul li.on:nth-of-type(1) a,.icon_20 ul li:nth-of-type(1) a:hover{background-image:url(/img/icon/20_icon1_over.png);}
.icon_20 ul li:nth-of-type(2) a{background-image:url(/img/icon/20_icon2.png);}
.icon_20 ul li.on:nth-of-type(2) a,.icon_20 ul li:nth-of-type(2) a:hover{background-image:url(/img/icon/20_icon2_over.png);}
.icon_20 ul li:nth-of-type(3) a{background-image:url(/img/icon/20_icon3.png);}
.icon_20 ul li.on:nth-of-type(3) a,.icon_20 ul li:nth-of-type(3) a:hover{background-image:url(/img/icon/20_icon3_over.png);}
.icon_20 ul li:nth-of-type(4) a{background-image:url(/img/icon/20_icon4.png);}
.icon_20 ul li.on:nth-of-type(4) a,.icon_20 ul li:nth-of-type(4) a:hover{background-image:url(/img/icon/20_icon4_over.png);}
.icon_20 ul li:nth-of-type(5) a{background-image:url(/img/icon/20_icon5.png);}
.icon_20 ul li.on:nth-of-type(5) a,.icon_20 ul li:nth-of-type(5) a:hover{background-image:url(/img/icon/20_icon5_over.png);}
.icon_20 ul li:nth-of-type(6) a{background-image:url(/img/icon/20_icon6.png);}
.icon_20 ul li.on:nth-of-type(6) a,.icon_20 ul li:nth-of-type(6) a:hover{background-image:url(/img/icon/20_icon6_over.png);}

.icon_30 ul li:nth-of-type(1) a{background-image:url(/img/icon/30_icon1.png);}
.icon_30 ul li.on:nth-of-type(1) a,.icon_30 ul li:nth-of-type(1) a:hover{background-image:url(/img/icon/30_icon1_over.png);}
.icon_30 ul li:nth-of-type(2) a{background-image:url(/img/icon/30_icon2.png);}
.icon_30 ul li.on:nth-of-type(2) a,
.icon_30 ul li:nth-of-type(2) a:hover{background-image:url(/img/icon/30_icon2_over.png);}

.icon_30 ul li:nth-of-type(3) a{background-image:url(/img/icon/30_icon3.png);}
.icon_30 ul li.on:nth-of-type(3) a,
.icon_30 ul li:nth-of-type(3) a:hover{background-image:url(/img/icon/30_icon3_over.png);}

.icon_30 ul li:nth-of-type(4) a{background-image:url(/img/icon/30_icon4.png);}
.icon_30 ul li.on:nth-of-type(4) a,
.icon_30 ul li:nth-of-type(4) a:hover{background-image:url(/img/icon/30_icon4_over.png);}

.icon_30 ul li:nth-of-type(5) a{background-image:url(/img/icon/30_icon5.png);}
.icon_30 ul li.on:nth-of-type(5) a,
.icon_30 ul li:nth-of-type(5) a:hover{background-image:url(/img/icon/30_icon5_over.png);}*/




.icon_50 ul li:nth-of-type(1) a{background-image:url(/img/icon/50_icon1.png);}
.icon_50 ul li.on:nth-of-type(1) a,.icon_50 ul li:nth-of-type(1) a:hover{background-image:url(/img/icon/50_icon1_over.png);}
.icon_50 ul li:nth-of-type(2) a{background-image:url(/img/icon/50_icon2.png);}
.icon_50 ul li.on:nth-of-type(2) a,.icon_50 ul li:nth-of-type(2) a:hover{background-image:url(/img/icon/50_icon2_over.png);}

.icon_50 ul li:nth-of-type(3) a{background-image:url(/img/icon/50_icon3.png);}
.icon_50 ul li.on:nth-of-type(3) a,.icon_50 ul li:nth-of-type(3) a:hover{background-image:url(/img/icon/50_icon3_over.png);}
.icon_50 ul li:nth-of-type(4) a{background-image:url(/img/icon/50_icon4.png);}
.icon_50 ul li.on:nth-of-type(4) a,.icon_50 ul li:nth-of-type(4) a:hover{background-image:url(/img/icon/50_icon4_over.png);}
.icon_50 ul li:nth-of-type(5) a{background-image:url(/img/icon/50_icon5.png);}
.icon_50 ul li.on:nth-of-type(5) a,.icon_50 ul li:nth-of-type(5) a:hover{background-image:url(/img/icon/50_icon5_over.png);}
.icon_50 ul li:nth-of-type(6) a{background-image:url(/img/icon/50_icon6.png);}
.icon_50 ul li.on:nth-of-type(6) a,.icon_50 ul li:nth-of-type(6) a:hover{background-image:url(/img/icon/50_icon6_over.png);}
.icon_50 ul li:nth-of-type(7) a{background-image:url(/img/icon/50_icon7.png);}
.icon_50 ul li.on:nth-of-type(7) a,.icon_50 ul li:nth-of-type(7) a:hover{background-image:url(/img/icon/50_icon7_over.png);}
.icon_50 ul li:nth-of-type(8) a{background-image:url(/img/icon/50_icon8.png);}
.icon_50 ul li.on:nth-of-type(8) a,.icon_50 ul li:nth-of-type(8) a:hover{background-image:url(/img/icon/50_icon8_over.png);}


.global_search {
    display: none;
    position: fixed;
    top: 0;
    z-index: 1111111111111111;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.7);
}
.global_search > div{position: fixed;width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;}
.global_search > div >div{
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: center;
    position: absolute;
    background: white;
    padding: 1em;
    border-radius: 1rem;
}
.global_search > div > div h3{
    font-size: 1.4em;
    font-weight: 700;
    color: #d36868;
}
.global_search > div > div ul{
    display: flex;
    margin-top: 1em;
}
.global_search > div > div ul li{
}
.global_search > div > div ul li input{}
.global_search > div > div ul li input[type=text]{
    /* height: 3.5em; */
    padding: .5em;
    font-size: 1.2em;
    background: #f3f3f3;
    border: 1px solid #d8d8d8;
}
.global_search > div > div ul li input[type=submit]{
    padding: .7em 2em;
}
.global_search > div > div span {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -3rem;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
}

.sub_content_s, .sub_all_wrab {
    visibility: hidden;
}

@media screen and (max-width: 1024px) {
	.global_search {}
	.global_search div{}
	.global_search div h3{}
	.global_search div ul{}
	.global_search div ul li{}
	.global_search div ul li input{}
	.global_search div ul li input[type=text]{}
	.global_search div ul li input[type=submit]{}
	
}
.icon_btn {/* width:10%; */display:flex;/* justify-content: flex-end; */gap: 10px;}
.site_map_div {
			   position: absolute;
			   top: 0;
			   left: 0;
			   width:100%;
			   height: auto;
			   display: flex;
			   justify-content: center;
			   align-items: flex-start;
			   background-color: #ffffff;
			   /* overflow: hidden; */
			   /* transition: all .5s; */
			   display: none;
			   /* padding: 80px 0 2rem; */
			   z-index: 0;
			   /* box-shadow: 0 10px 20px -5px rgb(10 113 147 / 30%); */
			   }
.site_map_div .map_inner {
    display: flex;
    width: 100%;
    transition: all 1s;
    margin-top: 60px;
}
.site_map_div .map_inner > div {}
.site_map_div .map_inner .space {width:15%}
.site_map_div .sitemap_close {
    color: white;
    cursor: pointer;
    text-align: center;
    display: block;
    width: 6em;
    padding: .3em .5em;
    border: 1px solid white;
    margin: 0 auto;
    border-radius: 6px;
    background-color: #4c5465;
    font-weight: 500;
    transition: all .4s;
}

.site_map_div .sitemap_close:hover {background-color:#fff; color:var(--color-dark)}
.site_map_div.active {height: 400px;}

.site_map_d1 {
    position: absolute;
    display: flex;
    /* top: 74px; */
    left: 0;
    width: 100%;
    /* margin: 1rem 10% 2rem; */
    /* padding: 0 15rem; */
    /* margin: 0 11%; */
    flex-direction: row;
    justify-content: space-between;
    /* background-color: #fff; */
    /* padding: 0 0 1rem; */
    /* padding: 1rem 0; */
}
.site_map_d1 > li{
    text-align: center;
    min-width: 130px;
    width: 20%;
    position: relative;
    padding: .5rem 0 1rem;
}
.site_map_d1 > li a{
    /* color: #fff; */
    line-height: 2.2;
    font-weight: 400;
    /* font-family: var(--font-point); */
    font-size: 16px;
}
.site_map_d1 > li > a {
    font-weight: 600;
    font-size: 1em;
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    color: #484848;
}
.site_map_d1 > li a ul{}
.site_map_d1 > li a ul li{}
.site_map_d1 > li a ul li a{}
.site_map_d2 {animation: fadein 1s;animation-delay: .4s;opacity: 0;animation-fill-mode: forwards;}
.site_map_d2 > li {
    font-size: 17px;
}
.site_map_d1 > li:first-of-type .site_map_d2 > li:first-of-type a {color:#00BCD4}
.site_map_d1 > li:first-of-type .site_map_d2 > li:nth-of-type(2) a {color:#00BCD4}
.site_map_d2 > li a:hover {color:var(--color-main)}
.fixed .site_map_div .map_inner {/* padding-left: 240px; */margin-top: 80px;}
.fixed .site_map_d1 {}
.fixed .site_map_d1 > li > a {top: -61px;}
.sitemap_bg {
    width: 100%;
    height: 0px;
    /* background-color: white; */
    position: absolute;
    top: 0;
    z-index: 2;
    transition: all 1s;
    opacity: 0;
}

.sitemap_bg.view {
    width: 100%;
    height: 330px;
    top: 80px;
    left:0;
    z-index: 9;
    position: fixed;
    /* z-index: 3; */
    transition: all 1s;
    background-color: white;
    opacity: 1;
    box-shadow: 0 3px 20px rgb(0 0 0 / 6%);
}
@media only screen and (min-width:1025px) and (max-width: 1600px)  {
	#gnb .gnb_top, #gnb .gnb_menu {}
	#gnb > ul {
    width: 70%;
	}
	#gnb > ul li {width:auto;min-width: 100px;}
	#gnb .menu_inner {/* width: 70%; */}
	#gnb .gnb1_ul {
    /* width: 70%; */
}

	.site_map_d1 {
    /* width: 63%; */
}
	
}
@media screen and (max-width: 1204px) {
	#gnb .gnb_wrap {padding: 0 3%;width: 100%;}
	#gnb .gnb_menu {display:none}

	#gnb .gnb_top {
		display: flex;
		/* padding: 0 3%; */
		/* height: 80px; */
	}
	#gnb.fixed {height:100px}
	#gnb.fixed .gnb_top {display: flex;height: 100%;}
	#gnb.fixed h1 {background-size:100%}
	#gnb .gnb_top .all_menu {display:block;/* border: 0; *//* background-color: var(--color-main); *//* border-radius: 6px; */}
	
}
/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/ 
@media all and (max-width:767px) {
	#gnb h1 {background-size: 100%;}
	.gnb_top .top_login {display:none}
}

