*{
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 微軟正黑體, Arial;
}
body{
    background-color: #43181C;
    color: #FFF;
}

img{
    vertical-align: middle;
    border: 0;
    outline: 0;
}

a{
    text-decoration: none;
}

.wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items:flex-start;
}

.logo{
    position: relative;
    width:100%;
}

.logo img {
    width: 200px;
    margin-left:5px;
}

.navbar{
    display: inline-block;
    width: 66px;
    height: 44px;
    border: 2px solid #D1AA66;
    border-radius: 5px;
    position: absolute;
    right:20px;
    top:50%;
    margin-top: -22px;
    cursor: pointer;
}

.navbar span {
    display: block;
    background-color: #D1AA66;
    border-radius: 1px;
    width: 50px;
    height: 2px;
    position: absolute;
    margin-top: 22px;
    margin-left: 8px;
}

.navbar span:first-child{
    margin-top:12px;
}
.navbar span:last-child{
    margin-top:32px;
}

.navbar:hover{
    background-color: #4D1A1D;
}

.nav {
    width:100%;
    border-top:solid 1px #fff;
    border-bottom:none;
    height: 300px;
    display: none;
}

.nav a {
    display: block;
    font-size: 18px;
    letter-spacing: 5px;
    height: 50px;
    line-height: 50px;
    color: #D1AA66;
    text-align: center;
    border-bottom:solid 1px #4D1A1D;
}

.nav a:hover{
    background-color: #4D1A1D;
}

.footer{
    display: flex;
    flex-direction: column;
    width:100%;
    padding:10px 0px 5px 0px;
}

.footer div {
    width:100%;
    text-align: center;
}

.footer div:first-child{
    font-size: 15px;
    line-height: 32px;
}

.footer div:last-child{
    color: #a6a6a6;
    font-size: 12px;
    line-height: 30px;
    padding-top: 40px;
}

@media (min-width:786px){

    .navbar{
        display: none;
    }

    .wrap{
        align-items: center;

    }

    .logo{
        width:300px;
    }

    .logo img {
        width:300px;
        margin-left:0px;
    }

    .nav{
        width:100%;
        background-color: #250D0F;
        text-align: center;
        border-top:none;
        border-bottom: solid 3px #43181C;
        height: 40px;
        display:inline;
    }

    .nav a{
        display: inline-block;
        color:#A58570;
        letter-spacing: 0px;
        height: 40px;
        line-height: 40px;
        width:125px;
    }

    .nav a:hover{
        color:#FFFFFF;
        background-color: #43181C;
    }

    .footer{
        flex-direction: column;
        max-width:786px;
    }

    .footer div {
        width:100%;
        padding:0px;
    }

    .footer div:first-child {
        width:100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer div:first-child p {
        text-align: center;
    }

    .footer div:first-child p:nth-child(1){
        order: 1;
        width:50%;
    }

    .footer div:first-child p:nth-child(2){
        order: 3;
        width:50%;
    }

    .footer div:first-child p:nth-child(3){
        order: 2;
        width:50%;
    }

    .footer div:first-child p:nth-child(4){
        order: 4;
        width:50%;
    }

    .footer div:last-child{
        text-align: center;
    }

}

@media (min-width: 990px){

    .nav a{
        width:155px;
    }

    .footer{
        flex-direction: row;
        max-width:990px;
    }

    .footer div:first-child p {
        text-align: left;
    }

    .footer div:first-child p:nth-child(1),
    .footer div:first-child p:nth-child(2){
        width:40%;
    }

    .footer div:first-child p:nth-child(3),
    .footer div:first-child p:nth-child(4){
        width:60%;
    }

    .footer div:last-child{
        text-align: right;
        padding-bottom: 0px;
        vertical-align: bottom;
    }

}