/*** # 푸터 CSS ***/

#Footer{
	background: var(--dark);
	color: var(--white);
	padding: 80px 0;
	word-break: keep-all;
}
.footer-in{
	max-width: 822px;
	display: flex;
	width: 90%;
	margin: 0 auto;
	justify-content: space-between;
	
}
.footer-in > .left {
	margin-right: 62px;
}
.footer-logo {
	width: 93px;
}
.footer-info, .footer-announce, .footer-policy-wrap, .footer-copyright {
	font-size: 14px;
	line-height: 150%;
}
.footer-info {
	width: 100%;
	display: flex;
	align-items: center;
}
.footer-info > .ele {
	position: relative;
	padding-right: 7px;
	margin-right: 7px;
	
}
.footer-info > .ele:after {
	position: absolute;
	left: 99%;
	top: 50%;
	transform:translateY(-50%);
	width: 1px;
	height: 55%;
	background-color: var(--white);
	content:"";
}
.footer-info > .ele:last-child:after {
	content:"";
	display: none;
}
.footer-policy-wrap {
	margin-top: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.footer-policy-wrap > .ele {
	position: relative;
	padding-right: 7px;
	margin-right: 7px;
	cursor: pointer;
}
.footer-policy-wrap > .ele:after {
	position: absolute;
	left: 99%;
	top: 50%;
	transform:translateY(-50%);
	width: 2px;
	height: 55%;
	background-color: var(--white);
	content:"";
}
.footer-policy-wrap > .ele:last-child:after {
	content:"";
	display: none;
}
.footer-copyright {
	margin-top: 14px;
	color: #ccc;
}
.footer-modal-table {
	border-left: 1px solid var(--dark);
	border-top: 1px solid var(--dark);
}
.footer-modal-table tr td {
	border-right: 1px solid var(--dark);
	border-bottom: 1px solid var(--dark);
}

@media screen and (max-width: 970px) {
	.footer-in > .left {
		margin-right: 30px;
	}
	.footer-info, .footer-announce, .footer-policy-wrap, .footer-copyright {
		font-size: 12px;
	}
}

/* MOBILE */
@media screen and (max-width: 768px) {
	#Footer {
		padding: 50px 0;
	}
	.footer-in {
		padding: 0 15px;
		max-width: 500px;
		flex-wrap: wrap;
	}
	.footer-info, .footer-announce, .footer-policy-wrap, .footer-copyright {
		font-size: 13px;
		text-align: center;
	}
	.footer-announce {
		margin-bottom: 5px;
	}
	.footer-in > .left {
		width: 100%;
		margin: 0;
		margin-bottom: 20px;
		text-align: center;
	}
	.footer-info {
		flex-wrap: wrap;
	}
	.footer-info > .ele {
		width: 100%;
		margin-bottom: 5px;
	}
	.footer-info > .ele:after {
		display: none;
	}
	.footer-policy-wrap {
		justify-content: center;
	}
	.footer-policy-wrap > .ele:last-child {
		margin-right: 0;
		padding-right: 0;
	}
}