.footer {
    position: relative;
}

.footer__bg {
    display: block;
    width: 100%;
    height: auto;
}

.footer__inner {
    position: absolute;
    left: 50%;
    bottom: clamp(5.938rem, 1rem + 12.94vw, 18.438rem);
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 2;
    align-items:center;
}

.footer__nav {
    display: flex;
    gap: clamp(3.75rem, 1.233rem + 6.47vw, 10rem);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: clamp(0.938rem, 0.558rem + 1.62vw, 2.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__list a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.688rem, 0.369rem + 1.36vw, 2rem);
    font-family: 'ShipporiGothic';
}

.footer__logo img {
    width: clamp(14.25rem, 3.473rem + 16.12vw, 29.813rem);
    height: auto;
}

@media (max-width: 767px) {
    
    .footer__picture {
        display: block;
    }

    .footer__bg {
        display: block;
        width: 100%;
        height: auto;
    }
    
    .footer__inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: clamp(24px, 6vw, 40px);
    }

    .footer__nav {
        justify-content: center;
    }

    .footer__logo {
        display: flex;
        justify-content: center;
    }
}