/* ==================================================
 * sustainability social innovation digital
 * 2024/2/2
 * -----------------------
 * initials：digital__
 * ================================================== */
/* ====================
 * PC
 * ==================== */
.digital__list{
    align-items: center;
    display: flex;
}
.digital__list:not(:last-of-type){
    margin-bottom: 20px;
}
.digital__list_item-01{
    flex: 1;
    margin-right: 30px;
}
.digital__list_item-02{
    margin-right: 30px;
    width: 30px;
}
.digital__list_item-03{
    width: 180px;
}

/* ====================
 * TABLET:(min-width:768px) and (max-width:1259px)
 * ==================== */
@media screen and (min-width:768px) and (max-width:1259px){
}

/* ====================
 * SP:(max-width:767px)
 * ==================== */
@media screen and (max-width: 767px){
    .digital__list_item-01{
        flex: 1;
        margin-right: 15px;
    }
    .digital__list_item-02{
        margin-right: 15px;
    }
    .digital__list_item-03{
        flex: 1;
        width: initial;
    }
}