.footerNav-center a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.footerNav-right a {
    background-color: var(--color_g);
    border: 1px solid var(--color_g);
    font-size: 1em;
    color: var(--white);
    border-radius: 10px;
    text-align: center;
    width: 160px;
    padding: 0;
    line-height: 40px;
    cursor: pointer;
}


.footerNav-right,
.footerNav-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12vw;
}

.footerNav {
    position: fixed;
    display: flex;
    transition: 0.2s;
    z-index: 2;
}



/*For MOBILE*/
@media (max-aspect-ratio: 1/1) or ((max-width: 1279px) and (min-aspect-ratio: 1/1)) {
    .navbar.fixed .footerNav {
        display: none;
    }

    .footerNav-center a {
        background: none;
        border: none;
        font-size: 0;

    }

    .footerNav {
        height: 80px;
        width: 100%;
        bottom: 0px;
        left: 0px;
        flex-direction: row;
        justify-content: space-between;
        align-items: end;
    }

    .footerNav-center::before {
        content: '';
        background-image: var(--account_ico);
        background-size: cover;
        background-repeat: no-repeat;
        width: 11vw;
        height: 11vw;
        max-height: 11vh;
        position: absolute;
        bottom: 0%;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }


    .footerNav-right,
    .footerNav-left {
        width: calc(50% - 39px);
        border-top: 5px solid;
        border-image: linear-gradient(to right, transparent, var(--blue), transparent) 1;
        border-radius: 10px 10px 0% 0%;
        max-height: 12vh;
    }

    .footerNav-right>a,
    .footerNav-left>div {
        width: calc(100% - 30px);

        font-size: 4vw;
        line-height: max(5vw, 4.5vh);
        height: 11vw;
        max-height: 11vh;

    }

    .footerNav-center {
        position: relative;
        width: 80px;
        height: 13vw;
        max-height: 12vh;
        border-radius: 3vw 3vw 0% 0%;
        box-shadow: inset 0 0px 20px 5px var(--blue);
    }

    .footerNav-right,
    .footerNav-left,
    .footerNav-center {
        backdrop-filter: blur(20px);
    }


}


/*For PC*/
@media (min-width: 1280px) and (min-aspect-ratio: 1/1) {

    .footerNav {
        width: 160px;
        top: 80px;
        right: 0;
        flex-direction: column;
        opacity: 0.5;
        padding: 0 10px;
    }

    .footerNav.scrollPosition {
        display: block;
        position: fixed;
        top: 60px;
    }

    .footerNav:hover {
        opacity: 1;
    }

    .footerNav-right,
    .footerNav-left,
    .footerNav-center {
        width: 100%;
        height: 50px;
        /*margin: 0.5em 0;*/
        display: flex;
        align-items: center;
        justify-content: end;

    }



    .footerNav-right *,
    .footerNav-left *,
    .footerNav-center * {
        cursor: pointer;
    }

    .footerNav-center a::before {
        content: '';
        background-image: var(--account_ico);
        background-size: cover;
        background-repeat: no-repeat;
        width: 22px;
        height: 21px;
        position: absolute;
        top: 50%;
        left: 12px;
        transform: translateY(-50%);
    }

    .footerNav-center a:hover::before {
        opacity: 0.5;
    }

    .footerNav-center a:hover,
    .footerNav-right a:hover {
        background: #f1de3f45;
    }

    .footerNav-center a,
    .footerNav-right a {
        position: relative;
        border-radius: 10px;
        text-align: center;
        width: 160px;
        padding: 0;
        line-height: 40px;
        height: 40px;

    }


    .footerNav-center a {
        padding-left: 1em;
        width: calc(160px - 1em);
    }

    .footerNav-service {
        position: relative;
        border-radius: 10px;
        text-align: center;
        cursor: pointer;
        height: 40px;
        border: 1px solid #3396FF;
        box-shadow: inset 0px 0px 15px #3396FF;
        font-size: 1em;
        color: var(--blue);
        margin-top: 5px;
    }

    .footerNav.startPosition .footerNav-service {
        display: none;
    }

    .footerNav-service:hover {
        border: none;
    }

    .footerNav-service:hover>span {
        border-bottom: 1px solid var(--color_o);
        color: var(--color_o);

    }

    .footerNav-service>span {
        width: 100%;
        line-height: 40px;
        padding: 0;
        text-align: center;
        text-shadow: 1px 1px 1px black;
        color: var(--green);
        position: relative;
        z-index: 1;

    }

    .footerNav-service>span::before {
        content: '+';
        left: -20px;
        top: -8px;
        position: absolute;
    }

    .footerNav-service:hover>span::before {
        content: '';
    }





    .footerNav-service .nav-child {
        width: 160px;
        height: 30px;
        display: block;
        /*left: 180px;*/
        top: 0;
        border-radius: 10px;
        backdrop-filter: none;
        box-shadow: none;
        background: #2e4761;
        ;
        /*overflow: visible;*/
        transition: 1s;
        opacity: 0;
        padding-bottom: 0.4em;

    }

    .footerNav-service:hover .nav-child {
        width: 280px;
        height: 400px;
        min-width: max-content;
        min-height: auto;
        opacity: 1;
        transition: 0s;
        padding-top: 0;
        padding-bottom: 0;
    }

    .footerNav-service .nav-child>li>a {
        color: var(--white);
    }

    .footerNav-service .nav-child>li:hover {
        background: #3396ff;
    }

    .footerNav-service .nav-child a:hover::before {
        background: var(--white);
    }


}