form,
dl,
dt,
dd,
#all_photo ul,
#all_photo li,
#all_album ul,
#all_album li {
	margin: 0;
	padding: 0;
}

p {
	margin: 0;
	padding: 8px 0 7px;
}

input,
select {
	vertical-align: middle;
}

table {
	border-collapse: separate;
	empty-cells: show;
}

a img {
	border-style: none;
}

a {
	color: #1c388c;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* 去除連結需線框 */
a {
	outline: none;
	/* for Firefox */
	hlbr: expression(this.onFocus=this.blur());
	/* for IE */
}

body {
	font: 13px/1.7 'Noto Sans TC', sans-serif, Arial, Helvetica, sans-serif;
	color: #fff;
	background-color: #222;
	margin: 0;
	padding: 0;
}






.container {
	max-width: 1920px;
	margin: auto;
}



.color_msg {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: color_msg_gradient 15s ease infinite;
}

@keyframes color_msg_gradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.color_msg a {
	color: #fff;
	text-decoration: none;
	display: block;
	max-width: 1800px;
	margin: 0 auto;
	padding: 8px 4%;
	font-size: 16px;
	text-align: center;
	position: relative;
}

/* .color_msg a:after {
    display: inline-block;
    content: "\00d7";
    position: absolute;
    right: 4%;
    top: 10px;
} */

.color_msg_close {
  width: 18px; /* 設定 X 的大小 */
  height: 18px;
  display: block;
    position: absolute;
    right: 18px;
    top: 12px;
        cursor: pointer;
}
.color_msg_close:hover {
  transform-origin: center; /* 設定旋轉中心為元素中心 */
  transform: rotate(90deg); /* 旋轉 45 度 */
  transition: transform 0.3s ease; /* 加入過渡效果 */
}

.color_msg.close {
  display: none;
}



.color_msg_close::before,
.color_msg_close::after {
  content: ''; /* 需要有 content 屬性才能顯示 ::before 和 ::after */
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px; /* 調整橫條的厚度 */
  background-color: #fff; /* 調整 X 的顏色 */
}

.color_msg_close::before {
  transform: rotate(45deg); /* 將 ::before 元素旋轉 45 度 */
}

.color_msg_close::after {
  transform: rotate(-45deg); /* 將 ::after 元素旋轉 -45 度 */
}




.header {
	position: sticky;
	    top: 0;
	    background-color: #222;
	max-width: 1800px;
	padding: 56px 4% 16px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	z-index: 99;
}
@media screen and (max-width: 768px) {
.header {
	padding: 16px 4% 16px;
}
}

.logo {
	display: block;
	width: 300px;
	height: 48px;
	background-image: url(../img/logo.svg);
	background-repeat: no-repeat;
	background-position: center;
    overflow: hidden;
    text-indent: -999px;
}
@media screen and (max-width: 768px) {
    .logo {
    	width: 240px;
    	height: 40px;
    }
}

.show_menu {
	position: absolute;
	top: 78px;
	right: 4%;
	display: none;
	height: 40px;
	z-index: 999;
}

@media screen and (max-width: 768px) {
	.show_menu {
	    top: 32px;
		display: block;
	}

	.show_menu.on {
		position: fixed;
		top: 40px;
		right: 4%;
	}
}
.show_menu.on .bar:first-child {
    position: relative;
    transform-origin: center;
    top: 2px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.show_menu.on .bar:last-child {
    transform-origin: center;
    transform: rotate(135deg);
    transition: transform 0.3s ease;
}
.show_menu.on .bar:nth-child(2) {
    display: none;
}


.show_menu .bar {
	background-color: #fff;
	display: block;
	width: 30px;
	height: 2px;
	border-radius: 100px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.show_menu .bar:first-child {
	-webkit-transform: translateY(-6px);
	-moz-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	transform: translateY(-6px);
}

.show_menu .bar:last-child {
	-webkit-transform: translateY(6px);
	-moz-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
}


.menu {
	padding: 12px 0 0;
	list-style-type: none;
	padding: 0;
	white-space: nowrap;

}

@media screen and (max-width: 768px) {
	.menu {
		padding: 100px 0 0;
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		background-color: rgba(0, 0, 0, .85);
		z-index: 99;
		margin: 0;
		text-align: center;
		display: none;
	}

	.menu.on {
		display: block;
	}
}

@media screen and (max-width: 480px) {
	.menu {
		gap: 5vw;
	}
}

.menu ul {
	list-style-type: none;
	padding: 0;
}

.menu > li {
	position: relative;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.menu > li {
		display: block;
		padding: 0 0 10px;
	}
}


.menu li:hover ul {
	display: block;
}


.menu a {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	padding: 0 .7vw;
	display: block;
}

@media screen and (max-width: 768px) {
	.menu a {
		font-size: 24px;
	}
}

.menu a:hover,
.menu a.on {
	color: #57964e;
}

.menu > li:first-child a {
    padding-left: 0; /* 移除第一個元素的左 padding */
}

.menu > li:last-child a {
    padding-right: 0; /* 移除最後一個元素的右 padding */
}
@media screen and (max-width: 768px) {
.menu > li:first-child a {
    padding-left: 1.4vw; /* 移除第一個元素的左 padding */
}

.menu > li:last-child a {
    padding-right: 1.4vw; /* 移除最後一個元素的右 padding */
}
}

.menu li ul {
	display: none;
	position: absolute;
	left: -.7vw;
	padding: 10px 0;
	background-color: #222;
}

@media screen and (max-width: 768px) {
	.menu li ul {
		position: relative;
		left: 0;
		background: none;
	}
}

.menu li ul li a {
	padding: 0 1.4vw 5px;
}

@media screen and (max-width: 768px) {
	.menu li ul li a {
		font-size: 20px;
	}

    .menu > li.parent > a::after {
        content: "+";
        margin-left: 4px;
        display:inline-block;
    }
    
    .menu > li.parent.active > a::after {
        content: "-";
        display: inline-block;
    }
}


.tools {
	position: absolute;
	top: 26px;
	right: 4%;
	display: flex;
	gap: 20px;
}
@media screen and (max-width: 768px) {
	.tools {
        display: none;
    }
	.tools.on {
    position: fixed;
    top: 40px;
    right: 0;
    display: flex;
    z-index: 100;
    width: 100%;
    justify-content: center;
	}
}

@media screen and (max-width: 480px) {
	.tools {
		top: 15px;
		gap: 15px;
	}
}

.footer .tools {
    position: relative;
    top: initial;
    right: initial;
        display: block;

    margin: 0 0 10px;
}
.footer .tools a {
    display: inline-block;
    margin: 0 20px 0 0;
}
.footer .tools a:last-child {
    margin: 0;
}


.language_link {
    display: none;
    position: absolute;
    width: 100px;
    background-color: #222222;
}

.language:hover .language_link {
    display: block;
}

.language {
    position: relative;
    cursor: default;
    z-index: 9;
}

.language_link a {
    color: #fff;
    display: block;
    padding: 6px 10px;
    text-decoration: none;
}

.language_link a:hover {
    color: #57964e;
}

.tools .email {
	display: block;
	width: 18px;
	height: 18px;
	background-color: #ccc;
	-webkit-mask-image: url(../img/email.svg);
	mask-image: url(../img/email.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center 4px;
	mask-position: center 4px;
	/* -webkit-mask-size: contain;
	mask-size: contain; */
}

.tools .facebook {
	display: block;
	width: 18px;
	height: 18px;
	background-color: #ccc;
	-webkit-mask-image: url(../img/facebook.svg);
	mask-image: url(../img/facebook.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
}

.tools .line {
	display: block;
	width: 18px;
	height: 18px;
	background-color: #ccc;
	-webkit-mask-image: url(../img/line.svg);
	mask-image: url(../img/line.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
}

.tools .instagram {
	display: block;
	width: 18px;
	height: 18px;
	background-color: #ccc;
	-webkit-mask-image: url(../img/instagram.svg);
	mask-image: url(../img/instagram.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
}

.tools .youtube {
	display: none !important;
	width: 18px;
	height: 18px;
	background-color: #ccc;
	-webkit-mask-image: url(../img/youtube.svg);
	mask-image: url(../img/youtube.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
}

.tools a:hover {
	background-color: #fff;
}




#navbar {
        padding: 0 0 15px;
}
#navbar a {
    color: #666;
}













@media screen and (max-width: 1440px) {
	.cover .splide__slide {
		height: 70vw;
	}
}

@media screen and (max-width: 1024px) {
	.cover .splide__slide {
		height: 80vw;
	}
}

@media screen and (max-width: 964px) {
	.cover .splide__slide {
		height: 85vw;
	}
}

@media screen and (max-width: 800px) {
	.cover .splide__slide {
		height: 90vw;
	}
}

@media screen and (max-width: 768px) {
	.cover .splide__slide {
		height: 96vw;
	}
}

@media screen and (max-width: 750px) {
	.cover .splide__slide {
		height: 100vw;
	}
}

@media screen and (max-width: 640px) {
	.cover .splide__slide {
		height: 110vw;
	}
}

@media screen and (max-width: 535px) {
	.cover .splide__slide {
		height: 115vw;
	}
}

@media screen and (max-width: 480px) {
	.cover .splide__slide {
		height: 125vw;
	}
}

.splide__arrow {
	background: none
}

.splide__arrow {
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	position: absolute;
	top: calc(50% - 20px);
	text-indent: -9999px;
	font-size: 0;
	overflow: hidden;
	opacity: 1;
}

.splide__arrow::before {
	content: "";
	width: 10px;
	height: 10px;
	border-width: 3px 3px 0 0;
	border-style: solid;
	border-color: #4fa03c;
	transition: 0.2s ease;
	display: block;
	transform-origin: center;
}

.splide__arrow:hover::before {
	border-color: #fff;
}

.splide__arrow--prev {
	left: -40px;
}

.splide__arrow--next {
	right: -40px;
}

.splide__arrow--prev::before {
	transform: rotate(-135deg);
}

.splide__arrow--next::before {
	transform: rotate(45deg);
}




#main_menu {
	overflow: hidden;
}

#wrapper {
	position: relative;
	max-width: 1800px;
	margin: 0 auto;
	background-color: #d5d5d5;
	padding: min(8%, 150px);
	box-sizing: border-box;
	color: #222;
	font-size: 16px;
}

body.index #wrapper {
	background: none;
	padding: 0;
}

@media screen and (max-width: 768px) {
	#wrapper {
	    	padding: min(4%, 100px);
		font-size: 15px;
	}
}


















.art {
	position: relative;
	margin: auto;
	padding: 0 40px 70px;
	color: #fff;
}

.art h3 {
	font-size: 24px;
	color: #fff;
	margin: 10px 0;
	font-weight: 300;
}
.art h3 .more {
	color: #fff;
    float: right;
    font-weight: bold;
    text-decoration: none;
}
.art h3 .more:hover {
	color: #57964e;
}
.art img {
	max-width: 100%;
	width: auto;
	display: block;
	max-height: 100%;
	z-index: 1;
}

.art_cover {
    position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1/1;
    overflow: hidden;
}
.art_cover_bg {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 25%;
    content: "";
    -webkit-filter: blur(2px);
    filter: blur(2px);
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(15);
    transform: scale(15);
    -webkit-transform-origin: center;
    transform-origin: center;

    z-index: 0;
}

.art_info {
	display: flex;
	justify-content: space-between;
	line-height: 1.3;
	padding: 35px 0 0;
}

.art_info_t {
	padding: 0 20px 0 0;
}

.art_ch {
	font-size: 18px;
}

.art_en {
	font-size: 18px;
}

.art_txt {
	padding: 20px 0 0;
	font-size: 14px;
}
.art_info_i {
    min-width: 100px;
}
.art_info_i_t {
	font-size: 12px;
	text-align: center;
	padding: 10px 0 0;
}


















.room {
	position: relative;
	margin: auto;
	padding: 70px 40px 0;
}

.room h3 {
	font-size: 24px;
	color: #fff;
	margin: 10px 0;
	font-weight: 300;
}
.room h3 .more {
	color: #fff;
    float: right;
    font-weight: bold;
    text-decoration: none;
}
.room h3 .more:hover {
	color: #57964e;
}


.room img {
	max-width: 100%;
	width: auto;
	display: block;
}

.room_link {
	color: #fff;
	text-decoration: none;
}

.room_link:hover {
	text-decoration: none;
}

.room_cover {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 20px;
}

.room_order {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: #57964e;
	padding: 4px 30px 3px;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
}

.room_order:hover {
	background-color: #3e7d36;
		text-decoration: none;
}

.room_name {
	font-size: 18px;
	padding: 0 0 10px;
}

.room_info {
	font-size: 14px;
	padding: 0 0 10px;
    word-break: break-all;
}

.room_more {
	font-size: 14px;
	padding: 0 0 10px;
	text-align: right;
	transition: all .3s;
	position: relative;
	left: 0;
}

.room_link:hover .room_more {
	left: 5px;
}

.room_more span {
	position: relative;
	display: inline-block;
	width: 28px;
	height: 10px;
	border-bottom: 1px solid #fff;
	margin: 0 0 0 5px;
}

.room_more span:before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-left: 1px solid #fff;
	transform: rotate(125deg);
	position: absolute;
	right: 0;
	bottom: -6px;
}



.room.cate {
	background-color: #222;
	padding: 30px 30px 90px;
}
@media screen and (max-width: 768px) {
.room.cate {
    padding: 30px min(8%, 30px) 90px;
}
}

.room.cate .splide__list {
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	gap: 60px 30px;
	list-style: none;
}

.room.cate .splide__slide {
	max-width: 413px;
	width: 30%;
}
@media screen and (max-width: 768px) {
.splide_art .splide__slide,
.room.cate .splide__slide {
	width: 46%;
}
}
@media screen and (max-width: 480px) {
.splide_art .splide__slide,
.room.cate .splide__slide {
	width: 100%;
}
}











.any1 {
	display: flex;
	align-items: center;
	background-color: #fff;
	color: #222;
	margin: 70px auto;
}

@media screen and (max-width: 1024px) {
	.any1 {
		flex-direction: column;
	}
}

.any1 img {
	max-width: 100%;
	width: auto;
}

.any1 h3 {
	font-size: min(max(3.3vw, 42px), 60px);
	margin: 0;
}

.any1 {
	font-size: min(max(1.1vw, 15px), 20px);
}

.aboutus {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 5% 10%;
	width: 60%;
}

@media screen and (max-width: 1024px) {
	.aboutus {
		padding: 5% 10% 10%;
		width: auto;
		text-align: justify;
	}
}












#article {
    background-color: #222;
    padding: 30px 30px 90px;
    color: #fff;
    font-weight: 300;
}
@media screen and (max-width: 768px) {
#article {
    padding: 30px min(8%, 30px) 90px;
}
}

