#footer {
	width: 100%;
	max-width: 1280px;
	border-top: 3px solid black;
	padding-top: 1.66rem;
	margin: auto;
	margin-top: 3rem;
}

#footer_menu {
	width: 90%;
	margin: 0 auto 0.83rem;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	text-decoration: underline;
	font-size: 1.1rem;
	font-weight: bold;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.footer_item {
	width: 100%;
	text-align: center;
}

.footer_image {
	max-width: 25px;
	max-height: 25px;
	width: 100%;
	text-align: center;
}

#footer_copyright {
	text-align: center;
	color: rgba(0, 0, 0, 0.6);
	margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {

	/* #footer_menuのflexの影響を完全にリセット */
	#footer_menu {
		display: block !important;
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	/* .footer_itemのテキストを左寄せ */
	.footer_item {
		width: 100%;
		margin-bottom: 0.5rem;
		text-align: left;
		/* テキストを左寄せ */
	}

	/* .footer_imageの横並び設定 */
	.footer_image {
		display: inline-block !important;
		width: auto !important;
		margin-right: 0.5rem;
		/* 隣接する画像との隙間 */
		text-align: center;
	}

	/* 最後の2つの .footer_image を横並びにするために強制的に設定 */
	#footer_menu>.footer_image:nth-last-child(2),
	#footer_menu>.footer_image:nth-last-child(1) {
		display: inline-block !important;
		width: auto !important;
	}
}