/*ここに記入するのは店舗固有のCSSのみ 特別な理由がない場合は基本的にレイアウトは全店統一*/
@charset "utf-8";
/******** mainImg ********/
.container-mainImg{
	background-image: url(images/main_img.jpg);
	background-position: bottom;
}

/******** subnav ********/
.fixed::before{
	content: "";
	width: 30%;
	margin-top: -4px;
	background-image: url(images/shop_logo.svg);
	background-size: contain;
	display: block;
}
@media screen and (min-width:768px){
	.fixed::before{
		width: 60%;
		margin-top: -10px;
	}
}
@media screen and (min-width:980px){
	.fixed::before{
		width: 45%;
		margin-top: -10px;
	}
}