#article img {
    max-width: 100%;
    width: auto;
    height: auto !important;
}

#main_body img {
	max-width: 100%;
	width: auto;
	height: auto !important;
	display: block;
}

#article a {
    color: #fff;
}
#main_title {
	font-size: 36px;
	font-weight: 600;
	padding: 0 0 30px;
	line-height: 1.2;
}

@media screen and (max-width: 768px) {
	#main_title {
		font-size: 30px;
	}
}

#main_info {
	font-size: 16px;
	padding: 0 0 15px;

}











#all_album,
#all_photo
{
    background-color: #222;
    padding: 30px 30px 90px;
    color: #fff;
    font-weight: 300;
}
@media screen and (max-width: 768px) {
#all_album,
#all_photo {
    padding: 30px min(8%, 30px) 90px;
}
}

#album_name a {
    color: #fff;
	font-size: 21px;
    font-weight: 600;
    padding: 5px 0 30px;
	display: block;
}

#all_album ul,
#all_photo ul {
	list-style: none;
}

#all_album ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
#all_album ul li {
    width: 30%;
}

#all_photo ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

#all_photo li {
	width: calc(20% - 10px);
}

@media screen and (max-width: 768px) {
#all_photo li {
	width: calc(50% - 10px);
}
}












.cate {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;

    background-color: #222;
    padding: 30px 30px 90px;
    color: #fff;
    font-weight: 300;
}
@media screen and (max-width: 768px) {
.cate {
    padding: 30px min(8%, 30px) 90px;
}
}

