@charset "utf-8";
/*==================================================
	店舗情報
==================================================*/
#shop .box_shop {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
#shop .box_shop + .box_shop {
	margin-top: 150px;
}
#shop .box_img {
	position: relative;
	width: 45%;
	object-fit: contain;
}
#shop .box_img::after {
	position: absolute;
	content: "";
	display: block;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: rgba(24, 99, 40, 0.1);
	border-radius: 20px;
	top: 50px;
	left: -30px;
}
#shop .box_img img {
	border-radius: 20px;
	border: 3px solid var(--color-primary);
	padding: 5px;
	background: #fff;
}
#shop .box_info {
	width: 50%;
}
#shop .box_info h4 {
	position: relative;
	display: inline-block;
	font-size: 150%;
	color: var(--color-primary);
	padding-bottom: 7px;
	margin-bottom: 9px;
}
#shop .box_info h4::before {
	z-index: -1;
	content: "";
	width: 400px;
	height: 3px;
	background: var(--color-primary);
	display: block;
	position: absolute;
	bottom: 0;
	right: -10px;
}
#shop .box_info dl {
	display: flex;
	align-items: baseline;
}
#shop .box_info dl + dl {
	border-top: 1px #cdcdcd solid;
	margin-top: 10px;
	padding-top: 10px;
}
#shop .box_info dl dt {
	position: relative;
	color: var(--color-primary);
	font-weight: 600;
	font-size: 110%;
	border-radius: 20px;
	margin-right: 10px;
	padding-left: 20px;
}
#shop .box_info dl dt::before {
	position: absolute;
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: var(--color-primary);
	top:7px;
	left: 0;
}
#shop .box_info dl dd.notes {
	color: var(--color-primary);
}
#shop iframe {
	margin-top: 20px;
}
/*複数店舗、左右反転の場合*/
/*#shop .box_shop.reverse {
	flex-direction: row-reverse;
	margin-top: 10px;
}*/
/*#shop .box_shop.reverse .box_img::after {
	left: 30px;
}*/
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#shop .box_shop {
		display: block;
	}
	#shop .box_shop + .box_shop {
		border-top: 2px solid var(--color-secondary);
		padding-top: 65px;
		margin-top: 65px;
	}
	#shop .box_img {
		width: 60%;
		object-fit: contain;
		margin: 0 auto 10px;
	}
	#shop .box_img::after {
		top: 20px;
		left: -20px;
	}
	#shop .box_info {
		width: 100%;
	}
	#shop .box_info {
		text-align: center;
		padding-top: 10px;
	}
	#shop .box_info h4 {
		margin: 13px 0;
	}
	#shop .box_info h4::before {
		width: 100%;
		display: block;
		bottom: 0;
		right: 0;
	}
	#shop .box_info dl {
		text-align: left;
	}
	#shop .box_info dl dt {
		font-size: 105%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#shop .box_shop + .box_shop {
		padding-top: 50px;
		margin-top: 50px;
	}
	#shop .box_img {
		width: 90%;
		object-fit: contain;
		margin: 0 auto 10px;
	}
	#shop .box_info dl {
		display: block;
	}
	#shop .box_info dl dt {
		padding-left: 20px;
	}
}