/* footer.css */

.float-button{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 330px;
    z-index: 10;
}
.float-button-sp{
    display: none;
}
@media (max-width:425px) {
    .float-button{
        display: none;
    }
    .float-button-sp{
        display: block;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        width: 90%;
    }
}
.footer-cont{
    width: 100%;
    position: relative;
    background-color: #FFF;
}
@media (max-width:768px) {
    .footer-cont{
        z-index: 20;
    }
}
.footer-cont__inner{
    display: flex;
    justify-content: center;
    padding: 40px 20px 65px;
    max-width: 800px;
    margin: 0 auto;
    gap: 10%;
}
@media (max-width:768px) {
    .footer-cont__inner{
        flex-wrap: wrap;
        padding-bottom: 40px;
    }
}
.footer-cont__left{
    width: 45%;
}
@media (max-width:768px) {
    .footer-cont__left{
        width: 100%;
    }
}

@media (max-width:768px) {
    .footer-cont__left--logo{
        width: 60%;
        max-width: 350px;
        margin: 0 auto;
    }
}
.footer-cont__left--link{
    margin-top: 15px;
}
.footer-cont__left--link a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.footer-cont__left--link a::after{
    content: '';
    margin-left: 5px;
    width: 14px;
    height: 14px;
    background-image: url('../img/footer/footer_link.svg');
    background-size: contain;
}
.footer-cont__menu{
    width: 45%;
}
@media (max-width:768px) {
    .footer-cont__menu{
        width: 100%;
        margin-top: 30px;
    }
}
.footer-menu{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
}
.footer-menu .menu-item{
    display: flex;
    align-items: center;
    width: 50%;
    font-size: 15px;
}
@media (max-width:768px) {
    .footer-menu .menu-item{
        width: 33%;
        font-size: 13px;
    }
}
.footer-menu .menu-item::before{
    content: '';
    background-image: url('../img/footer/footer_menu-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 15px;
    margin-right: 8px;
}
.copyright{
    background-color: var(--orange);
    color: #FFF;
    text-align: center;
    font-family: "Josefin Sans", sans-serif;
    font-size: 12px;
    padding: 14px 0;
    position: relative;
}
@media (max-width:768px) {
    .copyright{
        z-index: 20;
    }
}