﻿footer{
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #fbe2dd;
}
.footer-box{
    width: 1360px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 0;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: 85px 0;
}
.footer-bg-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.footer-mask-box{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.footer-bg-box>span:nth-child(1){
    opacity: 0.05;
}
.footer-info{
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.06em;
    font-family: 'Noto Sans TC';
    font-weight: 700;
    color: #5a241f;
    margin-bottom: 20px;
}
.footer-web{
    font-family: 'Roboto';
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    color: #5a241f;
    display: block;
}



@media only screen and (max-width: 1360px){
    .footer-box{
        width: 1200px;
    }
}
@media only screen and (max-width: 1200px){
    .footer-box{
        width: 1000px;
    }
}
@media only screen and (max-width: 1000px){
    .footer-box{
        width: 750px;
        padding: 60px 0;
    }
}
@media only screen and (max-width: 768px){
    .footer-box{
        width: 95vw;
        padding: 40px 0;
    }
    .footer-info{
        font-size: 18px;
        line-height: 26px;
    }
    .footer-web{
        font-size: 18px;
        line-height: 26px;
    }
}
@media only screen and (max-width: 550px){
    .footer-box{
        padding: 20px 0;
    }
    .footer-info{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .footer-web{
        font-size: 12px;
        line-height: 1;
    }
}

.footer-web a{
    position: relative;
}
.footer-web a::after{
    content: '';
    width: 0%;
    height: 1px;
    background-color: #5a241f;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .3s linear;
}
.footer-web a:hover::after{
    width: 100%;
}