/* BASIC css start */
/* 수동링크 */
#linkG {
    margin: 50px auto;
}

#linkG ul {
    display: flex;
    justify-content: center;
    gap: 0 30px;
}

#linkG li a {
    position: relative;
    width: 120px;
    height: 120px;
    display: block;
    border-radius: 100px;
    background: #F7F7F7;
    transition: ease-out 0.3s;
        text-align: center;
}

#linkG li a strong {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.72px;
    color: var(--black);
}

#linkG li a:hover {
    background: var(--Ypoint);
    transition: ease-out 0.3s;
}

#linkG li a:hover strong {
    color: var(--white);
}

#linkG li span {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

#linkG li.on a {
    background: var(--Ypoint);
}

#linkG li.on a strong {
    color: var(--white);
}

/* BASIC css end */

