@charset "utf-8";
/* header 시작 */
#header{
    position: fixed;
    width: 100%;
    height: 90px;
    z-index: 55;
    transition: all 0.5s;


}
#header.on{
    background: var(--white);
}
#header.active{
    background: var(--white);

}
#header .header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
	width: 93.5%;
}
#header .logo .logo_white{
    display: block;
}
#header.active .logo_white{
    display: none;
} 
#header.on .logo_white{
    display: none;
} 
#header .logo_active{
    display: none;
    transition: all 0.5s;
}
#header.active .logo_active{
    display: block;
}
#header.on .logo_active{
    display: block;
}
#header .logo span{
	position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}


#header nav{
  height:100%;
}
#header .gnb{
    display: flex;
	height:100%;
}
#header .gnb > li {
    position: relative;
	height:100%;
}
#header .gnb > li > a{
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 0 30px ;
    letter-spacing: -0.5px;
	transition:all 0.5s;
   height:100%;
       display: flex;
    align-items: center;
  
}
#header.active .gnb > li > a{
    color: var(--black);
}
#header.on .gnb > li > a{
    color: var(--black);

}
#header .gnb > li.active > a{
  padding:40px 45px;
}
#header .gnb > li::before{
    content: '';
    display: block;
    width: 0; height: 2px;
    background: var(--red02);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: all 0.5s;


}
#header .gnb > li .depth2_wrap{
    position: absolute;
    width: 100%; height: 395px;
    left: 50%;
    top:100% ;
    transform: translateX(-50%);
    display: none;
    border-right: 1px solid var(--gray02);
	z-index:999;
    
    
}
#header .gnb > li .depth2{
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 35px 0;
  

}
#header .gnb > li.open .depth2{
    display: flex;
}

#header .gnb > li:last-child .depth2_wrap{
    border: 0;
}

#header .gnb > li .depth2 li a{
    display: block;
    text-transform: uppercase;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray01);
    transition: all 0.4s;
	white-space:nowrap;
	line-height: 1;
}
#header .gnb > li .depth2 li a:hover{
    color: var(--red02);
}

#header .gnb > li:hover::before{
    width: 100%;
}
.depth2_bg{
    width: 100%;
    height: 395px;
    background: var(--white);
    position: fixed;
    left: 0;
    top: 90px;
    z-index: 2;
    display: none;
	z-index:50;
	border-top: 1px solid var(--gray02);
}
#header .util{
    display: flex;
    align-items:center ;
}
#header .util li{
    position: relative;
}
#header .util li a{
    color: var(--white-opacity);
    font-size: 14px;
    font-weight: 600;
    display: block;
    padding: 0 12px ;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    transition: all 0.4s;
}


#header.on .util li a,
#header.active .util li a{
    color: var(--gray01);
}
#header.on .util li a:hover,
#header.active .util li a:hover,
#header .util li a:hover{
 color: var(--red02);
}
#header .util li.shop::before{
    content: '';
    display: block;
    width: 1px;
    height: 13px;
    position: absolute;
    background: var(--white);
	opacity:0.5;
	top:50%;
	transform:translateY(-50%);
}
#header.on .util li.shop::before,
#header.active .util li.shop::before{
    background: var(--gray01);
}
#header .ham{
    cursor: pointer;  
    display: none;
}
.ham span{
    display: block;
     width: 25px ;height: 1px;
     background: var(--white);    
}
header.on .ham span{
    background: #171718;
}
header.active .ham span{
    background: #171718;
}

