/*** # 푸터 CSS ***/

#Footer{
	background: var(--white);
	padding-top: 50px;
	padding-bottom: 30px;
}
.footer-in {
	max-width: 1650px;
	margin: 0 auto;
	width: 90%;
}

#Footer .top-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
#Footer .top-box .logo-wrap {
	margin-bottom: 10px;
}
.footer-logo {
	width: 140px;
}
.footer-info-wrap {
	font-size: 15px;
	font-weight: 400px;
	line-height: 150%;
	color: #71717A;
}
.footer-info-wrap .line {
	width: 100%;
	display: flex;
}
.footer-info-wrap .line .item {
	padding-right: 5px;
	margin-right: 5px;
	position: relative;
	word-break: keep-all;
}
.footer-info-wrap .line .item:after {
	content :"";
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 50%;
	background-color: #71717A;
}
.footer-info-wrap .line .item:last-child {
	padding-right: 0;
	margin-right: 0;
}
.footer-info-wrap .line .item:last-child:after {
	display: none;
}
.footer-icon-box {
	display: flex;
	align-items: center;
}
.footer-icon-box a {
	width: 55px;
	margin-right: 26px;
}
.footer-icon-box a:last-child {
	margin-right: 0;
}
.footer-icon-box .item {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	background-color: #D9D9D9;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.footer-icon-box .item .footer-sns-icon {
	width: 70%;
	margin: 0;
	display: table;
}
#Footer .bottom-box {
	text-align: center;
	color: #090914;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 1px;
	padding-top: 30px;
	border-top:  1px solid #E2E8F0;
}

@media screen and (max-width: 1200px) {
	#Footer .bottom-box {
		font-size: 14px;
	}
	.footer-icon-box a {
		margin-right: 20px;
		width: 45px;
		margin-right: 20px;
	}
	.footer-info-wrap {
		font-size: 13px;
	}
	.footer-logo {
		width: 100px;
	}
	#Footer {
		padding-top: 40px;
	}
}

/* MOBILE */
@media screen and (max-width: 768px) {
	.footer-logo {
		width: 90px;
	}
	#Footer {
		padding-top: 20px;
		padding-bottom: 15px;
	}
	#Footer .top-box .logo-wrap {
		margin-bottom: 5px;
	}
	.footer-icon-box a {
		width: 30px;
		margin-right: 15px;
	}
	.footer-info-wrap {
		font-size: 12px;
	}
	#Footer .bottom-box {
		color: #AEAFAF;
		font-size: 11px;
		padding-top: 15px;
	}
}

@media screen and (max-width: 540px) {
	#Footer .top-box {
		flex-wrap: wrap;
	}
	#Footer .top-box .left{
		width: 100%;
		margin-bottom: 10px;
	}
	#Footer .top-box .right {
		display: table;
		margin: 0 auto;
	}
	.footer-info-wrap .line {
		justify-content: center;
	}
	#Footer .top-box .logo-wrap {
		text-align: center;
	}
}

@media screen and (max-width: 360px) {
	#Footer {
		padding-top: 40px;
	}
	#Footer .top-box .logo-wrap {
		margin-bottom: 7px;
	}
	.footer-info-wrap .line {
		flex-wrap: wrap;
	}
	.footer-info-wrap .line .item {
		width: 100%;
		text-align: center;
		padding: 0;
		margin: 0;
		margin-bottom: 3px;
	}
	.footer-info-wrap .line .item:after {
		display: none;
	}
}