@charset "UTF-8";


/*==============================================
================================================
productArea
================================================
==============================================*/
/*----------------------------
itemBox
----------------------------*/
.itemBox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.itemBox_cnt {
    width: 17%;
    margin-right: 3.75%;
}
.itemBox_cnt:nth-child(5n) {
    margin-right: 0;
}
.itemBox_cnt:nth-child(n+6) {
    margin-top: 30px;
}
.itemBox_cnt a {
}
.machine_img {
    width: 100%;
    aspect-ratio: 1;/*可変の正方形*/
    display: flex;
    justify-content: center;
    align-items: center;
    border:solid 5px #231815;
}
.machine_img-yoko img {
    width: 65%;
    height: auto;
}
.machine_img-tate img {
    width: auto;
    height: 60%;
}
.machine_name {
    margin-top: .5em;
}
@media screen and (max-width: 767px) {
    .itemBox {
        justify-content: space-between;
    }
    .itemBox_cnt {
        width: 46%;
        margin-right: 0;
    }
    .itemBox_cnt:nth-child(n+3) {
        margin-top: 20px;
    }
}
