footer {
    padding: 100px 10px 20px;
    background-color: #A7A7A7;
}

.footer__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.footer-cv {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-cv__item {
    width: 32%;
    max-width: 370px;
    padding: 30px 50px;
    background-color: #fff;
    border-radius: 10px;
}

.footer-cv__item__logo {
    max-width: 50px;
    margin-bottom: 10px;
}

.footer-cv__title {
    font-size: 30px;
    font-weight: bold;
}

.footer-cv__text {
    font-size: 14px;
}

.footer-cv__item__upper {
    height: 150px;
}

.footer-menu__inner {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-bottom: 20px;
}

.footer-menu__bottom__text {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
}

.footer-menu {
    padding: 50px 50px;
    background-color: #fff;
    border-radius: 10px;
}

.footer-menu__lead {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
}

.footer-menu__right {
    display: flex;
    justify-content: space-between;
    width: 60%;
}

.footer-menu__link__ttl {
    color: #767676;
    font-weight: bold;
    padding-bottom: 10px;
}

.footer-menu__link li {
    padding-bottom: 10px;
    font-weight: bold;
}

.footer-menu__logo {
    max-width: 180px;
}

@media screen and (max-width: 768px) {
    .footer-cv {
        display: block;
    }

    .footer-cv__item {
        width: 100%;
        max-width: none;
        margin-bottom: 20px;
        padding: 30px;
    }

    .footer-cv__item__upper {
        height: auto;
        margin-bottom: 20px;
    }

    .footer-menu {
        padding: 30px 10px;
    }

    .footer-menu__inner {
        display: block;
    }

    .footer-menu__right {
        display: block;
        width: 100%;
    }

    .footer-menu__link {
        border-bottom: 1px solid #000;
    }

    .footer-menu__link--center {
        margin-bottom: 30px;
    }

    .footer-menu__link__ttl {
        position: relative;
    }

    .footer-menu__link__ttl::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 20px;
        height: 10px;
        background: url(../images/common/icon_under_solid.png);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .footer-menu__link__child {
        display: none;
    }

    .footer-menu__link__child.is-active {
        display: block;
    }

    .footer-menu__link__ttl {
        padding: 10px 0;
        color: #000;
    }

    .footer-menu__link--center li {
        position: relative;
        padding: 10px 0
    }

    .footer-menu__link--center li::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 20px;
        height: 30px;
        background: url(../images/common/icon_right_solid.png);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .footer-menu__link--center li:first-of-type {
        border-bottom: 1px solid #000;
    }

    .footer-menu__link--last {
        margin-bottom: 20px;
        border-bottom: none;
    }
}