@charset "utf-8";

.mainAreaImg {
	position:relative;
}

.store-banner {
	width:64.7%;
	position:absolute;
	bottom:2%;
	left:0;
	right:0;
	margin:auto;
	z-index:200;
}

.store-banner-bottom {
	display:block;
	width:clamp(10rem, 5.096rem + 24.52vw, 16.375rem);
	position:fixed;
	bottom:20px;
	left:12px;
	z-index:2000;
}

.store-banner-bottom-close {
	position:absolute;
	top:0;
	left:0;
	width:clamp(1.25rem, 0.673rem + 2.88vw, 2rem);
	height:clamp(1.25rem, 0.673rem + 2.88vw, 2rem);
	color:white;
	background:#333;
	border:2px solid white;
	border-radius:50%;
	font-size:clamp(1.25rem, 0.673rem + 2.88vw, 2rem);
	line-height:1;
	text-align:center;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0;
	transition:background-color 0.2s ease;
	z-index:3000;
}



@media screen and (min-width:737px) {

.store-banner {
	width:262px;
	bottom:22px;
	left:16px;
	right:auto;
	transition:transform 0.3s ease;
}

.store-banner:hover {
	transform:scale(1.1);
}

.store-banner img:hover {
	opacity:1;
}

.store-banner-bottom {
	width:220px;
	bottom:36px;
	left:auto;
	right:120px;
}

.store-banner-bottom-close {
	top:-36px;
	left:auto;
	right:0;
	width:30px;
	height:30px;
	font-size:24px;
}


}