@charset "UTF-8";
/* CSS Document */
@import url(public/css/reset.css);
@import url(public/css/font-awesome-4.7.0/font-awesome.min.css);
@import url(public/css/rwdgrid.css);
@import url(public/css/textEditor.css);
@import url(public/css/contentbuilder.css);
@import url("https://fonts.googleapis.com/css?family=Cardo|Carrois+Gothic|Noto+Sans+KR:100,300,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap");

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

header .languageBox span::after,
header .storesBox span::after,
header .languageBox .subItem,
header .storesBox .subItem,
header .languageBox,
header .enjoyCardBtn svg,
header .enjoyShopBtn svg,
header .ticketBtn svg,
header .ticketBookBtn svg,
header .searchBtn svg,
header .menuBtn::before,
header .menuBtn::after,
header .menuBtn span,
.m_menu .languageBox span::after,
.m_menu .languageBox .subItem,
.m_menu .enjoyBox,
.m_menu .menuCopyrightBox,
.m_menu .languageBox,
.m_menu .bookingBtn,
.m_menu .menuContBox,
footer .logoList li,
.footerSocial svg,
.footerMap .point a::before,
.footerMap .point a::after,
.privacyBox,
.mainArea .textEditor table td,
.classLink a::before,
.side_share svg,
.url360Btn svg,
.albumBtn svg,
.arrowTxtPrev,
.arrowTxtNext,
.arrowTxtPrev::before,
.arrowTxtNext::before,
.arrowTxtPrev::after,
.arrowTxtNext::after,
ul.dots li button,
.dotsBox.circle ul.dots li button::before,
.music_player .show,
.music_player .hide {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

* {
    outline: none;
}

*::before,
*::after {
    pointer-events: none;
}

body {
    letter-spacing: 0.02em;
    background-color: #fff;
    word-wrap: break-word;
    word-break: break-word;
    font-family: "Roboto", Arial, "Noto Sans KR", "微軟正黑體", Helvetica,
        Heiti TC, "メイリオ", sans-serif;
    font-size: 14px;
}

/*2023/03/10 暫時隱藏*/
/* .lk header .languageBox .subItem a:nth-last-child(1), */
.ym header .languageBox .subItem a:nth-last-child(1) {
    display: none !important;
}

/* loadingArea*/
.loadingArea {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}

.loadingArea .loadingMask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loadingArea.go {
    pointer-events: none;
}

.loadingArea.go .loadingMask {
    opacity: 0;
}

/*pop*/
.popWin {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
}

.popWin .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
}

.popWin .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    opacity: 0;
    background-color: #fff;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.popWin .popContent {
    max-height: 85vh;
    overflow-y: auto;
}

.popWin img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.popWin .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    background-color: #000;
}

@media (max-width: 640px) {
    .popWin .close {
        width: 35px;
        height: 35px;
    }
}

.popWin .close::before,
.popWin .close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% - 12px);
    width: 25px;
    height: 1px;
    background-color: #1dcad3;
}

.popWin .close::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.popWin .close::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.popWin.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popWin.show .mask,
.popWin.show .inner {
    opacity: 1;
}

