@charset "utf-8";
#tb{
	display:grid;
	grid-template-columns:calc(25% - 90px/4) calc(25% - 90px/4) calc(25% - 90px/4) calc(25% - 90px/4);
	column-gap: 30px;
	row-gap:30px;
	width:auto;
	height:auto;
	margin:auto;
	overflow:hidden;
	min-height: 100px;
}
@media (max-width:767px){
	#tb{
		grid-template-columns:calc(50% - 10px/2) calc(50% - 10px/2);
		column-gap: 10px;
		row-gap:10px;
	}
}
.tb_tb{
	width:auto;
	height:auto;
	overflow:hidden;
	display:block;	
	text-align: center;
}


a.tb_pic{
	width:auto;
	height:auto;
	padding-bottom:100%;
	overflow:hidden;
	display:block;
	margin:auto;
	position:relative;
	background-size:cover;
}
a.tb_name{
	width:auto;
	height:auto;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:1;
	text-overflow:ellipsis;
	overflow:hidden;
	margin:auto;
	overflow:hidden;
}
.tb_price{
	overflow: hidden;
	font-weight: bold;
	font-size: 1.2rem;
}
.tb_right{
	display: block;
	padding: 10px;
}