.p-menu {
	position: relative;
	padding: 80px 0 120px;
	z-index: 1;
}

.p-menu-section {
	padding: 80px 20px;
	text-align: center;
}

.p-menu-section--sweets {
	padding-top: 0;
}

.p-menu-section__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 960px;
	margin: 0 auto;
}

.p-menu-section__head {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background-color: #1e1e1e;
	border: 8px solid #5c3b1e;
	border-radius: 16px;
	padding: 32px 20px;
	color: #fff;
}

.p-menu-section__head::before {
	font-family: "Font Awesome 6 Free";
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
	opacity: 0.67;
}

.p-menu-section--sweets .p-menu-section__head::before {
	content: '\f7b6';
}

.p-menu-section--ice .p-menu-section__head::before {
	content: '\f2dc';
}

.p-menu-section--season .p-menu-section__head::before {
	content: '\f06c';
}

.p-menu-section--festival .p-menu-section__head::before {
	content: '\f1fd';
}

.p-menu-section__head__main {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.p-menu-section__head__sub {
	font-weight: 700;
	color: #ffff88;
	letter-spacing: 0.05em;
}

.p-menu-section__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 24px;
	justify-content: center;
	max-width: 880px;
	margin: 0 auto;
}

.p-menu-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: #4b2c20;
}

.p-menu-item__image {
	width: 100%;
	aspect-ratio: 3/2;
	overflow: hidden;
}

.p-menu-item__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.p-menu-item__name {
	text-align: center;
}

.p-menu-item__text {
	font-size: 0.8rem;
}

.p-menu-section__note {
	font-weight: 700;
	color: #b71505;
}

@media (max-width: 768px) {
	.p-menu {
		padding-top: 60px;
	}

	.p-menu-section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.p-menu-section--sweets {
		padding-top: 0;
	}

	.p-menu-section__head {
		padding: 20px;
	}

	.p-menu-section__head__main {
		font-size: 2rem;
	}

	.p-menu-section__list {
		grid-template-columns: repeat(2, 1fr);
	}
}