@charset "UTF-8";
.productslist {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}

.productslist li {
    width: calc( (100% - 75px) / 4 );
    margin-right: 25px;
    margin-bottom: 10px;
}

.productslist li:nth-child(4n) {
    margin-right: 0;
}

.productslist li .img {
    width: 100%;
    overflow: hidden;
    transition: all .5s;
    display: block;
}

.productslist li .img img {
    width: 100%;
    display: block;
    transition: all .5s;
}

.productslist li:hover .img img {
    transform: scale(1.1);
    transition: all .5s;
}

.productslist li .title {
    text-align: center;
    padding: 8px 0;
    line-height: 180%;
    text-decoration: none !important;
    font-size: 14px;
}

.productslist li p {
    margin-bottom: 0;
}

.adlist {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
    justify-content: center;
}

.adlist li, .adlist li img {
    width: 280px;
    height: 320px;
    object-fit: cover;
}

.adlist li {
    margin-right: calc( (100% - 1120px) / 3 );
}

.adlist li:nth-child(4n) {
    margin-right: 0;
}

.mySwiper {
    height: auto;
}

.mySwiper img {
    height: auto;
    object-fit: cover;
}