
/*헤더*/
.header_top{
    background: var(--grd);
    padding: 10px 0;
}

.header_top .inner{
    justify-content: space-between;
}

.header_top .inner > div{
    width: auto;
    color: #fff;
    gap: 0 50px;
}

.header_top .inner > div strong,
.header_top .inner > div a{
    color: #fff;
}

header {
	height:auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
	z-index:100;
	transition: 0.2s;
	border-bottom: 1px solid transparent;
	background-color: #fff;
    transition: 0.5s;
}

header .hd_wrap{
    position: relative;
}

header.down{
	top: -130px;
	box-shadow: 1px 1px 10px rgba(0 0 0 / 10%);
}


.header-menu {
	margin: 0 auto;
	width: 70%;
    height: 80px;
}

.header-menu > ul {
	display: flex;
    height: 100%;
}

.header-menu > ul > li {
	position:relative;
    height: 100%;
    flex-grow: 1;
}
.header-menu > ul > li:last-of-type {
	margin-right:0;
}
.header-menu > ul > li > a {
	width:100%;
    height: 100%;
    display: flex;
    align-items: center;
	justify-content:center;
	transition: color .3s .2s;
    height: calc(100% + 2px);
}
.header-menu > ul > li > a::after { transition:opacity .1s, width .5s; content:''; display:block; height:3px; width:0; position:absolute; bottom:-1px; left:50%; transform:translate(-50%, 0); opacity:0; }
.header-menu > ul > li.on > a::after { opacity:1; width:100%; transition:opacity .1s, width .5s; }
.header-menu > ul > li:hover > a::after { opacity:1; width:100%; transition:opacity .1s, width .5s; }
	
header.on .header-menu > ul > li > a::after { background:var(--grd); }
header.on .header-menu > ul > li:hover > a span { color: var(--color_1); }


.header-menu > ul > li > a > span {
	font-size:18px;
	transition:color .4s .4s;
	position:relative;
}
.header-menu > ul > li.current > a > span {
	font-weight:600;
}
.header-menu > ul > li.current > a > span::after {
	position:absolute;
	background:#fff;
	width:7px;
	height:7px;
	border-radius:50%;
	content:'';
	top: -8px;
    left: 0;
}

header.on .header-menu > ul > li > a > span {
	color:#000;
	transition:color .4s;
}
.gnb-sub { 
    opacity:0;
    position:absolute;
    top:80px;
    left:0;
    height:450px;
    width:100%;
    padding-top:0px;
    z-index: 1;
    border-right: 1px solid #eaeaea;
}

.header-menu ul li:first-child .gnb-sub{
    border-left: 1px solid #eaeaea;
}


.gnb-sub:hover{
    background-color: #f3f3f3;
}

.gnb-sub li { text-align:center; }
.gnb-sub li a { transition:.2s; padding: 15px 0; display: block; font-size:16px;}
.gnb-sub li a:hover { color: var(--color_1); transition:.2s; }
header.on .gnb-sub { opacity:1; transition:.5s .15s; }
.header-menu > ul > li { overflow:hidden; }

.header-menu > ul > li a{
	font-family: 'GmarketSansMedium';
}

header.on .header-menu > ul > li { overflow:visible; }

header.on .gnb-sub-bg { height:450px; transition:height .5s; }

.gnb-sub-bg {
    top: 81px;
    right: 50%;
    transform: translateX(50%);
    width: 1920px;
    height: 0px;
    background: #fff;
    position: absolute;
    transition: height .5s;
    box-shadow: 0 10px 10px rgba(0,0,0,.04);
}

header.on{
   border-bottom: 1px solid #eaeaea;
}

header .right-mn{
    border: 1px solid red;
}

/**/
.m_btn {
    display: none;
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }

  .m_btn span {
    display: block;
    background: #333;
    width: 30px;
    height: 2px;
    border-radius: 3px;
    transition: 0.25s margin 0.25s, 0.25s transform;
  }

  .m_btn span:nth-child(1) {
      margin-bottom: 5px;
  }
  .m_btn span:nth-child(3) {
      margin-top: 5px;
  }
  .m_btn.active span {
      transition: 0.25s margin, 0.25s transform 0.25s;
  }
  .m_btn.active span:nth-child(1) {
    margin-top: 5px;
    margin-bottom: -2px;
      transform: rotate(45deg);
  }
  .m_btn.active span:nth-child(2) {
      transform: rotate(45deg);
  }
  .m_btn.active span:nth-child(3) {
    margin-top: -2px;
      transform: rotate(135deg);
  }



footer{
    background-color: #262B31;
    color: #fff;
    font-size: 1.2em;
}

footer p{
    font-size: 1.2em;
}

footer .logo{
    padding: 50px;
}

footer .adr{
    flex-grow: 1;
    border-left: 1px solid #3D4248;
    border-right: 1px solid #3D4248;
    padding: 50px;
}

footer .adr dl{
    margin-bottom: 30px;
}

footer .adr .map{
    width: 100%;
    height: 250px;
    background-color: #3D4248;
    border-radius: 10px;
}

footer .adr dl{
    gap: 0 50px;
}

footer .adr ul {
    gap: 0 10px;
    justify-content: end;
    margin-top: 20px;
}

footer .adr ul li{
    border-radius: 5px;
}

footer .adr ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

