/*------------------------------------------------------------
	フッター(改修済み)
------------------------------------------------------------*/
#gFooter{
    position: relative;
    background-color: var(--footer-color-bg);
    z-index: 100;
}
#gFooter .content{
    position: relative;
    padding:50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
}
/*-------fInner------*/
#gFooter .fInner{
    display: flex;
    gap:50px;
    align-items: center;
}
/*-------fLogo------*/
#gFooter .fLogo img{
    width: 180px;
    height: auto;
}
/*-------fBox------*/
#gFooter .fBox .footer-btn{
    display: flex;
    gap:30px;
}
#gFooter .footer-btn a{
    color:color-mix(in srgb, var(--main-color-white) 50%, transparent);;
    display: inline-block;
    position: relative;

    transition:color 0.4s ease;
}
#gFooter .footer-btn a::after{
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color:var(--accent-color-1);

    opacity: 0;
    transition: opacity 0.4s ease;
}
/*-------address------*/
#gFooter address p{
    color:var(--main-color-white);
    font-size: 1.2rem;
}

@media all and (min-width: 769px) {
    /*-------hover------*/
    #gFooter .footer-btn a:hover{
        color: var(--main-color-white);
    }
    #gFooter .footer-btn a:hover::after{
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    #gFooter .content {
        padding: 40px;
        flex-direction: column;
        gap: 40px;
    }
    #gFooter .fInner {
        gap: 40px;
        align-items: center;
        flex-direction: column;
    }
    #gFooter .fBox .footer-btn {
        gap: 32px;
        flex-direction: column;
    }
}