.popWin.show .inner {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

/*css3*/
a {
    color: #191919;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a:hover {
    color: #1dcad3;
}

[class*="col-"] {
    float: left;
    -webkit-box-sizing: border-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"],
textarea {
    -webkit-appearance: none;
}

img {
    max-width: 100%;
}

.outerWrap {
    position: relative;
}

@media (min-width: 501px) {
    .outerWrap {
        padding-top: 60px;
    }
}

@media (max-width: 500px) {
    .outerWrap {
        padding-top: 50px;
    }
}

@media (min-width: 1181px) {
    .WebSiteHome .outerWrap {
        padding-top: 0;
    }
}

.wrap {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 1301px) {
    .wrap {
        max-width: 1200px;
    }
}

@media (max-width: 1300px) {
    .wrap {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 640px) {
    .wrap {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 400px) {
    .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}

#gmap {
    display: none;
    height: 400px;
}

.label {
    padding: 5px 7px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
}

.titleBox {
    position: relative;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
}

@media (min-width: 501px) {
    .titleBox {
        margin-bottom: 30px;
    }
}

@media (max-width: 500px) {
    .titleBox {
        margin-bottom: 20px;
    }
}

.titleBox.center {
    text-align: center;
}

.titleBox.center svg {
    margin-left: auto;
    margin-right: auto;
}

.titleBox svg.icon-fullon,
.titleBox svg.icon-amazinn,
.titleBox svg.icon-amazinn-w {
    display: block;
    margin-bottom: 5px;
    width: 47px;
    height: 47px;
}

.titleBox svg.icon-fullon {
    fill: #1dcad3;
}

.titleMark {
    font-size: 18px;
    font-weight: 300;
    color: #837a72;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.titleEnMark {
    display: block;
    font-size: 20px;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    font-weight: 400;
    line-height: 1.1;
    color: #1dcad3;
    text-transform: uppercase;
}

.titleEn {
    display: block;
    font-size: 20px;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    font-weight: 400;
    line-height: 1.1;
    color: #c1beb7;
    text-transform: uppercase;
}

.titleTxt {
    font-size: 12px;
    line-height: 1.5;
    color: #909090;
}

.txtExp {
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    color: #808080;
    overflow: hidden;
}

.btn a {
    display: inline-block;
    width: 100%;
    max-width: 200px;
    height: 40px;
    line-height: 40px;
    margin: 10px 5px 0;
    font-size: 14px;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    font-weight: 300;
    color: #626262;
    letter-spacing: 0.8px;
    text-align: center;
    background-color: #eee;
}

.btn a:hover {
    color: #fff;
    background-color: #1dcad3;
}

.btn.back {
    margin-top: 50px;
    text-align: center;
}

.btn.back a {
    height: 50px;
    line-height: 50px;
}

.btn.center {
    text-align: center;
}

a.btn_color1,
.btn a.btn_color1 {
    color: #fff;
    background-color: #1dcad3;
}

a.btn_color1:hover,
.btn a.btn_color1:hover {
    color: #ffffff;
    background-color: #ec652c;
}

a.btn_color2,
.btn a.btn_color2 {
    color: #888;
    background-color: #fff;
}

a.btn_color2:hover,
.btn a.btn_color2:hover {
    color: #fff;
    background-color: #1dcad3;
}

a.btn_color3,
.btn a.btn_color3 {
    color: #888;
    background-color: #fff;
}

a.btn_color3:hover,
.btn a.btn_color3:hover {
    color: #ffffff;
    background-color: #ec652c;
}

a.btn_color4:hover,
.btn a.btn_color4:hover {
    color: #ffffff;
    background-color: #ec652c;
}

a.btn_color5,
.btn a.btn_color5 {
    color: #fff;
    background-color: #464646;
}

a.btn_color5:hover,
.btn a.btn_color5:hover {
    color: #ffffff;
    background-color: #ec652c;
}

@media (min-width: 1181px) {
    .mobileShow {
        display: none !important;
    }
}

: : -moz-selection {
    background-color: #eae6de;
}

: : selection {
    background-color: #eae6de;
}

/*-moduleBox--*/
.moduleBox {
    position: fixed;
    left: 50%;
    top: 48%;
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition-property: top, opacity, visibility;
    -o-transition-property: top, opacity, visibility;
    transition-property: top, opacity, visibility;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    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;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.moduleMask.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/*****網頁頭*****/
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

@media (min-width: 1181px) {
    header {
        border-bottom: 1px solid #eae9e9;
    }
}

header .wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1920px;
    padding: 0;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    text-transform: uppercase;
}

@media (min-width: 501px) {
    header .wrap {
        height: 60px;
    }
}

@media (max-width: 500px) {
    header .wrap {
        height: 50px;
    }
}

header .logo {
    text-align: center;
}

@media (min-width: 501px) {
    header .logo {
        width: 230px;
    }
}

@media (max-width: 500px) {
    header .logo {
        width: 170px;
    }
}

header .logo a {
    display: inline-block;
}

@media (max-width: 500px) {
    header .logo a {
        width: 90%;
    }
}

header .rightBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (min-width: 641px) {
    header .rightBox {
        width: calc(100% - 230px - 170px);
    }
}

@media (min-width: 501px) and (max-width: 640px) {
    header .rightBox {
        width: 60px;
    }
}

@media (max-width: 500px) {
    header .rightBox {
        width: 50px;
    }
}

header .bookingBtn {
    position: relative;
    z-index: 5;
    width: 210px;
    line-height: 60px;
    border-left: 1px solid #eae9e9;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
}

@media (min-width: 1601px) and (max-width: 1700px) {
    header .bookingBtn {
        width: 160px;
    }
}

@media (max-width: 1180px) {
    header .bookingBtn {
        display: none;
    }
}

header .languageBox,
header .storesBox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header .languageBox span,
header .storesBox span {
    display: block;
    padding: 10px 0 10px 5px;
    font-size: 13px;
    font-weight: 300;
    color: #808080;
    text-align: center;
    cursor: pointer;
}

header .languageBox span::after,
header .storesBox span::after {
    content: "";
    position: relative;
    top: -3px;
    display: inline-block;
    margin-left: 10px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #808080;
    border-right: 1px solid #808080;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

header .languageBox.open span::after,
header .storesBox.open span::after {
    top: 2px;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

header .languageBox .subItem,
header .storesBox .subItem {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

@media (max-height: 650px) {
    header .languageBox .subItem,
    header .storesBox .subItem {
        height: 70vh;
        overflow-y: auto;
    }
}

header .languageBox .subItem a,
header .storesBox .subItem a {
    display: block;
    padding: 8px;
    border-top: 1px solid #eae9e9;
    font-weight: 300;
    text-align: center;
    background-color: #fff;
}

header .languageBox .subItem a:not(:hover),
header .storesBox .subItem a:not(:hover) {
    color: #a9a9a9;
}

header .languageBox .subItem a.current,
header .storesBox .subItem a.current {
    color: #1dcad3;
}

header .languageBox.open .subItem,
header .storesBox.open .subItem {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

header .storesBox {
    color: #808080;
}

@media (min-width: 641px) {
    header .storesBox {
        width: 170px;
        background-color: #efefef;
    }
}

@media (max-width: 640px) {
    header .storesBox {
        border-left: 1px solid #eae9e9;
    }
}

@media (min-width: 501px) and (max-width: 640px) {
    header .storesBox {
        width: calc(100% - 230px - 60px);
    }
}

@media (max-width: 500px) {
    header .storesBox {
        width: calc(100% - 170px - 50px);
    }
}

header .storesBox span {
    font-size: 14px;
}

@media (max-width: 360px) {
    header .storesBox .subItem {
        left: calc(50% - 75px);
        width: 150px;
    }
}

header .languageBox {
    width: 135px;
}

@media (max-width: 640px) {
    header .languageBox {
        display: none;
    }
}

header .languageBox:hover {
    background-color: #efefef;
}

header .enjoyCardBtn,
header .enjoyShopBtn,
header .ticketBtn,
header .ticketBookBtn,
header .searchBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 70px;
    height: 100%;
    font-size: 10px;
    letter-spacing: -0.8px;
    text-align: center;
    line-height: 1;
    color: #808080;
}

@media (max-width: 960px) {
    header .enjoyCardBtn,
    header .enjoyShopBtn,
    header .ticketBtn,
    header .ticketBookBtn,
    header .searchBtn {
        display: none;
    }
}

header .enjoyCardBtn svg,
header .enjoyShopBtn svg,
header .ticketBtn svg,
header .ticketBookBtn svg,
header .searchBtn svg {
    display: block;
    width: 25px;
    height: 30px;
    fill: #808080;
    margin-bottom: 5px;
}

header .ticketBtn svg {
    width: 26px; /*30*/
    height: 21px;
    margin-top: 5px;
    margin-bottom: 9px;
}

header .ticketBookBtn svg {
    width: 26px;
}

header .enjoyCardBtn:hover,
header .enjoyShopBtn:hover {
    background-color: #efefef;
}

header .ticketBtn {
    width: 75px;
}

header .searchBtn {
    width: 60px;
}

header .searchBtn svg {
    width: 20px;
    height: 20px;
}

header .ticketBtn:hover,
header .ticketBookBtn:hover,
header .searchBtn:hover {
    color: #fff;
    background-color: #1dcad3;
}

header .ticketBtn:hover svg,
header .ticketBookBtn:hover svg,
header .searchBtn:hover svg {
    fill: #fff;
}

header .enjoyCardBtn,
header .enjoyShopBtn,
header .ticketBtn,
header .ticketBookBtn,
header .searchBtn,
header .languageBox,
header .menuBtn {
    border-left: 1px solid #eae9e9;
}

header .menuBtn {
    position: relative;
}

@media (max-width: 1180px) {
    header .menuBtn {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
        background-color: #1dcad3;
    }
}

@media (min-width: 501px) {
    header .menuBtn {
        width: 60px;
    }
}

@media (max-width: 500px) {
    header .menuBtn {
        width: 100%;
    }
}

header .menuBtn::before,
header .menuBtn::after {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #b7b7b7;
}

@media (min-width: 501px) {
    header .menuBtn::before,
    header .menuBtn::after {
        left: calc(50% - 18px);
        width: 36px;
    }
}

@media (max-width: 500px) {
    header .menuBtn::before,
    header .menuBtn::after {
        left: calc(50% - 13px);
        width: 26px;
    }
}

@media (max-width: 1180px) {
    header .menuBtn::before,
    header .menuBtn::after {
        background-color: #fff;
    }
}

header .menuBtn::before {
    bottom: calc(50% + 6px);
}

header .menuBtn::after {
    top: calc(50% + 7px);
}

header .menuBtn span {
    position: absolute;
    top: 50%;
    height: 1px;
    text-indent: -9999px;
    background-color: #b7b7b7;
}

@media (min-width: 501px) {
    header .menuBtn span {
        left: calc(50% - 18px);
        width: 36px;
    }
}

@media (max-width: 500px) {
    header .menuBtn span {
        left: calc(50% - 13px);
        width: 26px;
    }
}

@media (max-width: 1180px) {
    header .menuBtn span {
        background-color: #fff;
    }
}

header .menuBtn:hover {
    background-color: #464646;
}

@media (max-width: 1180px) {
    header .menuBtn:hover {
        background-color: #1dcad3;
    }
}

header .menuBtn.open::before {
    bottom: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease, -webkit-transform 0.25s 0.3s ease-out;
    transition: all 0.3s ease, -webkit-transform 0.25s 0.3s ease-out;
    -o-transition: all 0.3s ease, transform 0.25s 0.3s ease-out;
    transition: all 0.3s ease, transform 0.25s 0.3s ease-out;
    transition: all 0.3s ease, transform 0.25s 0.3s ease-out,
        -webkit-transform 0.25s 0.3s ease-out;
}

header .menuBtn.open::after {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease, -webkit-transform 0.25s 0.3s ease-out;
    transition: all 0.3s ease, -webkit-transform 0.25s 0.3s ease-out;
    -o-transition: all 0.3s ease, transform 0.25s 0.3s ease-out;
    transition: all 0.3s ease, transform 0.25s 0.3s ease-out;
    transition: all 0.3s ease, transform 0.25s 0.3s ease-out,
        -webkit-transform 0.25s 0.3s ease-out;
}

header .menuBtn.open span {
    background-color: transparent;
}

@media (min-width: 1701px) {
    header .menuBox {
        width: calc(100% - 210px - 75px - 70px - 70px - 60px - 135px - 60px);
    }
}

@media (min-width: 1601px) and (max-width: 1700px) {
    header .menuBox {
        width: calc(100% - 160px - 75px - 70px - 70px - 60px - 135px - 60px);
    }
}

@media (max-width: 1600px) {
    header .menuBox {
        display: none;
    }
}

header .menuBox .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
}

header .menuBox .menu li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
}

header .menuBox .menu li + li {
    border-left: 1px solid #eae9e9;
}

header .menuBox .menu a {
    display: block;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 300;
    color: #555;
    letter-spacing: 1px;
}

header .menuBox .menu a:hover {
    color: #1dcad3;
}

/*****menu*****/
.m_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    display: block;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.m_menu.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.m_menu .mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
}

.m_menu .controlBox {
    position: relative;
    z-index: 99;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
    background: url(../images/menu_bg.png) repeat top center, #fff;
}

@media (min-width: 1181px) {
    .m_menu .wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (min-width: 1701px) {
    .m_menu .wrap {
        padding-left: 90px;
    }
}

@media (min-width: 1181px) {
    .m_menu .menuCopyrightBox,
    .m_menu .menuContBox {
        width: 50%;
        max-width: 360px;
        margin-top: 120px;
    }
}

.m_menu .menuBox {
    position: relative;
    width: 100%;
}

@media (min-width: 1401px) {
    .m_menu .menuBox {
        margin-top: 150px;
    }
}

@media (min-width: 1181px) and (max-width: 1400px) {
    .m_menu .menuBox {
        margin-top: 100px;
    }
}

@media (min-width: 501px) and (max-width: 1180px) {
    .m_menu .menuBox {
        margin-top: 60px;
    }
}

@media (min-width: 421px) and (max-width: 500px) {
    .m_menu .menuBox {
        margin-top: 40px;
    }
}

@media (max-width: 420px) {
    .m_menu .menuBox {
        margin-top: 20px;
    }
}

@media (min-width: 1181px) {
    .m_menu .menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 1180px) {
    .m_menu .menu {
        max-width: 580px;
        margin: 0 auto;
    }
}

@media (min-width: 1181px) {
    .m_menu .menu li {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

.m_menu .menu li > a {
    position: relative;
    display: block;
    font-family: "Cardo", "Noto Serif JP", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    font-weight: 700;
    color: #53514f;
}

@media (min-width: 1181px) {
    .m_menu .menu li > a {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -ms-align-items: flex-end;
        align-items: flex-end;
        min-height: 70px;
        padding-bottom: 20px;
        font-size: 18px;
        line-height: 25px;
    }
}

@media (max-width: 1180px) {
    .m_menu .menu li > a {
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #e5e5e5;
    }
}

@media (min-width: 1181px) {
    .m_menu .menu li > a::before {
        content: "";
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 20px;
        height: 2px;
        background-color: #1dcad3;
    }
}

@media (max-width: 1180px) {
    .m_menu .menu li > a::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
        width: 11px;
        height: 1px;
        background-color: #808080;
    }
}

@media (min-width: 1181px) {
    .m_menu .menu li > a::after {
        content: "";
        position: absolute;
        bottom: 2px;
        left: calc(50% - 50vw);
        width: 100vw;
        height: 1px;
        background-color: #e5e5e5;
    }
}

@media (max-width: 1180px) {
    .m_menu .menu li > a::after {
        content: "";
        position: absolute;
        top: calc(50% - 5px);
        right: 15px;
        width: 1px;
        height: 11px;
        background-color: #808080;
    }
}

@media (max-width: 1180px) {
    .m_menu .menu li.open a::after {
        display: none;
    }
}

@media (min-width: 1181px) {
    .m_menu .menu .submenu {
        display: block !important;
    }
}

@media (max-width: 1180px) {
    .m_menu .menu .submenu {
        display: none;
        padding-top: 5px;
        border-top: 2px solid transparent;
        -webkit-transition: border-color 0.4s ease;
        -o-transition: border-color 0.4s ease;
        transition: border-color 0.4s ease;
    }
}

.m_menu .menu .submenu a {
    display: block;
    font-size: 15px;
    font-weight: 300;
}

@media (min-width: 1181px) {
    .m_menu .menu .submenu a {
        margin-top: 15px;
    }
}

@media (max-width: 1180px) {
    .m_menu .menu .submenu a {
        padding: 10px 0;
        border-bottom: 1px solid #e5e5e5;
    }
}

.m_menu .menu .submenu a: not(:hover) {
    color: #606060;
}

.m_menu .menu li.open .submenu {
    border-top-color: #1dcad3;
}

@media (max-width: 1180px) {
    .m_menu .menuContBox {
        margin-top: 40px;
        text-align: center;
    }
}

.m_menu .menuContBox .titleEn,
.m_menu .menuContBox .titleMark {
    font-size: 15px;
    color: #464646;
}

.m_menu .menuContBox .titleMark {
    margin-top: 10px;
    margin-bottom: 15px;
}

.m_menu .menuContBox a {
    display: block;
    font-weight: 300;
    line-height: 25px;
    color: #626262;
}

.m_menu .menuContBox a.tel,
.m_menu .menuContBox a.fax {
    display: inline-block;
}

.m_menu .menuContBox a.fax::before {
    content: "|";
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
    color: #d2d2d2;
}

@media (min-width: 401px) and (max-width: 1180px) {
    .m_menu .footerSocial {
        margin-top: 30px;
    }
}

@media (max-width: 400px) {
    .m_menu .footerSocial {
        margin-top: 25px;
    }
}

.m_menu .footerSocial span {
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    color: #464646;
}

.m_menu .footerSocial a: not(:hover) {
    color: #999;
}

.m_menu .footerSocial a: not(:hover) svg {
    fill: #999;
}

.m_menu .footerSocial a {
    margin-right: 10px;
}

@media (min-width: 321px) and (max-width: 400px) {
    .m_menu .footerSocial a {
        margin-right: 5px;
    }
}

@media (max-width: 320px) {
    .m_menu .footerSocial a {
        margin-right: 0;
    }
}

.m_menu .footerSocial svg {
    width: 19px;
    height: 19px;
}

@media (min-width: 1181px) {
    .m_menu .footerSocial a.searchBtn {
        display: none;
    }
}

.m_menu .footerCopyright {
    margin-top: 50px;
}

@media (max-width: 1180px) {
    .m_menu .footerCopyright {
        display: none;
    }
}

.m_menu .languageBox {
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e5e5e5;
}

@media (min-width: 1181px) {
    .m_menu .languageBox {
        display: none;
    }
}

.m_menu .languageBox span {
    display: block;
    padding: 10px 0 10px 5px;
    font-size: 13px;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    font-weight: 300;
    color: #808080;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.m_menu .languageBox span::after {
    content: "";
    position: relative;
    top: -3px;
    display: inline-block;
    margin-left: 10px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #808080;
    border-right: 1px solid #808080;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.m_menu .languageBox.open span::after {
    top: 2px;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

.m_menu .languageBox .subItem {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.m_menu .languageBox .subItem a {
    display: block;
    padding: 8px;
    border-top: 1px solid #eae9e9;
    font-weight: 300;
    text-align: center;
    background-color: #fff;
}

.m_menu .languageBox .subItem a: not(:hover) {
    color: #a9a9a9;
}

.m_menu .languageBox .subItem a.current {
    color: #1dcad3;
}

.m_menu .languageBox.open .subItem {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.m_menu .bookingBtn {
    position: relative;
    z-index: 5;
    display: block;
    width: 200px;
    margin: 15px auto 0;
    padding: 10px 0 10px 5px;
    border: 1px solid #e5e5e5;
    font-size: 13px;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    font-weight: 300;
    color: #808080;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
}

@media (min-width: 1181px) {
    .m_menu .bookingBtn {
        display: none;
    }
}

.m_menu .enjoyBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 280px;
    margin: 40px auto 0;
}

@media (min-width: 1181px) {
    .m_menu .enjoyBox {
        display: none;
    }
}

.m_menu .enjoyBox a {
    display: inline-block;
    width: 25%;
    font-size: 13px;
    text-align: center;
}

.m_menu .enjoyBox a svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: #808080;
    margin-left: auto;
    margin-right: auto;
}

.m_menu .enjoyBox a + a {
    border-left: 1px solid #e5e5e5;
}

@media (max-width: 1180px) {
    .m_menu .menu {
        opacity: 0;
        -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
}

@media (min-width: 1181px) {
    .m_menu .menu .submenu {
        opacity: 0;
        -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
}

.m_menu .enjoyBox,
.m_menu .menuCopyrightBox {
    opacity: 0;
}

@media (min-width: 1181px) {
    .m_menu .enjoyBox,
    .m_menu .menuCopyrightBox {
        -webkit-transform: translateX(15px);
        -ms-transform: translateX(15px);
        transform: translateX(15px);
    }
}

@media (max-width: 1180px) {
    .m_menu .enjoyBox,
    .m_menu .menuCopyrightBox {
        -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
    }
}

.m_menu .languageBox,
.m_menu .bookingBtn,
.m_menu .menuContBox {
    opacity: 0;
}

@media (min-width: 1181px) {
    .m_menu .languageBox,
    .m_menu .bookingBtn,
    .m_menu .menuContBox {
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@media (max-width: 1180px) {
    .m_menu .languageBox,
    .m_menu .bookingBtn,
    .m_menu .menuContBox {
        -webkit-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
    }
}

@media (max-width: 1180px) {
    .m_menu.show .menu {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: all 0.6s 0.3s ease-out;
        -o-transition: all 0.6s 0.3s ease-out;
        transition: all 0.6s 0.3s ease-out;
    }
}

@media (min-width: 1181px) {
    .m_menu.show .menu .submenu {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: all 0.6s 0.3s ease-out;
        -o-transition: all 0.6s 0.3s ease-out;
        transition: all 0.6s 0.3s ease-out;
    }
}

.m_menu.show .enjoyBox,
.m_menu.show .menuCopyrightBox {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 0.45s;
    -o-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.m_menu.show .languageBox,
.m_menu.show .bookingBtn,
.m_menu.show .menuContBox {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

/*****banner*****/
.bannerArea .wrap {
    max-width: 100%;
    padding: 0;
}

.bannerArea .bannerBox {
    position: relative;
}

.bannerArea .bannerBox .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.bannerArea .bannerBox .Img img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.bannerArea .bannerBox .txtPic {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.bannerArea .bannerBox .txtPic img {
    max-height: 100%;
}

.bannerArea .bannerBox::before {
    content: "";
    position: absolute;
    bottom: 0;
    z-index: 5;
    height: 5px;
    background-color: #1dcad3;
}

@media (min-width: 1301px) {
    .bannerArea .bannerBox::before {
        left: calc(50% - 600px);
        width: 1200px;
    }
}

@media (max-width: 1300px) {
    .bannerArea .bannerBox::before {
        left: 0;
        width: 100%;
    }
}

@media (max-width: 1180px) {
    .bannerArea .bannerBox::before {
        display: none;
    }
}

.bannerArea .bannerBox .dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
}

.bannerArea .bannerBox .dots button {
    border: 0;
    border-radius: 50%;
    background-color: #bfbfbf;
}

.bannerArea .bannerBox .dots li.slick-active button,
.bannerArea .bannerBox .dots li:hover button {
    background-color: #626262;
}

.bannerArea .scroll {
    position: relative;
    z-index: 5;
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 1180px) {
    .bannerArea .scroll {
        display: none;
    }
}

.bannerArea .scroll.line {
    padding: 10px;
    margin-top: 30px;
    border-bottom: 3px solid #1dcad3;
    color: #ffffff;
}

.bannerArea .scroll.mouse {
    position: absolute;
    bottom: 35px;
    left: calc(50% - 50px);
    width: 100px;
    padding-top: 35px;
    color: #dcdcdc;
    text-align: center;
}

.bannerArea .scroll.mouse::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    width: 1px;
    height: 80px;
    background-color: #bebebe;
}

.bannerArea .scroll.mouse span::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 7px);
    width: 14px;
    height: 26px;
    border: 1px solid #dcdcdc;
    border-radius: 7px;
}

.bannerArea .scroll.mouse span::after {
    content: "";
    position: absolute;
    top: 6px;
    left: calc(50% - 2px);
    width: 4px;
    height: 4px;
    background-color: #dedede;
    border-radius: 50%;
    -webkit-animation: scroll_mouse 1.4s forwards ease-in-out infinite;
    animation: scroll_mouse 1.4s forwards ease-in-out infinite;
}

@-webkit-keyframes scroll_mouse {
    0%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

@keyframes scroll_mouse {
    0%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

.bannerBox {
    opacity: 0;
    -webkit-animation: bannershow 2s forwards;
    animation: bannershow 2s forwards;
}

.bannerBox li.hidden {
    display: none;
}

@-webkit-keyframes bannershow {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bannershow {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bannerBox .txtPic img,
.bannerBox .txtPic .scroll {
    -webkit-animation: banner_out 0.5s forwards ease;
    animation: banner_out 0.5s forwards ease;
}

.bannerBox .txtPic .scroll {
    opacity: 0;
}

.bannerBox li.show .txtPic img {
    -webkit-animation: banner_in 0.7s forwards ease;
    animation: banner_in 0.7s forwards ease;
}

.bannerBox li.show .txtPic .scroll {
    -webkit-animation: banner_in 0.7s 0.16s forwards ease;
    animation: banner_in 0.7s 0.16s forwards ease;
}

@-webkit-keyframes banner_in {
    0% {
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes banner_in {
    0% {
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes banner_out {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
}

@keyframes banner_out {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
}

/*****頁尾資訊*****/
footer {
    background-color: #f2f2f2;
    overflow: hidden;
}

@media (min-width: 1181px) {
    footer {
        padding: 80px 0;
    }
}

@media (max-width: 1180px) {
    footer {
        padding-bottom: 90px;
    }
}

footer > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (min-width: 1301px) {
    footer .footerLocaBox,
    footer .footerContBox {
        width: 50%;
    }
}

@media (max-width: 1180px) {
    footer .footerLocaBox,
    footer .footerContBox {
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

footer .footerLocaBox {
    position: relative;
}

@media (min-width: 1181px) {
    footer .footerLocaBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 1181px) and (max-width: 1300px) {
    footer .footerLocaBox {
        width: 600px;
    }
}

@media (min-width: 501px) and (max-width: 1180px) {
    footer .footerLocaBox {
        padding: 50px 0;
    }
}

@media (max-width: 500px) {
    footer .footerLocaBox {
        padding: 30px 0;
    }
}

@media (max-width: 1180px) {
    footer .footerLocaBox::before {
        content: "";
        position: absolute;
        top: 0;
        left: calc(50% - 50vw);
        width: 100vw;
        height: 100%;
        background-color: #e9e9e9;
    }
}

@media (min-width: 1301px) {
    footer .footerLocaBox::before {
        content: "";
        position: absolute;
        top: -15px;
        right: 0;
        width: 1px;
        height: calc(100% + 30px);
        background-color: rgba(212, 212, 212, 0.7);
    }
}

footer .footerContBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 40px;
}

@media (min-width: 1301px) {
    footer .footerContBox {
        padding-left: 50px;
    }
}

@media (min-width: 1181px) and (max-width: 1300px) {
    footer .footerContBox {
        width: calc(100% - 600px);
        padding-left: 20px;
    }
}

footer .logoList {
    width: 100%;
    padding: 5px 0;
}

footer .logoList li {
    width: 20%;
    padding: 0;
}

footer .logoList li:hover {
    opacity: 0.6;
}

footer .logoList .Img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 65px;
}

footer .logoList .arrowPrev,
footer .logoList .arrowNext {
    position: absolute;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
}

footer .logoList .arrowPrev::before,
footer .logoList .arrowNext::before {
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-color: #ababab;
}

footer .logoList .arrowPrev {
    right: calc(100% - 5px);
}

footer .logoList .arrowNext {
    left: calc(100% - 5px);
}

@media (min-width: 1181px) {
    .footerTitle {
        width: calc(100% - 250px);
        margin-bottom: 25px;
    }
}

@media (max-width: 1180px) {
    .footerTitle {
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }
}

.footerTitle .titleMark {
    margin-top: 5px;
    font-size: 15px;
}

.footerSocial {
    color: #bababa;
}

@media (min-width: 1181px) {
    .footerSocial {
        width: 250px;
    }
}

@media (max-width: 1180px) {
    .footerSocial {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }
}

.footerSocial span {
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media (max-width: 1180px) {
    .footerSocial span {
        display: none;
    }
}

.footerSocial a {
    display: inline-block;
    margin-right: 5px;
    color: #888;
}

@media (max-width: 1180px) {
    .footerSocial a {
        margin-left: 5px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 50%;
        background-color: #fff;
    }
}

@media (max-width: 500px) {
    .footerSocial a {
        margin-left: 3px;
        margin-right: 3px;
    }
}

.footerSocial svg {
    display: inline-block;
    vertical-align: middle;
    width: 22px;
    height: 22px;
    fill: #888;
}

.footerSocial svg.icon-tripadvisor {
    width: 20px;
    height: 20px;
}

@media (max-width: 1180px) {
    .footerSocial svg {
        width: 20px;
        height: 20px;
    }
}

.footerSocial a:hover {
    color: #1dcad3;
}

.footerSocial a:hover svg {
    fill: #1dcad3;
}

.footerInfo {
    width: 100%;
}

.footerInfo li {
    display: block;
}

.footerInfo a,
.footerInfo span {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: #707070;
}

@media (max-width: 1180px) {
    .footerInfo a,
    .footerInfo span {
        display: block;
        padding-top: 2px;
        padding-bottom: 2px;
        border-bottom: 1px solid #e0e0e0;
    }
}

@media (min-width: 1181px) {
    .footerInfo a + a::before,
    .footerInfo a + span::before,
    .footerInfo span + a::before,
    .footerInfo span + span::before {
        content: "|";
        display: inline-block;
        vertical-align: top;
        margin: 0 8px;
        color: #d2d2d2;
    }
}

@media (min-width: 1181px) and (max-width: 1300px) {
    .footerInfo a + a,
    .footerInfo span + a {
        display: block;
    }

    .footerInfo a + a::before,
    .footerInfo span + a::before {
        display: none;
    }
}

.footerInfo address {
    display: inline;
    font-style: normal;
}

@media (min-width: 1181px) {
    .footerInfo a:hover {
        text-decoration: underline;
    }
}

@media (min-width: 1181px) {
    .footerInfo a:hover address {
        text-decoration: underline;
    }
}

.footerLocation {
    position: relative;
}

@media (min-width: 1181px) {
    .footerLocation {
        width: 290px;
        padding-right: 10px;
    }
}

@media (max-width: 1180px) {
    .footerLocation {
        text-align: center;
    }
}

.footerLocation .titleBox {
    margin-bottom: 20px;
}

.footerLocation .titleEnMark {
    color: #837a72;
}

@media (max-width: 1180px) {
    .footerLocation .titleBox svg {
        display: none;
    }
}

.footerLocation .txtExp {
    font-size: 14px;
    line-height: 1.65;
}

.footerLocation .btn {
    margin-top: 20px;
}

@media (min-width: 1181px) {
    .footerLocation .btn a {
        margin: 10px 0 0;
    }
}

.footerMap {
    position: relative;
    width: 270px;
    height: 350px;
}

@media (max-width: 1180px) {
    .footerMap {
        display: none;
    }
}

.footerMap::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 11px;
    width: 250px;
    height: 320px;
    background: url(../images/footer_map.png) no-repeat top left;
}

.footerMap .point {
    position: absolute;
    z-index: 1;
}

.footerMap .point a {
    display: block;
    width: 10px;
    height: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: #8e6a33;
}

.footerMap .point a::before {
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #1dcad3;
}

.footerMap .point a::after {
    content: "";
    position: absolute;
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(235, 102, 45, 0.3);
    opacity: 0;
}

.footerMap .point a span {
    position: absolute;
    display: block;
    width: 90px;
}

.footerMap .point.current a,
.footerMap .point:hover a {
    color: rgba(235, 102, 45, 1);
}

.footerMap .point.current a::before,
.footerMap .point:hover a::before {
    background-color: rgba(235, 102, 45, 1);
}

.footerMap .point.current a::after {
    opacity: 1;
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    transform: scale(2.5);
    -webkit-animation: map_twinkling 1.5s forwards ease infinite;
    animation: map_twinkling 1.5s forwards ease infinite;
}

.footerMap .point._lk {
    top: 49px;
    left: 176px;
  }
  
  .footerMap .point._lk span {
    top: 50%;
    left: calc(100% + 5px);
    -webkit-transform: translate3d(-50%, -90%, 0);
    -ms-transform: translate3d(-50%, -90%, 0);
    transform: translate3d(-50%, -90%, 0);
  }
  
.footerMap .point._sl {
    top: 169px;
    left: 145px;
}

.footerMap .point._sl span {
    top: 50%;
    left: calc(100% + 5px);
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.footerMap .point._kh {
    top: 274px;
    left: 94px;
}

.footerMap .point._kh span {
    top: 50%;
    right: calc(100% + 6px);
    text-align: right;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footerMap .point._kt {
    top: 331px;
    left: 145px;
}

.footerMap .point._kt span {
    top: 50%;
    left: calc(100% + 5px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footerMap .point._jl {
    top: 57px;
    left: 175px;
}
.footerMap .point._jl span {
    top: 50%;
    right: calc(100% + 6px);
    text-align: right;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.footerMap .point._ph {
  top: 162px;
  left: 31px;
}
.footerMap .point._ph span {
  top: 0%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate3d(-50%, -140%, 0);
  -ms-transform: translate3d(-50%, -140%, 0);
  transform: translate3d(-50%, -140%, 0);
}



@-webkit-keyframes map_twinkling {
    0%,
    100% {
        opacity: 0.1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    65% {
        opacity: 0.4;
        -webkit-transform: scale(3.5);
        transform: scale(3.5);
    }
}

@keyframes map_twinkling {
    0%,
    100% {
        opacity: 0.1;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    65% {
        opacity: 0.4;
        -webkit-transform: scale(3.5);
        transform: scale(3.5);
    }
}

.footerCopyright {
    width: 100%;
    font-size: 12px;
    line-height: 22px;
    color: #bababa;
}

.footerCopyright .legalLink {
    display: inline-block;
    margin-left: 10px;
    color: #bababa;
    text-decoration: underline;
}

.footerCopyright .legalLink:hover {
    color: #808080;
}

.translateIbest {
    display: inline;
    vertical-align: middle;
}

.translateIbest::before {
    content: "|";
    display: inline-block;
    vertical-align: top;
    padding: 0 3px;
}

.translateIbest .design {
    display: inline-block;
    line-height: 22px;
    font-size: 12px;
    font-weight: 300;
    color: #bababa;
}

.translateIbest .design a {
    color: #bababa;
    text-decoration: none;
}

.translateIbest .design a:hover {
    color: #808080;
    text-decoration: underline;
}

/*****homeAboutArea*****/
.homeAboutArea {
    position: relative;
    z-index: 5;
    background-color: #fff;
}

@media (min-width: 1181px) {
    .homeAboutArea {
        padding: 50px 0;
    }
}

@media (min-width: 1181px) {
    .homeAboutArea > .wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 1181px) {
    .homeAboutArea .aboutArea,
    .homeAboutArea .bookingArea {
        width: 50%;
        padding: 20px 60px 30px;
    }
}

@media (min-width: 1181px) and (max-width: 1300px) {
    .homeAboutArea .aboutArea {
        padding-left: 0;
    }
}

@media (max-width: 1180px) {
    .homeAboutArea .aboutArea {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1181px) and (max-width: 1300px) {
    .homeAboutArea .bookingArea {
        padding-right: 0;
    }
}

@media (min-width: 1181px) {
    .homeAboutArea .aboutArea + .bookingArea {
        border-left: 1px solid #e5e5e5;
    }
}

.homeAboutArea .aboutBgImg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100%;
}

.homeAboutArea .titleBox {
    position: relative;
}

@media (min-width: 1181px) {
    .homeAboutArea .titleBox {
        padding-bottom: 30px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1181px) {
    .homeAboutArea .titleBox::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: -webkit-linear-gradient(
            left,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.08) calc(50% - 20px),
            rgba(0, 0, 0, 0) calc(50% - 19px),
            rgba(0, 0, 0, 0) calc(50% + 19px),
            rgba(0, 0, 0, 0.08) calc(50% + 20px),
            rgba(0, 0, 0, 0.08) 100%
        );
        background: -o-linear-gradient(
            left,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.08) calc(50% - 20px),
            rgba(0, 0, 0, 0) calc(50% - 19px),
            rgba(0, 0, 0, 0) calc(50% + 19px),
            rgba(0, 0, 0, 0.08) calc(50% + 20px),
            rgba(0, 0, 0, 0.08) 100%
        );
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.08) calc(50% - 20px),
            rgba(0, 0, 0, 0) calc(50% - 19px),
            rgba(0, 0, 0, 0) calc(50% + 19px),
            rgba(0, 0, 0, 0.08) calc(50% + 20px),
            rgba(0, 0, 0, 0.08) 100%
        );
    }
}

@media (min-width: 1181px) {
    .homeAboutArea .titleBox::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: calc(50% - 4px);
        width: 7px;
        height: 7px;
        border: 1px solid #dcdcdc;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@media (min-width: 1181px) {
    .homeAboutArea .titleBox svg {
        display: none;
    }
}

@media (min-width: 1181px) {
    .homeAboutArea .titleBox .titleEnMark {
        font-size: 28px;
    }
}

/*****booking*****/
.bookingArea {
    position: relative;
}

@media (max-width: 1180px) {
    .bookingArea {
        display: none;
    }
}

.bookingArea .thsr {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.bookingArea .siteMinder {
    position: relative;
    z-index: 1;
}

.bookingArea .bookingList {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.bookingArea .bookingList li {
    position: relative;
    padding: 0 8px 20px;
}

.bookingArea .bookingList label {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 300;
    color: #1dcad3;
}

.bookingArea .bookingList svg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
    display: none;
}

.bookingArea .bookingList input: not(.night) {
    background: url(../images/icon/icon_date.png) no-repeat center right, #eee;
}

.bookingArea input,
.bookingArea select {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 0;
    font-size: 15px;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    color: #333;
    letter-spacing: 1px;
    background-color: #eee;
    cursor: pointer;
}

.bookingArea .btn {
    margin-top: 20px;
}

.bookingArea .nice-select {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 0;
    font-size: 15px;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    color: #333;
    letter-spacing: 1px;
    background-color: #eee;
    cursor: pointer;
}

.bookingArea .nice-select .option {
    padding: 0 10px 0 20px;
    border-top: 1px solid #eee;
}

.bookingArea .nice-select,
.bookingArea .nice-select: active,
.bookingArea .nice-select.open,
.bookingArea .nice-select: focus,
.bookingArea .nice-select:hover {
    border-color: transparent;
}

.bookingArea .nice-select .list {
    width: 100%;
    border-radius: 0px;
    margin-top: 1px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bookingArea .nice-select .option.selected {
    font-weight: 400;
}

.bookingArea .nice-select .option:hover,
.bookingArea .nice-select .option.focus,
.bookingArea .nice-select .option.selected.focus {
    color: #fff;
    background-color: #ec652c;
}

.bookingArea .nice-select .list:hover .option: not(:hover) {
    color: #272727;
}

.bookingArea .nice-select: after {
    top: 50%;
    width: 8px;
    height: 8px;
    border-color: #ababab;
    border-width: 1px;
}

/*****privacyBox*****/
.privacyBox {
    position: fixed;
    left: 0;
    z-index: 99;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
}

@media (min-width: 501px) {
    .privacyBox {
        top: calc(50% - 50px);
        width: 450px;
        height: 350px;
        padding: 60px 40px 60px 60px;
    }
}

@media (max-width: 500px) {
    .privacyBox {
        bottom: 45px;
        width: 100%;
        height: 300px;
        padding: 50px 20px 30px 30px;
    }
}

@media (max-width: 360px) {
    .privacyBox {
        padding: 40px 10px 20px 20px;
    }
}

.privacyBox.close {
    display: none;
}

.privacyBox .textEditor {
    height: 100%;
    padding-right: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
    overflow-y: auto;
}

.privacyBox .textEditor a {
    color: #ecb157;
}

.privacyBox .textEditor > a {
    text-decoration: underline;
}

.privacyBox .textEditor > a:hover {
    text-decoration: none;
}

.privacyBox .textEditor .privacyCloseBtn {
    display: block;
    margin-top: 25px;
    width: 200px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    background-color: #1dcad3;
}

.privacyBox .textEditor .privacyCloseBtn:hover {
    color: #e0dace;
    background-color: #ec652c;
}

.privacyBox .textEditor: : -webkit-scrollbar {
    -webkit-appearance: none;
}

.privacyBox .textEditor: : -webkit-scrollbar: vertical {
    width: 8px;
}

.privacyBox .textEditor: : -webkit-scrollbar: horizontal {
    height: 10px;
}

.privacyBox .textEditor: : -webkit-scrollbar-thumb {
    background-color: #1dcad3;
    border-radius: 6px;
    border: 2px solid #eaeaea;
}

.privacyBox .textEditor: : -webkit-scrollbar-track {
    border-radius: 6px;
    background-color: #eaeaea;
}

.privacyBox .closeBtn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    text-indent: -9999px;
    cursor: pointer;
}

@media (max-width: 400px) {
    .privacyBox .closeBtn {
        top: 15px;
        right: 10px;
    }
}

.privacyBox .closeBtn::before,
.privacyBox .closeBtn::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 10px);
    width: 20px;
    height: 2px;
    background-color: #fff;
}

.privacyBox .closeBtn::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.privacyBox .closeBtn::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*****fixedBottomBtn*****/
.fixedBottomBtn {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    height: 50px;
    border-top: 3px solid #1dcad3;
    border-bottom: 0px solid #999;
    text-align: center;
    background-color: #fff;
    transition: all 0.4s ease;
}

.fixedBottomBtn.hide {
    bottom: -50px;
}

@media (min-width: 1181px) {
    .fixedBottomBtn {
        display: none;
    }
}

@media (min-width: 481px) {
    .fixedBottomBtn {
        padding: 0 20px;
    }
}

.fixedBottomBtn a {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 300;
    color: #464646;
    line-height: 1.2;
}

.fixedBottomBtn a + a::before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: 0;
    width: 1px;
    height: 12px;
    border-left: 1px solid #aaa;
}

/*****searchBox*****/
#searchBox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#searchBox.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#searchBox .mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
}

.searchFloatBox {
    position: relative;
    width: 94%;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    background: #fff url(../images/title_search.png) no-repeat center center;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@media (min-width: 641px) {
    .searchFloatBox {
        min-height: 340px;
        padding: 85px 75px;
    }
}

@media (max-width: 640px) {
    .searchFloatBox {
        padding: 60px 30px;
    }
}

.searchFloatBox .titleBox {
    padding-bottom: 35px;
}

.searchFloatBox .titleBox .titleMark {
    font-size: 16px;
    letter-spacing: 3px;
    text-indent: -3px;
    color: #000;
}

.searchFloatBox .titleBox .titleTxt {
    color: #7f7f7f;
    font-size: 14px;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
}

.searchFloatBox .closeBtn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    display: block;
    border-left: 1px solid #646464;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    color: #111;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

@media (min-width: 961px) {
    .searchFloatBox .closeBtn {
        width: 80px;
        padding-top: 60px;
        padding-bottom: 15px;
    }
}

@media (max-width: 960px) {
    .searchFloatBox .closeBtn {
        width: 70px;
        padding-top: 40px;
        padding-bottom: 10px;
        font-size: 13px;
    }
}

.searchFloatBox .closeBtn::before,
.searchFloatBox .closeBtn::after {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 15px);
    width: 30px;
    height: 1px;
    background-color: #646464;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.searchFloatBox .closeBtn::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#searchBox.show .searchFloatBox {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.searchInputBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 500px) {
    .searchInputBox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.searchInputBox input {
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    border: 1px solid;
    border-color: transparent transparent #e5e5e5 transparent;
    background-color: transparent;
}

@media (min-width: 501px) {
    .searchInputBox input {
        width: calc(100% - 180px);
    }
}

@media (max-width: 500px) {
    .searchInputBox input {
        width: 100%;
    }
}

.searchInputBox button {
    width: 180px;
    padding-top: 11px;
    padding-bottom: 11px;
    border: none;
    color: #fff;
    font-size: 14px;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    background-color: #1dcad3;
}

@media (max-width: 500px) {
    .searchInputBox button {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*****內頁*****/
.mainArea {
    padding: 0;
}

@media (min-width: 1181px) {
    .mainArea .titleBox.hide {
        display: none;
    }
}

@media (min-width: 501px) and (max-width: 1180px) {
    .mainArea .titleBox.hide {
        padding-top: 50px;
    }
}

@media (max-width: 500px) {
    .mainArea .titleBox.hide {
        padding-top: 30px;
    }
}

.mainArea .textEditor {
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
    color: #626262;
}

.mainArea .textEditor .ff01 {
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
}

.mainArea .textEditor strong {
    font-weight: 400;
}

.mainArea .textEditor a {
    color: #1dcad3;
}

.mainArea .textEditor a.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    width: auto;
    min-width: 200px;
    height: auto;
    line-height: 20px;
    color: #454545;
    background-color: #eee;
}

.mainArea .textEditor a.btn:hover {
    color: #fff;
    background-color: #1dcad3;
}

.mainArea .textEditor a.btn.btn2 {
    color: #fff;
    background-color: #1dcad3;
}

.mainArea .textEditor a.btn.btn2:hover {
    color: #fff;
    background-color: #ec652c;
}

.mainArea .textEditor > a {
    text-decoration: underline;
}

.mainArea .textEditor table th {
    border: 0;
    border-bottom: 3px double #1dcad3;
    font-weight: 400;
    color: #1dcad3;
    background-color: transparent;
}

.mainArea .textEditor table td {
    border: 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 300;
}

@media (min-width: 501px) {
    .mainArea .textEditor table td {
        padding: 15px 10px;
    }
}

@media (max-width: 500px) {
    .mainArea .textEditor table td {
        padding: 10px 5px;
    }
}

.mainArea .textEditor table td + td {
    border-left: 1px solid #eee;
}

.mainArea .textEditor table tr: last-of-type td {
    border-bottom: 3px double #eee;
}

.mainArea .textEditor table tr:hover td {
    background-color: #f2f2f2;
}

.mainArea .textEditor table .footable-row-detail {
    border-top: 1px solid #eee;
}

.mainArea .textEditor table .footable-row-detail-name {
    font-weight: 400;
    color: #191919;
}

.mainArea
    .textEditor
    .footable.breakpoint
    > tbody
    > tr
    > td
    > span.footable-toggle {
    font-size: 12px;
}

@media (min-width: 1181px) {
    .insPage > .wrap,
    .indexPage > .wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 80px;
    }
}

@media (min-width: 1181px) {
    .insPage .classSideBox,
    .indexPage .classSideBox {
        padding-right: 30px;
    }
}

@media (max-width: 1180px) {
    .insPage .classSideBox,
    .indexPage .classSideBox {
        padding-bottom: 50px;
    }
}

.insPage .classSideBox + .contentBox,
.indexPage .classSideBox + .contentBox {
    padding-top: 0;
}

@media (max-width: 1180px) {
    .insPage .classSideBox .titleBox,
    .indexPage .classSideBox .titleBox {
        display: none;
    }
}

@media (min-width: 1181px) {
    .insPage .titleBox,
    .indexPage .titleBox {
        position: relative;
        margin-top: 25px;
    }

    .insPage .titleBox::after,
    .indexPage .titleBox::after {
        content: "";
        display: inline-block;
        width: 25px;
        height: 3px;
        margin-top: 18px;
        background-color: #eee;
    }
}

@media (min-width: 1181px) {
    .insPage .titleEnMark,
    .indexPage .titleEnMark {
        font-size: 25px;
    }
}

@media (min-width: 1181px) {
    .insPage .titleMark,
    .indexPage .titleMark {
        margin-top: 5px;
        font-size: 16px;
        color: #191919;
    }
}

@media (min-width: 1181px) {
    .insPage .classSideBox {
        width: 200px;
        padding-right: 30px;
    }
}

@media (min-width: 1181px) {
    .insPage .classSideBox + .contentBox {
        width: calc(100% - 200px);
        padding-left: 40px;
        border-left: 1px solid #e5e5e5;
    }
}

@media (min-width: 1181px) {
    .indexPage .classSideBox {
        width: 240px;
    }
}

@media (min-width: 1181px) {
    .indexPage .classSideBox + .contentBox {
        width: calc(100% - 240px);
        padding-left: 0;
    }
}

.bread {
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    color: #939393;
}

@media (max-width: 1180px) {
    .bread {
        display: none;
    }
}

.bread a {
    color: #c0c0c0;
}

.bread a:hover {
    color: #939393;
    text-decoration: underline;
}

.bread a.back {
    color: #939393;
}

.bread span {
    padding: 0 3px;
    color: #c0c0c0;
}

@media (min-width: 1181px) {
    .contentBox {
        padding: 80px 0;
    }
}

@media (max-width: 1180px) {
    .contentBox {
        padding-top: 20px;
        padding-bottom: 60px;
    }
}

.contentBox .titleBox {
    position: relative;
    margin-bottom: 40px;
}

@media (min-width: 1181px) {
    .contentBox .titleBox {
        padding-bottom: 35px;
    }
}

@media (max-width: 1180px) {
    .contentBox .titleBox {
        padding-top: 20px;
    }
}

@media (min-width: 1181px) {
    .contentBox .titleBox::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: -webkit-linear-gradient(
            left,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.08) calc(50% - 20px),
            rgba(0, 0, 0, 0) calc(50% - 19px),
            rgba(0, 0, 0, 0) calc(50% + 19px),
            rgba(0, 0, 0, 0.08) calc(50% + 20px),
            rgba(0, 0, 0, 0.08) 100%
        );
        background: -o-linear-gradient(
            left,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.08) calc(50% - 20px),
            rgba(0, 0, 0, 0) calc(50% - 19px),
            rgba(0, 0, 0, 0) calc(50% + 19px),
            rgba(0, 0, 0, 0.08) calc(50% + 20px),
            rgba(0, 0, 0, 0.08) 100%
        );
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.08) calc(50% - 20px),
            rgba(0, 0, 0, 0) calc(50% - 19px),
            rgba(0, 0, 0, 0) calc(50% + 19px),
            rgba(0, 0, 0, 0.08) calc(50% + 20px),
            rgba(0, 0, 0, 0.08) 100%
        );
    }
}

@media (min-width: 1181px) {
    .contentBox .titleBox::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: calc(50% - 4px);
        width: 7px;
        height: 7px;
        border: 1px solid #dcdcdc;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

@media (min-width: 1181px) {
    .contentBox .titleBox .titleMark {
        color: #191919;
    }
}

@media (min-width: 1181px) {
    .contentBox .titleBox .titleEnMark {
        font-size: 28px;
    }
}

.contentBox .titleBox .bread {
    position: absolute;
    top: 0;
    right: 0;
}

.articleTitle {
    font-size: 22px;
    font-weight: 400;
    color: #191919;
}

/*類別*/
@media (min-width: 1181px) {
    .classBox {
        padding: 3px 0 0;
        background-color: #fff;
    }
}

@media (min-width: 1181px) {
    .classBox .wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-bottom: 1px solid #eaeaea;
    }
}

.classBox .bread {
    display: inline-block;
    margin-left: auto;
    padding-top: 15px;
    padding-left: 20px;
}

@media (max-width: 1180px) {
    .classBox .bread {
        display: none;
    }
}

@media (max-width: 1180px) {
    .classLink {
        display: none;
    }
}

.classLink li {
    display: inline-block;
    padding: 0;
}

.classLink a {
    position: relative;
    display: block;
    padding: 15px;
    font-size: 14px;
    font-weight: 300;
    color: #808080;
}

.classLink a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1dcad3;
    opacity: 0;
}

.classLink a:hover::before,
.classLink a.current::before {
    bottom: 0;
    opacity: 1;
}

.classLink:hover a.current::before {
    bottom: -5px;
    opacity: 0;
}

.classLink:hover a.current:hover::before {
    bottom: 0;
    opacity: 1;
}

.classLink .all a {
    color: #191919;
}

.classSideBox .classLink li {
    display: block;
}

.classSideBox .classLink a {
    display: inline-block;
    padding: 8px 0;
}

.classSideBox .classLink a::before {
    display: none;
}

.classSideBox .classLink a:hover,
.classSideBox .classLink a.current {
    color: #1dcad3;
}

.m_classLink {
    position: relative;
}

@media (min-width: 1181px) {
    .m_classLink {
        display: none;
    }
}

.m_classLink a.main {
    position: relative;
    display: block;
    padding: 10px 15px;
    border: 1px solid #d1d1d1;
    border-radius: 2px;
    font-size: 15px;
    color: #454545;
    letter-spacing: 1px;
    background: #eee;
}

.m_classLink a.main b {
    font-weight: 300;
}

.m_classLink a.main i {
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    margin-top: -6px;
    font-size: 15px;
}

.m_classLink ul {
    position: relative;
    left: 0;
    top: 100%;
    z-index: 99;
    display: none;
    width: 100%;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 0;
    border-radius: 0 0 2px 2px;
}

.m_classLink ul li {
    padding: 0;
}

.m_classLink ul li a {
    display: block;
    padding: 10px 15px;
    border-top: 1px solid #e5e5e5;
}

.m_classLink ul li: first-child a {
    border: none;
}

/*側邊_相關訊息*/
.side_news,
.sideRelatedBox {
    padding-top: 45px;
    border-top: 1px solid #e5e5e5;
}

@media (min-width: 1181px) {
    .side_news,
    .sideRelatedBox {
        margin-top: 30px;
    }
}

@media (max-width: 1180px) {
    .side_news,
    .sideRelatedBox {
        margin-top: 50px;
    }
}

@media (max-width: 1180px) {
    .side_news .titleEnMark,
    .side_news .titleMark,
    .sideRelatedBox .titleEnMark,
    .sideRelatedBox .titleMark {
        text-align: center;
    }
}

@media (min-width: 1181px) {
    .side_news .titleMark,
    .sideRelatedBox .titleMark {
        margin: 0;
    }
}

.otherNewsList,
.sideRelatedList {
    margin: 25px -6px 0;
}

.otherNewsList li,
.sideRelatedList li {
    padding: 6px;
}

.otherNewsList .Img img,
.sideRelatedList .Img img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.otherNewsList .Txt,
.sideRelatedList .Txt {
    padding-top: 15px;
    padding-right: 10px;
}

.otherNewsList h3,
.sideRelatedList h3 {
    font-size: 16px;
    font-weight: 400;
}

.otherNewsList h3 a,
.sideRelatedList h3 a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.otherNewsList .txtExp,
.sideRelatedList .txtExp {
    margin-top: 10px;
    max-height: 50px;
}

.otherNewsList .newsDate,
.sideRelatedList .newsDate {
    margin-top: 10px;
    font-size: 14px;
    color: #cd9a75;
    letter-spacing: 0.5px;
}

.otherNewsList .newsDate::before,
.sideRelatedList .newsDate::before {
    display: none;
}

.otherNewsList .arrowPrev,
.otherNewsList .arrowNext,
.sideRelatedList .arrowPrev,
.sideRelatedList .arrowNext {
    position: absolute;
    top: 30%;
}

@media (min-width: 1181px) {
    .otherNewsList .arrowPrev,
    .sideRelatedList .arrowPrev {
        left: 8px;
    }
}

@media (max-width: 1180px) {
    .otherNewsList .arrowPrev,
    .sideRelatedList .arrowPrev {
        left: 15px;
    }
}

@media (min-width: 1181px) {
    .otherNewsList .arrowNext,
    .sideRelatedList .arrowNext {
        right: 8px;
    }
}

@media (max-width: 1180px) {
    .otherNewsList .arrowNext,
    .sideRelatedList .arrowNext {
        right: 15px;
    }
}

.otherNewsList ul.dots,
.sideRelatedList ul.dots {
    margin-top: 25px;
}

/*側邊_分享*/
@media (min-width: 1181px) {
    .side_share {
        position: fixed;
        top: 30%;
        display: none;
        width: 50px;
        text-align: center;
    }
}

@media (min-width: 1601px) {
    .side_share {
        right: 95px;
    }
}

@media (min-width: 1501px) and (max-width: 1600px) {
    .side_share {
        right: 50px;
    }
}

@media (min-width: 1401px) and (max-width: 1500px) {
    .side_share {
        right: 30px;
    }
}

@media (min-width: 1181px) and (max-width: 1400px) {
    .side_share {
        right: 0;
        width: 55px;
        padding: 15px 0;
        border-radius: 4px 0 0 4px;
        -webkit-box-shadow: -5px 3px 10px rgba(0, 0, 0, 0.1);
        box-shadow: -5px 3px 10px rgba(0, 0, 0, 0.1);
        background-color: #fff;
    }
}

@media (max-width: 1180px) {
    .side_share {
        margin-top: 30px;
    }
}

@media (max-width: 640px) {
    .side_share {
        text-align: center;
    }
}

@media (min-width: 1181px) {
    .side_share a {
        display: block;
        margin-top: 14px;
    }
}

@media (max-width: 1180px) {
    .side_share a {
        display: inline-block;
        vertical-align: middle;
        padding-top: 5px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        border-radius: 50%;
        -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
        text-align: center;
        background-color: #fff;
    }
}

@media (min-width: 641px) and (max-width: 1180px) {
    .side_share a {
        margin-left: 15px;
    }

    .side_share a + a {
        margin-left: 12px;
    }
}

@media (max-width: 640px) {
    .side_share a {
        margin-left: 5px;
        margin-right: 5px;
    }
}

.side_share svg {
    width: 18px;
    height: 18px;
    fill: #808080;
}

.side_share a:hover svg {
    fill: #1dcad3;
}

.side_share span {
    font-size: 12px;
    color: #626262;
    text-transform: uppercase;
}

@media (min-width: 1181px) {
    .side_share span {
        display: inline-block;
    }
}

@media (max-width: 640px) {
    .side_share span {
        display: block;
        margin-bottom: 15px;
    }
}

@media (min-width: 1181px) {
    .side_share span::before {
        content: "";
        display: block;
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
        border-radius: 50%;
        background: url(../images/icon/icon_share.png) no-repeat center, #fff;
    }
}

@media (min-width: 1401px) {
    .side_share span::before {
        -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
        box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
    }
}

/*頁籤*/
.tab {
    margin-top: 30px;
    text-align: center;
}

.tab a {
    display: inline-block;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    color: #808080;
}

.tab a:hover,
.tab a.current {
    border-bottom-color: #1dcad3;
}

.tab a.current {
    color: #191919;
}

.tabContent {
    margin-top: 40px;
}

.tabContent .textEditor {
    margin: 0;
    padding: 0;
}

/*內頁_設施內容/開放時間*/
@media (min-width: 641px) {
    .facItemList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 1301px) {
    .facItemList {
        margin-top: 40px;
    }
}

@media (max-width: 1300px) {
    .facItemList {
        margin-top: 15px;
    }
}

.facItemList li {
    position: relative;
    min-height: 50px;
    padding: 0 30px 0 90px;
    font-size: 15px;
    color: #2a2a2a;
}

@media (min-width: 641px) {
    .facItemList li: not(: last-of-type) {
        border-right: 1px solid #e5e5e5;
    }
}

@media (min-width: 1301px) {
    .facItemList li {
        min-width: 20%;
    }
}

@media (min-width: 851px) and (max-width: 1300px) {
    .facItemList li {
        min-width: 30%;
    }
}

@media (min-width: 641px) and (max-width: 850px) {
    .facItemList li {
        min-width: 50%;
    }
}

@media (max-width: 640px) {
    .facItemList li {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 70px;
        font-size: 14px;
    }
}

@media (min-width: 641px) and (max-width: 1300px) {
    .facItemList li {
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .facItemList li + li {
        border-top: 1px solid #e5e5e5;
    }
}

.facItemList li img {
    position: absolute;
    left: 30px;
}

@media (min-width: 641px) {
    .facItemList li img {
        top: 0;
        width: 50px;
    }
}

@media (max-width: 640px) {
    .facItemList li img {
        top: 15px;
        width: 35px;
    }
}

.facItemList li span {
    display: block;
    margin-bottom: 3px;
    font-weight: 300;
    color: #959595;
}

.facItemList li a {
    display: inline-block;
}

.facItemList li a:hover {
    text-decoration: underline;
}

.facItemBox {
    position: relative;
    margin-top: 35px;
    font-size: 15px;
    font-weight: 300;
    color: #626262;
    background-color: #f8f8f8;
}

@media (min-width: 961px) {
    .facItemBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 1251px) {
    .facItemBox {
        padding: 15px 50px;
    }
}

@media (min-width: 1181px) and (max-width: 1250px) {
    .facItemBox {
        padding: 15px 25px;
    }
}

@media (min-width: 501px) and (max-width: 1180px) {
    .facItemBox {
        padding: 15px 40px;
    }
}

@media (max-width: 500px) {
    .facItemBox {
        padding: 15px 20px;
    }
}

@media (max-width: 960px) {
    .facItemBox {
        text-align: center;
    }
}

.facItemBox + .facItemBox {
    margin-top: 15px;
}

.facItemBox span {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: #191919;
}

@media (min-width: 961px) {
    .facItemBox span {
        margin-right: 30px;
    }
}

@media (min-width: 961px) {
    .facItemBox span::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        width: 55px;
        height: 55px;
        margin-right: 18px;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

.facItemBox.time span::before {
    background-image: url(../images/icon/icon_clock.png);
}

.facItemBox.price span::before {
    background-image: url(../images/icon/icon_price.png);
}

@media (max-width: 500px) {
    .facItemBox.menuDownload {
        padding-left: 15px;
        padding-right: 10px;
    }
}

.facItemBox.menuDownload span::before {
    background-image: url(../images/icon/icon_dining.png);
}

.facItemBox.menuDownload a {
    display: inline-block;
    margin-right: 25px;
    border-bottom: 2px solid transparent;
}

.facItemBox.menuDownload a: not(: last-of-type)::after {
    content: "|";
    position: relative;
    right: -13px;
    color: #c9c9c9;
}

.facItemBox.menuDownload a:hover {
    border-bottom-color: #1dcad3;
}

.facItemBox .txt {
    padding-top: 12px;
    padding-bottom: 5px;
    line-height: 1.8;
}

.facItemBox .txt b {
    font-weight: 400;
    color: #000;
}

.facItemBox + .textEditor {
    margin-top: 55px;
}

/*內頁_按鈕360/相簿*/
.url360Btn,
.albumBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 68px;
    height: 68px;
    padding: 0 10px;
    font-size: 12px;
}

.url360Btn svg,
.albumBtn svg {
    display: block;
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.url360Btn:hover,
.albumBtn:hover {
    color: #fff;
    background-color: #ec652c;
}

.url360Btn:hover svg,
.albumBtn:hover svg {
    fill: #fff;
}

.url360Btn {
    color: #000;
    background-color: #eee;
}

.url360Btn svg {
    fill: #626262;
}

.albumBtn {
    color: #fff;
    background-color: #1dcad3;
}

.albumBtn svg {
    fill: #fff;
}

/*標籤*/
.tagBox {
    padding: 0;
}

.tagBox ul {
    padding: 10px 0;
}

.tagBox li {
    display: inline-block;
    margin-bottom: 5px;
}

.tagBox a {
    position: relative;
    display: block;
    margin-top: 12px;
    margin-right: 3px;
    padding: 0 8px;
    border: 1px solid #b5b5b5;
    font-size: 10px;
    color: #626262;
    line-height: 25px;
}

.tagBox a:hover,
.tagBox a.current {
    border-color: #ec652c;
    color: #fff;
    background-color: #ec652c;
}

/*頁碼*/
.pageBox {
    padding: 10px;
    margin-top: 20px;
}

@media (min-width: 641px) {
    .pageBox {
        text-align: right;
    }
}

@media (max-width: 640px) {
    .pageBox {
        text-align: center;
    }
}

.pageBox a {
    display: inline-block;
    vertical-align: middle;
    margin: 5px 5px 0;
    font-size: 13px;
    font-family: "Roboto", Arial, "Noto Sans KR", "微軟正黑體", Helvetica,
        Heiti TC, "メイリオ", sans-serif;
    text-align: center;
    color: #808080;
}

.pageBox .page {
    border-bottom: 1px solid transparent;
}

.pageBox .page.current {
    color: #1dcad3;
    border-bottom-color: #1dcad3;
}

.pageBox .page:hover {
    color: #1dcad3;
}

.pageBox .firstPage,
.pageBox .prevPage,
.pageBox .nextPage,
.pageBox .lastPage {
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    color: #eadacb;
    letter-spacing: -1px;
    background-color: #ec652c;
}

.pageBox .firstPage:hover,
.pageBox .prevPage:hover,
.pageBox .nextPage:hover,
.pageBox .lastPage:hover {
    background-color: #1dcad3;
}

/*側邊_相簿*/
.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;
    -webkit-box-shadow: 2px 2px 5px #c3c3c3;
    box-shadow: 2px 2px 5px #c3c3c3;
}

.side_album a img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/**箭頭**/
.arrowPrev,
.arrowNext {
    position: relative;
    z-index: 10;
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.arrowPrev::before,
.arrowNext::before {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.arrowPrev::before {
    left: calc(50% - 5px);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.arrowNext::before {
    right: calc(50% - 5px);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.arrowTxtPrev,
.arrowTxtNext {
    position: relative;
    z-index: 10;
    display: block;
    width: 90px;
    height: 30px;
    line-height: 30px;
    font-size: 13px;
    font-family: "Cardo", "Noto Sans KR", "微軟正黑體", Helvetica, Heiti TC,
        "メイリオ", sans-serif;
    color: #555;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.arrowTxtPrev::before,
.arrowTxtNext::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: #555;
}

.arrowTxtPrev::after,
.arrowTxtNext::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border-top: 1px solid #555;
}

.arrowTxtPrev:hover,
.arrowTxtNext:hover {
    color: #1dcad3;
}

.arrowTxtPrev:hover::before,
.arrowTxtNext:hover::before {
    background-color: #1dcad3;
}

.arrowTxtPrev:hover::after,
.arrowTxtNext:hover::after {
    border-color: #1dcad3;
}

.arrowTxtNext {
    padding-right: 40px;
}

.arrowTxtNext::before {
    right: 0;
}

.arrowTxtNext::after {
    right: 0;
    border-right: 1px solid #555;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.arrowTxtPrev {
    padding-left: 40px;
}

.arrowTxtPrev::before {
    left: 0;
}

.arrowTxtPrev::after {
    left: 0;
    border-left: 1px solid #555;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/**dots**/
.mainArea .slick-dotted.slick-slider {
    margin-bottom: 0;
}

ul.dots {
    position: relative;
    z-index: 5;
    margin: 0;
    padding: 0;
    text-align: center;
}

ul.dots li {
    padding: 0;
    position: relative;
    display: inline-block;
    margin: 0 4px;
}

ul.dots li button {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid #d2d2d2;
    font-size: 0;
    color: transparent;
    background: transparent;
    cursor: pointer;
}

ul.dots li.slick-active button,
ul.dots li:hover button {
    border-color: #1dcad3;
    background: #1dcad3;
}

.dotsBox.circle ul.dots li button {
    border-radius: 50%;
}

.dotsBox.circle ul.dots li button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
    width: 0;
    height: 1px;
    background-color: #ccc;
}

.dotsBox.circle ul.dots li.slick-active button {
    margin-right: 16px;
}

.dotsBox.circle ul.dots li.slick-active button::before {
    width: 10px;
}

/**audioBox**/
.audioBox {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 50;
    display: block !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.15);
    background-color: #ec652c;
}

@media (max-width: 1180px) {
    .audioBox {
        bottom: 60px;
    }
}

.audioBox .youtube {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.audioBox img {
    width: 100%;
    opacity: 0;
}

.audioBox a {
    display: block;
    color: #fff;
}

.music_player {
    position: relative;
    width: 40px;
    height: 40px;
    color: #ecb157;
    cursor: pointer;
}

.music_player .stopmusic {
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    opacity: 0;
}

.music_player .show {
    opacity: 1;
}

.music_player .hide {
    opacity: 0;
}

.music_player .box1,
.music_player .box2,
.music_player .box3 {
    position: absolute;
    bottom: 30%;
    width: 2px;
    display: inline-block;
    vertical-align: middle;
    background: #ecb157;
}

.music_player .box1 {
    left: calc(50% - 5px);
    -webkit-animation: box1 2s infinite;
    animation: box1 2s infinite;
}

.music_player .box2 {
    left: calc(50% - 1px);
    -webkit-animation: box1 2s -1.5s infinite;
    animation: box1 2s -1.5s infinite;
}

.music_player .box3 {
    left: calc(50% + 3px);
    -webkit-animation: box1 2s -1s infinite;
    animation: box1 2s -1s infinite;
}

@-webkit-keyframes box1 {
    0% {
        height: 45%;
    }

    20% {
        height: 10%;
    }

    40% {
        height: 30%;
    }

    60% {
        height: 20%;
    }

    80% {
        height: 15%;
    }

    100% {
        height: 35%;
    }
}

@keyframes box1 {
    0% {
        height: 45%;
    }

    20% {
        height: 10%;
    }

    40% {
        height: 30%;
    }

    60% {
        height: 20%;
    }

    80% {
        height: 15%;
    }

    100% {
        height: 35%;
    }
}

/**********適應性**********/
@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%;
    }
}

/***Hover效果1: 放大淡出***/
.imh_opacity {
    background-color: #000;
    overflow: hidden;
}

.imh_opacity img {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.imh_opacity a {
    display: block;
    width: 100%;
    height: 100%;
}

.imh_opacity:hover img {
    opacity: 0.8;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/***Hover效果1: 放大淡出Detail***/
.imh_detail {
    background-color: #000;
    overflow: hidden;
}

.imh_detail img {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    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;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.imh_detail:hover a::before {
    opacity: 1;
    margin-top: -20px;
}

.imh_detail:hover img {
    opacity: 0.3;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/***Hover效果1: 放大淡出zoom***/
.imh_zoom {
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.imh_zoom img {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    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;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.imh_zoom:hover a::before {
    top: 50%;
}

.imh_zoom:hover img {
    opacity: 0.3;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

@media (max-width: 1180px) {
    .fb_dialog iframe {
        bottom: 52px !important;
        right: 0 !important;
    }

    .fb_iframe_widget iframe {
        bottom: 75px !important;
    }
}

.textEditor em {
    font-style: italic;
}
