@charset "UTF-8";

html,
body {
    width: 100%;
    min-height: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    text-align: center;
    overflow: visible;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #000;
    font-family: "Apple LiGothic Medium","蘋果儷中黑","微軟正黑體","Arial","Verdana","Microsoft JhengHei","Geneva","sans-serif";
}

.main-bg{
    width: 100%;
    height: 100%;
	
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s linear;
}

.main-bg01 {
    width: 100%;
    height: 100%;
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s linear;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.35);
}

img {
    max-width: 100%;
    max-height: 100%;
}

@media only screen and (max-width: 400px) {
    .main-bg01{
        width: 100%;
        height: 80%;
        background-position: top;
    }
}

