@charset "UTF-8";
/* CSS Document */
@import url(reset.css);
@import url(font-awesome.min.css);
@import url(rwdgrid.css);
@import url(textEditor.css);
@import url(contentbuilder.css);
@import url(https://fonts.googleapis.com/css?family=Raleway:300,400);
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@900&family=Noto+Sans+TC:wght@300;400;500;700;900&family=Poppins:wght@400;600;700&display=swap");
.side_share a {
    box-sizing: border-box;
}

footer .snsBox a img {
    transition: all .3s;
}

footer .gotopBtn {
    transition: all .8s;
}

body {
    background-color: #fff;
    font-family: 'Poppins','Lato','Noto Sans TC',sans-serif;
    font-size: 13px;
}

/*css3*/
a {
    color: #1d130d;
    cursor: pointer;
    transition: all 0.4s ease;
}

a:hover {
    color: #b06228;
}

* {
    box-sizing: border-box;
    font-family: 'Poppins','Lato','Noto Sans TC','sans-serif';
}

[class*='col-'] {
    float: left;
    box-sizing: border-box;
}

.b-box {
    box-sizing: border-box;
}

div.titan {
    /*--隱藏開影音、開相簿--*/
    display: none;
}

.col-1 {
    width: 100%;
}

.col-2 {
    width: 50%;
}

.col-3 {
    width: 33.33%;
}

.col-4 {
    width: 25%;
}

.col-5 {
    width: 20%;
}

input[type="text"] {
    -webkit-appearance: none;
}

textarea {
    -webkit-appearance: none;
}

#gmap {
    display: none;
    height: 400px;
}

.label {
    padding: 5px 7px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
}

/*-moduleBox--*/
.moduleBox {
    position: fixed;
    left: 50%;
    top: 48%;
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition-property: top, opacity, visibility;
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
}

.moduleBox.show {
    top: 50%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.moduleMask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1003;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .5s ease-in-out;
}

.moduleMask.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@keyframes playCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*頁尾資訊*/
footer {
    padding: 90px 0 0;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1200px) {
    footer {
        padding: 90px 0 50px;
    }
}

@media (max-width: 375px) {
    footer {
        padding: 90px 0 40px;
    }
}

@media (max-width: 768px) {
    footer .wrap {
        padding: 0;
    }
}

footer::before {
    content: "";
    width: 110%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #b06228;
    z-index: -10;
    transform: rotate(-2deg);
    transform-origin: top right;
}

footer.abc::before {
    transform: rotate(0deg);
}


footer .gotopBtn {
    display: block;
    width: 70px;
    height: 70px;
    position: fixed;
    right: 60px;
    top: 70%;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

footer .gotopBtn.show {
    opacity: 1;
    pointer-events: initial;
}

footer .gotopBtn::before {
    content: "";
    background-color: #b06228;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 12px;
}

footer .gotopBtn::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 31px;
    left: 29px;
}

footer .gotopBtn img {
    width: 100%;
    height: 100%;
    animation: gotopRoll 3s infinite linear;
}

footer .gotopBtn:hover {
    animation: gotopScale 1s infinite linear;
}

footer .gotopBtn:hover img {
    animation: initial;
}

@keyframes gotopRoll {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gotopScale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    footer .gotopBtn {
        width: 56px;
        height: 56px;
        right: 10px;
        top: 80%;
    }
    footer .gotopBtn::before {
        width: 36px;
        height: 36px;
        top: 10px;
        left: 10px;
    }
    footer .gotopBtn::after {
        width: 10px;
        height: 10px;
        top: 25px;
        left: 23px;
    }
}

@media (max-width: 440px) {
    footer .gotopBtn {
        transform: scale(0.8);
        right: 10px;
        top: 80%;
    }
}

footer .subMenu {
    display: none;
}

@media (max-width: 1200px) {
    footer .subMenu {
        width: 100%;
        height: 50px;
        display: flex;
        flex-wrap: nowrap;
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: #fff;
        box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.11);
        z-index: 20;
    }
    footer .subMenu .subLink {
        display: flex;
        width: 100%;
        height: 100%;
        flex-grow: 1;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0;
        color: #1d130d;
        position: relative;
    }
    footer .subMenu .subLink::before {
        content: "";
        width: 1px;
        height: 20px;
        background-color: #b06228;
        position: absolute;
        top: 15px;
        left: 0;
    }
    footer .subMenu .subLink:nth-child(1)::before {
        display: none;
    }
    footer .subMenu .subLink:hover {
        color: #b06228;
    }
}

