@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=Raleway:300,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500&family=Noto+Serif+TC:wght@300;400;500&family=Roboto:wght@400;500&display=swap");
.mClassLink > ul, .mClassLink .main, .classRowBox > ul a {
	box-sizing: border-box;
}

.pageBox.number a.firstBtn::before, .pageBox.number a.firstBtn::after, .pageBox.number a.lastBtn::before, .pageBox.number a.lastBtn::after, .pageBox a.prevBtn::before, .pageBox a.nextBtn::before, .classColumnBox, .classRowBox, .goTop, .footer .hotelInfoArea .infoItem .Img img, .m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after, .m_menu .controlBox a.main span, .moduleBox .moduleClose, .moduleBox .moduleWrap {
	transition: all 0.5s;
}

body {
	background-color: #fff;
	color: #3f3f3f;
	font-size: 15px;
	font-family: "Noto Sans Tc", Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
	scroll-behavior: smooth;
}
body.overflow {
	overflow: hidden;
}

address {
	font-style: normal;
}

a {
	color: #3f3f3f;
	cursor: pointer;
	transition: all 0.4s ease;
}
@media (min-width: 1181px) {
	a:hover {
		color: #bc9753;
	}
}

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

[class*=col-] {
	float: left;
}

.col-1 {
	width: 100%;
}
.col-2 {
	width: 50%;
}
.col-3 {
	width: 33.33%;
}
.col-4 {
	width: 25%;
}
.col-5 {
	width: 20%;
}
@media (max-width: 480px) {
	.col-1, .col-2, .col-3, .col-4, .col-5 {
		float: none;
		width: 100%;
	}
}

.btn {
	border: 1px solid #bc9753;
	background-color: #bc9753;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 1px;
	padding: 16px 75px;
	position: relative;
	text-align: center;
}
@media (min-width: 1181px) {
	.btn:hover {
		background-color: transparent;
		color: #bc9753;
	}
}
.btn_color1 {
	color: #fff;
	background-color: #ff9b34;
}
@media (min-width: 1181px) {
	.btn_color1:hover {
		background-color: #262626;
	}
}
.btn_color2 {
	color: #fff;
	background-color: #A0A0A0;
}
@media (min-width: 1181px) {
	.btn_color2:hover {
		background-color: #999;
	}
}

input[type=text],
input[type=password],
select,
textarea,
button {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-color: transparent;
	border: none;
	border-radius: 0;
	font-size: 16px;
	outline: none;
	padding: 0;
	margin: 0;
}

textarea {
	resize: vertical;
}

.outerWrap {
	overflow: hidden;
	position: relative;
	padding-top: 90px;
}
@media (max-width: 1180px) {
	.outerWrap {
		padding-top: 64px;
	}
}
@media (max-width: 768px) {
	.outerWrap {
		padding-top: 60px;
	}
}

