/* 画像モーダル */
.image-modal {
	cursor: pointer;
}
.image-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
}
.image-modal-overlay::after {
	content: "×";
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 32px;
	color: #fff;
	cursor: pointer;
}
.image-modal-overlay img {
	max-width: 90vw;
	max-height: 90vh;
}