@media (max-width: 375px) {
    footer .subMenu {
        height: 40px;
    }
    footer .subMenu .subLink {
        font-size: 12px;
    }
    footer .subMenu .subLink::before {
        top: 10px;
    }
}

footer .downLogo {
    width: 151px;
    margin: 0 auto;
}

footer .downLogo img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

footer .row {
    clear: both;
    padding: 15px 0;
    overflow: hidden;
}

footer .downMenu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 20px 0 25px;
}

footer .downMenu li {
    display: inline-block;
}

footer .downMenu li a {
    display: block;
    padding: 0px 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    position: relative;
}

footer .downMenu li a::before {
    content: "";
    width: 1px;
    height: 14px;
    background-color: #f6ae15;
    position: absolute;
    top: 8px;
    left: 0;
}

footer .downMenu li a:hover {
    color: #ff9727;
}

footer .downMenu li:nth-child(1) a::before {
    display: none;
}

@media (max-width: 768px) {
    footer .downMenu {
        width: 400px;
    }
    footer .downMenu li:nth-child(5) a::before {
        display: none;
    }
}

@media (max-width: 440px) {
    footer .downMenu {
        width: 100%;
    }
    footer .downMenu li:nth-child(4) a::before {
        display: none;
    }
    footer .downMenu li:nth-child(5) a::before {
        display: block;
    }
}

footer .btnBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 0 20px;
}

footer .btnBox a {
    display: inline-block;
    margin: 0 7px;
    padding: 0 24px 0 44px;
    font-size: 14px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0;
    color: #fff;
    position: relative;
    background-color: #1d130d;
}

footer .btnBox a img {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    top: 9px;
    left: 18px;
    filter: brightness(10);
}

footer .btnBox a:hover {
    background-color: #f6ae15;
}

footer .snsBox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 0 0;
    position: relative;
}

footer .snsBox a {
    display: block;
    padding: 10px;
}

footer .snsBox a:hover img {
    transform: translateY(-10px);
}

footer .snsBox::before {
    content: "";
    width: 1px;
    height: 50px;
    position: absolute;
    top: 0;
    left: calc(50% - 0.5px);
    background-color: #f6ae15;
}

footer .copyrightTxt {
    width: 100%;
    text-align: center;
    padding: 48px 0 20px;
    font-family: 'Noto Sans TC';
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #b06228;
    position: relative;
}

footer .copyrightTxt a {
    color: #b06228;
}

footer .copyrightTxt a:hover {
    color: #fff;
}

footer .copyrightTxt::before {
    content: "";
    width: 110%;
    height: 100%;
    background-color: #1d130d;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(1deg);
    transform-origin: left top;
    z-index: -5;
}

/*share*/
.social {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    margin-right: -4px;
}

.social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
    font-size: 19px;
    color: #929292;
    text-align: center;
}

.social a:hover {
    opacity: 0.8;
}

.endArea {
    clear: both;
    padding-top: 5px;
    color: #fff;
    text-align: center;
    background-color: #061540;
}

/*--booking--*/
.bookingArea {
    position: relative;
    margin-top: -85px;
}

.bookingArea .wrap {
    display: flex;
    padding: 0;
    background-color: #fff;
}

.bookingArea .title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 3;
    font-size: 15px;
    border-right: 1px solid #e6e6e6;
}

.bookingArea .title i {
    margin-right: 15px;
    font-size: 20px;
}

.bookingArea .bookingList {
    display: flex;
    flex: 6;
    padding: 20px;
    box-sizing: border-box;
}

.bookingArea .bookingList li:not(:first-child) {
    margin-left: 10px;
}

.bookingArea .btn {
    flex: 3;
}

.bookingArea .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 16px;
    color: #fff;
    letter-spacing: .2em;
    background-color: #b06228;
}

.bookingArea input, .bookingArea select {
    height: 45px;
    padding: 5px 10px;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    font-family: '微軟正黑體';
    box-sizing: border-box;
}

/*********內頁**********/
/**********************/
.bannerArea .wrap {
    width: 100%;
    padding: 0;
}

.bannerArea .bannerBox img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.mainArea {
    padding: 30px 0;
    position: relative;
}

.bread {
    position: absolute;
    right: 60px;
    top: -90px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.bread a {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3px;
    color: #1d130d;
}

.bread span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3px;
    padding: 0 7px;
    color: #1d130d;
}

.bread svg {
    width: 20px;
    height: 16px;
    margin-left: 15px;
}

@media (max-width: 1680px) {
    .bread {
        top: -70px;
    }
}

@media (max-width: 1200px) {
    .bread {
        top: -40px;
        right: 30px;
    }
}

