@charset "UTF-8";
@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");
.historyArea .historyBox .tabBox .secList .secItem, .historyArea .historyBox .tabBox .arrow::before, .historyArea .historyBox .historyInner, .historyArea .historyBox .historyClass li, .newsArea .arrow::before, .hotelArea .hotelDetail .detailList, .hotelArea .hotelTab .tabList .title, .hotelArea .hotelTab .tabList .Img img, .hotelArea .hotelInner, .linkArea .linkList .Txt, .linkArea .linkList .logo, .linkArea .linkList .Img img, .linkArea .linkList .linkItem::before, .bannerArea .bannerItem .Txt .textBox::before {
	transition: all 0.5s;
}

.historyArea .historyBox .historyClass::-webkit-scrollbar-track, .hotelArea .hotelTab .tabList::-webkit-scrollbar-track {
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
	background-color: #e1e1e1;
	border-radius: 3px;
}
.historyArea .historyBox .historyClass::-webkit-scrollbar, .hotelArea .hotelTab .tabList::-webkit-scrollbar {
	width: 3px;
	height: 3px;
	background-color: #e1e1e1;
}
.historyArea .historyBox .historyClass::-webkit-scrollbar-thumb, .hotelArea .hotelTab .tabList::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background: #bc9753;
}

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

@keyframes bannerTxtAnimation {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10px);
		        transform: translateY(10px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes bannerLineAnimation {
	0% {
		padding-bottom: 0;
	}
	100% {
		padding-bottom: 45%;
	}
}
@keyframes bannerLineAnimation {
	0% {
		padding-bottom: 0;
	}
	100% {
		padding-bottom: 45%;
	}
}
@-webkit-keyframes progressBarHorizontal {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
@keyframes progressBarHorizontal {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
@-webkit-keyframes progressBarVertical {
	0% {
		height: 0;
	}
	100% {
		height: 100%;
	}
}
@keyframes progressBarVertical {
	0% {
		height: 0;
	}
	100% {
		height: 100%;
	}
}
@-webkit-keyframes progressCircleAnimation {
	0% {
		stroke-dashoffset: 153.86;
	}
	100% {
		stroke-dashoffset: 0;
	}
}
@keyframes progressCircleAnimation {
	0% {
		stroke-dashoffset: 153.86;
	}
	100% {
		stroke-dashoffset: 0;
	}
}
@-webkit-keyframes bannerScrollAnimation {
	0% {
		height: 0;
	}
	50% {
		height: 100%;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	100% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
}
@keyframes bannerScrollAnimation {
	0% {
		height: 0;
	}
	50% {
		height: 100%;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	100% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
}
@-webkit-keyframes rotate {
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
@keyframes rotate {
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
.popWin {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 500;
	width: 100%;
	height: 100vh;
	font-size: 15px;
	line-height: 1.8;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	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;
	transition: all 0.7s;
}
.popWin .inner {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 700px;
	max-width: 90%;
	max-height: 85vh;
	opacity: 0;
	background-color: #fff;
	transition: all 0.7s;
}
.popWin .popContent {
	max-height: 85vh;
	overflow-y: auto;
}
.popWin img {
	display: block;
	max-width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.popWin .Txt {
	padding: 30px;
}
.popWin .Txt .popTitle {
	font-size: 25px;
	margin-bottom: 25px;
}
.popWin .close {
	position: absolute;
	right: -23px;
	top: -23px;
	z-index: 1;
	width: 46px;
	height: 46px;
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
}
.popWin .close::before, .popWin .close::after {
	content: "";
	position: absolute;
	left: 11px;
	top: 23px;
	width: 25px;
	height: 1px;
	background-color: #bc9753;
}
.popWin .close::before {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.popWin.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
	opacity: 1;
}
.popWin .close::after {
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
@media (max-width: 1180px) {
	.popWin .close {
		right: 0;
		top: 0;
		border-radius: 0;
	}
	.popWin .popContent {
		max-height: calc(100vh - 150px);
	}
}

.bannerArea .bannerBox {
	position: relative;
}
.bannerArea .bannerList {
	position: relative;
	z-index: 1;
}
.bannerArea .bannerList.slick-dotted {
	margin-bottom: 0;
}
.bannerArea .bannerItem .Txt {
	max-width: 1320px;
	-ms-flex-align: end;
	    align-items: flex-end;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: center;
	    justify-content: center;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
@media (max-width: 1320px) {
	.bannerArea .bannerItem .Txt {
		padding: 0 20px;
	}
}
@media (max-width: 640px) {
	.bannerArea .bannerItem .Txt {
		-ms-flex-align: center;
		    align-items: center;
		-ms-flex-pack: start;
		    justify-content: flex-start;
		padding-top: 40px;
	}
}
.bannerArea .bannerItem .Txt .textBox {
	width: 380px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	position: relative;
}
.bannerArea .bannerItem .Txt .textBox::before {
	content: "";
	width: 1px;
	height: 0;
	display: block;
	opacity: 1;
	padding-bottom: 0;
	position: absolute;
	top: 50%;
	left: -13%;
	right: 0;
	bottom: 0;
	z-index: 1;
	-webkit-transform: translate(-100%, -50%) rotate(12deg);
	        transform: translate(-100%, -50%) rotate(12deg);
}
.bannerArea .bannerItem .Txt .textBox.white {
	color: #fff;
}
.bannerArea .bannerItem .Txt .textBox.white::before {
	background-color: rgba(255, 255, 255, 0.7);
}
.bannerArea .bannerItem .Txt .textBox.black {
	color: #2f2f2f;
}
.bannerArea .bannerItem .Txt .textBox.black::before {
	background-color: rgba(47, 47, 47, 0.7);
}
.bannerArea .bannerItem .Txt .textBox.enterprise {
	color: #bc9753;
}
.bannerArea .bannerItem .Txt .textBox.enterprise::before {
	background-color: rgba(188, 151, 83, 0.7);
}
@media (max-width: 1024px) {
	.bannerArea .bannerItem .Txt .textBox {
		width: 300px;
		font-size: 34px;
	}
	.bannerArea .bannerItem .Txt .textBox::before {
		left: -10%;
	}
}
@media (max-width: 400px) {
	.bannerArea .bannerItem .Txt .textBox {
		font-size: 28px;
	}
	.bannerArea .bannerItem .Txt .textBox::before {
		display: none;
	}
}
@media (max-width: 359px) {
	.bannerArea .bannerItem .Txt .textBox {
		width: 100%;
	}
}
.bannerArea .bannerItem .Txt .title {
	font-size: 40px;
	font-weight: 500;
	font-family: "Noto Serif Tc", "新細明體", serif;
	line-height: 1.3;
	letter-spacing: 1px;
	opacity: 0;
}
@media (max-width: 1024px) {
	.bannerArea .bannerItem .Txt .title {
		font-size: 32px;
	}
}
.bannerArea .bannerItem .Txt .subtitle {
	display: block;
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin-top: 10px;
	opacity: 0;
}
.bannerArea .bannerItem .Txt .text {
	display: block;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 1px;
	margin-top: 15px;
	opacity: 0;
}
.bannerArea .bannerItem .Txt .bannerBtn {
	opacity: 0;
	padding-top: 30px;
}
.bannerArea .bannerItem .Txt .bannerBtn a {
	background-color: #bc9753;
	color: #fff;
	display: inline-block;
	letter-spacing: 0.5px;
	padding: 15px 20px;
	text-align: center;
}
.bannerArea .bannerItem .Txt .bannerBtn a:hover {
	background-color: #fff;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
	color: #bc9753;
}
.bannerArea .bannerItem .Txt .bannerVideo {
	display: none;
}
.bannerArea .bannerItem .Txt .bannerVideo.show {
	display: block;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn {
	width: 100px;
	height: 100px;
	border: 1px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	position: absolute;
	bottom: 150px;
	right: 0;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 20px;
	border-color: transparent transparent transparent #fff;
	display: block;
	position: absolute;
	top: calc(50% - 10px);
	left: calc(50% - 5px);
	z-index: 1;
}
.bannerArea .bannerItem .Txt .bannerVideo .videoBtn::after {
	content: "";
	border: 1px dashed #fff;
	border-radius: 50%;
	z-index: 1;
	width: 75%;
	height: 75%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.bannerArea .bannerItem .Img {
	position: relative;
	z-index: 1;
}
.bannerArea .bannerItem .Img::before {
	content: "";
	display: none;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.bannerArea .bannerItem .Img.white::before, .bannerArea .bannerItem .Img.enterprise::before {
	background-color: rgba(0, 0, 0, 0.3);
}
.bannerArea .bannerItem .Img.black::before {
	background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 640px) {
	.bannerArea .bannerItem .Img::before {
		display: block;
	}
	.bannerArea .bannerItem .Img.noMobilePic {
		height: 800px;
	}
	.bannerArea .bannerItem .Img.noMobilePic img {
		height: 100%;
		object-fit: cover;
	}
}
@media (max-width: 480px) {
	.bannerArea .bannerItem .Img.noMobilePic {
		height: 640px;
	}
}
.bannerArea .bannerItem.slick-current .Txt .textBox::before {
	-webkit-animation: bannerLineAnimation 0.8s 0.4s ease-in-out forwards;
	        animation: bannerLineAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .title {
	-webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
	        animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .subtitle {
	-webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
	        animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .text {
	-webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
	        animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .bannerBtn {
	-webkit-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
	        animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .videoBtn::after {
	-webkit-animation: rotate 50s linear forwards;
	        animation: rotate 50s linear forwards;
}

.linkArea .linkList {
	display: -ms-flexbox;
	display: flex;
}
.linkArea .linkList .linkItem {
	-ms-flex: 1;
	    flex: 1;
	cursor: pointer;
	overflow: hidden;
	position: relative;
}
.linkArea .linkList .linkItem::before {
	content: "";
	opacity: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
	display: block;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
@media (min-width: 1181px) {
	.linkArea .linkList .linkItem:hover::before {
		opacity: 1;
	}
	.linkArea .linkList .linkItem:hover .logo {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	.linkArea .linkList .linkItem:hover .Txt {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	.linkArea .linkList .linkItem:hover .Img img {
		opacity: 0.5;
	}
}
.linkArea .linkList .Img {
	background-color: #000;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.linkArea .linkList .Img img {
	opacity: 1;
	display: block;
	width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.linkArea .linkList .logo {
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	opacity: 0;
	z-index: 3;
	-webkit-transform: translateY(-20px);
	        transform: translateY(-20px);
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.linkArea .linkList .logo img {
	display: block;
	max-width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.linkArea .linkList .Txt {
	-ms-flex-align: end;
	    align-items: flex-end;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	opacity: 1;
	padding: 70px 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.linkArea .linkList .Txt .title {
	color: #fff;
	display: block;
	font-size: 23px;
	font-weight: 300;
	font-family: "Noto Serif Tc", "新細明體", serif;
	line-height: 1.2;
	letter-spacing: 1px;
}
@media (max-width: 1440px) {
	.linkArea .linkList .Txt .title {
		font-size: 20px;
	}
}
@media (max-width: 1024px) {
	.linkArea .linkList .Txt .title {
		font-size: 17px;
	}
}
.linkArea .linkList .coverLink {
	display: block;
	z-index: 5;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.hotelArea .hotelBg {
	min-height: 980px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}
@media (max-width: 1440px) {
	.hotelArea .hotelBg {
		min-height: 800px;
	}
}
@media (max-width: 768px) {
	.hotelArea .hotelBg {
		min-height: 1020px;
		background: #333 !important;
	}
}
@media (max-width: 640px) {
	.hotelArea .hotelBg {
		min-height: 900px;
	}
}
@media (max-width: 480px) {
	.hotelArea .hotelBg {
		min-height: 820px;
	}
}
@media (max-width: 375px) {
	.hotelArea .hotelBg {
		min-height: 720px;
	}
}
.hotelArea .hotelContent {
	padding: 100px 0 160px;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
@media (max-width: 1440px) {
	.hotelArea .hotelContent {
		padding: 100px 0 60px;
	}
}
@media (max-width: 768px) {
	.hotelArea .hotelContent {
		padding: 50px 0;
	}
}
@media (max-width: 480px) {
	.hotelArea .hotelContent {
		padding: 50px 0;
	}
}
.hotelArea .wrap {
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 768px) {
	.hotelArea .wrap {
		-ms-flex-direction: column;
		    flex-direction: column;
	}
}
.hotelArea .hotelClass {
	width: 40px;
}
@media (max-width: 768px) {
	.hotelArea .hotelClass {
		width: 100%;
	}
}
.hotelArea .hotelClass .titleBox {
	display: none;
}
@media (max-width: 768px) {
	.hotelArea .hotelClass .titleBox {
		display: block;
	}
}
.hotelArea .hotelClass .classList {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
}
@media (max-width: 768px) {
	.hotelArea .hotelClass .classList {
		-ms-flex-direction: row;
		    flex-direction: row;
		-ms-flex-pack: justify;
		    justify-content: space-between;
		margin: 0 -10px;
	}
}
@media (max-width: 480px) {
	.hotelArea .hotelClass .classList {
		-ms-flex-direction: row;
		    flex-direction: row;
		-ms-flex-pack: justify;
		    justify-content: space-between;
		margin: 0 -5px;
	}
}
@media (max-width: 359px) {
	.hotelArea .hotelClass .classList {
		margin: 0 -4px;
	}
}
.hotelArea .hotelClass .classList li:not(:last-child) {
	margin-bottom: 5px;
}
.hotelArea .hotelClass .classList li a {
	background-color: #535353;
	color: #fff;
	display: block;
	font-weight: 400;
	font-family: "Noto Serif Tc", "新細明體", serif;
	line-height: 1.1;
	letter-spacing: 4px;
	padding: 40px 12px;
}
.hotelArea .hotelClass .classList li a.current {
	background-color: #bc9753;
}
@media (min-width: 1181px) {
	.hotelArea .hotelClass .classList li a:hover {
		background-color: #bc9753;
	}
}
.hotelArea .hotelClass .classList li a span {
	-webkit-writing-mode: vertical-lr;
	    -ms-writing-mode: tb-lr;
	        writing-mode: vertical-lr;
}
@media (max-width: 768px) {
	.hotelArea .hotelClass .classList li {
		-ms-flex: 1;
		    flex: 1;
		padding: 0 10px;
	}
	.hotelArea .hotelClass .classList li:not(:last-child) {
		margin-bottom: 0;
	}
	.hotelArea .hotelClass .classList li a {
		padding: 10px;
		text-align: center;
	}
	.hotelArea .hotelClass .classList li a span {
		-webkit-writing-mode: horizontal-tb;
		    -ms-writing-mode: lr-tb;
		        writing-mode: horizontal-tb;
	}
}
@media (max-width: 480px) {
	.hotelArea .hotelClass .classList li {
		padding: 0 5px;
	}
	.hotelArea .hotelClass .classList li a {
		padding: 10px 5px;
	}
}
@media (max-width: 359px) {
	.hotelArea .hotelClass .classList li {
		padding: 0 4px;
	}
	.hotelArea .hotelClass .classList li a {
		font-size: 14px;
	}
}
.hotelArea .hotelInner {
	display: -ms-flexbox;
	display: flex;
}
.hotelArea .hotelInner.hide {
	opacity: 0;
	-webkit-transform: translateY(-20px);
	        transform: translateY(-20px);
}
@media (max-width: 768px) {
	.hotelArea .hotelInner {
		-ms-flex-direction: column;
		    flex-direction: column;
	}
}
.hotelArea .hotelTab {
	width: 95px;
	margin: 0 65px 0 30px;
}
@media (max-width: 768px) {
	.hotelArea .hotelTab {
		width: 100%;
		margin: 15px auto 30px;
	}
}
.hotelArea .hotelTab .tabList {
	height: 580px;
	overflow-y: auto;
	padding-right: 10px;
}
@media (max-width: 768px) {
	.hotelArea .hotelTab .tabList {
		height: auto;
		-ms-flex-align: stretch;
		    align-items: stretch;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		margin: 0;
		overflow-x: auto;
		overflow-y: auto;
		padding-right: 0;
		padding-bottom: 10px;
	}
}
.hotelArea .hotelTab .tabList .tabItem {
	width: 100%;
	min-height: 120px;
	-ms-flex-align: center;
	    align-items: center;
	cursor: pointer;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: center;
	    justify-content: center;
}
.hotelArea .hotelTab .tabList .tabItem:not(:last-child) {
	margin-bottom: 10px;
}
.hotelArea .hotelTab .tabList .tabItem.current img {
	opacity: 1;
}
.hotelArea .hotelTab .tabList .tabItem.current .title {
	color: #fff;
}
@media (min-width: 1181px) {
	.hotelArea .hotelTab .tabList .tabItem:hover img {
		opacity: 1;
	}
	.hotelArea .hotelTab .tabList .tabItem:hover .title {
		color: #fff;
	}
}
@media (max-width: 768px) {
	.hotelArea .hotelTab .tabList .tabItem {
		min-width: calc(100%/3.5);
		min-height: auto;
		background-color: rgba(255, 255, 255, 0.8);
		padding: 14px 6px;
	}
	.hotelArea .hotelTab .tabList .tabItem:not(:last-child) {
		margin-bottom: 0;
		border-right: 1px solid rgba(47, 47, 47, 0.7);
	}
	.hotelArea .hotelTab .tabList .tabItem.current .title {
		color: rgba(47, 47, 47, 0.7);
	}
}
@media (max-width: 480px) {
	.hotelArea .hotelTab .tabList .tabItem {
		min-width: calc(100%/2.5);
	}
}
.hotelArea .hotelTab .tabList .Img {
	width: 75px;
}
.hotelArea .hotelTab .tabList .Img img {
	opacity: 0.3;
	display: block;
	width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
@media (max-width: 768px) {
	.hotelArea .hotelTab .tabList .Img {
		display: none;
	}
}
.hotelArea .hotelTab .tabList .title {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	font-weight: 500;
	font-family: "Noto Serif Tc", "新細明體", serif;
	line-height: 1.2;
	letter-spacing: 1px;
	margin-top: 10px;
	text-align: center;
}
@media (max-width: 768px) {
	.hotelArea .hotelTab .tabList .title {
		color: rgba(47, 47, 47, 0.7);
		margin-top: 0;
	}
}
.hotelArea .hotelDetail {
	width: 510px;
}
@media (max-width: 768px) {
	.hotelArea .hotelDetail {
		width: 100%;
	}
}
.hotelArea .hotelDetail .titleBox {
	display: block;
}
@media (max-width: 768px) {
	.hotelArea .hotelDetail .titleBox {
		display: none;
	}
}
.hotelArea .hotelDetail .detailList.hide {
	opacity: 0;
	-webkit-transform: translateY(-20px);
	        transform: translateY(-20px);
}
.hotelArea .hotelDetail .detailList .detailItem {
	width: 100%;
	display: block;
}
.hotelArea .hotelDetail .detailList .detailItem:not(:first-child) {
	display: none;
}
.hotelArea .hotelDetail .detailList .Img {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
}
.hotelArea .hotelDetail .detailList .Img img {
	display: block;
	width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.hotelArea .hotelDetail .detailList .Img .floor {
	border: 1px solid rgba(255, 255, 255, 0.5);
	background-color: rgba(0, 0, 0, 0.15);
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-family: "Noto Serif Tc", "新細明體", serif;
	line-height: 1;
	letter-spacing: 0.5px;
	padding: 18px 15px;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1;
}
.hotelArea .hotelDetail .detailList .Txt {
	padding: 40px 0;
}
.hotelArea .hotelDetail .detailList .Txt .title {
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 1px;
}
.hotelArea .hotelDetail .detailList .Txt .title img {
	display: none;
}
.hotelArea .hotelDetail .detailList .Txt .title a {
	color: #fff;
	display: block;
}
@media (min-width: 1181px) {
	.hotelArea .hotelDetail .detailList .Txt .title a:hover {
		color: #bc9753;
	}
}
@media (max-width: 768px) {
	.hotelArea .hotelDetail .detailList .Txt .title img {
		height: 70px;
		display: inline-block;
		margin-right: 10px;
		vertical-align: middle;
	}
	.hotelArea .hotelDetail .detailList .Txt .title a {
		height: 70px;
		line-height: 70px;
	}
}
@media (max-width: 480px) {
	.hotelArea .hotelDetail .detailList .Txt .title img {
		height: 40px;
	}
	.hotelArea .hotelDetail .detailList .Txt .title a {
		height: 40px;
		line-height: 40px;
	}
}
.hotelArea .hotelDetail .detailList .Txt .text {
	max-height: 70px;
	color: #eeeeee;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: 0.5px;
	margin-top: 15px;
}
.hotelArea .hotelDetail .detailList .Txt .btnBox {
	padding-top: 45px;
}

.newsArea {
	padding: 100px 0;
}
@media (max-width: 768px) {
	.newsArea {
		padding: 50px 0;
	}
}
.newsArea .wrap {
	max-width: 1350px;
}
.newsArea .newsBox {
	padding-top: 10px;
	position: relative;
}
@media (max-width: 1440px) {
	.newsArea .newsBox {
		width: 90%;
		margin: 0 auto;
	}
}
@media (max-width: 1024px) {
	.newsArea .newsBox {
		width: 100%;
	}
}
.newsArea .newsList .newsItem {
	padding: 0 25px;
}
@media (max-width: 1024px) {
	.newsArea .newsList .newsItem {
		padding: 0 15px;
	}
}
@media (max-width: 480px) {
	.newsArea .newsList .newsItem {
		padding: 0 5px;
	}
}
.newsArea .newsList .Img img {
	display: block;
	max-width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.newsArea .newsList .Txt {
	padding: 30px 0 25px;
}
@media (max-width: 1024px) {
	.newsArea .newsList .Txt {
		padding: 20px 0 15px;
	}
}
.newsArea .newsList .Txt .title {
	color: #333;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.newsArea .newsList .Txt .title a {
	display: block;
}
.newsArea .newsList .Txt .text {
	height: 75px;
	color: #777;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.5px;
	margin-top: 16px;
}
.newsArea .newsList .info {
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	padding: 20px 0;
	border-top: 1px solid rgba(121, 121, 121, 0.2);
	border-bottom: 1px solid rgba(121, 121, 121, 0.2);
}
.newsArea .newsList .info > div {
	font-size: 13px;
	font-weight: 400;
	font-family: "Roboto", "微軟正黑體", serif;
	color: #777;
	line-height: 1;
	letter-spacing: 1px;
}
.newsArea .newsList .info > div span {
	display: inline-block;
	margin-right: 5px;
}
.newsArea .arrow {
	width: 50px;
	height: 50px;
	cursor: pointer;
	position: absolute;
	top: 50%;
	z-index: 1;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.newsArea .arrow::before {
	content: "";
	border-left: 1px solid #848484;
	border-bottom: 1px solid #848484;
	display: block;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.newsArea .arrowPrev {
	left: -80px;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.newsArea .arrowNext {
	right: -80px;
	-webkit-transform: rotate(-135deg);
	        transform: rotate(-135deg);
}
@media (min-width: 1181px) {
	.newsArea .arrow:hover::before {
		border-color: #bc9753;
	}
}
@media (max-width: 1680px) {
	.newsArea .arrowPrev {
		left: -40px;
	}
	.newsArea .arrowNext {
		right: -40px;
	}
}
@media (max-width: 1024px) {
	.newsArea .arrow {
		top: 100%;
	}
	.newsArea .arrowPrev {
		left: 30%;
		-webkit-transform: translateY(120%) rotate(45deg);
		        transform: translateY(120%) rotate(45deg);
	}
	.newsArea .arrowNext {
		right: 30%;
		-webkit-transform: translateY(120%) rotate(-135deg);
		        transform: translateY(120%) rotate(-135deg);
	}
}
@media (max-width: 768px) {
	.newsArea .arrowPrev {
		left: 15%;
	}
	.newsArea .arrowNext {
		right: 15%;
	}
}
@media (max-width: 480px) {
	.newsArea .arrow {
		width: 35px;
		height: 35px;
	}
	.newsArea .arrowPrev {
		left: 7%;
		-webkit-transform: translateY(190%) rotate(45deg);
		        transform: translateY(190%) rotate(45deg);
	}
	.newsArea .arrowNext {
		right: 7%;
		-webkit-transform: translateY(190%) rotate(-135deg);
		        transform: translateY(190%) rotate(-135deg);
	}
}
@media (max-width: 359px) {
	.newsArea .arrowPrev {
		left: 0;
	}
	.newsArea .arrowNext {
		right: 0;
	}
}
.newsArea .btnBox {
	padding-top: 40px;
	text-align: center;
}
@media (max-width: 1024px) {
	.newsArea .btnBox {
		padding-top: 60px;
	}
}

.historyArea .historyBox {
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 768px) {
	.historyArea .historyBox {
		-ms-flex-direction: column;
		    flex-direction: column;
	}
}
.historyArea .historyBox .historyClass {
	width: 360px;
	background: url("../images/history-class-bg.jpg") no-repeat center/cover;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	padding: 0 10px;
	position: relative;
}
.historyArea .historyBox .historyClass li {
	-ms-flex-align: center;
	    align-items: center;
	cursor: pointer;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 1;
	    flex: 1;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: center;
	    justify-content: center;
	opacity: 0.5;
}
.historyArea .historyBox .historyClass li:not(:last-child) {
	border-bottom: 1px solid rgba(185, 152, 70, 0.5);
}
.historyArea .historyBox .historyClass li.current {
	opacity: 1;
}
@media (min-width: 1181px) {
	.historyArea .historyBox .historyClass li:hover {
		opacity: 1;
	}
}
.historyArea .historyBox .historyClass .Img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
}
.historyArea .historyBox .historyClass .Img img {
	display: block;
	width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.historyArea .historyBox .historyClass .Txt {
	margin-top: 30px;
	text-align: center;
}
.historyArea .historyBox .historyClass .Txt .title {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	font-family: "Noto Serif Tc", "新細明體", serif;
	line-height: 1.2;
	letter-spacing: 1px;
}
.historyArea .historyBox .historyClass .Txt .text {
	color: #eeeeee;
	font-size: 12px;
	font-weight: 300;
	font-family: "Noto Serif Tc", "新細明體", serif;
	line-height: 1.2;
	letter-spacing: 1px;
	margin-top: 10px;
}
@media (max-width: 1280px) {
	.historyArea .historyBox .historyClass {
		width: 280px;
	}
	.historyArea .historyBox .historyClass .Img {
		width: 125px;
		height: 125px;
	}
	.historyArea .historyBox .historyClass .Txt {
		margin-top: 30px;
	}
}
@media (max-width: 1024px) {
	.historyArea .historyBox .historyClass {
		width: 230px;
	}
	.historyArea .historyBox .historyClass .Img {
		width: 125px;
		height: 125px;
	}
	.historyArea .historyBox .historyClass .Txt {
		margin-top: 30px;
	}
}
@media (max-width: 768px) {
	.historyArea .historyBox .historyClass {
		width: 100%;
		-ms-flex-align: center;
		    align-items: center;
		background: #2d1b11;
		-ms-flex-direction: row;
		    flex-direction: row;
		padding: 20px 0;
	}
	.historyArea .historyBox .historyClass li {
		height: 100%;
		-ms-flex: 1;
		    flex: 1;
		opacity: 0.3;
		padding: 0 10px;
	}
	.historyArea .historyBox .historyClass li:not(:last-child) {
		border-bottom: none;
	}
	.historyArea .historyBox .historyClass .Img {
		display: none;
	}
	.historyArea .historyBox .historyClass .Txt {
		margin-top: 0;
	}
	.historyArea .historyBox .historyClass .Txt .text {
		display: none;
	}
}
@media (max-width: 480px) {
	.historyArea .historyBox .historyClass {
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		overflow-x: auto;
	}
	.historyArea .historyBox .historyClass li {
		min-width: calc(100%/2.5);
		-ms-flex: auto;
		    flex: auto;
	}
}
.historyArea .historyBox .historyContent {
	width: calc(100% - 360px);
	min-height: 890px;
	background: url("../images/history-bg.jpg") no-repeat center/cover;
	padding-left: 100px;
	position: relative;
}
.historyArea .historyBox .historyContent::before {
	content: "";
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	z-index: 1;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
@media (max-width: 1280px) {
	.historyArea .historyBox .historyContent {
		width: calc(100% - 280px);
		padding-left: 60px;
	}
}
@media (max-width: 1024px) {
	.historyArea .historyBox .historyContent {
		width: calc(100% - 230px);
		min-height: 800px;
		padding-left: 40px;
	}
}
@media (max-width: 768px) {
	.historyArea .historyBox .historyContent {
		width: 100%;
		min-height: 560px;
		background-attachment: fixed;
		padding: 0 20px;
	}
	.historyArea .historyBox .historyContent::before {
		display: block;
	}
}
.historyArea .historyBox .historyInner {
	-ms-flex-align: center;
	    align-items: center;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 2;
}
.historyArea .historyBox .historyInner.hide {
	opacity: 0;
	-webkit-transform: scale(0.97);
	        transform: scale(0.97);
}
@media (max-width: 768px) {
	.historyArea .historyBox .historyInner {
		-ms-flex-align: start;
		    align-items: flex-start;
		-ms-flex-direction: column;
		    flex-direction: column;
		padding: 0 10px;
	}
}
@media (max-width: 400px) {
	.historyArea .historyBox .historyInner {
		padding: 0;
	}
}
.historyArea .historyBox .tabBox {
	width: 210px;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: center;
	    justify-content: center;
	padding-right: 60px;
}
@media (max-width: 1280px) {
	.historyArea .historyBox .tabBox {
		width: 140px;
		padding-right: 30px;
	}
}
@media (max-width: 768px) {
	.historyArea .historyBox .tabBox {
		width: 100%;
		height: auto;
		-ms-flex-align: center;
		    align-items: center;
		-ms-flex-direction: row;
		    flex-direction: row;
		padding-top: 40px;
		padding-right: 0;
	}
}
.historyArea .historyBox .tabBox .mainListBox {
	margin: 120px 0;
	position: relative;
}
@media (max-width: 768px) {
	.historyArea .historyBox .tabBox .mainListBox {
		max-width: 130px;
		margin: 0 90px;
	}
}
@media (max-width: 450px) {
	.historyArea .historyBox .tabBox .mainListBox {
		max-width: 115px;
		margin: 0 75px;
	}
}
@media (max-width: 400px) {
	.historyArea .historyBox .tabBox .mainListBox {
		margin: 0 50px;
	}
}
@media (max-width: 359px) {
	.historyArea .historyBox .tabBox .mainListBox {
		max-width: 105px;
		margin: 0 40px;
	}
}
.historyArea .historyBox .tabBox .mainList .title {
	color: #dad7ce;
	font-size: 55px;
	font-weight: 500;
	font-family: "Roboto", "微軟正黑體", serif;
	line-height: 1;
}
@media (max-width: 1280px) {
	.historyArea .historyBox .tabBox .mainList .title {
		font-size: 40px;
	}
}
@media (max-width: 768px) {
	.historyArea .historyBox .tabBox .mainList .mainItem {
		-ms-flex-align: center;
		    align-items: center;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: center;
		    justify-content: center;
		min-height: 100px;
	}
	.historyArea .historyBox .tabBox .mainList .title {
		font-size: 50px;
		text-align: center;
	}
}
@media (max-width: 400px) {
	.historyArea .historyBox .tabBox .mainList .title {
		font-size: 40px;
	}
}
@media (max-width: 359px) {
	.historyArea .historyBox .tabBox .mainList .title {
		font-size: 36px;
	}
}
.historyArea .historyBox .tabBox .arrow {
	width: 20px;
	height: 20px;
	cursor: pointer;
	position: absolute;
	left: 10px;
	z-index: 1;
}
.historyArea .historyBox .tabBox .arrow::before {
	content: "";
	border-left: 1px solid #848484;
	border-bottom: 1px solid #848484;
	display: block;
	z-index: 2;
	width: 80%;
	height: 80%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.historyArea .historyBox .tabBox .arrowPrev {
	top: -80px;
	-webkit-transform: rotate(135deg);
	        transform: rotate(135deg);
}
.historyArea .historyBox .tabBox .arrowNext {
	bottom: -80px;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
@media (min-width: 1181px) {
	.historyArea .historyBox .tabBox .arrow:hover::before {
		border-color: #bc9753;
	}
}
@media (max-width: 768px) {
	.historyArea .historyBox .tabBox .arrow {
		width: 25px;
		height: 25px;
	}
	.historyArea .historyBox .tabBox .arrowPrev {
		top: 50%;
		left: -45px;
		-webkit-transform: translateY(-50%) rotate(45deg);
		        transform: translateY(-50%) rotate(45deg);
	}
	.historyArea .historyBox .tabBox .arrowNext {
		top: 50%;
		right: -45px;
		bottom: auto;
		left: auto;
		-webkit-transform: translateY(-50%) rotate(-135deg);
		        transform: translateY(-50%) rotate(-135deg);
	}
}
@media (max-width: 400px) {
	.historyArea .historyBox .tabBox .arrowPrev {
		left: -25px;
	}
	.historyArea .historyBox .tabBox .arrowNext {
		right: -25px;
	}
}
@media (max-width: 359px) {
	.historyArea .historyBox .tabBox .arrowPrev {
		left: -20px;
	}
	.historyArea .historyBox .tabBox .arrowNext {
		right: -20px;
	}
}
@media (max-width: 768px) {
	.historyArea .historyBox .tabBox .secListBox {
		max-width: 50px;
	}
}
.historyArea .historyBox .tabBox .secList .secItem {
	cursor: pointer;
	padding: 30px 0;
}
.historyArea .historyBox .tabBox .secList .title {
	color: rgba(177, 171, 156, 0.5);
	font-size: 22px;
	font-weight: 500;
	font-family: "Roboto", "微軟正黑體", serif;
	line-height: 1;
}
.historyArea .historyBox .tabBox .secListTop .secItem.slick-current {
	opacity: 0.5;
}
.historyArea .historyBox .tabBox .secListTop .secItem.slick-current ~ .secItem {
	opacity: 0.2;
}
.historyArea .historyBox .tabBox .secListBottom .secItem.slick-current ~ .secItem ~ .secItem {
	opacity: 0.5;
}
.historyArea .historyBox .tabBox .secListBottom .secItem.slick-current ~ .secItem ~ .secItem ~ .secItem {
	opacity: 0.2;
}
@media (max-width: 768px) {
	.historyArea .historyBox .tabBox .secList .secItem {
		min-height: 45px;
		-ms-flex-align: center;
		    align-items: center;
		display: -ms-flexbox;
		display: flex;
		opacity: 1 !important;
		padding: 0;
	}
	.historyArea .historyBox .tabBox .secList .title {
		color: #b1ab9c;
	}
}
.historyArea .historyBox .detailBox {
	width: 400px;
	height: 100%;
}
@media (max-width: 1280px) {
	.historyArea .historyBox .detailBox {
		width: calc(100% - 140px);
	}
}
@media (max-width: 768px) {
	.historyArea .historyBox .detailBox {
		width: 100%;
		padding: 60px 50px 0;
	}
}
@media (max-width: 640px) {
	.historyArea .historyBox .detailBox {
		padding: 60px 20px 0;
	}
}
@media (max-width: 480px) {
	.historyArea .historyBox .detailBox {
		padding: 60px 0;
	}
}
.historyArea .historyBox .detailBox .detailListBox .detailList .text {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 300;
	line-height: 2;
	letter-spacing: 0.5px;
}
/*# sourceMappingURL=home.css.map */