@charset "utf-8";


/**************************************************50
 * shops
 **************************************************/
.shops{
	text-align: center;
	text-decoration: none;
}
.shops a{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #212121;
	color: #4D4D4D;
	display: inline-block;
	position: relative;
	text-decoration: none;
	transition: background-color 0.2s ease-out 0s;
}
.shops a:hover,
.shops a.active{
	background-color: #4D4D4D;
	border: 1px solid #4D4D4D;
	color: #FFFFFF;
}
.shops a:after{
	content: "\F0142";
	font-family: "Material Design Icons";
	font-size: 175%;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
@media screen and (max-width:359px){
	.shops a{
		font-size: 87.5%;
	}
}
@media screen and (max-width:767px){
	.shops{
		margin-bottom: 3.125%;
	}
	.shops a{
		height: 2.25em;
		line-height: -webkit-calc(2.25em - (1px * 2));
		line-height: calc(2.25em - (1px * 2));
		margin: 0 1.5625% 3.125%;
		width: 10em;
	}
}
@media screen and (min-width:768px){
	.shops{
		margin-bottom: 80px;
	}
	.shops a{
		height: 3.25em;
		line-height: -webkit-calc(3.25em - (1px * 2));
		line-height: calc(3.25em - (1px * 2));
		margin: 0 1em 20px;
		width: 12.5em;
	}
}


