@charset "utf-8";
/* CSS Document */

.inc-nav {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.inc-nav ul {
  display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    justify-content: space-evenly;
    align-items: stretch;
}
.inc-nav ul li{
    width: 26%;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    align-items: stretch;
    line-height: 1.2;
    display: grid;	
    position: relative;
}
.inc-nav ul li.new:before{
	content:url("../img/products02/index/new.png");
	display: block;
	position: absolute;
	width: 20%;height: 20px;
	background-size: contain;
	top:-10px;
	left: -10px;
}
.inc-nav ul li a{
  display: block;
    background-color: #14995a;
    color: white;
    padding: 2rem 1rem;
    border: 1px solid #545454;
    border-radius: 7px;
}