/* Y'S GEAR : shoplist_top.css */


/*======================================================================*
 *  [ shoplistBox | 販売店検索 ]
 *======================================================================*/

.shoplistBox {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-align-items：stretch;
	align-items：stretch;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.shoplistBox section {
	width: 32%;
	margin: 0 0 20px 0;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
.shoplistBox .spaceBox {
	width: 32%;
}

/* [ カテゴリ名 ] */
.shoplistBox h2 {
	color: #000;
	font-size: 20px;
	font-size: 2rem;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}
.shoplistBox h2 a,
.shoplistBox h2 span {
	display: block;
	color: #000;
	padding: 45px 20px;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 100%;
}

/* [ リスト ] */
.shoplistBox ul {
	margin: 20px;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.2;
}
.shoplistBox li a {
	display: block;
	position: relative;
	padding: 5px 0 5px 12px;
}
.shoplistBox li a:before {
	display: block;
	position: absolute;
	top: 9px;
	left: 0;
	width: 0;
	height: 0;
	margin: 0.1em 0 0 0;
	border: 3px solid transparent;
	border-left: 6px solid #363a90;
	content: "";
}

.shoplistBox li a[target="_blank"] {
	margin: 0 0 10px 0;
	padding: 12px 12px 12px 26px;
	border: 1px solid #e6e6e6;
	background: #f8f7f7;
}
.shoplistBox li a[target="_blank"]:before {
	display: none;
}
.shoplistBox li a[target="_blank"]:after {
	display: block;
	position: absolute;
	top: 12px;
	left: 10px;
	width: 10px;
	height: 10px;
	content: url(/shared/svg/icon_blank_corporate.svg);
}


/*======================================================================*
 *  [ shoplistBox | 個別指定 ]
 *======================================================================*/

.mc     h2 a, 
.mc     h2 span { background-image: url(/shoplist/img/img_mc.jpg); }
.marine h2 a, 
.marine h2 span { background-image: url(/shoplist/img/img_marine.jpg); }
.pas    h2 a, 
.pas    h2 span { background-image: url(/shoplist/img/img_pas.jpg); }


/*======================================================================*
 *  [ contentsTopBox | コンテンツTOPボックス ]
 *======================================================================*/

.contentsTopBox a[target="_blank"] {
	background: #f8f7f7;
}
.contentsTopBox a[target="_blank"] h2:after {
	display: none;
}
.contentsTopBox a[target="_blank"] h2:before {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 10px;
	height: 10px;
	margin: -12px 0 0 0;
	content: url(/shared/svg/icon_blank_corporate.svg);
}


/*======================================================================*
 *  [ Media Queries 768 ] 
 *======================================================================*/

@media screen and (max-width: 768px) {
	
	/*==================================================================*
	 *  [ shoplistBox | ラインナップ ]
	 *==================================================================*/
	
	.shoplistBox section, 
	.shoplistBox .spaceBox {
		width: 48.5%;
	}
	
}


/*======================================================================*
 *  [ Media Queries 568 ] 
 *======================================================================*/

@media screen and (max-width: 568px) {
	
	/*==================================================================*
	 *  [ shoplistBox | ラインナップ ]
	 *==================================================================*/
	
	.shoplistBox section {
		width: 100%;
	}
	.shoplistBox .spaceBox {
		display: none;
	}
	
	/* [ カテゴリ名 ] */
	.shoplistBox h2 {
		border-bottom: 1px solid #ccc;
	}
	.shoplistBox h2 a,
	.shoplistBox h2 span {
		padding: 30px 20px;
	}
	
	/* [ リスト ] */
	.shoplistBox li a {
		padding: 10px 0 10px 12px;
	}
	.shoplistBox li a:before {
		top: 14px;
	}
	
	
}

