html,
body {
	max-width: 100%;
	overflow-x: hidden;
	font-family: 'Noto Sans TC', sans-serif;
	font-optical-sizing: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: always;
	-webkit-user-select: none;
	/* Chrome all / Safari all */
	-moz-user-select: none;
	/* Firefox all */
	-ms-user-select: none;
	/* IE 10+ */
	user-select: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
	scroll-behavior: smooth;
}

img {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

a[href^="tel"] {
	color: inherit;
	text-decoration: none;
}

/* Menu */

.mobile-menu {
	display: block;
	height: 80px;
}

@media only screen and (min-width: 767px) {
	.mobile-menu {
		display: none;
	}
}

.sidemenu {
	position: fixed;
	z-index: 500;
	right: 20px;
	bottom: 120px;
	width: 44px;
	height: 100px;
	/*background-color: #FF0004;*/
}

.side-btn {
	width: 44px;
	height: 44px;
	color: #006e4b;
	font-size: 1.8rem;
	background-color: #fff;
	border-radius: 50%;
	border: solid 1px #006e4b;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 12px 0;
}

.side-btn.red {
	font-size: .8rem;
	line-height: .8rem;
	font-weight: 600;
	color: #006e4b;
	background-color: #fff;
}

.side-btn:last-child {
	margin: 0;
}

.side-btn:hover {
	color: #fff;
	background-color: #006e4b;
	text-decoration: none;
}

.side-btn.red:hover {
	color: #fff;
	background-color: #014635;
	text-decoration: none;
	border: solid 1px #014635;
}

.bts {
	padding: 0;
	border-top: solid 1px #006e4b;
}

.mbo {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #006e4b;
	background-color: #fff;
}

.mbo:last-child {
	border-right-style: none;
}

.mbo a {
	color: #006e4b !important;
	text-decoration: none;
	background-color: #fff !important;
}

.mbo a:hover {
	color: #006e4b !important;
}

.mbo h5 {
	padding-top: .8rem;
	padding-bottom: .4rem;
	font-size: .9rem;
	font-weight: 500;
}

.ics {
	margin-right: 0;
	margin-bottom: 4px;
}

.mbo i,
.mbo span {
	display: block;

}

.mbo span {
	font-size: .75rem;
	padding-top: .1rem;
	color: #006e4b !important;
}

@media (min-width: 767px) {
	.bts {
		display: none;
	}
}

/* Loading */
#loading {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	width: 100%;
	height: 100%;
	overflow: visible;
	background: rgba(255, 255, 255, 0.9);
}

@keyframes lds-rolling {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@-webkit-keyframes lds-rolling {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.lds-rolling {
	position: relative;
}

.lds-rolling div,
.lds-rolling div:after {
	position: absolute;
	width: 86px;
	height: 86px;
	border: 6px solid #006e4b;
	border-top-color: transparent;
	border-radius: 50%;
}

.lds-rolling div {
	-webkit-animation: lds-rolling 1s linear infinite;
	animation: lds-rolling 1s linear infinite;
	top: 100px;
	left: 100px;
}

.lds-rolling div:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.lds-rolling {
	width: 200px !important;
	height: 200px !important;
	-webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
	transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}

/* Top Menu */
#myBtn {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Fixed/sticky position */
	bottom: 0;
	/* Place the button at the bottom of the page */
	right: 20px;
	/* Place the button 30px from the right */
	z-index: 500;
	/* Make sure it does not overlap */
	border: none;
	/* Remove borders */
	outline: none;
	/* Remove outline */
	background-color: #006e4b;
	/* Set a background color */
	color: #fff;
	/* Text color */
	cursor: pointer;
	/* Add a mouse pointer on hover */
	padding: 10px 15px 10px 15px;
	border-radius: 0px;
	/* Rounded corners */
	font-size: 1rem;
	/* Increase font size */
	/*border-radius: 50%;*/
}

@media only screen and (max-width: 766px) {
	#myBtn {
		bottom: 80px;
		right: 0;
		padding: 5px 10px 5px 10px;
	}
}

#myBtn:hover {
	color: #fff;
	background-color: #006e4b;
	/* Add a dark-grey background on hover */
}

/* Masthead */
header.masthead {
	width: 100%;
	aspect-ratio: 64/45;
	background-color: #fff;
}

header.masthead img {
	object-fit: cover;
	width: 100%;
	height: auto;
	object-position: center center;
}

