@charset "UTF-8";
.product-list ul{
	display: flex;
	justify-content: space-between;
	padding: 0;
	border-top: 1px solid #999;
}
.product-list ul:last-child{
	border-bottom: 1px solid #999;
}
.products{
	display: flex;
	flex-flow: row wrap;
    justify-content: center;
}
.products h3{
	border-left: 4px solid #3ca062;
    padding-left: 0.5em;
    margin: 0 0 5px 0;
	font-size: 18px;
}
.product-box{
	padding: 25px 20px 0;
	margin-bottom: 3em;
	position: relative;
}
.product-box ul li{
	padding: 0.2em 0;
}
.product-box img {
    transition: .3s;
}
.product-box a:hover img {
    opacity: .7;
}
.empty {
    width:280px;
    padding: 0;
    margin: 0;
}
.product-image .new_icon, .product-image .type_icon, .product-image .glay_icon{
	position: absolute;
}
.product-image .new_icon img{
	width: 60px;
}
.product-image .new_icon{
    left: 20px;
    top: 5px;
    z-index: 1;
}
.product-image .type_icon, .product-image .glay_icon{
	right: 20px;
    top: 5px;
	color: #fff;
    background-color: #3ca062;
    border-radius: 4px;
    margin: 2px 0;
    padding: 0.15em 0.5em;
    font-size: 80%;
    z-index: 1;
}
img.product_img{
	height:240px;
	margin: 0 auto;
	display: block;
}
.product-image .glay_icon{
    background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
	.sec-page-head {
		margin-bottom: 0;
	}
	.product-title{
		height: 78px;
	}
	h1{
		font-size: 1.5em;
		position: relative;
	}
	.products {
		justify-content: space-between;
	}
	.product-box{
	padding: 30px 0 0;
	width: 48%;
    float: left;
	}
    .product-image {
        text-align: center;
    }
	.product-image .new_icon {
    left: 0px;
    top: 0px;
	}
	.product-image .type_icon, .product-image .glay_icon {
		right: 0px;
		top: 2px;
	}
	section.product-list{
		position: relative;
	}
	img.product_img{
	height: 160px;
    width: auto;
}
    .empty {
        display: none;
    }
	
	
}