.hamb,
.top-catch-pic-sp,
.top-scroll-indicator-sp,
.btn-italia-sp {
	display: none;
}

.image-responsive {
	max-width: 100%;
	height: auto;
}

body.modal-active {
	overflow: hidden;
}

@media (max-width: 850px) {
	header {
		padding-right: 60px;
	}
	header h1 {
		display: block;
	}
	header h1>* {
		padding: 5px;
	}

	/* SP 対応 */
	.hamb {
		position: fixed;
		z-index: 99;
		display: flex;
		flex-direction: column;
		gap: 6px;
		top: 15px;
		right: var(--padding);
		background: white;
		padding: 12px 7px;
		border-radius: 5px;
		box-shadow: 0 0 3px rgba(100, 100, 100, 0.5);
	}
	.hamb .line {
		height: 3px;
		width: 35px;
		border-radius: 3px;
		background: black;
		transition: 0.2s all ease;
	}

	.hamb.active .line:first-child {
		transform-origin: center center;
		transform: translateY(10px) rotate(45deg);
	}
	.hamb.active .line:nth-child(2) {
		background: transparent;
	}
	.hamb.active .line:last-child {
		transform-origin: center center;
		transform: translateY(-8px) rotate(-45deg);
	}

	#sp-menu:not(.open) {
		display: none;
	}

	#sp-menu {
		z-index: 90;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		padding: var(--padding);
		background: rgba(50, 50, 50, 0.5);
		backdrop-filter: blur(10px);
		/* box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5); */
	}
	#sp-menu .scroller {
		margin-top: 55px;
		overflow-y: auto;
		height: calc(100% - 55px);
	}

	body.home .home-koen-list {
		flex-wrap: wrap;
	}

	body.home .kouen-link {
		flex: 0 1 calc(33% - var(--padding));
	}

	.post-content h2.section-title {
		font-size: 24px;
	}
}

@media (max-width: 500px) {
	header h1 {
		font-size: 24px;
	}

	body.home .kouen-link {
		flex: 0 1 calc(50% - var(--padding));
	}
}