footer .adr ul li.naver{
    background-color: #06BE34;
}

footer .adr ul li.kko{
    background-color: #F9E000;
}

footer .info{
    flex-grow: 1;
    padding: 50px;
}

footer .info > div{
    display: flex;
}

footer .info > div:not(:last-child){
    margin-bottom: 10px;
}

footer .info > div strong{
    width: 100px;
    margin-right: 50px;
}

footer .info > div dl{
    display: flex;
    align-items: center;
}

footer .info > div dt,
footer .info > div dd{
    font-weight: 300;
}

footer .info > div dt{
    width: 100px;
    text-align-last: justify;
    margin-right: 20px;
}

footer .info .time_box{
    background-color: #3D4248;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

footer .copy{
    border-top: 1px solid #3D4248;
    padding: 20px;
    text-align: center;
    font-size: 1em;
    color: #787a7c;
}


.mobile-mn.on{
	display: none;
	transition: 0.1s;
}

.mobile-mn {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #003382;
    overflow-y: scroll;
    padding-bottom: 50px;
    z-index: 999999;
}

.mobile-mn .top{
    padding: 20px;
    color: #fff;
}

.mobile-mn .top p{
    font-size: 1.2em;
}


#mobile-nav {
    margin: 0 20px;
    border-radius: 10px;
    overflow-y: auto;
    /*height: calc(100vh - 185px);*/
}

#mobile-nav li a {
	position: relative;
    display: block;
    padding: 20px 15px 20px 20px;
    color: #fff;
    background-repeat: no-repeat;
    background-image: url("../images/common/arr-down-w.png");
    background-position: 95% center;
    transform: none;
	border-bottom: 1px solid rgba( 255 255 255 / 20%);
}

#mobile-nav li.no-depth a.tit{
	background-image: none;
}

#mobile-nav li:last-child a{
	border-bottom: 0;
}

#mobile-nav li a.tit{
	background-color: rgba(0 0 0 / 10%);
    font-weight: 500;
}


#mobile-nav li a.active {
    color: #fff;
    background-image: url("../images/common/arr-up-w.png");
    background-position: 93% center;
}

#mobile-nav li a.active::after {
    display: none;
    position: absolute;
    top: 11px;
    left: 6px;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: #fff;
}

#mobile-nav .depth{
	overflow: hidden;
}

#mobile-nav li ul {
    display: none;
}


#mobile-nav li ul li a {
    padding: 15px;
    background: #fff;
    box-shadow: 2px 1px 3px rgb(0 0 0 / 30%);
    color: #333;
    font-weight: 500;
}

#mobile-nav > li{
    font-weight: 800;
}


.quick_mn{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    width: 100px;
    z-index: 999;
}

.quick_mn .blog{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100px;
    border-radius: 10px;
    background-color: #03C75A;
    text-align: center;
    margin-bottom: 20px;
}

.quick_mn .blog span{
    color: #fff;
}

.quick_mn ul{
    border-radius: 10px;
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 1px 1px 10px rgba(0 0 0 / 20%);
}

.quick_mn li:not(:last-child){
    margin-bottom: 30px;
}

.quick_mn li a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.quick_mn .btn_top{
    margin-top: 20px;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 1px 1px 10px rgba(0 0 0 / 20%);
}


.ptb{
    padding-top: 100px;
    padding-bottom: 100px;
}

@media screen and (max-width: 1700px) {

    header > .menu-box > ul > li > ul > li > a{
        font-size: 15px;
    }

}


@media screen and (max-width: 1400px) {
    
     footer .logo{
        padding: 20px;
     }

     footer .adr,
     footer .info{
        padding: 50px 20px;
    }
}/*1400px*/

   

@media screen and (max-width: 1024px) {

    .ptb {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .header_top{
        display: none;
    }

    header .hd_wrap {
        height: 60px;
    }

    .header-menu{
        display: none;
    }

    header.down{
	    top: 0;
    }


    .m_btn{
        display: block;
    }

    .mobile-mn.on {
        display: block;
    }

    header .logo img{
        height: 28px;
    }

    .quick_mn {
        top: 45%;
        transform: none;
        right: 20px;
        width: 75px;
    }

    .quick_mn .blog{
        height: 80px;
        margin-bottom: 10px;
    }

    .quick_mn li a {
        gap: 5px 0;
    }

    .quick_mn a{
        font-size: 0.8em;
    }

    .quick_mn li:not(:last-child) {
        margin-bottom: 10px;
    }

    .quick_mn .btn_top{
        margin-top: 10px;
    }

    footer .inner{
        flex-direction: column;
    }

    footer .inner{
        flex-wrap: wrap;
    }

    footer .logo img{
        display: block;
        margin: 0 auto;
    }

    footer .adr {
        flex-grow: 1;
        border-left: none;
        border-right: none;
        padding: 20px 0;
        border-top: 1px solid #3D4248;
        border-bottom: 1px solid #3D4248;
    }


    footer .info {
        padding: 20px 0;
    }

    footer .logo img{
        width: 150px;
    }

    footer .adr dl{
        gap: 0 20px;
    }

    footer .info > div strong{
        width: auto;
    }

    footer .info .time_box li{
        font-size: 16px;
    }

    footer .adr ul{
        justify-content: center;
    }

}/*1024px*/



@media screen and (max-width: 768px) {



}/*768px*/