/* 컬러 변수 */
:root {
  --point-color1: #ffce32;
  --point-color2: #005ad5;
  --gray-400: #999;
  --gray-500: #666;
  --gray-600: #292929;
}

#footer {
	min-width: 1280px;
	background-color: #292929;
	color: #666666;
	padding: 22px 0;
	position: relative;
	z-index: 9;
}

#footer .footer_inner {
	max-width: 1170px;
	margin: 0 auto;
	position: relative;
}

#footer .footer_inner .team {
	margin-bottom: 25px;
}

#footer .footer_inner .team ul {
	overflow: hidden;
}

#footer .footer_inner .team ul li {
	float: left;
	margin-right: 29px;
	color: #666666;
	display: block;
	font-size: 14px;
}

#footer .footer_inner .team ul li strong {
	color: #bbbbbb;
	font-weight: bold;
}

#footer .footer_inner span {
    position: relative;
    display: inline-block;
    margin-top: 19px;
    font-size: 13px;
    padding-left: 9px;
    margin-left: 3px;
}

#footer .footer_inner span.addr {
    padding-left: 0px;
    margin-left: 0px;
}

#footer .footer_inner span:nth-child(n+3):after {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 2px;
    height: 10px;
    background-color: #666666;
}

#footer .footer_inner .copyright {
    font-family: font_sw;
    font-size: 13px;
    line-height: 18px;
    padding-top: 10px;
}

#footer:after {
    content: '';
    position: absolute;
    left: 0;
    top: 59px;
    width: 100%;
    height: 1px;
    background-color: #3b3b3b;
}