.recruit-pc-right-wrapper {
    width: calc((100% - 425px) * (1 / 3));
    display: flex;
    justify-content: right;
    background: url("../../img/recruit/pc-left-bg.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    font-family: var(--font-family-2);
}

@media(max-width:992px) {
    .recruit-pc-right-wrapper {
        display:none;
    }
}

.recruit-pc-right-wrapper::before {
    content: "";
    position: absolute;
    background: url("../../img/recruit/main-bg.jpg");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;

}

.recruit-pc-right-inner {
    margin-top: 200px;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.recruit-pc-right-title {
    color: var(--txt-color-5);
    font-weight: 800;
}

.recruit-pc-right-content {
    margin: 10px 25px;
}

.recruit-pc-right-content a {
    color: var(--txt-color-3);
}