/* Layout
============================================================================= */
.footer__wrapper {
    width: 100%;
    padding-top: 60px;
    background: #111;
    color: #fff;
}

@media screen and (max-width: 989px) {
    .footer__wrapper {
        padding-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .footer__wrapper {
        padding-top: 30px;
    }
}

#footer {
    width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 989px) {
    #footer {
        width: 710px;
    }
}

@media screen and (max-width: 767px) {
    #footer {
        width: auto;
    }
}

.footer__upper {
    width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 989px) {
    .footer__upper {
        width: 710px;
        margin: 0 auto 30px;
    }
}

@media screen and (max-width: 767px) {
    .footer__upper {
        width: auto;
        display: block;
    }
}

/* Sig
============================================================================= */
.footer__main {
    text-align: center;
    margin-left: 100px;
    width: 255px;
}

@media screen and (max-width: 989px) {
    .footer__main {
        margin-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .footer__main {
        margin: 0 auto 35px;
    }
}

.footer-main__brand {
    font-size: 1px;
    margin-bottom: 22px;
}

@media screen and (max-width: 989px) {
    .footer-main__brand {
        width: 255px;
        padding-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .footer-main__brand {
        text-align: center;
        width: 190px;
        margin: 0 auto 19px;
    }
}

.footer-main__brand-image {
    max-width: 100%;
}

.footer-main__banner {
    font-size: 1px;
}

@media screen and (max-width: 767px) {
    .footer-main__banner {
        width: 70px;
        margin: 0 auto;
    }
}

.footer-main__banner-image {
    max-width: 100%;
}

.footer__sub {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(100% - 255px);
    padding-left: 222px;
}

@media screen and (max-width: 989px) {
    .footer__sub {
        padding-left: 70px;
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .footer__sub {
        width: auto;
        padding-left: 0;
    }
}

.footer-sub__address-wrapper {
    margin-bottom: 30px;
}

@media screen and (max-width: 989px) {
    .footer-sub__address-wrapper {
        margin-bottom: 0;
    }
    .footer-sub__address-wrapper + .footer-sub__address-wrapper {
        margin-top: 14px;
    }
}

@media screen and (max-width: 767px) {
    .footer-sub__address-wrapper {
        text-align: center;
    }
    .footer-sub__address-wrapper + .footer-sub__address-wrapper {
        margin-top: 10px;
    }
}

.footer-sub__address-wrapper:nth-child(2) {
    margin-left: 70px;
}

@media screen and (max-width: 989px) {
    .footer-sub__address-wrapper:nth-child(2) {
        margin-left: 0;
    }
}

.footer-sub__address-head {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    margin-bottom: 6px;
}

.footer-sub__address-head::before {
    content: url("../../image/footer-ic001.png");
    display: block;
    width: 11px;
    height: 16px;
    position: absolute;
    left: -18px;
    top: 3px;
}

@media screen and (max-width: 767px) {
    .footer-sub__address-head {
        display: inline;
        font-size: 13px;
        margin-bottom: 0;
        left: 10px;
    }
}

.footer-sub__address-body {
    font-size: 13px;
}

@media screen and (max-width: 767px) {
    .footer-sub__address-body {
        font-size: 12px;
    }
}

/* Footer-navi
============================================================================= */
.footer__nav-wrapper {
    position: relative;
    margin-bottom: 55px;
}

@media screen and (max-width: 989px) {
    .footer__nav-wrapper {
        margin-bottom: 40px;
    }
}

.footer-nav__lists {
    width: 930px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 989px) {
    .footer-nav__lists {
        justify-content: space-around;
        width: 710px;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__lists {
        width: 270px;
        margin: 0 auto;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

.footer-nav__list {
    line-height: 1.5;
    position: relative;
}

.footer-nav__list::before {
    content: '';
    display: block;
    width: 1px;
    height: 13px;
    background: #565656;
    position: absolute;
    top: 8px;
    left: -29px;
}

@media screen and (max-width: 989px) {
    .footer-nav__list::before {
        left: -8px;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list::before {
        content: none;
    }
}

.footer-nav__list:last-child::after {
    content: '';
    display: block;
    width: 1px;
    height: 13px;
    background: #565656;
    position: absolute;
    top: 8px;
    right: -29px;
}

@media screen and (max-width: 989px) {
    .footer-nav__list:last-child::after {
        right: -8px;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list:last-child::after {
        content: none;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list {
        width: 50%;
        text-align: center;
    }
}

.footer-nav__link {
    position: relative;
    font-size: 13px;
    color: #fff !important;
}

/* Copy
============================================================================= */
.footer__copy {
    background: #fff;
    padding: 15px 0;
    text-align: center;
    color: #111;
    font-size: 10px;
}

@media screen and (max-width: 767px) {
    .footer__copy {
        padding: 12px 0;
    }
}
