.underlayer-title {
    color: #FFF;
}

.cast-wrapper {
    padding: 50px 25px;
    /* background: radial-gradient(circle, var(--sub-color-4) 0%, var(--sub-color-3) 40%); */
    background: url("../../img/top/pickupcast-bg.jpg");
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.cast-wrapper::before {
    content: "";
    position: absolute;
    background: var(--sub-color-15);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cast-contents {
    margin-top: 100px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
}

@media(max-width:992px) {
    .cast-contents {
        gap: 10px;
    }
}

.cast-content {
    width: 200px;
}

@media(max-width:992px) {
    .cast-content {
        width: 48%;
    }

    .cast-content:not(:first-of-type),
    .cast-content:not(:nth-of-type(2)) {
        margin-top: 40px;
    }
}

.cast-content-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--txt-color-1);
}

.cast-content-names {
    margin-top: 15px;
    position: relative;
}

.cast-content-names .pickupcast-content-name {
    position: initial;
    transform: initial;
    text-align: left;
}

.cast-content-insta-link {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
}

.cast-content-insta-link img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: invert(1);
}