#Footer {
	background-color: var(--dark-gray);
	padding: 32px 0;
	color: var(--white);
	word-break: keep-all;
}
.footer-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.footer-logo {
	width: 174px;
	display: table;
	margin: 0;
}
.footer-box {
	font-size: 12px;
}
.footer-box .line {
	line-height: 140%;
	letter-spacing: -2%;
	opacity: 0.7;
}
.footer-box .line {
	width: 100%;
	display: flex;
	align-items: center;
	font-weight: 400;
}
.footer-box .line .item {
	display: flex;
	align-items: center;
	margin-right: 20px;
}
.footer-box .line > .item:last-child {
	margin-right: 0;
}
.footer-box .line .item .tag {
	font-weight: 700;
	margin-right: 5px;
}
.footer-box .line.copyright {
	margin-top: 8px;
	color: var(--gray-scale8);
}

@media(max-width: 970px) {
	.footer-box .line .item {
		margin-right: 10px;
	}
}

@media(max-width: 768px) {
	.footer-box {
		flex-wrap: wrap;
	}
	.footer-box > .left, .footer-box > .right {
		width: 100%;
	}
	.footer-box > .left {
		margin-bottom: 16px;
	}
	.footer-logo {
		width: 120px;
	}
	.footer-box .line {
		flex-wrap: wrap;
	}
	.footer-box .line .item{
		margin-right: 0;
		width: 100%;
	}
}
