@charset "UTF-8";

.footer__inner {
    display: block;
    width: calc(100% - 200px);
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 0 30px 0;
}

.footer-border .footer__inner {
    border-top: 1px solid rgba(49, 48, 48, .25);
}

/****logo****/
.footer__inner__logo {
    display: block;
    width: 100%;
    padding: 105px 0 65px 0;
}

.footer__inner__logo__pic {
    display: block;
    width: 100%;
    max-width: 125px;
    margin: 0 auto;
}

/****工具列****/
.footer__inner__tool {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 40px 0 0 0;
}

/**copyright**/
.footer__inner__tool__copyright {
    display: block;
    width: calc(50% - 60px);
    font-size: 12px;
    line-height: 1.2;
    color: #aaa;
    text-transform: uppercase;
    flex: 0 0 auto;
}

.footer__inner__tool__copyright__design {
    display: inline-block;
    width: auto;
    max-width: 100%;
}

.footer__inner__tool__copyright__design::before {
    content: '|';
    padding: 0 3px 0 0;
}

/**回到頂部**/
.footer__inner__tool__backToTop {
    display: block;
    width: auto;
    max-width: 100px;
    margin: 0 10px;
    padding: 0 0 7.5px 0;
    font-size: 14px;
    line-height: 1;
    color: var(--titleColor);
    border-bottom: 1px solid var(--titleColor);
    transition: opacity .4s ease-in-out;
    flex: 0 0 auto;
}

.footer__inner__tool__backToTop:hover {
    opacity: .7;
}

/**sns**/
.footer__inner__tool__sns {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-end;
    justify-content: flex-end;
    width: calc(50% - 60px);
    flex: 0 0 auto;
}

.footer__inner__tool__sns__title {
    display: block;
    width: auto;
    max-width: 100%;
    font-size: 12px;
    line-height: 1;
    color: var(--titleColor);
    flex: 0 0 auto;
}

.footer__inner__tool__box {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: auto;
    max-width: 100%;
    flex: 0 1 auto;
}

.footer__inner__tool__box__item {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    transition: opacity .4s ease-in-out;
}

.footer__inner__tool__box__item:hover {
    opacity: .7;
}

@media screen and (max-width: 991px) {
    .footer__inner {
        width: calc(100% - 60px);
    }

    /****工具列****/
    /**copyright**/
    .footer__inner__tool__copyright__design {
        display: block;
    }

    .footer__inner__tool__copyright__design::before {
        display: none;
    }
}

@media screen and (max-width: 767px) {

    /****logo****/
    .footer__inner__logo {
        padding: 105px 0 45px 0;
    }

    /****工具列****/
    .footer__inner__tool {
        flex-wrap: wrap;
        justify-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 0 0 0;
    }

    /**copyright**/
    .footer__inner__tool__copyright {
        width: 100%;
        order: 3;
    }

    /**回到頂部**/
    .footer__inner__tool__backToTop {
        margin: 0 auto 45px auto;
    }

    /**sns**/
    .footer__inner__tool__sns {
        justify-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto 20px auto;
        order: 2;
    }
}

@media screen and (max-width: 575px) {
    .footer__inner {
        width: calc(100% - 40px);
    }

    /****logo****/
    .footer__inner__logo {
        padding: 85px 0 20px 0;
    }

    .footer__inner__logo__pic {
        max-width: 80px;
    }
}



/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}