@charset "utf-8";

.footer-wrapper {
	padding-top: 40px;
	background-color: rgb(11,28,44);
	color: #eee;
}

.footer-main {
	width: 88%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	gap: 40px;
	margin-bottom: 80px;
}
.footer-head {
	font-size: calc(10px + 0.5vw);
}
.footer-bottom {
	width: 88%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #aaa;
}
.footer-logowrapper {
	display: flex;
	width: 50%;
	align-items: center;
	gap: 20px;
}
.footer-logo {
	width: 100%;
	max-width: 200px;
}

.footer-link {
	padding-top: 0.8em;
}
.custom-anchor::before {
	content: ">";
	padding-right: 0.4em;
}

.copyright {
	margin-top: 18px;
}

.footer-snswrapper {
	display: flex;
	gap: 40px;
	padding: 0;
	list-style: none;
	align-items: center;
}
.footer-icon {
	width: 24px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}
@media (hover: hover) {
	.footer-icon:hover {
		opacity: 1;
	}
}
.footer-icon img {
	width: 100%;
	filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(120deg) brightness(105%) contrast(100%);
}
.custom-anchor {
	color: #999;
	font-size: calc(10px + 0.4vw);
}

@media screen and (max-width: 479px) {
	.footer-head {
		font-size: 4vw;
	}
	.footer-bottom {
		padding: 20px 0px;
	}
	.footer-logowrapper {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
	.footer-logo {
		max-width: 140px;
	}
	.copyright {
		margin-top: 4px;
	}
	.footer-snswrapper {
		gap: 20px;
	}
	.footer-icon {
		width: 20px;
	}

}
