.artists {
    padding-bottom: 0;
}
.artists__nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1em;
    margin-top: 6%;
}
.artists__nav-item {
    width: 2.334%;
}
.artists__nav-item .active {
    opacity: 50%;
}
.artists__nav-item button {
    opacity: 20%;
}
.artists__nav button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
}
.artists__list {
    margin: 6.3% 0 0 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5%;
    justify-content: flex-start;
    padding-bottom: 1.2em;
}
.artists__list--listview {
    column-gap: 0;
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-template-columns: repeat(4, max-content);
    grid-template-columns: 27.5% 27.5% 27.5% auto;
    justify-content: space-between;
    padding-bottom: 18.4em;
    margin-right: 0em;
    gap: 0 0em;
    width: 95.3%;
}
.artists__item {
    width: 21.25%;
    margin: 0 0 1.5% 0;
}
.artists__btn-item {
    transition: color 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.artists__btn-item[href]:hover .artists__img-item {
    opacity: 0.5;
}
.artists__btn-item[href]:hover .artists__text-item {
    color: #f00;
}
.artists__img-item {
    position: relative;
    height: 0;
    padding-bottom: 100%;
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.artists__img-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.artists__text-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0.8em 0 0.6em;
    min-height: 2.6em;
    font-family: var(--font-en-03);
    font-weight: var(--w300);
    letter-spacing: 0.03em;
    font-size: 1.125em;
    line-height: 1.223;
    text-align: center;
}
.artists__list--listview .artists__text-item {
    margin: 0;
    justify-content: flex-start;
    min-height: 3.35em;
    text-align: left;
    white-space: nowrap;
    word-break: keep-all;
}
.artists__list--listview .artists__text-item wbr{
    display:block;
}
.artists__list--listview .artists__text-item .gridview-br {
    display: none;
}
.artists__list--listview .artists__item .artists__img-item {
    display: none;
}
.artists__list--listview .artists__item {
    width: 100%;
    margin: 0;
}
@media screen and (max-width: 1080px) and (min-width: 767px) {
    .artists__text-item,
    .artists__list--listview .artists__text-item{
        font-size: 1.7vw;
    }
}
@media screen and (max-width: 767px) {
    .artists__nav {
        gap: 2.1em;
        margin-top: 3.6em;
    }
    .artists__nav-item {
        width: 5.715%;
    }
    .artists__list {
        display: block;
        margin: 6.5% 0 0 0;
    }
    .artists__list--listview {
        margin: 2.9em 0 0 0;
        padding-bottom: 6.1em;
    }
    .artists__item {
        width: 100%;
    }
    .artists__img-item {
        padding-bottom: 50%;
    }
    .artists__img-item img {
        object-fit: cover;
        object-position: 0% 21%;
    }
    .artists__text-item {
        font-size: 3rem;
        min-height: 0;
        margin: 0.8em 0 1.95em;
    }
    .artists__list--listview .artists__text-item {
        min-height: auto;
        margin-bottom: 0.82em;
        white-space: nowrap;
        word-break: keep-all;
        display: block;
    }
}