.c-item-list{
    display: flex;
    gap: 70px 4.5%;
    max-width: 1360px;
    flex-wrap: wrap;
}
.c-item-list.--center{
    justify-content: center;
}
.c-item{
    width: 30.3%;
}
.c-item__img{
    width: 90%;
    margin: auto;
    /* height: 266px; */
}
.c-item__img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
}
.c-item__title{
    font-size: 17px;
    font-weight: bold;
}
.c-item__txt{
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
}
@media(max-width: 768px){
    .c-item{
        width: 48.5%;
    }
    .c-item-list{
        justify-content: space-between !important;
        gap: 40px 3%;
    }
    .c-item__title{
        font-size: 15px;
    }
    .c-item__txt{
        font-size: 13px;
        line-height: 1.8;
    }
    .c-item__img{
        height: 200px;
    }
}
@media(max-width: 500px){
    .c-item__img{
        width: 100%;
        height: 150px;
    }
}

/* 20260312 商品紹介について */
.c-item-list.scn-item-list .c-item__content{
    min-height: 160px;
}
@media (max-width: 768px) {
    .c-item-list.scn-item-list .c-item__content{
        min-height: 240px;
    }
}