@media (min-width: 768px) {
	header.masthead {
		aspect-ratio: 16/9;
	}
}

/* Content Text */
.float-text {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: auto;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.content-text h1 {
	font-family: "Noto Serif TC", serif;
	font-weight: 800;
	font-size: 34px;
	line-height: 1.5;
	background: linear-gradient(90deg, #5a9d26 50%, #006e4b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0;
	display: inline-block;
}

.content-text.wt h1 {
	color: #fff;
	background: none;
	-webkit-background-clip: inherit;
	-webkit-text-fill-color: inherit;
}

.content-text hr {
	display: block;
	width: 30px;
	height: 3px;
	background: linear-gradient(90deg, #5a9d26, #006e4b);
	margin: 20px 0;
}

.content-text.wt hr {
	background: #fff;
}

.content-text hr.ct {
	margin: 20px auto;
}

.content-text h3 {
	font-family: "Noto Serif TC", serif;
	font-weight: 800;
	font-size: 24px;
	color: #333;
	margin: 15px 0 10px 0;
	display: inline-block;
}

.content-text.wt h3 {
	color: #fff;
}

.content-text p {
	font-size: 17px;
	font-weight: 400;
	color: #333;
	line-height: 1.8;
	text-align: justify;
	margin: 0 0 10px 0;
}

.content-text.wt p {
	color: #fff;
}

.content-text p:last-child {
	margin: 0;
}

@media (max-width: 767px) {
	.content-text h1 {
		font-size: 26px;
	}

	.content-text h3 {
		font-size: 20px;
	}

	.content-text p {
		font-size: 16px;
	}
}

/* img fit */

.img-frame {
	position: relative;
	display: block;
	overflow: hidden;
}

.img-frame img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}

.y4-3 {
	aspect-ratio: 4 / 3;
}

.y3-4 {
	aspect-ratio: 3 / 4;
}

.y16-9 {
	aspect-ratio: 16 / 9;
}

.y6-5 {
	aspect-ratio: 16 / 9;
}

.y16-7 {
	aspect-ratio: 16 / 7;
}

.y2-1 {
	aspect-ratio: 2 / 1;
}

@media (max-width: 767px) {
	.y16-7 {
		aspect-ratio: 3 / 4;
	}

	.y2-1 {
		aspect-ratio: 1 / 1;
	}
}

/* Form */
input {
	-webkit-appearance: none;
	appearance: none;
	color: #111 !important;
	background-color: rgba(255, 255, 255, .95);
}

::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #111 !important;
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: #111 !important;
}

:-ms-input-placeholder {
	/* IE 10+ */
	color: #111 !important;
}

:-moz-placeholder {
	/* Firefox 18- */
	color: #111 !important;
}

input {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

input:focus,
textarea:focus,
select:focus {
	outline-style: none;
	box-shadow: none;
}

.form-control {
	border-radius: 0;
	padding: .5rem 1rem;
	font-size: 1rem;
	color: #111;
	background-color: rgba(255, 255, 255, .85);
	border: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

.select-css {
	display: block;
	font-size: 1rem;
	color: #111;
	background-color: rgba(255, 255, 255, .85);
	border: none;
	line-height: 1.5;
	padding: .5rem 1rem;
	width: 100%;
	max-width: 100%;
	height: auto !important;
	box-sizing: border-box;
	margin: 0;
	border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url('../img/arrow.svg');
	background-repeat: no-repeat, repeat;
	background-position: right .7em top 50%, 0 0;
	background-size: .65em auto, 100%;
}

.select-css::-ms-expand {
	display: none;
}

.form-check {
	padding-left: 0;
}

.form-check input[type=checkbox] {
	display: none;
}

.form-check input[type=checkbox]+span {
	display: inline-block;
	padding-left: 26px;
	line-height: 20px;
	background: url(../img/cbx-off.svg) no-repeat;
	user-select: none;
}

.form-check input[type=checkbox]:checked+span {
	background: url(../img/cbx-on.svg) no-repeat;
}


.form-check {
	padding-left: 0;
}

.form-check input[type=checkbox] {
	display: none;
}

.form-check input[type=checkbox]+span {
	display: inline-block;
	padding-left: 26px;
	line-height: 20px;
	background: url(../img/cbx-off.svg) no-repeat;
	user-select: none;
}

.form-check input[type=checkbox]:checked+span {
	background: url(../img/cbx-on.svg) no-repeat;
}

@media (max-width: 766px) {
	.form-check input[type=checkbox]:checked+span {
		background: url(../img/cbx-on.svg) no-repeat 0 3px / 20px 20px;
	}
}

/* Call to action */
.call-to-action {
	position: relative;
	padding: 80px 0;
	background-color: #0d683a;
	background-size: cover;
	background-image: url(../img/2bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

.call-to-action::before {
	content: '';
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: 20% auto;
	background-image: url(../img/2bg2.png);
	background-repeat: no-repeat;
	background-position: right 18% bottom;
}

@media (max-width: 766px) {
	.call-to-action::before {
		background-size: 50% auto;
		background-position: right 40% bottom;
	}
}

.call-to-action .container {
	z-index: 5;
}

.call-to-action p {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.call-to-action h5 {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

@media (max-width: 766px) {
	.call-to-action h5 {
		font-size: 15px;
	}
}

.btn-primary {
	font-size: 1rem;
	font-weight: 500;
	color: #000 !important;
	border-radius: 0;
	border: none;
	background: #8abea5;
}

.btn-primary:hover {
	color: #fff !important;
	background: #ed6c00;
}

.map-frame {
	width: 100%;
	height: 350px;
	margin: 0 0 20px 0;
}

@media (max-width: 766px) {
	.map-frame {
		height: 200px;
	}
}

.call-to-action ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.call-to-action ul li {
	font-size: 16px;
	font-weight: 450;
	color: #fff;
	padding: 4px 0;
	letter-spacing: 1px;
}

.call-to-action ul li span {
	font-weight: 600;
}

@media (max-width:768px) {
	.call-to-action p {
		font-size: 14px;
	}

	.call-to-action ul li {
		font-size: 15px;
	}
}

/* footer */
footer.footer {
	padding-top: 1rem;
	padding-bottom: calc(1rem + 63px);
}

@media only screen and (min-width: 767px) {
	footer.footer {
		padding-bottom: 1rem;
	}
}

.overflow-x-auto {
	overflow-x: auto;
}

.overlay-cover {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	color: #fff;
	background-color: rgba(0, 0, 0, 0);
	text-align: center;
	left: 0;
	z-index: 5;
}

.overlay-cover .mid {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 0px;
}

.overlay-cover .mid:before {
	content: "";
	display: inline-block;
	width: 0%;
	height: 100%;
	vertical-align: middle;
}

.overlay-cover .mid p {
	display: inline-block;
	width: auto;
	vertical-align: middle;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	background-color: rgba(0, 0, 0, .65);
	padding: 25px 15px 20px 15px;
	border-radius: 5px;
	margin: 0;
	font-family: "Noto Sans TC", sans-serif;
}

.overlay-cover .mid p span {
	display: block;
	width: 60px;
	height: 60px;
	margin: 0 auto 10px auto;
	background: url('../img/swipe.svg') no-repeat;
	background-size: contain;
	transform: translateX(-10px);
	animation: slide 4s linear infinite;
}

@keyframes slide {
	0% {
		transform: translateX(-10px);
	}

	50% {
		transform: translateX(10px);
	}

	100% {
		transform: translateX(-10px);
	}
}

.tkt {
	color: #fff;
	font-size: 22px;
	font-weight: 750;
}

/* custom row */
.custom-row {
	margin-left: -2px;
	margin-right: -2px;
}

.custom-row>.col {
	padding-left: 2px;
	padding-right: 2px;
}

.normal-row {
	padding: 80px 0;
}

.video-bk {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.video-bk video {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100%;
}

#muteBtn {
	position: absolute;
	z-index: 9;
	right: 20px;
	bottom: 20px;
	width: 30px;
	height: 30px;
	background-color: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
}

#muteBtn img {
	width: 100%;
	height: auto;
}

@media (max-width:768px) {
	#muteBtn {
		width: 25px;
		height: 25px;
		right: 15px;
		bottom: 15px;
	}
}

.add-text {
	position: absolute;
	z-index: 3;
	left: 20px;
	bottom: 15px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

@media (max-width:768px) {
	.add-text {
		font-size: 10px;
	}
}

.add-01 {
	position: absolute;
	z-index: 3;
	right: 30px;
	bottom: 30px;
	width: 30% !important;
	height: auto !important;
	object-fit: none !important;
}

.add-01m {
	position: absolute;
	z-index: 3;
	right: 7.5%;
	top: 30px;
	width: 85%;
	height: auto;
}