#header .ham span:nth-child(1){
    transition: all 0.2s;  

}
.ham span:nth-child(2){
    margin: 7px 0;
    transition: all 0.2s;
}
#header .ham span:nth-child(3){
    transition: all 0.2s;
 
}
#header .ham.on span:nth-child(1){
    transform: rotate(45deg);
    margin-top:1px;
}
#header .ham.on span:nth-child(2){
  display: none;
}
#header .ham.on span:nth-child(3){
    transform: rotate(135deg);
    margin-top: -1px;
}
.mgnb_wrap{
    position: fixed;
    z-index: 999;
    background: var(--white);
    width: 100%; height: calc(100vh - 90px);
    left: 0; top: 90px;
    display: none;
	border-top: 1px solid var(--gray02);

    
}
.mgnb_wrap .mgnb{
    display: flex;
    flex-direction: column;
    
    padding: 15px 0;
	padding-bottom: 50px;
    overflow:scroll;
    height: 100%;
}
.mgnb_wrap .mgnb > li > a{
    display: block;
    font-size: 30px;
    font-weight: 600;
     padding: 15px 5%;
     display: flex;
     justify-content: space-between;
    align-items: center;

}
.mgnb_wrap .mgnb > li > a figure{
    transition: all 0.5s;
}
.mgnb_wrap .mgnb > li.on > a figure{
    transform: rotate(180deg);
}
.mgnb_wrap .mgnb > li .depth2_wrap{
    display: none;
 
}
.mgnb_wrap .mgnb > li .depth2{
    background: linear-gradient(var(--red02),var(--red01));
    display: flex;
    flex-direction: column;
    
    padding: 30px 0;
   
    

}

.mgnb_wrap .mgnb > li .depth2 li a{
    padding: 10px 5%;
    color: var(--white);
    font-size: 25px;
    font-weight: 500;
    text-transform: uppercase;
	display:block;
}
.mgnb_wrap .mutil{
    display: flex;
    position: absolute;
    width: 100%;
    height: 50px;
    left: 0; 
	/* bottom: 0; */
	top: calc(100% - 50px);
    z-index: 1000;
}
.mgnb_wrap .mutil li{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mgnb_wrap .mutil li a{
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.mgnb_wrap .mutil li.shop{
    background: #c13363;
}
.mgnb_wrap .mutil li.familysite{
    background: var(--red02);
}
/* footer 시작 */
#footer {
    background-color:var(--white);
	position:relative;
	border-top:1px solid #e1e1e1;
}

#footer .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

#footer address{
    font-style: normal;
    display: flex;
    gap: 10px;
    color: var(--gray01);
    font-size: 16px;
    font-weight: 500;
	letter-spacing:-0.75px;
	line-height: 1.3;
	align-items: center;
}
#footer address br{
    display: none;
}
#footer b{
    color: #171718;
	letter-spacing:-0.75px;
}
#footer .company{
    display: flex;
    gap: 30px;
    margin: 20px 0 40px;
    flex-wrap: wrap;
}
#footer .company li{
    display: flex;
    gap: 10px;
    color: var(--gray01);
    font-size: 16px;
    font-weight: 500;
    letter-spacing:-0.75px;
}
#footer .company li a{
    display: flex;
    gap: 10px;
    color: var(--gray01);
    font-size: inherit;
    font-weight: inherit;
}
#footer .copy{
    color: var(--gray01);
    font-size: 16px;
    font-weight: 500;
	line-height: 1.3;
}

#footer .copy span{
    color: var(--gray03);
    transition: all 0.5s;
}
#footer .copy .hl{
    color: var(--gray03);
    transition: all 0.5s;
}
#footer .copy .hl:hover{
    color: var(--navy);
    
}
#footer .adm a{
     text-transform: uppercase;
    font-size: 16px;
    color: #d1d1d1;
    line-height: 1.3;
    letter-spacing: -0.78px;
    margin-top: 20px;
	display:block;
}

/* footer 끝 */

/* quick_button */

.quick_button{
    position: fixed;
    right:60px ;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(var(--red01),var(--red02));
    padding: 25px 20px ;
    border-radius: 12px;
    z-index: 30;
}
.quick_button ul li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:12px ;
    
}
.quick_button ul li a p{
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
	transition:all 0.5s;
	letter-spacing:0px;
	line-height: 1;
}
.quick_button ul li a > figure{
    opacity: 1;
    transition:all 0.5s;
}
.quick_button ul li a:hover p{
    color: var(--white-opacity);
}
.quick_button ul li a:hover > figure{
    opacity: 0.8;
}
.quick_button ul li.call{
    padding-bottom:20px ;
    border-bottom: 1px solid var(--white-opacity);
}
.quick_button ul li.estimate{
    padding-top:20px ;
    
}

