.teams2nd li:before {
    display: none;
}

.team-item-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.team-item-wrapper {
    display: flex;
    background: rgb(222 222 222);
    width: calc(100% / 3 - 10px);
    transition : all 0.3s ease 0s;

}
@media screen and (max-width: 768px) {
    .team-item-wrapper {
        width: 49.3%;
        padding-right: 10px;
    }
    .team-item-wrapper .team-item.name{
        border-bottom: 1px solid #333;
        font-size: 18px;
        line-height: 2;
        font-weight: bold;
    }
        .team-item-wrapper .team-item.place{
        font-size: 13px;
        line-height: 13px;
        padding-top: 5px;
    }
    .team-item.sp-item {
        width: 70%;
    }
}

.team-item-wrapper:hover {
    background: rgb(58, 58, 58);
    opacity: 1;
    transition : all 0.3s ease 0s;
}

.team-item-wrapper:hover li {
    color: #fff;
}



.contents-wrapper {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
}