/* product */
/* 共通 */
.company_ttl {
	font-size: 20px;
	margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
    .company_ttl {
        margin-bottom: 16px;
    }
}



.p-product__cont {
    margin-bottom: 74px;
}
.product__cont_row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2.5%;
}
.product__cont_item {
    width: 18%;
    text-align: center;
    margin-bottom: 30px;
    display: block;
}
.product__cont_item p {
    text-align: left;
    font-size: 12px;
    line-height: 2.2;
}
.product__cont_item_img {
    margin-bottom: 6px;
}
.product__cont_item_img img {
    width: 100%;
    height: 203px;
    object-fit: cover;
}
.p-product__cont .p-button_white {
    background-color: #fff;
    border: 1px solid #000;
    margin: 0 auto;
    width: 184px;
    display: block;
}
.p-product__cont .p-button_white a {
    color: #000;
}
.p-product__cont .p-button_white:hover {
    opacity: 1;
    border: 1px solid #3fc892;
    background-color: #3fc892;
}
.p-product__cont .p-button_white:hover a {
    color: #fff;
    opacity: 1;
}

@media only screen and (max-width: 768px) {
    .product__cont_row {
        gap: 2%;
    }
    .product__cont_item {
        width: 49%;
    }
}