.l-footer {
	padding: 80px 20px 40px;
	background-color: #1a1b1d;
	color: rgb(255 255 255 / 60%);
}

.l-footer__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.l-footer__intro {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.l-footer__logo {
	width: 90px;
}

.l-footer__logo>a {
	display: block;
	width: 100%;
}

.l-footer__logo>a img {
	display: block;
	width: 100px;
}

.l-footer__sns {
	display: flex;
	gap: 24px;
}

.l-footer__sns-item {
	width: 24px;
}

.l-footer__sns-item>a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: 1/1;
	opacity: 0.6;
}

.l-footer__sns-item>a>svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (any-hover: hover) {
	.l-footer__sns-item>a:hover {
		opacity: 1;
	}
}

.l-footer__bottom {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 80px;
	padding-top: 40px;
	border-top: 1px solid rgb(255 255 255 / 10%);
	font-size: 14px;
}

.l-footer__bottom::before,
.l-footer__bottom::after {
	content: '';
	position: absolute;
	top: 0;
	width: 1px;
	height: 20px;
	background-color: rgb(255 255 255 / 10%);
	transform: translateY(-50%);
}

.l-footer__bottom::before {
	left: 10px;
}

.l-footer__bottom::after {
	right: 10px;
}

.l-footer__link {
	text-decoration: underline;
}

@media (any-hover: hover) {
	.l-footer__link:hover {
		opacity: 1;
		text-decoration: none;
	}
}

@media screen and (max-width: 768px) {
	.l-footer {
		padding-top: 40px;
	}

	.l-footer__inner {}

	.l-footer__body {}

	.l-footer__intro {
		gap: 20px;
	}

	.l-footer__logo {}

	.l-footer__logo>a {}

	.l-footer__logo>a img {}

	.l-footer__sns {}

	.l-footer__sns-item {}

	.l-footer__sns-item>a {}

	.l-footer__sns-item>a>svg {}

	.l-footer__sns-item>a>svg>path {}

	.l-footer__bottom {
		flex-direction: column;
		gap: 16px;
		margin-top: 50px;
		padding-top: 50px;
	}

	.l-footer__bottom::before,
	.l-footer__bottom::after {}

	.l-footer__bottom::before {}

	.l-footer__bottom::after {}

	.l-footer__copy {}

	.l-footer__link {}
}