@charset "UTF-8";

.menu header {
	height: 50rem;
	background-image: url(/LP/menu/assets/img/bg_mv.png);
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.menu header h1 {
	width: 45.4rem
}
@media (max-width: 768px) {
	.menu header {
		height: 40rem;
		background-image: url(/LP/menu/assets/img/bg_mv_sp.png);
	}
	.menu header h1 {
		width: 46.8rem
	}
}

.menu main {
	background-image: url(/LP/menu/assets/img/bg_wave.png);
	background-repeat: repeat;
	font-family: YuGothic,'Yu Gothic',sans-serif;
	font-size: 1.4rem;
	color: #5D463A;
}
.menu .list {
	padding: 8rem 0 14rem;
	display: flex;
	flex-wrap: wrap;
	gap: 4.5rem 3.4rem;
}
.menu .list li {
	width: 58.3rem;
}
.menu .list .shopPic {
	border: solid 1px #bebebe;
}
.menu .list .shopName {
	margin-top: 1.7rem;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
}
.menu .list .shopName span {
	font-size: 1.4rem;
	color: #888;
	font-weight: normal;
}
.menu .list .shopLink {
	margin-top: 0.7rem;
}
.menu .list .shopLink a {
	text-decoration: underline;
	position: relative;
}
.menu .list .shopLink a::after {
	display: block;
	content: "";
	width: 2.6rem;
	height: 0.6rem;
	background-image: url(/LP/menu/assets/img/arrow.png);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 0.3rem);
	right: -3.6rem;
}
@media (max-width: 768px) {
	.menu main {
		font-size: 2.0rem;
	}
	.menu main .wrapper {
		padding: 0 3rem;
	}
	.menu .list {
		padding: 7rem 0 12rem;
		flex-direction: column;
		gap: 6rem 0;
	}
	.menu .list li {
		width: 100%;
	}
	.menu .list .shopPic {
		border-width: 0.2rem;
	}
	.menu .list .shopPic img {
		width: 100%;
	}
	.menu .list .shopName {
		margin-top: 2.2rem;
		font-size: 2.0rem;
	}
	.menu .list .shopName span {
		font-size: 1.6rem;
	}
	.menu .list .shopLink {
		margin-top: 1rem;
	}
	.menu .list .shopLink a::after {
		width: 5rem;
		height: 1.6rem;
		top: calc(50% - 0.8rem);
		right: -6rem;
	}
}