@media (max-width: 840px) {
    .bread {
        display: none;
    }
}

.mainArea .contentBox {
    clear: both;
}

.articleTitle {
    /*文章標題*/
    clear: both;
    margin-bottom: 25px;
    padding: 10px;
    border-bottom: 1px dashed #d6d6d6;
    font-weight: 400;
    font-size: 20px;
    color: #1d130d;
}

table.breakpoint > tbody > tr > td.expand {
    cursor: pointer;
    background: url("../images/plus.png") no-repeat 5px center;
    padding-left: 40px;
}

/*類別*/
.m_classLink {
    display: none;
}

.classBox {
    padding: 20px 0;
}

.classLink {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.classLink li {
    display: inline-block;
}

.classLink a {
    position: relative;
    display: block;
    margin: 0px;
    padding: 10px 30px;
    border: 1px solid #b06228;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1;
    color: #b06228;
}

.classLink a:hover {
    color: #fff;
    background-color: #b06228;
}

.classLink a.current {
    color: #fff;
    background-color: #b06228;
}

/*標籤*/
.tagBox {
    padding: 20px 0;
}

.tagBox b {
    display: inline-block;
    margin-right: 10px;
}

.tagBox ul {
    display: inline-block;
}

.tagBox li {
    display: inline-block;
    margin-bottom: 5px;
}

.tagBox a {
    position: relative;
    display: block;
    margin: 0 3px;
    padding: 5px 10px;
    border: 1px solid #b06228;
    font-size: 13px;
    color: #b06228;
}

.tagBox a:hover {
    color: #fff;
    background-color: #b06228;
}

.tagBox a.current {
    color: #fff;
    background-color: #b06228;
}

.tagBox a.current:before {
    content: "\f00d";
    margin-right: 5px;
    font-family: FontAwesome;
    font-size: 12px;
}

/*側邊標題字*/
.sectionTitle {
    margin-bottom: 20px;
    padding: 5px;
    border-bottom: 1px solid #d6d6d6;
    font-weight: 400;
    font-size: 15px;
    color: #f6ae15;
}

.sectionTitle strong {
    display: block;
    position: relative;
    font-weight: 400;
}

.sectionTitle a {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/******頁籤*******/
.tab {
    margin-top: 40px;
}

.tab a {
    display: block;
    float: left;
    padding: 12px 10px;
    font-size: 15px;
    color: #1c1c1c;
}

.tab a.current {
    border: 1px solid #c0c0c0;
    border-top: 1px solid #c0c0c0;
    border-bottom: 1px solid #f8f3f0;
    box-shadow: inset 0 3px 5px -2px #cecece;
}

.tabContent {
    margin-top: -1px;
    padding: 20px 5px;
    border-top: 1px solid #d6d6d6;
}

.tabContent > li {
    display: none;
}

.tabContent .textEditor {
    margin: 0;
}

.tabContent .sectionTitle {
    display: none;
}

/*側邊_menu*/
.side_menu {
    margin-bottom: 50px;
}

.side_menu li {
    position: relative;
    border-bottom: 1px solid #e1e1e1;
}

.side_menu li > a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
}

.side_menu li > a.current {
    color: #fff;
    background-color: #8c8c8c;
}

.side_menu li > a b {
    margin-left: 10px;
    font-weight: 400;
    font-size: 13px;
    color: #808080;
}

.side_menu dl {
    padding-left: 25px;
}

.side_menu dl a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
}

.side_menu dl a.current {
    color: #000;
    text-decoration: underline;
}

/*側邊_相簿*/
.side_album {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: -10px;
}

.side_album li {
    float: left;
    width: 33.33%;
    padding: 0 10px 10px 0;
}

.side_album a {
    display: block;
    box-shadow: 2px 2px 5px #c3c3c3;
}

.side_album a img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*側邊_線上訂房*/
.side_booking {
    margin-bottom: 30px;
}

.side_booking a {
    display: block;
    border-radius: 4px;
    box-shadow: 0 1px 1px #8d2121;
    font-weight: bold;
    font-size: 25px;
    color: #fff;
    background-color: #f05b8f;
}

.side_booking a i {
    display: inline-block;
    font-size: 28px;
    padding: 10px 15px;
    margin-right: 15px;
    border-right: 1px solid #d33434;
    box-shadow: 1px 0 #f38a8a;
}

.side_booking a:hover {
    box-shadow: inset 0 3px 3px #8d2121;
}

/*側邊_聯絡資訊*/
.side_contactInfo li {
    margin-bottom: 20px;
}

.side_contactInfo a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #414141;
}

