.product_category + .product_category {
    margin-top: 70px;
}
.products {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 60px 40px;
}
.products .item {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    width: 300px;
}
.products .item .image {
    height: 200px;
}
.products .item img {
    width: auto;
    height: 100%;
}
.products .item .text {
    margin-top: 15px;
    color: #333;
    text-align: center;
}
.products .item .text a {
    color: #333;
    text-decoration: none;
}
.products .item .text a:hover {
    text-decoration: underline;
}
.products .item .text .price {
    margin-top: 0.5em;
    font-size: 0.85em;
    text-decoration: none;
}

@media screen and (max-width: 959px) {
    .pc {
        display: none;
    }
    .product_category + .product_category {
        margin-top: 50px;
    }
    .products {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 3vw 0;
    }
    .products .item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }
    .products .item .image {
        flex-shrink: 0;
        width: 30%;
        height: auto;
    }
    .products .item img {
        width: 100%;
        height: auto;
    }
    .products .item .text {
        margin-top: 0;
        margin-left: 4vw;
        text-align: left;
    }
}