/*
	* footer.css_ver_1.0.0
*/

#footer {
	background-color: #000;
	display: flex;
	justify-content: center;
	padding: 3.75rem 1rem;
}
#footer .nav-logo {
	width: 128px;
	padding: 0;
}
.footer-container {
	display: flex;
	flex-direction: column;
	gap: 2.25rem;
	width: 100%;
}
.footer-wrap-layout {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.footer-menus-layout {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
}
.footer-menu-group {
	min-width: 140px;
	flex: 1;
	flex-basis: 0;
	color: var(--grayscale-100);
}
.footer-menu-title {
	font-size: 1.25rem;
	font-weight: 700;
	padding-bottom: 0.75rem;
}
.footer-menu-list li {
	font-size: 1rem;
	padding-bottom: 0.75rem;
}
.footer-menu-list li a {
	color: inherit;
}
.footer-link-group {
	flex-basis: 180px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.footer-link-group .icons {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
}
.icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}
.icons a img {
	width: 100%;
	max-width: 3rem;
	height: 100%;
	max-height: 3rem;
}
.footer-link-box-group {
	display: grid;
	gap: 0.25rem;
}
.footer-link-box {
	display: flex;
	gap: 1rem;
	background-color: var(--grayscale-dark);
	padding: 0.5rem;
	border-radius: 0.25rem;
}

.footer-link-box p {
	font-size: 0.875rem;
	color: white;
}

.footer-ci-layout {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.footer-ci-layout .logo-area {
	display: inline-flex;
	width: fit-content;
	align-items: end;
	gap: 1rem;
	color: var(--grayscale-400);
}
.footer-ci-layout .info-area {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.875rem;
}
	.footer-ci-layout .link-area {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 0.5rem;
		width: 100%;
		color: var(--grayscale-400);
		border-top: 1px solid var(--grayscale-900);
		padding-top: 0.75rem;
		font-size: 0.875rem;
		align-items: center;
	}

footer .link-area a {
	color: inherit;
	text-decoration-line: underline;
}

@media screen and (max-width: 768px) {
	.footer-container {
		padding: 1rem;
	}
	.footer-wrap-layout {
		flex-direction: column;
	}

	.footer-menu-group {
		min-width: 70px;
		flex: 1;
		flex-basis: 0;
		color: var(--grayscale-100);
	}

	.footer-link-group {
		flex-direction: column-reverse;
	}
	.footer-link-box-group {
		gap: 0.5rem;
	}
	.footer-link-box {
		padding: 0.75rem;
	}
	.footer-link-box img {
		width: 2rem;
	}
	.footer-link-box p {
		font-size: 1rem;
		display: grid;
		align-content: center;
	}

	.footer-menu-title {
		font-size: 1rem;
		font-weight: 700;
		padding-bottom: 0.75rem;
	}
	.footer-menu-list li {
		font-size: 0.875rem;
		padding-bottom: 0.75rem;
	}
}
/*footer end*/