.wrap {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
@media (max-width: 1440px) {
	.wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/*module*/
.moduleBox {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1005;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-pack: center;
	    justify-content: center;
	width: 100%;
	height: 100%;
	padding-left: 20px;
	padding-right: 20px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition-property: top, opacity, visibility;
	transition-duration: 0.5s;
	transition-timing-function: ease-in-out;
}
.moduleBox.show {
	opacity: 1;
	visibility: visible;
}
.moduleBox.show .moduleWrap {
	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}
.moduleBox .moduleWrap {
	position: relative;
	width: 100%;
	max-width: 960px;
	background-color: #fff;
	pointer-events: auto;
	padding-top: 60px;
	opacity: 0;
	-webkit-transform: translateY(30px);
	        transform: translateY(30px);
}
@media (max-width: 480px) {
	.moduleBox .moduleWrap {
		padding-top: 80px;
	}
}
.moduleBox .moduleContent {
	width: 100%;
	max-height: calc(90vh - 50px);
	overflow-y: auto;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
}
.moduleBox .moduleClose {
	width: 50px;
	height: 50px;
	background: none;
	background-color: #bc9753;
	border: none;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
.moduleBox .moduleClose::before, .moduleBox .moduleClose::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -15px;
	margin-top: -0.5px;
	width: 30px;
	height: 1px;
	background-color: #fff;
}
.moduleBox .moduleClose::before {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.moduleBox .moduleClose::after {
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
@media (min-width: 1181px) {
	.moduleBox .moduleClose:hover {
		background-color: #262626;
	}
}

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

/*購物車*/
.cartArea .moduleWrap {
	max-width: 480px;
}
.cartArea .countBox {
	margin-top: 10px;
	font-size: 13px;
	color: #333;
	text-align: center;
}
.cartArea .countBox b {
	font-size: 18px;
	color: #7ea830;
}
.cartArea .countBox b em {
	font-weight: 400;
	font-size: 12px;
	color: #7ea830;
}
.cartArea .goto_pay_btn {
	margin-left: 15px;
}
.cartArea .cartNote {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-pack: center;
	    justify-content: center;
	padding-bottom: 20px;
}
.cartArea .cartNote .en {
	font-size: 28px;
	letter-spacing: 0.01em;
	color: #1e1e1e;
	text-transform: uppercase;
}
.cartArea .cartNote .en span {
	color: #bc9753;
}
.cartArea .cartNote .text {
	font-size: 14px;
	letter-spacing: 0.05em;
	color: #373737;
}
.cartArea .cartNote .text b {
	padding-left: 4px;
	padding-right: 4px;
	font-weight: 400;
	font-size: 18px;
	color: #bc9753;
}
.cartArea .cart {
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-top: 1px solid rgba(121, 121, 121, 0.2);
	border-bottom: 1px solid rgba(121, 121, 121, 0.2);
}
.cartArea .buyList li {
	display: -ms-flexbox;
	display: flex;
}
.cartArea .buyList li:not(:first-child) {
	padding-top: 12px;
	margin-top: 12px;
	border-top: 1px solid #d5d5d5;
}
.cartArea .buyList .Img {
	width: 90px;
}
.cartArea .buyList .Img img {
	display: block;
	width: 100%;
}
.cartArea .buyList .Txt {
	position: relative;
	width: calc(100% - 90px);
	padding-top: 10px;
	padding-left: 15px;
	padding-right: 50px;
	box-sizing: border-box;
	font-size: 14px;
}
.cartArea .buyList h3 {
	width: 100%;
	margin-bottom: 3px;
}
.cartArea .buyList h3 a {
	display: block;
	color: #3f3f3f;
	font-size: 15px;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cartArea .buyList .spec {
	color: #6a6a6a;
	margin-bottom: 3px;
}
.cartArea .buyList .del {
	position: absolute;
	right: 0;
	top: 25px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-pack: center;
	    justify-content: center;
	width: 35px;
	height: 35px;
	border: none;
	background-color: #eee;
	border-radius: 50%;
	color: #5f5f5f;
	cursor: pointer;
	transition: all 0.5s;
}
@media (min-width: 1181px) {
	.cartArea .buyList .del:hover {
		background-color: #bc9753;
		color: #fff;
	}
}
.cartArea .buyList .del svg {
	width: 15px;
	height: 18px;
}

/*訂單查詢*/
.orderCheckArea .moduleWrap {
	max-width: 360px;
}
.orderCheckArea h4 {
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 16px;
	font-family: "微軟正黑體", "新細明體", sans-serif;
	color: #222;
	text-align: left;
}
.orderCheckArea input[type=text], .orderCheckArea input[type=password] {
	width: 100%;
	height: 40px;
	margin-bottom: 10px;
	padding: 5px;
	border: 2px solid #ccc;
}
.orderCheckArea a.btn {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 13px;
	color: #fff;
}

/*會員登入*/
.loginArea .moduleWrap {
	max-width: 360px;
}
.loginArea .forgetCheck,
.loginArea .resendCheck {
	display: none;
}
.loginArea input[type=text], .loginArea input[type=password] {
	display: block;
	width: 100%;
	height: 30px;
	padding: 5px;
	margin-bottom: 7px;
	border: 1px solid #ccc;
}
.loginArea .btn {
	/*送出按鈕*/
	margin-top: 15px;
	text-align: center;
}
.loginArea .btn a {
	display: inline-block;
	padding: 8px 15px;
	border-radius: 3px;
	font-size: 13px;
	color: #fff;
}
.loginArea .forget {
	clear: both;
	margin-top: 20px;
	font-size: 15px;
	color: #2f2f2f;
}
.loginArea .forget span {
	font-size: 13px;
	color: #e1e1e1;
}
.loginArea .forget strong a {
	font-weight: 400;
	color: #f93;
	text-decoration: underline;
}
.loginArea .forget b a {
	font-weight: 400;
	font-size: 18px;
	color: #09f;
	text-decoration: underline;
}
.loginArea .forgetCheck {
	display: none;
}
.loginArea .forgetCheck a.btn_relog {
	display: block;
	margin-bottom: 15px;
	font-size: 15px;
	color: #09f;
	text-align: center;
	text-decoration: underline;
}

/*搜尋*/
.searchArea .moduleWrap {
	max-width: 480px;
}
.searchArea .searchBox {
	margin: 30px 0;
	position: relative;
}
.searchArea .searchBox input {
	width: 100%;
	color: #eeeeee;
	display: block;
	font-weight: 500;
	letter-spacing: 0.5px;
	line-height: 1;
	border: 1px solid #e1e1e1;
	padding: 15px 55px 15px 15px;
}
.searchArea .searchBox input::-webkit-input-placeholder {
	color: #eeeeee;
	letter-spacing: 0.5px;
	line-height: 1;
}
.searchArea .searchBox input::-moz-placeholder {
	color: #eeeeee;
	letter-spacing: 0.5px;
	line-height: 1;
}
.searchArea .searchBox input:-ms-input-placeholder {
	color: #eeeeee;
	letter-spacing: 0.5px;
	line-height: 1;
}
.searchArea .searchBox input::-ms-input-placeholder {
	color: #eeeeee;
	letter-spacing: 0.5px;
	line-height: 1;
}
.searchArea .searchBox input::placeholder {
	color: #eeeeee;
	letter-spacing: 0.5px;
	line-height: 1;
}
.searchArea .searchBox a {
	width: 50px;
	height: 50px;
	background-color: #bc9753;
	color: #fff;
	display: block;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	font-size: 16px;
	line-height: 50px;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	text-align: center;
}
@media (min-width: 1181px) {
	.searchArea .searchBox a:hover {
		background-color: #262626;
	}
}

#closeCart,
#closePrice,
#closeInquiry {
	font-size: 18px;
	position: absolute;
	top: 8px;
	right: 10px;
}
@media (max-width: 480px) {
	#closeCart,
#closePrice,
#closeInquiry {
		font-size: 25px;
		top: 5px;
	}
}

/*訂單查詢*/
.orderCheckArea .moduleWrap {
	max-width: 360px;
}
.orderCheckArea h4 {
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 16px;
	font-family: "微軟正黑體", "新細明體", sans-serif;
	color: #222;
	text-align: left;
}
.orderCheckArea input[type=text], .orderCheckArea input[type=password] {
	width: 100%;
	height: 40px;
	margin-bottom: 10px;
	padding: 5px;
	border: 2px solid #ccc;
}
.orderCheckArea a.btn {
	display: inline-block;
	margin-top: 10px;
	padding: 10px 20px;
	border-radius: 4px;
	font-size: 13px;
	color: #fff;
}

/*會員登入*/
.loginArea .moduleWrap {
	max-width: 360px;
}
.loginArea .forgetCheck,
.loginArea .resendCheck {
	display: none;
}
.loginArea input[type=text], .loginArea input[type=password] {
	display: block;
	width: 100%;
	height: 30px;
	padding: 5px;
	margin-bottom: 7px;
	border: 1px solid #ccc;
}
.loginArea .btn {
	/*送出按鈕*/
	margin-top: 15px;
	text-align: center;
}
.loginArea .btn a {
	display: inline-block;
	padding: 8px 15px;
	border-radius: 3px;
	font-size: 13px;
	color: #fff;
}
.loginArea .forget {
	clear: both;
	margin-top: 20px;
	font-size: 15px;
	color: #2f2f2f;
}
.loginArea .forget span {
	font-size: 13px;
	color: #e1e1e1;
}
.loginArea .forget strong a {
	font-weight: 400;
	color: #f93;
	text-decoration: underline;
}
.loginArea .forget b a {
	font-weight: 400;
	font-size: 18px;
	color: #09f;
	text-decoration: underline;
}
.loginArea .forgetCheck {
	display: none;
}
.loginArea .forgetCheck a.btn_relog {
	display: block;
	margin-bottom: 15px;
	font-size: 15px;
	color: #09f;
	text-align: center;
	text-decoration: underline;
}

@-webkit-keyframes loadLine {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

@keyframes loadLine {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
@-webkit-keyframes loadLinelr {
	0% {
		left: 0;
	}
	100% {
		left: 100%;
	}
}
@keyframes loadLinelr {
	0% {
		left: 0;
	}
	100% {
		left: 100%;
	}
}
@-webkit-keyframes loadLinerl {
	0% {
		right: 0;
	}
	100% {
		right: 100%;
	}
}
@keyframes loadLinerl {
	0% {
		right: 0;
	}
	100% {
		right: 100%;
	}
}
/*loading*/
.loadingArea {
	width: 100%;
	height: 100vh;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
}
.loadingArea .bar {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.loadingArea .bar::before {
	content: "";
	width: 0;
	height: 50%;
	background-color: #bc9753;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}
.loadingArea .bar::after {
	content: "";
	width: 0;
	height: 50%;
	background-color: #bc9753;
	position: absolute;
	bottom: 0;
	right: 0;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}
.loadingArea.show .bar::before {
	-webkit-animation: loadLine 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, loadLinelr 2s 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	        animation: loadLine 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, loadLinelr 2s 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.loadingArea.show .bar::after {
	-webkit-animation: loadLine 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, loadLinerl 2s 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
	        animation: loadLine 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, loadLinerl 2s 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.loadingArea.close {
	background-color: transparent;
}

/*header*/
.header {
	width: 100%;
	border-top: 26px solid #333;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 50;
	/*menu*/
}
@media (max-width: 1180px) {
	.header {
		border-top: none;
	}
}
.header .wrap {
	max-width: 100%;
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	position: relative;
}
.header .wrap::before, .header .wrap::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #bc9753;
	display: block;
	position: absolute;
	left: 0;
	z-index: 1;
}
.header .wrap::before {
	top: 0;
}
.header .wrap::after {
	bottom: 0;
}
@media (max-width: 768px) {
	.header .wrap {
		padding: 0 10px;
	}
}
@media (max-width: 480px) {
	.header .wrap {
		padding: 0;
	}
}
.header .menuBox {
	position: relative;
	z-index: 2;
}
.header .menuBox .menu {
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
}
.header .menuBox .menu > li {
	position: relative;
}
.header .menuBox .menu > li > a {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 1px;
	padding: 25px 30px;
	position: relative;
}
.header .menuBox .menu > li > a.current {
	color: #bc9753;
}
@media (min-width: 1181px) {
	.header .menuBox .menu > li > a:hover {
		color: #bc9753;
	}
}
@media (max-width: 768px) {
	.header .menuBox .menu > li > a {
		padding: 23px 15px;
	}
}
@media (max-width: 480px) {
	.header .menuBox .menu > li > a {
		padding: 23px 9px;
	}
}
@media (max-width: 400px) {
	.header .menuBox .menu > li > a {
		padding: 23px 6px;
	}
}
@media (max-width: 360px) {
	.header .menuBox .menu > li > a {
		font-size: 13px;
		padding: 23px 5px;
	}
}
.header .menuBox .menu .submenu {
	width: 200%;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: none;
	padding: 0 6px;
	position: absolute;
	left: -50%;
	top: 100%;
	z-index: 99;
	text-align: center;
}
@media (max-width: 768px) {
	.header .menuBox .menu .submenu {
		width: 260px;
		left: 0;
	}
}
@media (max-width: 360px) {
	.header .menuBox .menu .submenu {
		left: -2px;
	}
}
.header .menuBox .menu .submenu a {
	display: block;
	padding: 10px;
	font-size: 15px;
	color: #3f3f3f;
}
.header .menuBox .menu .submenu a:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (min-width: 1181px) {
	.header .menuBox .menu .submenu a:hover {
		color: #bc9753;
	}
}

/*手機menu*/
.m_menu {
	width: 100%;
	box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
@media (max-width: 1180px) {
	.m_menu {
		display: block;
	}
}
.m_menu .mask {
	background-color: rgba(0, 0, 0, 0.6);
	width: 100%;
	height: 100%;
	display: none;
	padding-bottom: 60px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.m_menu .controlBox {
	height: 60px;
	-ms-flex-align: center;
	    align-items: center;
	background-color: #fff;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 99;
	padding-left: 20px;
}
.m_menu .controlBox a.main {
	width: 60px;
	height: 60px;
	position: relative;
}
.m_menu .controlBox a.main span {
	width: 26px;
	height: 2px;
	background-color: #111;
	display: block;
	margin-top: -0.5px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #111;
	display: block;
	position: absolute;
	left: 0;
}
.m_menu .controlBox a.main span:before {
	top: -7px;
}
.m_menu .controlBox a.main span:after {
	bottom: -7px;
}
.m_menu .controlBox a.main.show span {
	background-color: transparent;
}
.m_menu .controlBox a.main.show span:before {
	top: 0;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.m_menu .controlBox a.main.show span:after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.m_menu .controlBox .funcList {
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
	padding-left: 15px;
}
.m_menu .controlBox .funcList li {
	padding: 0 12px;
}
.m_menu .controlBox .funcList li a {
	font-size: 18px;
}
.m_menu .controlBox .logo {
	width: 200px;
}
.m_menu .controlBox .logo img {
	display: block;
	width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
@media (max-width: 374px) {
	.m_menu .controlBox .logo {
		width: 155px;
	}
}
.m_menu .hideBox {
	width: 100%;
	background-color: #fff;
	display: none;
	overflow-y: auto;
	padding: 60px 0;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 11;
	-webkit-overflow-scrolling: touch;
}
.m_menu .hideBox .topBox .nav {
	width: 100%;
}
.m_menu .hideBox .topBox .nav li {
	border-top: 1px solid rgba(121, 121, 121, 0.2);
}
.m_menu .hideBox .topBox .nav a {
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	position: relative;
	padding: 20px 10px;
}
.m_menu .hideBox .topBox .nav a img {
	margin-right: 15px;
}
.m_menu .hideBox .topBox .nav .dropDown > a::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 20px;
	font-family: FontAwesome;
}
.m_menu .hideBox .topBox .nav .submenu {
	display: none;
}
.m_menu .hideBox .topBox .nav .submenu a {
	padding: 10px 20px;
}
@media (min-width: 1181px) {
	.m_menu .hideBox .topBox .nav .submenu a:hover {
		background-color: #999;
	}
}
.m_menu .hideBox .bottomBox {
	-ms-flex-align: start;
	    align-items: flex-start;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	padding: 80px 20px 30px;
	position: relative;
}
.m_menu .hideBox .bottomBox::before {
	content: "";
	width: 284px;
	height: 334px;
	background: url("../images/health-top-deco2.png") center/contain no-repeat;
	opacity: 0.3;
	display: block;
	position: absolute;
	bottom: -50px;
	left: 30px;
	z-index: 1;
}
@media (max-width: 768px) {
	.m_menu .hideBox .bottomBox {
		-ms-flex-align: center;
		    align-items: center;
		-ms-flex-direction: column;
		    flex-direction: column;
		-ms-flex-pack: start;
		    justify-content: flex-start;
	}
}
@media (max-width: 640px) {
	.m_menu .hideBox .bottomBox::before {
		left: 5px;
	}
}
.m_menu .hideBox .bottomBox .infoList {
	position: relative;
	z-index: 2;
}
.m_menu .hideBox .bottomBox .infoList.cooperate {
	padding-left: 60px;
}
@media (max-width: 768px) {
	.m_menu .hideBox .bottomBox .infoList.cooperate {
		padding-top: 30px;
		padding-left: 0;
	}
}
.m_menu .hideBox .bottomBox .infoList .item {
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.5px;
}
.m_menu .hideBox .bottomBox .infoList .item:not(:last-child) {
	margin-bottom: 15px;
}
.m_menu .hideBox .bottomBox .infoList .item span {
	color: #669521;
	display: inline-block;
}
.m_menu .hideBox .bottomBox .infoList .item span.add {
	line-height: 1.2;
}
.m_menu .hideBox .bottomBox .infoList .item span.add a {
	margin-left: 0;
}
.m_menu .hideBox .bottomBox .infoList .item span.fax {
	margin-left: 20px;
	position: relative;
}
.m_menu .hideBox .bottomBox .infoList .item span.fax::before {
	content: "/";
	color: #939393;
	font-size: 12px;
	font-weight: 300;
	display: block;
	position: absolute;
	top: 2px;
	left: -15px;
}
.m_menu .hideBox .bottomBox .infoList .item span.email a {
	color: #669521;
	margin-left: 0;
}
.m_menu .hideBox .bottomBox .infoList .item span.noLink a {
	pointer-events: none;
}
.m_menu .hideBox .bottomBox .infoList .item span a {
	display: inline-block;
	margin-left: 5px;
}
@media (min-width: 1181px) {
	.m_menu .hideBox .bottomBox .infoList .item span a:hover {
		color: #b99846;
	}
}

/*banner*/
.bannerArea {
	clear: both;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.bannerArea .wrap {
	width: 100%;
	max-width: 100%;
	padding: 0;
}
.bannerArea .bannerBox img {
	display: block;
	width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.bannerArea .bannerItem {
	position: relative;
}
.bannerArea .bannerLink {
	display: block;
}

/*文字跑馬燈*/
.marqueeArea {
	padding: 15px 0;
	background-color: #061540;
}
.marqueeArea h2 {
	float: left;
	margin-right: 20px;
	font-weight: 400;
	font-size: 15px;
	color: #fff;
}
@media (max-width: 640px) {
	.marqueeArea h2 {
		display: none;
	}
}
.marqueeArea h2 em {
	margin-left: 5px;
}
.marqueeArea .marqueeBox {
	max-height: 30px;
	overflow: hidden;
}
.marqueeArea ul {
	overflow: hidden;
}
.marqueeArea li {
	line-height: 20px;
}
.marqueeArea .date {
	display: inline-block;
	vertical-align: top;
	margin-right: 10px;
	font-size: 13px;
	color: #dbdbdb;
}
@media (max-width: 640px) {
	.marqueeArea .date {
		display: none;
	}
}
.marqueeArea h3 {
	display: inline-block;
	vertical-align: top;
}
.marqueeArea h3 a {
	display: block;
	width: 100%;
	font-size: 15px;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*頁尾資訊*/
.footer {
	background-color: #1c1c1c;
}
.footer .hotelInfoArea {
	background-color: #1c1c1c;
	padding: 75px 0 40px;
}
@media (max-width: 1180px) {
	.footer .hotelInfoArea {
		padding: 50px 0 70px;
	}
}
.footer .hotelInfoArea .infoList {
	display: -ms-flexbox;
	display: flex;
	margin: 0 -10px;
}
@media (max-width: 1180px) {
	.footer .hotelInfoArea .infoList {
		-ms-flex-align: center;
		    align-items: center;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: column;
		    flex-direction: column;
		margin: 0;
	}
}
.footer .hotelInfoArea .infoItem {
	width: calc(100%/3);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	    align-items: center;
	padding: 0 10px;
}
.footer .hotelInfoArea .infoItem .Img {
	width: 95px;
	margin: 0 auto;
}
.footer .hotelInfoArea .infoItem .Img img {
	display: block;
	width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
@media (min-width: 1181px) {
	.footer .hotelInfoArea .infoItem .Img:hover img {
		-webkit-transform: scale(1.05);
		        transform: scale(1.05);
	}
}
.footer .hotelInfoArea .infoItem .Txt {
	width: calc(100% - 95px);
	min-height: 75px;
	padding-left: 50px;
	position: relative;
}
.footer .hotelInfoArea .infoItem .Txt::before {
	content: "";
	width: 1px;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.2);
	display: block;
	position: absolute;
	top: 0;
	left: 25px;
	z-index: 1;
}
.footer .hotelInfoArea .infoItem .Txt .title {
	font-size: 16px;
	font-weight: 300;
	font-family: "Noto Serif Tc", "新細明體", serif;
	line-height: 1.2;
	letter-spacing: 1px;
}
.footer .hotelInfoArea .infoItem .Txt .title a {
	color: #c9c8c8;
	display: block;
}
@media (min-width: 1181px) {
	.footer .hotelInfoArea .infoItem .Txt .title a:hover {
		color: #bc9753;
	}
}
.footer .hotelInfoArea .infoItem .Txt .detailList {
	margin-top: 15px;
}
.footer .hotelInfoArea .infoItem .Txt .detailList li {
	color: #9d9d9d;
	display: block;
	font-size: 13px;
	font-weight: 300;
	font-family: "Noto Serif Tc", "新細明體", serif;
	font-weight: 300;
	line-height: 1.2;
	letter-spacing: 0.5px;
}
.footer .hotelInfoArea .infoItem .Txt .detailList li:not(:last-child) {
	margin-bottom: 8px;
}
.footer .hotelInfoArea .infoItem .Txt .detailList li a {
	color: #9d9d9d;
}
@media (min-width: 1181px) {
	.footer .hotelInfoArea .infoItem .Txt .detailList li a:hover {
		color: #bc9753;
	}
}
@media (max-width: 1180px) {
	.footer .hotelInfoArea .infoItem {
		width: 100%;
		max-width: 390px;
		-ms-flex-pack: center;
		    justify-content: center;
		padding: 0;
	}
	.footer .hotelInfoArea .infoItem:not(:last-child) {
		margin-bottom: 25px;
	}
}
@media (max-width: 400px) {
	.footer .hotelInfoArea .infoItem .Img {
		display: none;
	}
	.footer .hotelInfoArea .infoItem .Txt {
		width: 100%;
		padding-left: 0;
	}
	.footer .hotelInfoArea .infoItem .Txt::before {
		display: none;
	}
}
.footer .footerInfo {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	color: #6b6b6b;
	display: -ms-flexbox;
	display: flex;
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	-ms-flex-pack: center;
	    justify-content: center;
	padding-top: 30px;
	padding-bottom: 60px;
	text-align: center;
}
.footer .footerInfo a {
	color: #6b6b6b;
}
@media (min-width: 1181px) {
	.footer .footerInfo a:hover {
		color: #bc9753;
	}
}
.footer .footerInfo .outerLink {
	color: #aaa;
	margin-left: 5px;
}
.footer .footerInfo .outerLink a {
	color: #aaa;
}
@media (min-width: 1181px) {
	.footer .footerInfo .outerLink a:hover {
		color: #bc9753;
	}
}
@media (max-width: 1180px) {
	.footer .footerInfo {
		padding-bottom: 30px;
	}
	.footer .footerInfo .outerLink {
		margin-left: 0;
	}
}

.privacyArea {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
	padding: 40px 0 25px;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 50;
	transition: all 0.6s 0.1s;
}
.privacyArea.check {
	opacity: 0;
	-webkit-transform: translateY(100%);
	        transform: translateY(100%);
}
.privacyArea .wrap {
	-ms-flex-align: start;
	    align-items: flex-start;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
}
.privacyArea .text {
	color: #fff;
	line-height: 1.5;
	letter-spacing: 0.5px;
}
.privacyArea .text a {
	color: #bc9753;
	display: inline-block;
	margin-top: 8px;
	text-decoration: underline;
}
@media (min-width: 1181px) {
	.privacyArea .text a:hover {
		color: #bc9753;
	}
}
.privacyArea .btnBox {
	margin-left: 25px;
}
.privacyArea .btnBox .btn {
	background-color: #bc9753;
	display: inline-block;
}
@media (min-width: 1181px) {
	.privacyArea .btnBox .btn:hover {
		background-color: #b99846;
	}
}
@media (max-width: 768px) {
	.privacyArea .wrap {
		-ms-flex-align: center;
		    align-items: center;
		-ms-flex-direction: column;
		    flex-direction: column;
		text-align: center;
	}
	.privacyArea .text {
		width: 100%;
	}
	.privacyArea .btn {
		margin-top: 25px;
		margin-left: 0;
	}
}

/*goTop*/
.goTop {
	width: 59px;
	height: 56px;
	background: url("../images/gotop.png") center/contain no-repeat;
	cursor: pointer;
	display: block;
	position: absolute;
	bottom: 60px;
	right: 75px;
	z-index: 100;
}
@media (min-width: 1181px) {
	.goTop:hover {
		-webkit-transform: scale(1.05);
		        transform: scale(1.05);
	}
}
@media (max-width: 1440px) {
	.goTop {
		bottom: -60px;
		right: 25px;
	}
}
@media (max-width: 1024px) {
	.goTop {
		bottom: -30px;
		right: 50%;
		-webkit-transform: translateX(50%);
		        transform: translateX(50%);
	}
}

/*手機快捷選單*/
.fixedQuickLink {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 5;
	width: 100%;
	background-color: #000;
}
@media (min-width: 1181px) {
	.fixedQuickLink {
		display: none;
	}
}
.fixedQuickLink ul {
	display: -ms-flexbox;
	display: flex;
}
.fixedQuickLink li {
	-ms-flex: 1;
	    flex: 1;
}
.fixedQuickLink li:not(:last-child) {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.fixedQuickLink a {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-pack: center;
	    justify-content: center;
	height: 55px;
	font-size: 13px;
	color: #fff;
}
.fixedQuickLink i {
	margin-bottom: 5px;
}

/*share*/
.social {
	display: inline-block;
	vertical-align: middle;
	width: 50%;
	margin-right: -4px;
}
@media (max-width: 480px) {
	.social {
		width: 100%;
	}
}
.social a {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	margin: 0 5px;
	font-size: 19px;
	color: #929292;
	text-align: center;
}
@media (min-width: 1181px) {
	.social a:hover {
		opacity: 0.8;
	}
}

.translateIbest {
	display: inline-block;
	vertical-align: middle;
}
.translateIbest .design {
	/*網頁設計‧愛貝斯*/
	display: block;
	line-height: 22px;
	font-size: 9pt;
	color: #000;
}
.translateIbest .design a {
	/*網頁設計‧愛貝斯*/
	color: #000;
	text-decoration: none;
}
@media (min-width: 1181px) {
	.translateIbest .design a:hover {
		text-decoration: underline;
	}
}

/*booking*/
.bookingArea {
	margin-top: -85px;
	position: relative;
	z-index: 2;
}
.bookingArea .wrap {
	display: -ms-flexbox;
	display: flex;
	padding: 0;
	background-color: #fff;
}
@media (max-width: 960px) {
	.bookingArea .wrap {
		-ms-flex-direction: column;
		    flex-direction: column;
		padding: 15px 20px;
	}
}
.bookingArea .title {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex: 3;
	    flex: 3;
	font-size: 15px;
	border-right: 1px solid #e6e6e6;
}
@media (max-width: 960px) {
	.bookingArea .title {
		display: none;
	}
}
.bookingArea .title i {
	margin-right: 15px;
	font-size: 20px;
}
.bookingArea .bookingList {
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 6;
	    flex: 6;
	padding: 20px;
}
@media (max-width: 960px) {
	.bookingArea .bookingList {
		-ms-flex: 1;
		    flex: 1;
		-ms-flex-direction: column;
		    flex-direction: column;
		padding: 0;
	}
}
@media (max-width: 960px) {
	.bookingArea .bookingList li {
		margin-bottom: 15px;
	}
}
.bookingArea .bookingList li:not(:first-child) {
	margin-left: 10px;
}
@media (max-width: 960px) {
	.bookingArea .bookingList li:not(:first-child) {
		margin-left: 0;
	}
}
.bookingArea .btn {
	-ms-flex: 3;
	    flex: 3;
}
@media (max-width: 960px) {
	.bookingArea .btn {
		-ms-flex: 1;
		    flex: 1;
	}
}
.bookingArea .btn a {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-pack: center;
	    justify-content: center;
	height: 100%;
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.2em;
	background-color: #bc9753;
}
@media (max-width: 960px) {
	.bookingArea .btn a {
		padding: 12px;
	}
}
.bookingArea input,
.bookingArea select {
	height: 45px;
	padding: 5px 10px;
	border: 1px solid #e6e6e6;
	font-size: 16px;
	font-family: "微軟正黑體";
}
@media (max-width: 960px) {
	.bookingArea input,
.bookingArea select {
		width: 100%;
	}
}

/*********內頁**********/
.mainArea {
	position: relative;
}
.mainArea.gap {
	padding: 60px 0;
}
@media (max-width: 1024px) {
	.mainArea.gap {
		padding: 40px 0;
	}
}

.contentBox {
	position: relative;
}
.contentBox.flex {
	display: -ms-flexbox;
	display: flex;
}
.contentBox.flex .leftBox {
	-ms-flex: 1;
	    flex: 1;
}
.contentBox.flex .rightBox {
	width: 360px;
	padding-left: 60px;
}
@media (max-width: 1024px) {
	.contentBox.flex {
		-ms-flex-direction: column;
		    flex-direction: column;
	}
	.contentBox.flex .leftBox {
		-ms-flex: auto;
		    flex: auto;
	}
	.contentBox.flex .rightBox {
		width: 100%;
		padding-top: 30px;
		padding-left: 0;
	}
}

.titleBox {
	color: #fff;
	position: relative;
	margin-bottom: 30px;
}
.titleBox.center {
	text-align: center;
}
.titleBox.black {
	color: #474747;
}
.titleBox.large .title {
	font-size: 32px;
}
.titleBox.large .titleEn {
	font-size: 15px;
	font-weight: 500;
}
.titleBox.flex {
	-ms-flex-align: end;
	    align-items: flex-end;
	display: -ms-flexbox;
	display: flex;
}
.titleBox.flex .title {
	margin-bottom: 0;
}
.titleBox.flex .titleEn {
	margin-bottom: 5px;
	margin-left: 10px;
}
.titleBox .title {
	font-size: 23px;
	font-weight: 500;
	font-family: "Noto Serif Tc", "新細明體", serif;
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}
.titleBox .titleEn {
	display: block;
	font-size: 12px;
	font-weight: 300;
	font-family: "Noto Serif Tc", "新細明體", serif;
	line-height: 1;
	letter-spacing: 0.5px;
}
@media (max-width: 640px) {
	.titleBox.large .title {
		font-size: 26px;
	}
}

.bread {
	color: #919191;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.25px;
	position: absolute;
	right: 10px;
	top: 25px;
}
@media (max-width: 768px) {
	.bread {
		display: none;
	}
}
.bread a {
	color: #919191;
}
@media (min-width: 1181px) {
	.bread a:hover {
		color: #bc9753;
	}
}
.bread span {
	color: #919191;
	padding: 0 5px;
}

/*文章標題*/
.articleTitle {
	border-bottom: 1px solid rgba(121, 121, 121, 0.2);
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 25px;
	padding: 10px 0 20px;
}

/*側邊標題字*/
.sectionTitle {
	border-bottom: 1px solid rgba(121, 121, 121, 0.2);
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 25px;
	padding: 10px 0 20px;
}

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

@-webkit-keyframes aniSlideLeft {
	0% {
		-webkit-transform: translateX(10px);
		        transform: translateX(10px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
		opacity: 1;
	}
}

@keyframes aniSlideLeft {
	0% {
		-webkit-transform: translateX(10px);
		        transform: translateX(10px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
		opacity: 1;
	}
}
/*類別*/
.classRowBox {
	position: relative;
	z-index: 3;
	margin-bottom: 30px;
	padding: 20px 0;
}
.classRowBox > ul {
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 1024px) {
	.classRowBox > ul {
		display: none;
	}
}
.classRowBox > ul li {
	margin-bottom: 10px;
	margin-right: 15px;
}
.classRowBox > ul a {
	display: block;
	padding: 10px 15px;
	font-size: 14px;
	color: #fff;
	background-color: #bc9753;
	border-radius: 17px;
	letter-spacing: 2px;
	text-align: center;
}
.classRowBox > ul a.current {
	background-color: #bc9753;
	color: #fff;
}
@media (min-width: 1181px) {
	.classRowBox > ul a:hover {
		background-color: #b99846;
		color: #fff;
	}
}

.classColumnBox {
	position: relative;
	z-index: 3;
}
@media (max-width: 1024px) {
	.classColumnBox > ul {
		display: none;
	}
}
.classColumnBox > ul > li > a {
	padding-top: 10px;
	padding-bottom: 10px;
	color: #010101;
}
.classColumnBox > ul ul {
	display: none;
	margin-bottom: 30px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.classColumnBox > ul ul li + li {
	border-top: 1px solid #ccc;
}
.classColumnBox > ul a {
	position: relative;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 14px;
	color: #777;
}
.classColumnBox > ul a.current {
	color: #bc9753;
}
@media (min-width: 1181px) {
	.classColumnBox > ul a:hover {
		color: #bc9753;
	}
}
.classColumnBox > ul .linkHasItems.open + ul {
	display: block;
}
.classColumnBox > ul .linkHasItems.open + ul > li {
	-webkit-animation: 0.5s aniSlideLeft both ease-out 0.3s;
	        animation: 0.5s aniSlideLeft both ease-out 0.3s;
}

.mClassLink {
	position: relative;
	z-index: 3;
}
@media (min-width: 1025px) {
	.mClassLink {
		display: none;
	}
}
.mClassLink.open > ul {
	display: block;
}
.mClassLink .main {
	position: relative;
	display: block;
	font-size: 16px;
	padding: 10px 30px 10px 10px;
	color: #fff;
	letter-spacing: 1px;
	cursor: pointer;
	background-color: #bc9753;
}
.mClassLink .main::before {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	z-index: 1;
	margin-top: -6px;
	line-height: 1;
	font-size: 15px;
	color: #fff;
	font-family: FontAwesome;
}
.mClassLink > ul {
	position: absolute;
	left: 0;
	top: calc(100% - 1px);
	z-index: 1;
	display: none;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.mClassLink > ul > li + li {
	border-top: 1px solid #f2f2f2;
}
.mClassLink > ul > li.current > a {
	color: #bc9753;
}
.mClassLink > ul a {
	position: relative;
	z-index: 1;
	display: block;
	padding: 14px 20px;
	color: #000;
	font-size: 14px;
	background-color: #fff;
}
.mClassLink ul {
	display: none;
}
.mClassLink .linkHasItems {
	position: relative;
	padding-right: 40px;
}
.mClassLink .linkHasItems::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 17px;
	z-index: 1;
	line-height: 1;
	margin-top: -7px;
	font-family: FontAwesome;
}
.mClassLink .linkHasItems.open::after {
	-webkit-transform: rotateX(180deg);
	        transform: rotateX(180deg);
}
.mClassLink .linkHasItems.open + ul {
	display: block;
}
.mClassLink .linkHasItems + ul {
	background-color: #efefef;
}
.mClassLink .linkHasItems + ul a {
	padding: 10px 5px 10px 30px;
	background-color: #efefef;
}
.mClassLink .linkHasItems + ul a.current {
	color: #bc9753;
}

.pageBox {
	-ms-flex-align: center;
	    align-items: center;
	border-top: 1px solid rgba(121, 121, 121, 0.2);
	padding: 40px 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.pageBox a {
	border: 1px solid #c2c2c2;
	color: #666;
	display: block;
	font-size: 15px;
}
.pageBox a.prevBtn::before, .pageBox a.nextBtn::before {
	content: "";
	width: 10px;
	height: 10px;
	border-left: 1px solid #9e9e9e;
	border-bottom: 1px solid #9e9e9e;
	display: block;
	position: absolute;
}
.pageBox a.prevBtn::before {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.pageBox a.nextBtn::before {
	-webkit-transform: rotate(-135deg);
	        transform: rotate(-135deg);
}
@media (min-width: 1181px) {
	.pageBox a:hover {
		border: 1px solid #bc9753;
		background-color: #bc9753;
		color: #fff;
	}
	.pageBox a:hover.prevBtn::before, .pageBox a:hover.nextBtn::before {
		border-left: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
}
.pageBox.number {
	-ms-flex-pack: center;
	    justify-content: center;
}
.pageBox.number.oval a {
	width: 50px;
}
.pageBox.number a {
	width: 30px;
	height: 30px;
	font-weight: 400;
	line-height: 30px;
	margin: 0 5px;
	position: relative;
	text-align: center;
}
.pageBox.number a.prevBtn::before, .pageBox.number a.nextBtn::before {
	margin: auto;
	top: 0;
	bottom: 0;
}
.pageBox.number a.prevBtn::before {
	left: 5px;
	right: 0;
}
.pageBox.number a.nextBtn::before {
	left: 0;
	right: 5px;
}
.pageBox.number a.firstBtn::before, .pageBox.number a.firstBtn::after, .pageBox.number a.lastBtn::before, .pageBox.number a.lastBtn::after {
	content: "";
	width: 10px;
	height: 10px;
	border-left: 1px solid #9e9e9e;
	border-bottom: 1px solid #9e9e9e;
	display: block;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
}
.pageBox.number a.firstBtn::before, .pageBox.number a.firstBtn::after {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.pageBox.number a.firstBtn::before {
	left: -2px;
	right: 0;
}
.pageBox.number a.firstBtn::after {
	left: 12px;
	right: 0;
}
.pageBox.number a.lastBtn::before, .pageBox.number a.lastBtn::after {
	-webkit-transform: rotate(-135deg);
	        transform: rotate(-135deg);
}
.pageBox.number a.lastBtn::before {
	left: 0;
	right: -2px;
}
.pageBox.number a.lastBtn::after {
	left: 0;
	right: 12px;
}
.pageBox.number a.current {
	border: 1px solid #bc9753;
	background-color: #bc9753;
	color: #fff;
}
@media (min-width: 1181px) {
	.pageBox.number a:hover.firstBtn::before, .pageBox.number a:hover.firstBtn::after, .pageBox.number a:hover.lastBtn::before, .pageBox.number a:hover.lastBtn::after {
		border-left: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
}
.pageBox.prevnext {
	-ms-flex-pack: justify;
	    justify-content: space-between;
}
.pageBox.prevnext a {
	width: 180px;
	height: 45px;
	font-weight: 300;
	line-height: 45px;
	padding: 0 20px;
	position: relative;
}
.pageBox.prevnext a.prevBtn::before, .pageBox.prevnext a.nextBtn::before {
	top: calc(50% - 5px);
}
.pageBox.prevnext a.prevBtn {
	text-align: right;
}
.pageBox.prevnext a.prevBtn::before {
	left: 15px;
}
.pageBox.prevnext a.nextBtn {
	margin-left: auto;
	text-align: left;
}
.pageBox.prevnext a.nextBtn::before {
	right: 15px;
}
@media (max-width: 768px) {
	.pageBox.prevnext a {
		width: 125px;
		padding: 0 15px;
	}
}
@media (max-width: 640px) {
	.pageBox.prevnext a {
		width: calc(100%/2 - 15px);
	}
}
@media (max-width: 480px) {
	.pageBox.prevnext a {
		width: calc(100%/2 - 10px);
	}
}
.pageBox.prevnext.circle a {
	width: 45px;
	padding: 0;
}
.pageBox.prevnext.circle a span {
	display: none;
}
.pageBox.prevnext.circle a.prevBtn::before {
	left: calc(50% - 3px);
}
.pageBox.prevnext.circle a.nextBtn::before {
	right: calc(50% - 3px);
}
.pageBox.circle a {
	border-radius: 50%;
	overflow: hidden;
}
.pageBox.oval a {
	border-radius: 30px;
	overflow: hidden;
}

/*標籤*/
.tagBox {
	padding: 20px 0;
}
.tagBox b {
	display: inline-block;
	margin-right: 10px;
}
.tagBox ul {
	display: inline-block;
}
.tagBox li {
	display: inline-block;
	margin-bottom: 5px;
}
.tagBox a {
	position: relative;
	display: block;
	margin: 0 3px;
	padding: 5px 10px;
	border: 1px solid #bc9753;
	font-size: 13px;
	color: #bc9753;
}
@media (min-width: 1181px) {
	.tagBox a:hover {
		color: #fff;
		background-color: #bc9753;
	}
}
.tagBox a.current {
	color: #fff;
	background-color: #bc9753;
}
.tagBox a.current:before {
	content: "";
	margin-right: 5px;
	font-family: FontAwesome;
	font-size: 12px;
}

/*頁籤*/
.tab {
	margin-top: 40px;
}
.tab a {
	display: block;
	float: left;
	padding: 12px 10px;
	font-size: 15px;
	color: #1c1c1c;
}
.tab a.current {
	border: 1px solid #c0c0c0;
	border-top: 1px solid #c0c0c0;
	border-bottom: 1px solid #f8f3f0;
	box-shadow: inset 0 3px 5px -2px #cecece;
}

/*頁籤內容*/
.tabContent {
	margin-top: -1px;
	padding: 20px 5px;
	border-top: 1px solid #d6d6d6;
}
.tabContent > li {
	display: none;
}
.tabContent .textEditor {
	margin: 0;
}
.tabContent .sectionTitle {
	display: none;
}

/*側邊_menu*/
.side_menu {
	margin-bottom: 50px;
}
.side_menu li {
	position: relative;
	border-bottom: 1px solid #e1e1e1;
}
.side_menu li > a {
	display: block;
	padding: 10px 15px;
	font-size: 14px;
}
.side_menu li > a.current {
	color: #fff;
	background-color: #8c8c8c;
}
.side_menu li > a b {
	margin-left: 10px;
	font-weight: 400;
	font-size: 13px;
	color: #808080;
}
.side_menu dl {
	padding-left: 25px;
}
.side_menu dl a {
	display: block;
	padding: 10px 15px;
	font-size: 14px;
}
.side_menu dl a.current {
	color: #000;
	text-decoration: underline;
}

/*側邊_相簿*/
.side_album {
	margin-top: 30px;
	margin-bottom: 30px;
	margin-right: -10px;
}
.side_album li {
	float: left;
	width: 33.33%;
	padding: 0 10px 10px 0;
}
.side_album a {
	display: block;
	box-shadow: 2px 2px 5px #c3c3c3;
}
.side_album a img {
	display: block;
	width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

/*側邊_線上訂房*/
.side_booking {
	margin-bottom: 30px;
}
.side_booking a {
	display: block;
	border-radius: 4px;
	box-shadow: 0 1px 1px #8d2121;
	font-weight: bold;
	font-size: 25px;
	color: #fff;
	background-color: #f05b8f;
}
.side_booking a i {
	display: inline-block;
	font-size: 28px;
	padding: 10px 15px;
	margin-right: 15px;
	border-right: 1px solid #d33434;
	box-shadow: 1px 0 #f38a8a;
}
@media (min-width: 1181px) {
	.side_booking a:hover {
		box-shadow: inset 0 3px 3px #8d2121;
	}
}

/*側邊_聯絡資訊*/
.side_contactInfo li {
	margin-bottom: 20px;
}
.side_contactInfo a {
	-ms-flex-align: center;
	    align-items: center;
	color: #eeeeee;
	display: -ms-inline-flexbox;
	display: inline-flex;
	line-height: 1.2;
	letter-spacing: 0.5px;
}
@media (min-width: 1181px) {
	.side_contactInfo a:hover {
		color: #bc9753;
	}
}
.side_contactInfo i {
	display: inline-block;
	vertical-align: middle;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	width: 35px;
	height: 35px;
	line-height: 35px;
	margin-right: 8px;
	border: 1px solid #bc9753;
	border-radius: 50%;
	font-size: 20px;
	color: #bc9753;
	text-align: center;
}
.side_contactInfo b {
	display: inline-block;
	vertical-align: middle;
	font-weight: 400;
}

/*側邊_房型*/
.side_room {
	margin-bottom: 50px;
}
.side_room .Img img {
	display: block;
	width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.side_room .Txt {
	margin-top: 5px;
}
.side_room .Txt p {
	max-height: 100px;
	font-size: 13px;
	color: #858383;
	line-height: 1.8;
	overflow: hidden;
}
.side_room h3 a {
	font-size: 16px;
	font-weight: 400;
}

/*側邊_分享*/
.side_share {
	-ms-flex-align: center;
	    align-items: center;
	display: none;
	-ms-flex-pack: center;
	    justify-content: center;
	margin: 0 -10px;
}
.side_share a {
	height: 50px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
	color: #fff;
	display: block;
	-ms-flex: 1;
	    flex: 1;
	line-height: 50px;
	letter-spacing: 0.5px;
	margin: 0 10px;
	text-align: center;
}
.side_share a.line {
	background-color: #00b900;
}
.side_share a.fb {
	background: #3a5898;
}
@media (max-width: 1024px) {
	.side_share {
		display: -ms-flexbox;
		display: flex;
	}
}
@media (max-width: 480px) {
	.side_share {
		-ms-flex-direction: column;
		    flex-direction: column;
		margin: 0;
	}
	.side_share a {
		width: 100%;
		margin: 0 auto;
	}
	.side_share a.line {
		margin-bottom: 15px;
	}
}

/*側邊_其他相關訊息*/
.side_news {
	margin: 30px 0;
}
.side_news .sideNewsLink {
	margin-top: 20px;
}
.side_news .sideNewsItem {
	margin-bottom: 25px;
}
.side_news .item {
	display: -ms-flexbox;
	display: flex;
}
.side_news .Img {
	width: 80px;
	height: 80px;
}
.side_news .Img img {
	-webkit-transform: scale(1.02);
	        transform: scale(1.02);
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.side_news .Txt {
	width: calc(100% - 80px);
	padding-top: 5px;
	padding-left: 15px;
}
.side_news .Txt .date .day {
	font-size: 18px;
	line-height: 1;
	margin-right: 5px;
}
.side_news .Txt .date .my {
	display: -ms-flexbox;
	display: flex;
}
.side_news .Txt .date .my span {
	font-weight: 500;
}
.side_news .Txt .date .my span.year {
	margin-left: 5px;
	padding-top: 0;
}
.side_news .Txt .title {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.side_news .Txt .title a {
	display: block;
}

/*title*/
.titleStyle1 {
	padding-bottom: 10px;
	font-weight: 400;
	font-size: 24px;
	color: #000;
	text-align: center;
	letter-spacing: 0.05em;
}

/*button*/
.btn1.center {
	text-align: center;
}
.btn1.full a {
	width: 100%;
}
.btn1 a {
	position: relative;
	z-index: 1;
	display: inline-block;
	min-width: 190px;
	text-align: center;
	padding: 13px 30px;
	font-size: 14px;
	letter-spacing: 0.01em;
	color: #fff;
	background-color: #0e0e0e;
	border: 1px solid #0e0e0e;
}
.btn1 a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	width: 0;
	height: 100%;
	background-color: #bc9753;
	transition: all 0.4s ease-in-out;
}
@media (min-width: 1181px) {
	.btn1 a:hover {
		border-color: #bc9753;
	}
	.btn1 a:hover::after {
		right: auto;
		left: 0;
		width: 100%;
	}
}
.btn1 a.white {
	background-color: #fff;
	border: 1px solid #68a9b1;
	color: #68a9b1;
}
.btn1 a.white::after {
	background-color: #68a9b1;
}
@media (min-width: 1181px) {
	.btn1 a.white:hover {
		color: #fff;
	}
}

/*滑動解鎖*/
.captchaArea {
	position: relative;
	width: 200px;
	height: 50px;
	background-color: #ddd;
}
.captchaArea.unlocking .sliderBtn {
	transition: none;
}
.captchaArea .note {
	position: absolute;
	top: 17px;
	right: 30px;
	z-index: 1;
	font-size: 15px;
	text-align: center;
	font-family: "微軟正黑體";
	color: #777;
	letter-spacing: 1px;
	pointer-events: none;
}

.sliderBtn {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 50px;
	height: 50px;
	border: none;
	outline: none;
	background-color: RoyalBlue;
	cursor: pointer;
	transition: all 0.3s linear;
}
.sliderBtn::before {
	content: "";
	position: absolute;
	top: 13px;
	left: 23px;
	color: #fff;
	font-size: 24px;
	font-family: FontAwesome;
	pointer-events: none;
}

/*Hover效果1: 放大淡出*/
.imh_opacity {
	background-color: #000;
	overflow: hidden;
}
.imh_opacity img {
	transition: all 0.3s linear;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
@media (min-width: 1181px) {
	.imh_opacity:hover img {
		opacity: 0.8;
		-webkit-transform: scale(1.05);
		        transform: scale(1.05);
	}
}

/*Hover效果1: 放大淡出Detail*/
.imh_detail {
	background-color: #000;
	overflow: hidden;
}
.imh_detail img {
	transition: all 0.3s linear;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.imh_detail a:before {
	content: "Details+";
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 99;
	margin-left: -45px;
	margin-top: -80px;
	display: block;
	padding: 10px 20px;
	font-size: 13px;
	color: #fff;
	border: 2px solid #fff;
	opacity: 0;
	transition: all 0.3s ease;
}
@media (min-width: 1181px) {
	.imh_detail:hover a:before {
		opacity: 1;
		margin-top: -20px;
	}
	.imh_detail:hover img {
		opacity: 0.3;
		-webkit-transform: scale(1.05);
		        transform: scale(1.05);
	}
}

/*Hover效果1: 放大淡出zoom*/
.imh_zoom {
	position: relative;
	background-color: #000;
	overflow: hidden;
}
.imh_zoom img {
	transition: all 0.3s linear;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.imh_zoom a:before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: -30px;
	margin-top: -20px;
	margin-left: -20px;
	z-index: 99;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	font-size: 18px;
	color: #fff;
	font-family: FontAwesome;
	text-align: center;
	background-color: #000;
	transition: all 0.4s ease;
}
@media (min-width: 1181px) {
	.imh_zoom:hover a:before {
		top: 50%;
	}
	.imh_zoom:hover img {
		opacity: 0.3;
		-webkit-transform: scale(1.05);
		        transform: scale(1.05);
	}
}

/*最新消息icon*/
.newIcon {
	/*分類小圖示*/
	display: inline-block;
	margin-right: 3px;
	padding: 3px 5px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 400;
	font-family: "微軟正黑體";
	color: #fff;
}
/*# sourceMappingURL=master.css.map */