﻿footer{
    width: 100%;
    display: block;
    position: relative;
    background-color: #1b1b1b;
    box-sizing: border-box;
    padding: 125px 0;
}
.footer-box{
    width: 1280px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    position: relative;
}
.footer-logo-box{
    width: 140px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}
.footer-left-box{
    width: calc((100% - 140px) / 2);
    display: inline-block;
    vertical-align: middle;
}
.footer-logo_name-box{
    font-family: "Noto Sans TC";
    font-weight: 700;
    font-size: 18px;
    line-height: 36px;
    color: #fff;
    letter-spacing: 0.2em;
}
.footer-left-info{
    font-family: "Noto Sans TC";
    font-weight: 300;
    font-size: 14px;
    line-height: 36px;
    color: #fff;
    letter-spacing: 0.2em;
}
.footer-left-info>a{
    font-weight: 300;
    transition: all 0.3s linear;
}
.footer-left-info span{
    font-family: "Lato";
}
.footer-web{
    font-family: "Lato";
    font-weight: 300;
    font-size: 12px;
    color: #888;
    letter-spacing: 0.06em;
    line-height: 36px;
    margin-top: 15px;
}
.footer-right-box{
    width: calc((100% - 140px) / 2);
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}
.footer-right-info{
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
}
.footer-right-info:first-child{
    margin-left: 0;
}
.footer-right-info a{
    width: 60px;
    height: 60px;
    display: block;
    background-color: #fff;
    border-radius: 50%;
    box-sizing: border-box;
    padding: 10px;
    transition: all 0.3s ease;
}
.footer-right-info-mail a{
    padding: 18px 13px;
}
.footer-top-box{
    position: absolute;
    bottom: 0;
    right: 0;
}
.footer-top-box a{
    width: 50px;
    display: block;
    box-sizing: border-box;
    padding: 15px 0;
    background-color: #000;
    transition: all 0.3s linear;
}
.footer-top-box a>p{
    font-family: "Lato";
    font-weight: 300;
    font-size: 14px;
    line-height: 10px;
    color: #fff;
    letter-spacing: 0.06em;
    text-align: center;
    transition: all 0.3s linear;
}





@media only screen and (max-width: 1280px){
    .footer-box{
        width: 1000px;
    }
}
@media only screen and (max-width: 1000px){
    footer{
        padding: 100px 0;
    }
    .footer-box{
        width: 750px;
    }
}
@media only screen and (max-width: 768px){
    footer{
        padding: 60px 0;
    }
    .footer-box{
        width: 550px;
    }
    .footer-top-box{
        display: none;
    }
    .footer-left-box{
        width: calc(100% - 150px);
    }
    .footer-logo-box{
        width: 85px;    
        position: absolute;
        top: 0;
        right: 0;
        vertical-align: bottom;
    }
    .footer-right-box {
        width: 150px;
        vertical-align: bottom;
    }
}
@media only screen and (max-width: 550px){
    footer{
        padding: 20px 0;
    }
    .footer-box{
        width: calc(100vw - 40px);
    }
    .footer-right-info{
        margin-left: 10px;
    }
    .footer-right-info a{
        width: 30px;
        height: 30px;
        padding: 4px;
    }
    .footer-left-box {
        width: calc(100% - 80px);
    }
    .footer-right-info-mail a {
        padding: 8px 5px;
    }
    .footer-left-info{
        line-height: 18px;
        letter-spacing: 0.06em;
        margin-top: 10px;
    }
    .footer-logo_name-box{
        line-height: 20px;
        letter-spacing: 0.06em;
        margin-bottom: 5px;
    }
    .footer-logo-box{
        width: 65px;
    }
    .footer-web{
        line-height: 1;
    }
    .footer-right-box {
        width: 80px;
    }
}


@media only screen and (min-width: 769px){
    .footer-left-info>a:hover{
        color: #ae2f2f;
    }
    .footer-right-info a:hover{
        background-color: rgba(0, 0, 0, 0.7);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    }
    .footer-top-box a:hover{
        background-color: #ae2f2f;
    }
}