.cate_list {
	width: 100%;
	list-style: none;
	padding: 0;
}

.cate_list a {
	display: block;
	padding: 0 0 30px;
	margin: 0 0 30px;
	border-bottom: #444 solid 1px;
	text-decoration: none;
}

.cate_title {
	/*font-size: min(max(1.1vw, 15px), 20px);*/
	/*font-weight: 600;*/
	padding: 0 0 5px;
	margin: 0;
	color: #fff;
}

.cate_list a:hover .cate_title {
	color: #4fa03c;
}

.cate_info {
	font-size: min(max(1.1vw, 13px), 16px);
	padding: 0 0 5px;
	color: #CCC;
}











.footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 80px 4%;
	max-width: 1800px;
	margin: auto;
}

@media screen and (max-width: 768px) {
	.footer {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer span {
		display: block;
	}
}

.footer_info {
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.footer_info {
		font-size: 13px;
	}
}

.copyright {
	padding: 30px 0 0;
	color: #dedede;
}

@media screen and (max-width: 768px) {
	.copyright {
		padding: 30px 0;
	}
}

.footer_logo {
	display: flex;
}

.footer_logo span {
	margin: 0 40px;
	border-right: 1px solid #929292;
}

.footer_geight {
	display: block;
	width: 80px;
	height: 80px;
	background-image: url(../img/footer_geight.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.footer_g7 {
	display: block;
	width: 80px;
	height: 80px;
	background-image: url(../img/footer_g7.svg);
	background-repeat: no-repeat;
	background-position: center;
}


.booking {
	position: fixed;
	right: 2%;
	bottom: 60px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background-color: #57964e;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 14px;
	line-height: 1.3;
	z-index: 99;
    visibility: hidden;
    opacity: 0; /* 預設透明度為 0 */
    transition: opacity 0.5s ease, visibility 0s 0.5s; /* 過渡效果 */
}
@media screen and (max-width: 768px) {
	.booking {
	font-size: 12px;
	width: 100px;
	height: 100px;
	bottom: 30px;
	}
}

.booking.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0s; /* 過渡效果 */
}
.booking:hover {
	text-decoration: none;
	background-color: #3e7d36;
}

.booking strong {
	font-size: 20px;
}
@media screen and (max-width: 768px) {
.booking strong {
	font-size: 17px;
}
}