/* gotop */
.gotop{
    position: fixed;
    bottom: 40px;
    right:70px ;
    background: var(--white) url(/img/gotop.png) no-repeat center;
    width: 60px; height: 60px;
    border-radius: 50%;
    z-index: 20;
    cursor: pointer;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.5s;
    display: none;

}
.gotop:hover{
         background: var(--white) url(/img/gotop.png) no-repeat center top  20px;
		  box-shadow: 1px 1px 5px rgba(3px, 3px, 0, 0.5);
}

.gotop.on{
    display: block;
}

@media(max-width:1400px){
    #header .gnb li a{
        font-size: 16px;
    }
    #header .util{
        /* display: none; */
    }

}
@media(max-width:1200px){
    #header .gnb {
        display: none;
    }

	#header .mb-box{
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 20px;
	}
    #header .util{
        /* display: none; */
    }
    #header .ham{
        display: block;
    }
	.quick_button{
	  right:2%;
	}
  
    #footer .wrapper{
        gap: 35px;
    }
    #footer .footer_contents{
        order: 1;
    }
}

@media screen and (max-width: 900px){
	.mgnb_wrap .mgnb > li > a{
		font-size: 25px;
	}

	.mgnb_wrap .mgnb > li .depth2 li a{
		font-size: 22px;
	}
	
	#header .mb-box{
		gap: 15px;
	}


	#footer .company{
		gap: 10px 20px;
		margin-top: 10px;
        margin-bottom: 25px;
	}

	#footer .copy{
		font-size: 14px;
	}

	#footer .adm a{
		font-size: 14px;
		margin-top: 10px;
	}
}
@media(max-width:768px){
	#header .util li a{
		font-size: 13px;
		padding: 0 10px;
	}
	#header .util li.shop::before{
		height: 10px;
	}
	#footer .wrapper{
		gap: 25px;
	}

        #header .header_inner{
        /* padding: 0 5%; */
    }

	#header .mb-box{
		gap: 10px;
	}

    #footer .footer_contents{
        width: 100%;
    }
    #footer .company{
        gap: 5px;
        margin: 5px 0 20px;
    }
    #footer .company li{
    width: 100%;
    }

	


	    .quick_button{
		padding:  10px ;

    }
    .quick_button ul li a{
     
        gap:6px ;
        
    }
    .quick_button ul li a figure{
        display: flex;
        justify-content: center;
        align-items: center;

    }
    .quick_button ul li img{
        width: 50%;
        display: block;
        
    }
    .quick_button ul li a p{
        font-size:11px;
    }
    .quick_button ul li.call{
        padding:7px 0 ;
        
        border-bottom: 1px solid var(--white-opacity);
    }
    
    .quick_button ul li.estimate{
        padding:7px 0 ;
        
    }
    .gotop{
        display: none;
        opacity: 0;
        pointer-events: none;
    }
    .gotop.on{
        display: none;
    }

	.mgnb_wrap .mgnb > li .depth2{
		padding: 15px 0;
	}
}
@media(max-width:500px){
    #header{
        height: 60px;
        padding: 12px 0;
    }
	#header .logo a img{
	    width:80%
	}
    #header .logo_active a img{
	    width:80%
	}
	#header .util li a{
		font-size: 12px;
		padding: 0 7px;
	}
.mgnb_wrap{
    width: 100%; height: calc(100vh - 60px);
     top:60px;
}
    .mgnb_wrap .mgnb > li > a{
        font-size: 20px;
    }
    .mgnb_wrap .mgnb > li .depth2 li a{
        font-size: 15px;
    }
		#footer .footer_logo img{
         width:80%;
    } 
    #footer address{
        font-size: 13px;
		align-items: flex-start;
    }
	
	#footer address b{
		line-height: 1;
	}

    #footer address br{
        display: block;
    }
    #footer .company li{
        font-size: 13px;
    }
    #footer .copy{
        font-size: 13px;
    }
	#footer .copy span{
	   display:flex;
	}
    #footer .copy .hl{
        font-size: 13px;
        display: block
    }
	#footer .adm a{
	margin-top:10px;
	  font-size:13px;
	}


}