.side_contactInfo i {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-right: 8px;
    border: 2px solid #a5a5a5;
    border-radius: 50%;
    font-size: 20px;
    color: #a5a5a5;
    text-align: center;
}

.side_contactInfo b {
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
}

/*側邊_房型*/
.side_room {
    margin-bottom: 50px;
}

.side_room .Img img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.side_room .Txt {
    margin-top: 5px;
}

.side_room .Txt p {
    max-height: 100px;
    font-size: 13px;
    color: #858383;
    line-height: 1.8;
    overflow: hidden;
}

.side_room h3 a {
    font-size: 16px;
    font-weight: 400;
}

/*側邊_分享*/
.side_share {
    clear: both;
    display: none;
    margin-top: 30px;
}

.side_share a {
    display: block;
    width: 100%;
    margin-top: 5px;
    padding: 15px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.side_share i {
    padding-right: 5px;
    font-size: 18px;
}

.side_share .line {
    box-shadow: 0 0 0 1px #22a00b;
    border-top: 1px solid #e1ffa9;
    background: #a7e732;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjYTdlNzMyIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMzUlIiBzdG9wLWNvbG9yPSIjMWZiNTBlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
    background: linear-gradient(135deg, #a7e732 0%, #1fb50e 35%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a7e732', endColorstr='#1fb50e', GradientType=1);
}

.side_share .fb {
    box-shadow: 0 0 0 1px #235c9b;
    border-top: 1px solid #8DCFF5;
    background: #5da0ea;
    /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVkYTBlYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZDhjZTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    /* FF3.6+ */
    /* Chrome,Safari4+ */
    /* Chrome10+,Safari5.1+ */
    /* Opera 11.10+ */
    /* IE10+ */
    background: linear-gradient(to bottom, #5da0ea 0%, #3d8ce6 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5da0ea', endColorstr='#3d8ce6', GradientType=0);
    /* IE6-8 */
}

/*側邊_其他相關訊息*/
.side_news {
    margin: 30px 0 0;
}

.side_news ul {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.side_news li {
    width: 20%;
}

.side_news .Img {
    float: left;
    width: 100px;
    margin-right: 12px;
    overflow: hidden;
}

.side_news .Img img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.side_news .Txt {
    overflow: hidden;
}

.side_news .Txt .chTitle {
    line-height: 20px;
    font-size: 16px;
    padding: 5px 10px 0 0;
}

.side_news .Txt .chTitle.ellipsis {
    height: 45px;
}

.side_news .Txt .date {
    font-size: 14px;
    overflow-anchor: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #1d130d;
    padding: 0 0 5px;
}

.side_news .Txt .period {
    font-size: 14px;
    overflow-anchor: 400;
    line-height: 1;
    letter-spacing: 0;
    color: #1d130d;
}

@media (max-width: 1200px) {
    .side_news ul {
        height: 130px;
        overflow: hidden;
    }
    .side_news li {
        width: 33.33%;
    }
}

@media (max-width: 768px) {
    .side_news li {
        width: 50%;
    }
}

@media (max-width: 440px) {
    .side_news ul {
        height: 270px;
    }
    .side_news li {
        width: 100%;
        padding: 0 0 10px;
    }
}

/*--滑動解鎖--*/
.captchaArea {
    position: relative;
    width: 200px;
    height: 50px;
    background-color: #ddd;
}

.captchaArea.unlocking .sliderBtn {
    transition: none;
}

.captchaArea .note {
    position: absolute;
    top: 17px;
    right: 30px;
    z-index: 1;
    font-size: 15px;
    text-align: center;
    font-family: '微軟正黑體';
    color: #777;
    letter-spacing: 1px;
    pointer-events: none;
}

.sliderBtn {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background-color: RoyalBlue;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .3s linear;
}

.sliderBtn::before {
    content: '\f105';
    position: absolute;
    top: 13px;
    left: 23px;
    color: #fff;
    font-size: 24px;
    font-family: FontAwesome;
    pointer-events: none;
}

/**********適應性**********/
/************************/
@media (max-width: 960px) {
    .bookingArea .wrap {
        flex-direction: column;
        padding: 15px 20px;
    }
    .bookingArea .title {
        display: none;
    }
    .bookingArea .bookingList, .bookingArea .btn {
        flex: 1;
    }
    .bookingArea .bookingList {
        flex-direction: column;
        padding: 0;
    }
    .bookingArea .bookingList li {
        margin-bottom: 15px;
    }
    .bookingArea .bookingList li:not(:first-child) {
        margin-left: 0;
    }
    .bookingArea input, .bookingArea select {
        width: 100%;
    }
    .bookingArea .btn a {
        padding: 12px;
    }
}

/*640*/
@media (max-width: 640px) {
    .mainArea .titleBox h2 {
        float: none;
    }
    ul.classLink {
        display: none;
    }
    .m_classLink {
        display: block;
        position: relative;
    }
    .m_classLink a.main {
        display: block;
        font-size: 15px;
        color: #222;
        border: 1px solid #CCC;
        position: relative;
        padding: 10px;
        border-radius: 5px;
        background: #eeeeee;
        /* Old browsers */
        /* FF3.6+ */
        /* Chrome,Safari4+ */
        /* Chrome10+,Safari5.1+ */
        /* Opera 11.10+ */
        /* IE10+ */
        background: linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%);
        /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#eeeeee', GradientType=0);
        /* IE6-9 */
    }
    .m_classLink a.main i {
        display: block;
        font-size: 15px;
        position: absolute;
        right: 10px;
        top: 50%;
        margin-top: -6px;
    }
    .m_classLink ul {
        padding: 0;
        list-style: none;
        display: none;
        width: 100%;
        background: #FFF;
        border-radius: 5px;
        border: 1px solid #d1d1d1;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 99;
        box-sizing: border-box;
    }
    .m_classLink ul li {
        padding: 0;
    }
    .m_classLink ul li a {
        display: block;
        padding: 15px 10px;
        border-top: 1px solid #d1d1d1;
    }
    .m_classLink ul li:first-child a {
        border: none;
    }
}

/*480*/
@media (max-width: 480px) {
    .col-2 {
        float: none;
        width: 100%;
    }
    .col-3 {
        float: none;
        width: 100%;
    }
    .col-4 {
        float: none;
        width: 100%;
    }
    .col-5 {
        float: none;
        width: 100%;
    }
    .footerInfo {
        width: 100%;
        margin-bottom: 15px;
    }
    .downMenu {
        width: 100%;
    }
    .social {
        width: 100%;
    }
    .copyright {
        width: 100%;
        text-align: left;
    }
}

/***Hover效果1: 放大淡出***/
.imh_opacity {
    background-color: #b06228;
    overflow: hidden;
}

.imh_opacity img {
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.imh_opacity:hover img {
    transform: scale(1.05);
}

/***Hover效果1: 放大淡出Detail***/
.imh_detail {
    background-color: #000;
    overflow: hidden;
}

.imh_detail img {
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.imh_detail a:before {
    content: "Details+";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99;
    margin-left: -45px;
    margin-top: -80px;
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #fff;
    border: 2px solid #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.imh_detail:hover a:before {
    opacity: 1;
    margin-top: -20px;
}

.imh_detail:hover img {
    opacity: 0.3;
    transform: scale(1.05);
}

/***Hover效果1: 放大淡出zoom***/
.imh_zoom {
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.imh_zoom img {
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
}

.imh_zoom a:before {
    content: "\f002";
    display: block;
    position: absolute;
    left: 50%;
    top: -30px;
    margin-top: -20px;
    margin-left: -20px;
    z-index: 99;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    font-family: FontAwesome;
    text-align: center;
    background-color: #000;
    transition: all 0.4s ease;
}

.imh_zoom:hover a:before {
    top: 50%;
}

.imh_zoom:hover img {
    opacity: 0.3;
    transform: scale(1.05);
}

.sideLine {
    /*background-color: #00b900;*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 145px;
    height: 145px;
    position: fixed;
    bottom: 7%;
    right: 10px;
    z-index: 999999;
    /*-webkit-box-shadow: 2px 2px 5px #222;
  -moz-box-shadow: 2px 2px 5px #222;
  box-shadow: 2px 2px 5px #222;*/
}

@media (max-width:1180px) {
    .sideLine {
        width: 80px;
        height: 80px
    }
}

.sideLine a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.sideLine a svg {
    display: inline-block;
    width: 40px;
    height: 40px;
    fill: #fff !important;
    color: #fff !important;
}

.sideLine a img {
    /*width: 45px;*/
    width: 100%;
}

@media (max-width:1180px) {
    .sideLine a svg {
        width: 30px;
        height: 30px
    }
    .sideLine a img {
    /*width: 35px;*/
  }
}




.sideLine01 {bottom: 240px;}
.sideLine02 {bottom: 160px;}
.sideLine03 {bottom: 80px;}

@media (max-width:1180px) {
.sideLine01 {bottom: 200px; right: 10px;}
.sideLine02 {bottom: 140px; right: 10px;}
.sideLine03 {bottom: 80px; right: 10px;}
}


/*# sourceMappingURL=layout.css.map */