/*
* top bn
*/

table.top_bn { 
  width:100%; 
  border-collapse:collapse; 
  border:none; 
  text-align:center; 
  margin: 20px 0px;
}

/* 商品カテゴリー別メニュー */

*, *:before, *:after {
	box-sizing: border-box;
}
.col_3{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_3 > div{
	width: 33.33333%;
	padding: 5px;
}
@media screen and (max-width: 960px) {
	.col_3 > div{
		width: 50%;
	}
}
@media screen and (max-width: 480px) {
	.col_3 > div{
		width: 100%;
	}
}

.button{
    display: flex;
    align-items: center;
    justify-content: flex-start;
	border: solid 1px #d1d1d1;
	text-decoration: none !important;
	background-color: #fff;
	border-radius: 3px;
	transition: 400ms;
}
.button:hover{
	background-color: #fcaf9c;
}

img.ctgr{
	width: 100px;
  height: 100px;
    float: left;
    margin: 5px;
}

/* ブランド別メニュー */

.col_2{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_2 > div{
	width: 50%;
	padding: 10px;
}
@media screen and (max-width: 960px) {
	.col_2 > div{
		width: 100%;
	}
}

.brand_bn{
	border: solid 1px #d1d1d1;
}

.brand_hv img{
  transition-duration: 0.3s;
}

.brand_hv:hover img{
  opacity: 0.7;
  transition-duration: 0.3s;
}
