@charset "utf-8";

/* -------------------------------------- */
/* 背景画像------------------------------- */
/* -------------------------------------- */

.menu-img {
	background-image: url(../images/menu/bg-main.jpg);
}

/* -------------------------------------- */
/* 商品リスト------------------------------ */
/* -------------------------------------- */

.menu-list {
	margin-top: 75px;
	display: grid;
	grid-template-columns: repeat(auto-fit, 240px);
	column-gap: 95px;
	row-gap: 70px;
	justify-content: center;
}

.menu-list li {
	position: relative;
}

.menu-list .item-label {
	position: absolute;
	top: 0;
	left: calc(100% + 18px);
	font-size: 10px;
	white-space: nowrap;
	transform-origin: top left;
	transform: rotate(90deg);
}

/* -------------------------------------- */
/* footer上部　余白------------------------ */
/* -------------------------------------- */

#menu footer {
	margin-top: 100px;
}

@media (max-width: 800px) {

	.menu-list {
		margin-top: 45px;
		row-gap: 40px;
	}
	
}

