@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap");


*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans TC", sans-serif !important;
}

.container {
    max-width: 1232px;
    padding: 0 16px;
    margin: 0 auto;
    /*outline: 1px solid rgb(64, 169, 244);*/
}

img {
    max-width: 100%;
    height: auto;
}


.flex-r {
    display: flex;
    flex-direction: row-reverse;
}


.pos-r {
    position: relative;
}

.pos-a {
    position: absolute;
}

a {
    display: block;
    text-decoration: none;
    text-transform: uppercase;
}

h2 {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 16px;
}

h4 {
    font-size: 20px;
    line-height: 1.5;
}


p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
}

@media (max-width : 576px) {
    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
}

.grey_bgc {
    background: #EEEEEE;

}

.black_bgc {
    background: #000000;

}

.white_text {
    color: white;
}

.pd_56_0 {
    padding: 56px 0;
}

.text_pd {
    padding: 0 112px;
}



/*------------------以上為統一使用標籤--------------------*/

.topbar {

    background-color: rgb(0, 0, 0);
    position: fixed;
    width: 100%;
    z-index: 4;
}

.check_btn {

    font-size: 32px;
    line-height: 1.5;
    color: white;
    cursor: pointer;
    transition: all 0.9s;
    /*outline: 1px solid rgb(247, 224, 77);*/
    padding: 16px 24px;
}

.check_btn:hover {
    color: #EAD1A4;
}

#call_nav {
    display: none;
}

#call_nav:checked~ul {
    left: 0px;
    opacity: 0.9;
}


.nav_group {
    z-index: 3;
    width: 100%;
    height: calc(100vh - 80px);
    left: -100%;
    transition: all 0.9s;
    background-color: rgb(0, 0, 0);
    opacity: 0;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    /*outline: 1px solid red;*/
}

.nav_item {
    text-align: center;
    padding-bottom: 24px;
    /*margin-top: 56px;*/
    /*outline: 1px solid red;*/
}

.nav_btn {
    font-size: 24px;
    line-height: 1.5;
    transition: all 0.9s;
    color: rgb(255, 255, 255);
    font-weight: 300;
}

.nav_btn:hover {
    color: #EAD1A4;

}

.social_icon {
    display: flex;
    max-width: 1232px;
    padding: 0 16px;
    margin: 0 auto;
}

.social_icon li {
    margin-left: 24px;
}

.social_icon img {

    border-radius: 10px;
}

.social_icon img:hover {
    background-color: #EAD1A4;
    transition: all 0.9s;

}

/*-------------------主內容----------------------*/
.logobar {
    background-color: rgb(0, 0, 0);
}

.logo {

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    margin-top: 96px;
    margin-bottom: 16px;
}

@media (max-width : 576px) {
    .logo {
        width: 70%;
    }
}

.gotop {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #EAD1A4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 8%;
    bottom: 10%;
    z-index: 2;
    transition: all 0.9s;
    cursor: pointer;
    opacity: 0.0; /*gotop預設透明度0,下滑超過200才變1出現*/
}

.gotop span {
    font-size: 18px;
    font-weight: 900;
}

.gotop:hover {
    background-color: #fff;
}

.content {
    text-align: center;
}

.content p {
    text-align: justify;
}

@media (max-width : 992px) {
    .text_pd {
        padding: 0 64px;
    }
}

@media (max-width : 767px) {
    .text_pd {
        padding: 0;
    }
}

/*--------------------------------------------------*/

.booking h3 {
    margin-bottom: 0;
}


.booking_list {
    text-align: left;
}

.booking_list a{
    display: inline;
    text-transform: lowercase;
    color:rgb(0, 24, 205);
}

.list_title {
    font-weight: 600;
    
}

.list_title_custom{
    margin-top: 24px;
}

.bottom_visual{
    background-image: url("/img/master.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;

}

@media (max-width: 992px) {
    .bottom_visual{
        height: 400px;
    }
}

@media (max-width: 576px) {
    .bottom_visual{
        height: 300px;
    }
}

.grey_bgc{
    background-image: url(/img/farbic_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;

}

/*-------------------主內容END----------------------*/
footer {
    text-align: center;
    /*outline: 1px solid red;*/
}

footer p {
    font-size: 16px;
    line-height: 1.5;
    padding: 16px 0;
}