/* Y'S GEAR : profile brand.css */


/*======================================================================*
 *  [ brandList | ブランド一覧 ] 
 *======================================================================*/

.brandList section {
	display: table;
	border: 3px solid #ccc;
}
.brandList section + section {
	margin-top: 20px;
}

.brandList section h2, 
.brandList section p {
	display: table-cell;
	padding: 20px 15px;
	box-sizing: border-box;
	vertical-align: middle;
}
.brandList section h2 {
	width: 25%;
	text-align: center;
}
.brandList section h2 img {
	width: 100%;
}
.brandList section p {
	line-height: 1.6;
}


/*======================================================================*
 *  [ Media Queries 568 ] 
 *======================================================================*/

@media screen and (max-width: 568px) {
	
	/*==================================================================*
	 *  [ brandList | ブランド一覧 ] 
	 *==================================================================*/
	
	.brandList section {
		display: block;
	}
	
	.brandList section h2, 
	.brandList section p {
		display: block;
	}
	.brandList section h2 {
		width: 100%;
		padding-bottom: 0;
	}
	.brandList section h2 img {
		width: 150px;
	}
	
}

