.artist-wrapper h4 {
    margin-bottom: 0;
}

figcaption {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.section-artist {
    margin-left: var(--space-1);
    margin-right: var(--space-1);
}

.artist-button {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.artist-button-wrapper {
    background-color: var(--content-color);
    flex: 1;
    display: flex;
    justify-content: center;
    padding: var(--space-0) 0;
}

.artist-wrapper {
    margin-bottom: var(--space-2);
}

.artist-img-wrapper {
    margin-bottom: var(--space-0);
    aspect-ratio: 3 / 4;
    /* 横4 : 縦3 */
    width: 100%;
    overflow: hidden;
}

.artist-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline .item {
    display: grid;
    grid-template-columns: max-content 1fr;
    /* 左:年 / 右:内容 */
    column-gap: var(--space-1);
    margin-bottom: var(--space-1);
}

.timeline .item a {
    margin-top: var(--space-1);
    justify-content: flex-end;
}

.timeline {
    margin-bottom: var(--space-2);
}

.artist-work {
    display: block;
    text-align: right;
}

/* PC */
@media (min-width: 740px) {
    .section-artist {
        max-width: 1216px;
        padding: 0 32px;
        margin-left: auto;
        margin-right: auto;
    }

    .artist-button {
        flex-direction: row;
        gap: var(--space-1);
    }

    .section-artist-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 64px;
        width: 100%;
    }

    .artist-wrapper {
        width: 32.81%;
        position: sticky;
        top: 80px;
        height: 100%;
    }

    .timeline {
        width: 630px;
        margin-top: var(--space-1);
    }
}