/******************

recruit-ancor

*******************/

.recruit-ancor ul {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    column-gap: 40px;
    padding: 32px 24px;
    margin-top: 40px;
}

.recruit-ancor ul li a {
    column-gap: 8px;
    color: #0B0B0B;
    display: flex;
    text-decoration: underline;
}

.ancor-circle {
    align-items: center;
    background: #1C3483; 
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    height: 24px;
    width: 24px;
}

.ancor-circle svg {
    color: #ffffff;
    font-size: 12px;
}

@media screen and (max-width: 880px) {
    .welfare-ancor ul  {
        column-gap: 3.2vw;
        padding: 4.0vw;
        margin-top: 8vw;
        flex-wrap: wrap;
        row-gap: 3.2vw;
    }
    .recruit-ancor ul {
        column-gap: 3.2vw;
        padding: 4.0vw;
        margin-top: 8vw;
        flex-wrap: wrap;
        row-gap: 3.2vw;
    }    
}


/******************

components-recruit-links

*******************/

.components-recruit-links__title h3 {
    font-weight: 500;
}

.components-recruit-links {
    padding: 80px 0;
}

ul.components-recruit-links__list {
    display: flex;
    column-gap: 24px;
    justify-content: space-between;
    margin: 24px 0;
}

ul.components-recruit-links__list li {
    width: 30%;
}

ul.components-recruit-links__list li a {
    border: 1px solid #E3E3E3;
    border-radius: 8px;
    column-gap: 40px;
    color: #1C3483;
    display: flex;    
    padding: 16px 24px;
    justify-content: space-between;
}

ul.components-recruit-links__list li a p {
    font-weight: 400;
    color: #1C3483;
}

ul.components-recruit-links__list li a .group-btn {
    align-items: center;
    display: flex;
    border-radius: 40px;
    background: #1C3483;
    justify-content: center;
    border: 1px solid #1C3483;
    height: 32px;
    transition: .2s;
    width: 32px;
}

ul.components-recruit-links__list li a .group-btn svg {
    color: #ffffff;
}

ul.components-recruit-links__list li a:hover {
    color: #1C3483;
}

ul.components-recruit-links__list li a:hover .group-btn {
    color: #1C3483;
    background: #ffffff;
}

ul.components-recruit-links__list li a:hover .group-btn svg {
    color: #1C3483;
}

ul.components-recruit-links__list li a:hover p {
    color: #8e8e8e;
}

@media screen and (max-width: 1000px) {
    ul.components-recruit-links__list {
        flex-direction: column;
        justify-content: center;
        row-gap: 16px;
    }
    ul.components-recruit-links__list li {
        width: 80%;
    }
}

@media screen and (max-width: 690px) {
    ul.components-recruit-links__list li {
        width: 100%;
    }
    .components-recruit-links {
        padding: 12vw 0;
    }
}