.players_wrap {
	margin: 10vw 0 0;
    padding: 0 0 10vw 0;
	background-image: url(../img/common/bg_sp_player.jpg);
	background-image: image-set(url(../img/common/bg_sp_player.jpg) 1x, url(../img/common/bg_sp_player@2x.jpg) 2x);
	background-image: -webkit-image-set(url(../img/common/bg_sp_player.jpg) 1x, url(../img/common/bg_sp_player@2x.jpg) 2x);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
}

.playlers_inner {}

.players_title {
    margin-bottom: 7.5vw;
    color: #004098;
	font-size: clamp(1rem, 0.545rem + 2.27vw, 2.25rem);
	text-align: center;
	letter-spacing:  0.1em;
	line-height: 2em;
}

.player_list_wrap {
    padding: 0.25rem;
    border: 5px solid #004098;
    border-radius: 8px;
}

.player_list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0.5rem;
    border: 2px solid #004098;
    border-radius: 8px;
}

.player_list li {
    flex-basis: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
    margin: 0 0 1.5vw;
    padding: 0 0 .5rem 0;
    border-bottom: 2px dashed #004098;
}

.player_list li .icon {
    flex-basis: 20%;
}

.player_list li .icon img {
    max-width: 100%;
    height: auto;
}

.player_list li .player_name {
    padding: 2px 5px;
    color: #004098;
}

.player_list li .player_name.pro {
    background-color: #004098;
    color: #fff;
}

.notes {
    margin: 10px 0 0 0;
    font-size: 1.5rem;
    text-align: center;
}

.notes > span {
    margin: 0 .5rem;
}

.notes > .pro {
    padding: 3px 5px;
    background-color: #004098;
    color: #fff;
}

.notes > .npro {
    color: #004098;
}

@media screen and ( min-width: 768px ) {
    .players_wrap {
        margin: 3.5vw 0 0 0;
        padding: 0 0 7.5vw 0;
    }
    .players_title {
        margin: 0 0 3.5vw 0;
    }
    .player_list {
        padding: 2.5rem;
    }
    .player_list li {
        flex-basis: 25%;
    }
    .notes {
        text-align: right;
    }
}