@charset "UTF-8";





/*-------------------------------------------*/
/*footer*/
/*-------------------------------------------*/
.footer_bg {
    background-color: var(--color-main);
}

footer p,
footer a {
    color: #fff;
}

footer a:visited {
    color: #fff;
}


.footer_inner.flex {
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 42px;
}

.footer_right ul {
    display: flex;
    gap: 15px;
    margin-bottom: 75px;
}

.footer_right ul li a {
    font-size: 1.6rem;
}

.footer_right .copyright p {
    font-size: 1.3rem;
}

.copyright {
    display: flex;
    justify-content: flex-end;
}

.footer_left img {
    margin-bottom: 22px;
}

.footer_left p {
    font-size: 1.5rem;
    line-height: 1.5;
}

.footer_logo {
    font-size: 2.6rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
    .footer_inner.flex {
        flex-direction: column;
    }

    .copyright {
        justify-content: center;
    }

    .footer_left {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .footer_right ul {
        display: flex;
        margin-bottom: 50px;
        margin-top: 50px;
        display: flex;
    }
}

@media screen and (max-width: 480px) {
    .footer_inner.flex {
        padding-bottom: 10px;
        margin-top: 0px;
        padding: 30px 0px;
    }

    .footer_left p,
    .footer_right ul li a {
        font-size: 1.3rem;
    }

    .footer_right ul {
        margin-bottom: 35px;
        margin-top: 35px;
    }

    .copyright {
        justify-content: flex-start;
    }

    .footer_left img {
        margin-bottom: 10px;
    }

    .footer_right .copyright p {
        font-size: 1.0rem;
    }

    .footer_right {
        display: none;
    }

}