/* ===============================================
トップページの設定
=============================================== */
/* ヒーローイメージの設定 */
.hero {
	position: relative;
	margin-top: 50px;
	margin-bottom: 100px;
}
.hero-image img {
	width: 100%;
}

/* アンカーリンクの設定 */
.main-nav {
	width: 100vw;
	background: #272727;
}
.main-nav-list {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.main-nav-list li a {
	position: relative;
	padding: 12px 20px;
	width: 100%;
	height: 100%;
	color: #fff;
	text-decoration: none;
	display: block;
	transition: all 0.2s;
}
.main-nav-list li a:hover {
	background: #5a5a5a;
}
.main-nav-list li:not(:last-child) a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 1em;
	background: #fff;
}


/* 店舗紹介の設定 */
.shop-text {
	margin-bottom: 3rem;
	text-align: center;
}

.dl-list-wrap {
	position: relative;
	z-index: 1;
}
.shop-info-bg {
	position: absolute;
	top: -20px;
	right: -10px;
	width: 200px;
	z-index: 0;
}
.shop-info-logo {
	margin-bottom: 4rem;
	text-align: center;
}
.shop-info-logo img {
	max-width: 100%;
}
.shop-images {
	position: relative;
	margin-top: 10px;
	margin-bottom: 60px;
	height: fit-content;
}
.shop-images::before {
	content: "";
	position: absolute;
	top: 30px;
	right: 0;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	width: 80vw;
	height: 100%;
	background: #5a5a5a40;
	border-bottom-left-radius: 20px;
}
@media (min-width: 992px) {
	.shop-info {
		padding-right: 30px;
		padding-left: 40px;
	}
	.shop-info-logo {
		margin-bottom: 4.5rem;
	}
	.shop-images {
		margin-top: 0;
		padding-right: 50px;
		padding-left: 30px;
		margin-bottom: 0;
	}
	.shop-images::before {
		right: 0;
		margin-right: calc(100% - 50vw);
		width: 40vw;
	}	
}
/* 各店舗毎の設定（背景色とか） */
.shop-images.washoku-image::before {
	background: #b9362840;
}
.shop-images.pizza-image::before {
	background: #DC698740;
}
.shop-images.curry-image::before {
	background: #E9D35A40;
}

/* googleマップのサイズ */
.map {
	margin-bottom: 40px;
	height: 350px;
}
@media (min-width: 768px) {
	.map {
		margin-bottom: 70px;
	}
}