@charset "UTF-8";
/* =========================================================================

==base
==pop-ad
==header
==banner
==product
==intro
==history
==news
==faq
==contact
==album
==footer
==breadcrumb + pagintaion + privacy
==RWD

========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* =========================================================================
==base
========================================================================= */
:root {
	--fs-BNTitle: 44px;
	--fs-BNTxt: 20px;
	--fs-sectionTitle: 36px;
	--fs-infoTitle: 28px;
	--fs-sidebarTitle: 22px;
	--fs-itemTitle: 24px;
	--fs-footerTitle: 22px;
	--fs-headerNav: 20px;
	--fs-sectionEN: 18px;
	--fs-normal: 16px;
	--fs-small: 14px;

	--section: 80px;
	--cnvs-content-padding: 100px;
	--float-height: 52px;
	--header-wrap-clone: 130px;
	--font-work: "Work Sans", sans-serif;

	--cnvs-themecolor: #ea5404;
	--cnvs-themecolor-rgb: 234, 84, 4;
	--txt-gray: #373737;
}

/* ================= base ================= */
body,
.form-control {
	word-break: break-word;
	letter-spacing: 1px;
	line-height: 1.75;
	font-weight: 400;
	font-family: "Noto Sans TC", sans-serif;
	color: var(--cnvs-black);
	font-size: var(--fs-normal);
	transition: .3s ease all;
}

.form-control::placeholder {
	color: var(--cnvs-contrast-600);
}

.form-control:focus {
	box-shadow: none;
	border-color: var(--cnvs-themecolor) !important;
}

p:last-child,
ul:last-child,
ol:last-child,
li:last-child,
form:last-child,
.form-control:last-child {
	margin-bottom: 0;
}

a {
	color: var(--cnvs-black);
	transition: .3s ease;
}

a:hover {
	color: var(--cnvs-themecolor);
}

button {
	transition: .3s ease;
}

input[type="date"],
input[type="time"] {
	cursor: pointer;
	padding-right: 2.5rem;
	position: relative;
}

input[type="date"]::after {
	content: "\f1f6";
	font-size: 15px;
	font-family: bootstrap-icons !important;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

input[type="time"]::after {
	content: "\f293";
	font-size: 15px;
	font-family: bootstrap-icons !important;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url(../images/select-arrow.png);
}

.form-check-input {
	margin-top: 6px;
	width: 18px;
	height: 18px;
	border: 1px solid var(--cnvs-contrast-500);
}

.form-check-input:checked {
	background-color: var(--cnvs-themecolor);
}

.form-control:disabled {
	background-color: var(--cnvs-contrast-400);
}

/* ================= ellipsis ================= */
.one-row { 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.two-row { 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.three-row { 
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

/* ==================== btn ==================== */
.btn-base {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: var(--cnvs-white);
	background-color: var(--cnvs-themecolor);
	font-size: var(--fs-normal);
	font-weight: 400;
	padding: 12px 39px 8px;
	border-radius: 16px 16px 0 16px;
	border-bottom: 4px solid var(--cnvs-themecolor);
	transition: .3s ease;
	z-index: 0;
}

.btn-base i {
	line-height: 1;
}

.btn-base:hover {
	color: var(--cnvs-white);
	background-color: var(--cnvs-black);
}

/* ==================== title ==================== */
.section-title {
	font-size: var(--fs-sectionTitle);
	color: var(--cnvs-black);
	margin-bottom: 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	position: relative;
	text-align: center;
	font-weight: 700;
}

.section-title .en {
	--enLineSize: 16px;
	position: relative;
	display: flex;
	align-items: center;
	font-size: var(--fs-sectionEN);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1px;
	color: var(--cnvs-themecolor);
}

.section-title .en::before {
	content: '';
	width: var(--enLineSize);
	height: 2px;
	background-color: var(--cnvs-themecolor);
	display: inline-block;
	margin-right: var(--enLineSize);
}

.section-title .en:after {
	content: '';
	width: var(--enLineSize);
	height: 2px;
	background-color: var(--cnvs-themecolor);
	display: inline-block;
	margin-left: var(--enLineSize);
}
	
.item-title {
	font-size: var(--fs-itemTitle);
	color: var(--cnvs-black);
	line-height: 1.5;
	font-weight: 700;
}

.footer-title {
	font-size: var(--fs-footerTitle);
	font-weight: 700;
	line-height: 1.5;
}

.sidebar-title {
	font-size: var(--fs-sidebarTitle);
	color: var(--cnvs-black);
}

.info-title {
	font-size: var(--fs-infoTitle);
	color: var(--cnvs-black);
}

/* ==================== other ==================== */
.h-color:hover {
	color: var(--cnvs-themecolor) !important;
}

.section {
	background-color: transparent;
	padding: var(--section) 0;
	margin: 0;
}

.text-justify {
	text-align: justify !important;
}

@media (min-width: 768px) {
	.position-md-absolute {
		position: absolute !important;
	}
}

/* =========================================================================
==pop-ad
========================================================================= */
.pop-ad {
	display: flex;
	background-color: rgba(0,0,0,0.7);
	z-index: 999;
}

.pop-ad-content {
	max-width: 950px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.pop-ad-content .img-wrap {
	aspect-ratio: 1920 / 1070;
}

.pop-ad-content .img-wrap img {
	object-fit: cover;
}

.pop-ad-content .btn-base {
	font-size: var(--fs-BNTxt);
	padding: 16px 16px;
}

.pop-ad-close {
	top: -36px;
	color: var(--cnvs-white);
}

/* =========================================================================
==header
========================================================================= */
.container-bigger {
	max-width: 100%;
	padding: 0;
}

@media (min-width: 768px) {
	.container-bigger {
		max-width: 100%;
		padding: 0 32px;
	}
}

@media (min-width: 1200px) {
	.container-bigger {
		max-width: 100%;
		padding: 0 60px;
	}
}

@media (min-width: 1600px) {
	.container-bigger {
		max-width: 100%;
		padding: 0 100px;
	}
}

header {
	--cnvs-header-height: 90px;
	--cnvs-header-height-shrink: 60px;
}

#header-wrap {
	border: 0;
}

.header-wrap-clone {
	height: var(--header-wrap-clone);
}

#header #header-wrap:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--bs-border-color);
	opacity: 0;
	transition: .3s ease all;
}

.is-expanded-menu #header.sticky-header #header-wrap:after {
	opacity: 1;
}

/* ==================== logo ==================== */
#logo a {
	padding: 20px 48px;
	background-color: #080404;
}

/* ==================== menu ==================== */
.menu-link,
.is-expanded-menu .sub-menu-container .menu-item > .menu-link,
.top-search-form input,
.sub-menu-container .menu-item > .menu-link {
	font-size: var(--fs-headerNav);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1px;
}

.is-expanded-menu .sub-menu-container .menu-item > .menu-link {
	border-bottom: 1px solid var(--bs-border-color);
}

.is-expanded-menu .menu-container > .menu-item:not(:first-child) {
	margin-left: 8px;
}

.is-expanded-menu .menu-link {
	padding: 24px 20px;
}

/* ==================== func ==================== */
.header-misc {
	gap: 24px;
}

#top-search-trigger {
	width: 56px;
	height: 46px;
	line-height: 30px;
	padding: 8px 16px 5px;
	background-color: #4B4B4B;
	border-radius: 12px 12px 0 12px;
	color: var(--cnvs-white);
	font-size: 24px;
	border-bottom: 3px solid transparent;
	transition: .3s ease all;
}

#top-search-trigger:hover,
#top-search-trigger:active,
.top-search-open #top-search a {
	border-bottom: 3px solid var(--cnvs-themecolor);
	background-color: var(--cnvs-black);
}

.top-search-open #top-search a i:nth-child(2) {
	font-size: 20px;
}

.header-misc .go-btn {
	height: 46px;
	display: flex;
	padding: 8px 24px 5px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	color: var(--cnvs-white);
	background-color: var(--cnvs-themecolor);
	border-radius: 12px 12px 0 12px;
	border-bottom: 3px solid transparent;
	font-weight: 500;
	line-height: 1.5;
	font-size: var(--fs-headerNav);
	transition: .3s ease all;
}

.header-misc .go-btn:hover,
.header-misc .go-btn:active {
	background-color: var(--cnvs-black);
	border-bottom: 3px solid var(--cnvs-themecolor);
}

.header-misc .go-btn i {
	font-size: 24px;
}

/* 前往預約按鈕特效 */
.header-misc .go-btn {
	position: relative;
	overflow: hidden;
}

.header-misc .go-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
	animation: ctaShine 3s ease-in-out 2s infinite;
}

.header-misc .go-btn:hover::after {
	animation-play-state: paused;
	opacity: 0;
}


/* =========================================================================
==banner
========================================================================= */
.banner-wrap {
	aspect-ratio: 2000 / 830;
}

/* ==================== Ken Burns + Fade 動畫 ==================== */
@keyframes kenBurnsZoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.08);
	}
}

@keyframes kenBurnsPan {
	0% {
		transform: scale(1.05) translateX(0);
	}
	100% {
		transform: scale(1.1) translateX(-2%);
	}
}

.banner-wrap .swiper-slide {
	overflow: hidden;
}

.banner-wrap .swiper-slide-bg {
	transition: opacity 0.8s ease-in-out;
}

.banner-wrap .swiper-slide-bg.kb-zoom {
	animation: kenBurnsZoom 7s ease-out forwards;
}

.banner-wrap .swiper-slide-bg.kb-pan {
	animation: kenBurnsPan 7s ease-out forwards;
}

.swiper-slide-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.00) 85.7%);
	z-index: 1;
}

/* ==================== txt ==================== */
.banner-title {
	font-size: var(--fs-BNTitle);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 1px;
	color: var(--cnvs-white);
	margin-bottom: 0;
}

.banner-txt,
.slider-caption p {
	font-size: var(--fs-BNTxt);
	font-weight: 400;
	color: var(--cnvs-white);
}

.banner-wrap .btn-base {
	font-size: 18px;
}

.banner-wrap .btn-base i {
	font-size: 20px;
}

/* ==================== navigation ==================== */
.banner-wrap .slider-arrow-left {
	width: 32px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0 10px 10px 0;
}

.banner-wrap .slider-arrow-right {
	width: 32px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px 0 0 10px;
}

.banner-wrap	.slider-arrow-left i,
.banner-wrap .slider-arrow-right i {
	width: auto;
	height: auto;
	line-height: 1;
	font-size: 31px;
}

.banner-wrap [class*=slider-arrow-] {
	opacity: 0;
	pointer-events: none;
	transition: .3s ease all;
}

.banner-wrap:hover [class*=slider-arrow-] {
	opacity: 1;
	pointer-events: auto;
}

/* ==================== pagination ==================== */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 6px;
}

.swiper-pagination span {
	border: 0;
	width: 12px;
	height: 12px;
	background-color: var(--cnvs-white);
	opacity: 0.7;
}

.swiper-pagination span.swiper-pagination-bullet-active {
	width: 34px;
	border-radius: 30px;
	background-color: var(--cnvs-themecolor) !important;
	opacity: 1;
}

/* =========================================================================
==product
========================================================================= */
/* ==================== 車輛介紹滾動視差動畫 ==================== */
@keyframes pdTitleSwing {
	0% {
		opacity: 0;
		transform: translateY(-40px) rotate(-3deg);
	}
	60% {
		transform: translateY(5px) rotate(1deg);
	}
	100% {
		opacity: 1;
		transform: translateY(0) rotate(0);
	}
}

@keyframes pdCardReveal {
	0% {
		opacity: 0;
		transform: translateY(60px) scale(0.9);
	}
	70% {
		transform: translateY(-8px) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.pd-section .section-title.wow,
.news-section .section-title.wow {
	animation-name: pdTitleSwing;
}

.pd-section .pd-item.wow,
.news-section .news-item.wow {
	animation-name: pdCardReveal;
}

/* ==================== index ==================== */
.owl-carousel,
.pd-section {
	--cnvs-owl-nav-sizes: 44px;
}

.pd-section .owl-carousel .owl-stage-outer {
	padding-bottom: calc(36px + var(--cnvs-owl-nav-sizes) / 2);
}

.owl-carousel .owl-nav {
	display: flex;
	gap: 16px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.owl-carousel .owl-nav [class*=owl-] {
	background-color: var(--cnvs-black);
	border: 1px solid var(--cnvs-black);
	color: var(--cnvs-white);
	position: static;
}

.owl-carousel .owl-nav [class*=owl-]:hover {
	border-color: var(--cnvs-white);
}

.pd-section {
	--hover-height: 12px;
	padding-bottom: calc(var(--cnvs-owl-nav-sizes) / 2);
	margin-bottom:  calc(-1 * var(--cnvs-owl-nav-sizes) / 2);
}

.pd-section:after {
	content: '';
	position: absolute;
	bottom: calc(var(--cnvs-owl-nav-sizes) / 2);
	left: 0;
	width: 100%;
	height: 140px;
	border-radius: 110px 110px 0 0;
	background-color: var(--cnvs-themecolor);
}

.pd-section .section-title {
	margin-bottom: calc(36px - var(--hover-height));
}

/* ==================== item ==================== */
.pd-item {
	--hover-height: 12px;
	transition: .3s ease all;
}

.pd-item:hover {
	transform: translateY(calc(-1 * var(--hover-height)));
}

.pd-item-content {
	padding: var(--hover-height) 24px 24px;
}

.pd-item-content:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 85px);
	border-radius: 36px;
	background: #E9ECEF;
	z-index: -1;
	pointer-events: none;
}

.pd-item-content:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 85px);
	border-radius: 36px;
	border: 3px solid transparent;
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0);
	transition: .3s ease all;
	pointer-events: none;
}

.pd-item:hover .pd-item-content:before {
	border-color: var(--cnvs-themecolor);
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.22);
}

.pd-item:hover .item-title {
	color: var(--cnvs-themecolor);
}

/* ===== img ===== */
.pd-item-content .img-wrap {
	border-radius: 42px;
}

.pd-item-content .img-wrap img {
	aspect-ratio: 1000 / 667;
}

/* ===== icons ===== */
.pdicons-wrap {
	gap: 32px;
}

/* ===== tag ===== */
.pd-tag {
	padding: 8px 40px;
	border-radius: 40px 0 0 0;
	color: var(--cnvs-white);
	background-color: var(--cnvs-black);
	line-height: 1.3;
	letter-spacing: 1px;
	font-weight: 400;
	position: absolute;
	bottom: 120px;
	right: 0;
	transform: translateY(50%);
}

.pd-tag:hover,
.pd-tag:active {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
}

/* ==================== list ==================== */
.list-wrap {
	row-gap: 32px;
}

/* ===== sidebar ===== */
.sidebar-wrap {
	position: sticky;
	top: calc(var(--section) / 3 + var(--cnvs-header-height));
}

/* ===== search ===== */
.search-wrap .form-control {
	background-color: var(--cnvs-contrast-200);
	border-color: transparent;
	height: 48px;
	padding-left: 16px;
	padding-right: 52px;
}

.search-wrap button {
	font-size: 20px;
}

.search-wrap button:hover,
.search-wrap button:active {
	color: var(--cnvs-themecolor);
}

/* ===== cate ===== */
.cate-wrap {
	--cate-padding: 8px;
	padding: calc(24px - var(--cate-padding));
	background-color: var(--cnvs-contrast-200);
	border-radius: 0 0 36px 36px;
	border-top: 1px solid var(--cnvs-contrast-500);
}

.cate-wrap .toggle.active {
	background: rgba(255, 255, 255, 0.8);
}

.cate-wrap .toggle-header {
	padding: var(--cate-padding);
}

.cate-wrap .toggle-title {
	color: var(--cnvs-black);
}

.cate-wrap .toggle-header:hover,
.cate-wrap .toggle-header:hover .toggle-title {
	color: var(--cnvs-themecolor);
}

.cate-wrap li:not([data-state="open"]).active a {
	color: var(--cnvs-themecolor);
}

.cate-wrap .toggle-content ul {
	margin-top: calc(-1 * var(--cate-padding));
}

.cate-wrap .toggle-content li:not(:last-child) a {
	border-bottom: 1px solid var(--cnvs-contrast-400) !important;
}

.cate-wrap .toggle-content li.active a {
	color: var(--cnvs-themecolor);
}

/* ===== hot ===== */
.hot-item .item-title {
	transition: .3s ease all;
}

.hot-item:hover .item-title {
	color: var(--cnvs-themecolor);
}

.hot-item .img-wrap {
	width: 120px;
}

.hot-item .img-wrap img {
	transition: .3s ease all;
}

.hot-item:hover .img-wrap img {
	transform: scale(1.05);
}

/* ===== mobile menu ===== */
.pd-cate-mobile > div > div {
	height: 42px;
	padding: 4px 4px 4px 12px;
	background-color: var(--cnvs-contrast-200);
	border-color: var(--cnvs-contrast-200) !important;
}

.pd-cate-mobile .form-control {
	padding-left: 12px;
	padding-right: 46px;
	background-color: var(--cnvs-contrast-200);
	border-color: var(--cnvs-contrast-200) !important;
}

.pd-cate-mobile .form-control + button {
	font-size: 18px;
	color: var(--cnvs-black);
}

.pd-cate-mobile .form-control + button:hover,
.pd-cate-mobile .form-control + button:active {
	color: var(--cnvs-themecolor);
}

.pd-cate-mobile .menu-list {
	top: 40px;
	background-color: var(--cnvs-contrast-100);
	display: none;
}

.pd-cate-mobile .menu-list.show {
	display: block;
}

.pd-cate-mobile .menu-list .toggle:not(:last-child) {
	border-bottom: 1px solid var(--bs-border-color);
}

.pd-cate-mobile .menu-list .toggle-title {
	padding: 6px 12px;
}

.pd-cate-mobile .menu-list .toggle .toggle-icon {
	padding-right: 12px;
	max-width: 50px;
}

.pd-cate-mobile .menu-list .toggle-content ul {
	margin-bottom: 4px;
	margin-top: -4px;
}

.pd-cate-mobile .menu-list .toggle-content a {
	padding: 4px 12px;
}

/* ==================== info ==================== */
/* ===== img ===== */
.pdinfo-tag-wrap .pd-tag {
	font-size: 15px;
	border-radius: 0 24px 0 0;
	padding: 6px 24px;
	transform: none;
}

.pdSwiper2 .swiper-slide {
	border-radius: 42px;
	overflow: hidden;
}

.pdSwiper .swiper-slide {
	border-radius: 8px;
	overflow: hidden;
}

.pdSwiper2 .swiper-slide,
.pdSwiper .swiper-slide {
	aspect-ratio: 1000 / 667;
	cursor: pointer;
}

.pdSwiper2 .swiper-slide img,
.pdSwiper .swiper-slide img {
	object-fit: contain;
	height: 100%;
	width: 100%;
}

.pdSwiper2 .swiper-button-prev {
	width: 32px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0 10px 10px 0;
}

.pdSwiper2 .swiper-button-next {
	width: 32px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px 0 0 10px;
}

.pdSwiper2 div[class*=swiper-button-]:after {
	display: none;
}

.pdSwiper2 div[class*=swiper-button-] {
	opacity: 0;
	transition: .3s ease all;
}

.pdSwiper2:hover div[class*=swiper-button-] {
	opacity: 1;
}

.pdSwiper .swiper-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: .3s ease all;
}

.pdSwiper .swiper-slide-thumb-active::before {
	opacity: 0;
}

/* ==================== short ==================== */
.pdshort-txt {
	background: var(--cnvs-contrast-200);
	padding: 24px;
	border-radius: 0 36px 36px;
}

.pdshort-txt .data-wrap {
	border-radius: 0 16px 16px 16px;
	border-bottom: 3px solid var(--cnvs-themecolor);
	background: rgba(255, 255, 255, 0.7);
}

/* ===== tab ===== */
.tab-content {
	padding: 24px 36px;
	background-color: #FFF1EB;
	/* border: 2px solid var(--cnvs-themecolor); */
	/* border-radius: 0 36px 36px; */
}

.nav-link {
	color: var(--cnvs-black);
	border: 2px solid var(--cnvs-themecolor);
	/* border-bottom: 0; */
	border-radius: 16px 16px 0 0;
	flex-grow: 1;
	text-align: center;
}

.nav-link:hover {
	background-color: var(--cnvs-black);
	color: var(--cnvs-white);
	border-color: var(--cnvs-black);
}

.nav-link:first-child {
	border-radius: 24px 0 0 0;
}

.nav-link:last-child {
	border-radius: 0 24px 0 0;
}

/* ==================== share ==================== */
.share-wrap,
.share-wrap .share-link {
	color: var(--txt-gray);
	font-family: var(--font-work);
}

.share-wrap .share-divider {
	margin: 0 2px;
}

.share-link {
	font-size: 15px;
	font-weight: 500;
	transition: .3s ease all;
}

/* =========================================================================
==intro
========================================================================= */
/* ==================== 關於我們滾動動畫 ==================== */
@keyframes introSlideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-40px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes introSlideInRight {
	0% {
		opacity: 0;
		transform: translateX(40px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.intro-section .txt-wrap.wow {
	animation-name: introSlideInLeft;
}

.intro-section .img-wrap.wow {
	animation-name: introSlideInRight;
}

.intro-section .txt-wrap {
	gap: 36px;
}

/* ==================== item ==================== */
.service-item {
	padding: 30px 32px;
	border-radius: 40px 40px 0 40px;
	background-color: var(--cnvs-themecolor);
}

.service-wrap > div:nth-child(2) .service-item {
	border-radius: 40px 40px 40px 0;
}

.service-wrap > div:nth-child(3) .service-item {
	border-radius: 40px 0 40px 40px;
}

.service-wrap > div:nth-child(4) .service-item {
	border-radius: 0 40px 40px 40px;
}

.service-item .item-title {
	font-size: var(--fs-headerNav);
	font-weight: 600;
}

.service-item .item-title::before {
	content: '';
	width: 12px;
	height: 2px;
	display: inline-block;
	margin-right: 10px;
	background-color: var(--cnvs-white);
}

.service-item .item-title::after {
	content: '';
	width: 12px;
	height: 2px;
	display: inline-block;
	margin-left: 10px;
	background-color: var(--cnvs-white);
}

/* ==================== info ==================== */
@media (min-width: 1680px) {
	.color-content {
		--left-space: 145px;
	}
}

@media (min-width: 1600px) {
	.color-content .container:before {
		content: '';
		width: 100%;
		height: 100%;
		background: var(--cnvs-white);
		border-radius: 120px 0 0 0;
		position: absolute;
		left: calc(-1 * var(--left-space));
		top: 0;
		z-index: -1;
	}
}

/* ==================== 公司理念動畫 ==================== */
@keyframes ideaFadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ideaSlideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ideaSlideInRight {
	0% {
		opacity: 0;
		transform: translateX(50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.color-section .section-title.wow {
	animation-name: ideaFadeInUp;
}

.color-section .intro-text.wow {
	animation-name: ideaFadeInUp;
}

/* 證書卡片動畫 */
@keyframes cerCardReveal {
	0% {
		opacity: 0;
		transform: translateY(40px) scale(0.95);
	}
	60% {
		transform: translateY(-5px) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.cer-item-wrap.wow {
	animation-name: cerCardReveal;
}

/* WOW.js 預先隱藏元素，避免閃爍 */
.wow {
	visibility: hidden;
}

/* 列表頁動畫 */
@keyframes listFadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.sidebar-wrap.wow,
.list-wrap.wow,
.album-filter-wrap.wow,
.container.wow,
.faq-intro.wow,
.faq-info-wrap .col-lg-8.wow,
.more-wrap.wow {
	animation-name: listFadeInUp;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 送出成功頁面動畫 */
@keyframes contactOkSlideLeft {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes contactOkSlideRight {
	0% {
		opacity: 0;
		transform: translateX(30px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.reservation-section .row > .col-md-6.wow {
	animation-name: contactOkSlideLeft;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reservation-section .row > .col-md-5.wow {
	animation-name: contactOkSlideRight;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* FAQ 內頁圖片動畫 */
.faq-info-wrap .col-lg-4 .img-wrap img,
.faq-info-wrap .col-lg-4 .img-wrap::after {
	opacity: 0;
}

.faq-info-wrap .col-lg-4 .img-wrap::after {
	transform: scale(0.8);
	transform-origin: bottom right;
}

.faq-info-wrap .col-lg-4.faq-page-animate .img-wrap img {
	animation: faqFadeIn 1.2s ease forwards;
}

.faq-info-wrap .col-lg-4.faq-page-animate .img-wrap::after {
	animation: faqOrangeGrow 1s ease 0.6s forwards;
}

/* FAQ More Questions 動畫 */
/* 車子滾動視差 - 由 JS 控制 */
.faq-more-section .faq-more-car img {
	transition: transform 0.1s ease-out, opacity 0.3s ease;
	will-change: transform, opacity;
}

@keyframes faqMoreFadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-more-section .faq-more-txt,
.faq-more-section .faq-more-car img,
.faq-more-section .faq-more-btn {
	opacity: 0;
}

.faq-more-section.faq-more-animate .faq-more-txt {
	animation: faqMoreFadeIn 0.8s ease forwards;
}

.faq-more-section.faq-more-animate .faq-more-car img {
	opacity: 1;
}

.faq-more-section.faq-more-animate .faq-more-btn {
	animation: faqMoreFadeIn 0.8s ease forwards;
}

.idea-wrap .idea-item.wow {
	animation-name: ideaSlideInLeft;
}

.idea-wrap .idea-item.wow.from-right {
	animation-name: ideaSlideInRight;
}

.idea-wrap .img-wrap.wow {
	animation-name: ideaSlideInRight;
}

.idea-wrap .img-wrap.wow.from-left {
	animation-name: ideaSlideInLeft;
}

.color-section {
	padding-top: 0;
}

.color-section .color-title {
	padding: var(--section) 0 36px;
}

.color-section .color-title .section-title .en::before,
.color-section .color-title .section-title .en::after {
	background-color: var(--cnvs-white);
}

.color-content {
	--left-space: 90px;
	position: relative;
	z-index: 0;
	background-color: var(--cnvs-contrast-200);
}

.color-content:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: var(--section);
	background: var(--cnvs-themecolor);
	z-index: -1;
}

.color-content:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	background: var(--cnvs-white);
	z-index: -1;
}

.color-content .container {
	background: var(--cnvs-white);
	border-radius: 120px 0 0 0;
}

/* ==================== idea ==================== */
.idea-wrap {
	--idea-space: 100px;
	margin-bottom: calc(-1 * var(--idea-space));
}

.idea-wrap > div {
	padding-bottom: var(--idea-space);
}

.idea-item {
	position: relative;
	background-color: var(--cnvs-contrast-200);
	padding: 36px;
	border-radius: 0 80px 0 0;
}

.idea-item .num {
	font-size: 65px;
	line-height: 1;
	font-weight: 900;
	color: #FFC9AD;
	position: absolute;
	top: 0;
	left: -24px;
	transform: translateY(-50%);
}

/* ==================== certificate ==================== */
.cer-item-wrap:nth-child(even) {
	animation-delay: .1s;
}

.cer-img::before,
.cer-img::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 75%;
	height: 100%;
	border: 2px solid var(--cnvs-themecolor);
	z-index: -1;
	transition: .3s ease-in-out;
}

.cer-img::before {
	opacity: 0;
  background: linear-gradient(90deg, var(--cnvs-themecolor) 0%, var(--cnvs-themecolor) 100%);
	transition: .3s ease-in-out;
}

.cer-item:hover .cer-img::after {
	width: 100%;
}

.cer-item:hover .cer-img::before {
	width: 100%;
	opacity: 1;
}

/* ==================== info ==================== */
.news-info-wrap .news-item .news-date {
	transform: none;
	position: static;
}

.news-info-wrap .img-wrap {
	border-radius: 42px;
}

/* ===== share ===== */
.news-share-wrap {
	position: sticky;
	top: calc(var(--section) / 3 + var(--cnvs-header-height));
}

.news-share-wrap span {
	writing-mode: vertical-lr;
}

.news-share-wrap span::after {
	content: '';
	display: block;
	height: 18px;
	width: 1px;
	background-color: var(--cnvs-black);
	transform: rotate(20deg);
	margin: 8px;
}

.news-share-wrap .items {
	gap: 10px;
	background-color: #f7c8b2;
}

.news-share-wrap .items .btn_ {
	background-color: var(--cnvs-themecolor);
}

/* ===== news nav (上一篇/下一篇) ===== */
.news-nav-wrap {
	border-color: #e5e5e5 !important;
}

.news-nav-item {
	text-decoration: none;
	flex: 1;
	max-width: 40%;
}

.news-nav-item .nav-label {
	font-size: 15px;
	font-weight: 500;
	transition: opacity 0.3s ease;
}

.news-nav-item .nav-label i {
	font-size: 12px;
}

.news-nav-item .nav-title {
	font-size: 15px;
	font-weight: 500;
	color: var(--cnvs-black);
	transition: color 0.3s ease;
}

.news-nav-item:hover .nav-title {
	color: var(--cnvs-themecolor);
}

.news-nav-item.disabled {
	pointer-events: none;
	opacity: 0.4;
}

/* =========================================================================
==faq
========================================================================= */
/* ==================== FAQ 精緻動畫 ==================== */
@keyframes faqFadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes faqOrangeGrow {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes faqTxtSlideIn {
	0% {
		opacity: 0;
		transform: translateX(30px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.faq-section .img-1 img,
.faq-section .img-1:after,
.faq-section .img-2,
.faq-section .txt-wrap {
	opacity: 0;
}

.faq-section .img-1.faq-animate img {
	animation: faqFadeIn 1.2s ease forwards;
}

.faq-section .img-1.faq-animate:after {
	animation: faqOrangeGrow 1s ease 0.6s forwards;
}

.faq-section .img-2.faq-animate {
	animation: faqFadeIn 1.2s ease 0.4s forwards;
}

.faq-section .txt-wrap.faq-animate {
	animation: faqTxtSlideIn 1s ease 0.2s forwards;
}

.faq-section::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.faq-section .txt-wrap {
	padding-left: 36px;
}

.faq-wrap + .btn-base {
	margin-top: 36px;
}

.faq-wrap + .btn-base:hover,
.faq-wrap + .btn-base:active {
	background-color: var(--cnvs-white);
	color: var(--cnvs-black);
}

/* ==================== img ==================== */
.faq-section {
	--imgdeco: 16px
}

.faq-section .img-wrap {
	gap: calc(24px + var(--imgdeco));
	margin-bottom: var(--imgdeco);
}

.faq-section .img-wrap > * {
	width: calc(50% - ((24px + var(--imgdeco)) / 2));
}

.faq-section .img-1 img {
	border-radius: 40px 0;
	width: 100%;
}

.faq-section .img-1:after {
	content: '';
	width: 85%;
	height: 70%;
	transform-origin: bottom right;
	position: absolute;
	bottom: calc(-1 * var(--imgdeco));
	right: calc(-1 * var(--imgdeco));
	background-color: var(--cnvs-themecolor);
	border-radius: 0 0 40px 0;
	z-index: -1;
}

.faq-section .img-2 {
	border-radius: 0 40px 0 0;
}

/* ==================== item ==================== */
.faq-item {
	padding: 0 24px;
	border-radius: 14px;
	border-bottom: 1px solid var(--cnvs-themecolor);
	background: var(--txt-gray);
	transition: .3s ease all;
}

.faq-item:hover,
.faq-item.toggle-active {
	background-color: var(--cnvs-white);
}

.faq-item:hover,
.faq-item:hover .toggle-title,
.faq-item:hover .toggle-header,
.faq-item.toggle-active,
.faq-item.toggle-active .toggle-title,
.faq-item.toggle-active .toggle-header {
	color: var(--cnvs-black);
}

.faq-item .toggle-title {
	font-size: var(--fs-normal);
	font-weight: 400;
	line-height: 1.75;
}

.toggle-icon {
	background-color: var(--cnvs-themecolor);
	border-radius: 6px;
	width: 32px;
	height: 32px;
	max-width: 80px;
}

/* ==================== info ==================== */
.faq-info-wrap .img-wrap {
	--imgdeco: 16px;
	position: sticky;
	top: calc(var(--section) / 3 + var(--cnvs-header-height));
}

.faq-info-wrap .img-wrap::after {
	content: '';
	width: 85%;
	height: 70%;
	position: absolute;
	bottom: calc(-1 * var(--imgdeco));
	right: calc(-1 * var(--imgdeco));
	background-color: var(--cnvs-themecolor);
	border-radius: 0 0 40px 0;
	z-index: -1;
}

.faq-info-wrap .img-wrap img {
	border-radius: 40px;
}

.faq-info-wrap .faq-wrap {
	padding: 24px;
	background-color: var(--cnvs-contrast-200);
	border-radius: 30px;
	margin-left: 36px;
}

.faq-info-wrap .faq-item {
	background: var(--cnvs-white);
	border-bottom: 2px solid var(--cnvs-themecolor);
}

.faq-info-wrap .faq-item:hover,
.faq-info-wrap .faq-item.toggle-active {
	background: var(--txt-gray);
}

.faq-info-wrap .faq-item .toggle-title {
	color: var(--cnvs-black);
}

.faq-info-wrap .faq-item:hover .toggle-header,
.faq-info-wrap .faq-item:hover .toggle-title,
.faq-info-wrap .faq-item.toggle-active .toggle-header,
.faq-info-wrap .faq-item.toggle-active .toggle-title {
	color: var(--cnvs-white);
}

.faq-info-wrap .toggle-content {
	color: var(--cnvs-white);
}

/* ===== more ===== */
.faq-info-wrap .more-wrap {
	--contact-height: 48px;
	padding: var(--contact-height) 0;
	background-color: var(--cnvs-themecolor);
	border-radius: 110px 110px 0 0;
}

.faq-info-wrap .section-title .en::before,
.faq-info-wrap .section-title .en:after {
	background-color: var(--cnvs-white);
}

.faq-info-wrap .more-wrap .row > div:first-child::after {
	content: '';
	width: 1px;
	height: calc(100% - 10px);
	background-color: var(--cnvs-white);
	position: absolute;
	top: 50%;
	right: -20%;
	transform: translateY(-50%);
}

.faq-info-wrap .more-wrap .row > div:last-child::after {
	content: '';
	width: 1px;
	height: calc(100% - 10px);
	background-color: var(--cnvs-white);
	position: absolute;
	top: 50%;
	left: -20%;
	transform: translateY(-50%);
}

.faq-info-wrap .more-wrap .item-title {
	font-size: 20px;
}

.faq-info-wrap .more-wrap .img-wrap {
	position: absolute;
	width: 80%;
	top: 40px;
	left: 50%;
	transform: translate(-50%, -50%);
}

.faq-info-wrap .more-wrap .btn-base.white {
	border: 3px solid var(--cnvs-white);
	padding: 8px 46px;
	transition: .3s ease all;
}

.faq-info-wrap .more-wrap .btn-base.white:hover,
.faq-info-wrap .more-wrap .btn-base.white:active {
	background-color: var(--cnvs-white);
	color: var(--cnvs-black);
}

.faq-info-wrap .more-wrap .btn-base.line {
	background-color: var(--cnvs-color-line);
	border: 3px solid var(--cnvs-color-line);
	padding: 8px 46px;
	transition: .3s ease all;
}

.faq-info-wrap .more-wrap .btn-base.line:hover,
.faq-info-wrap .more-wrap .btn-base.line:active {
	background-color: var(--cnvs-white);
	border-color: var(--cnvs-white);
	color: var(--cnvs-color-line);
}

/* =========================================================================
==history
========================================================================= */
/* ==================== 企業沿革進場動畫 ==================== */
@keyframes historySlideInLeft {
	0% {
		opacity: 0;
		transform: translateX(-50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes historySlideInRight {
	0% {
		opacity: 0;
		transform: translateX(50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.history-section .img-deco.wow {
	animation-name: historySlideInLeft;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.history-section .color-content .section.wow {
	animation-name: historySlideInRight;
	animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.history-section .color-content {
	background-color: var(--cnvs-themecolor);
}

.history-section .img-deco {
	position: absolute;
	top: calc(var(--section) * 2);
	left: 0;
	width: 26%;
	height: calc(100vh - var(--section) * 3);
	object-fit: cover;
	z-index: 3;
	border-radius: 0 120px 0 0;
	object-position: bottom right;
	will-change: bottom;
}

.history-section .year {
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	font-family: var(--font-work);
	width: 130px;
}

.history-item {
	--translate-y: 8px;
	gap: 36px;
	padding: 16px 0;
	border-bottom: 1px dashed var(--cnvs-contrast-400);
}

.history-item:last-child {
	border-bottom: none;
}

.history-item:after {
	content: '';
	width: 1px;
	height: calc(100% - 65px);
	background-color: var(--cnvs-contrast-400);
	position: absolute;
	top: 58px;
	left: 177px;
}

.history-item .dot {
	transform: translateY(var(--translate-y));
}

.history-item .txt-wrap {
	padding-top: var(--translate-y);
}

/* =========================================================================
==news
========================================================================= */
/* ==================== index ==================== */
.news-section .owl-carousel .owl-nav [class*=owl-] {
	margin-top: 0;
}

.news-section .owl-carousel {
	padding-bottom: var(--cnvs-owl-nav-sizes);
}

.news-section .owl-carousel .owl-stage-outer {
	padding-bottom: 36px;
}

.news-section .owl-stage {
	display: flex;
}

.news-section::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* ==================== item ==================== */
.news-item {
	--item-padding: 24px;
	height: 100%;
	background: var(--cnvs-contrast-200);
	border-radius: 42px 42px 0 0;
}

.news-info-wrap .news-item {
	height: auto;
	background-color: transparent;
	border-radius: 0;
}

.news-item .img-wrap {
	border-radius: 42px 42px 0 0;
}

.news-item .img-wrap img {
	aspect-ratio: 1000 / 667;
	object-fit: contain;
	width: 100%;
	background-color: var(--cnvs-white);
}

.news-item .txt-wrap {
	padding: var(--item-padding);
	background-color: var(--cnvs-contrast-200);
}

/* ===== title ===== */
.news-item .item-title {
	margin-top: 36px;
	transition: .3s ease all;
}

.news-item:hover .item-title,
.news-item:active .item-title {
	color: var(--cnvs-themecolor);
}

/* ===== img ===== */
.news-item .img-wrap img {
	transition: .3s ease all;
}

.news-item:hover .img-wrap img {
	transform: scale(1.05);
}

/* ===== tag ===== */
.news-item .news-tag {
	position: absolute;
	top: var(--item-padding);
	left: var(--item-padding);
	color: var(--txt-gray);
	padding-right: 120px;
}

.news-item .news-tag i {
	color: var(--cnvs-themecolor);
}

.news-item .news-tag:hover,
.news-item .news-tag:active {
	color: var(--cnvs-themecolor);
}

/* ===== date ===== */
.news-item .news-date {
	padding: 12px 8px 9px;
	border-radius: 16px 16px 0 0;
	border-bottom: 3px solid var(--cnvs-black);
	position: absolute;
	bottom: 0;
	right: var(--item-padding);
	transform: translateY(50%);
	gap: 8px;
}

.news-item .news-date .date {
	font-size: 30px;
	font-weight: 700;
}

/* ==================== list ==================== */
/* ===== hot ===== */
.hot-wrap {
	--hot-padding: 8px;
	padding: calc(24px - var(--hot-padding));
	background-color: var(--cnvs-contrast-200);
	border-radius: 0 0 36px 36px;
	border-top: 1px solid var(--cnvs-contrast-500);
}

.hot-wrap .item-title {
	font-size: 17px;
}

.news-nav-item.link-disabled {
	cursor: auto;
	opacity: 0.7;
}

.news-nav-item.link-disabled .nav-title,
.news-nav-item.link-disabled:hover .nav-title {
	color: var(--cnvs-contrast-800);
}

/* =========================================================================
==contact
========================================================================= */
.contact-section {
	--contact-height: 48px;
	padding: var(--contact-height) 0;
}

/* ==================== 立即預約動畫 ==================== */
@keyframes contactTxtFadeIn {
	0% {
		opacity: 0;
		transform: translateX(40px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes contactBtnPop {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	70% {
		transform: scale(1.05);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.contact-section .car-img {
	transition: transform 0.1s ease-out;
	will-change: transform;
	transform: translateX(-150px);
}

.contact-section .txt-wrap > div:first-child,
.contact-section .btn-base {
	opacity: 0;
}

.contact-section.contact-animate .txt-wrap > div:first-child {
	animation: contactTxtFadeIn 0.8s ease 0.3s forwards;
}

.contact-section.contact-animate .btn-base.white {
	animation: contactBtnPop 0.5s ease 0.5s forwards;
}

.contact-section.contact-animate .btn-base.black {
	animation: contactBtnPop 0.5s ease 0.65s forwards;
}

.contact-section.contact-animate .btn-base.black.cta-ready {
	opacity: 1;
}

.contact-section .btn-base.black {
	position: relative;
	overflow: hidden;
}

.contact-section .btn-base.black::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	animation: ctaShine 3s ease-in-out 2s infinite;
}

.contact-section .btn-base.black:hover::after {
	animation-play-state: paused;
	opacity: 0;
}

@keyframes ctaShine {
	0% {
		left: -100%;
	}
	50%, 	100% {
		left: 100%;
	}
}

/* ==================== img ==================== */
.contact-section .img-wrap {
	position: absolute;
	bottom: 0;
	width: 38%;
}

.contact-section .img-wrap::before {
	content: '';
	background-color: var(--cnvs-white);
	width: var(--contact-height);
	height: calc(100% + var(--contact-height) * 2);
	position: absolute;
	right: var(--contact-height);
	top: calc(-1 * var(--contact-height));
	transform: skewX(-24deg);
	z-index: 2;
}

.contact-section .img-wrap .bg-img {
	clip-path: polygon(0 0, 100% 0, 85% 101%, 0% 101%);
	object-position: bottom right;
}

.contact-section .car-img {
	width: 370px;
	position: absolute;
	bottom: 40px;
	right: 75px;
}

/* ==================== txt ==================== */
.contact-section .txt-wrap {
	width: 75%;
	gap: 36px;
}

.contact-section .txt-wrap .title {
	font-size: var(--fs-sectionTitle);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 1px;
}

/* ===== btn ===== */
.contact-section .txt-wrap .btn-base.white {
	border: 3px solid var(--cnvs-white);
	padding: 8px 46px;
	transition: .3s ease all;
}

.contact-section .txt-wrap .btn-base.white:hover,
.contact-section .txt-wrap .btn-base.white:active {
	background-color: var(--cnvs-white);
	color: var(--cnvs-black);
}

.contact-section .txt-wrap .btn-base.black {
	background-color: var(--cnvs-black);
	border: 3px solid var(--cnvs-black);
	padding: 8px 46px;
	transition: .3s ease all;
}

.contact-section .txt-wrap .btn-base.black:hover,
.contact-section .txt-wrap .btn-base.black:active {
	background-color: var(--cnvs-white);
	border-color: var(--cnvs-white);
	color: var(--cnvs-black);
}

/* ==================== reservation ==================== */
/* ==================== 預約頁面滾動視差動畫 ==================== */
@keyframes contactInfoSlideIn {
	0% {
		opacity: 0;
		transform: translateX(-50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes contactFormSlideIn {
	0% {
		opacity: 0;
		transform: translateX(50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes contactItemFadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes contactSnsReveal {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	70% {
		transform: scale(1.05);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.reservation-section .info-wrap,
.reservation-section .form-wrap {
	opacity: 0;
}

.reservation-section.contact-parallax-animate .info-wrap {
	animation: contactInfoSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.reservation-section.contact-parallax-animate .form-wrap {
	animation: contactFormSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.reservation-section .info-item {
	opacity: 0;
}

.reservation-section.contact-parallax-animate .info-item:nth-child(1) {
	animation: contactItemFadeIn 0.6s ease 0.3s forwards;
}

.reservation-section.contact-parallax-animate .info-item:nth-child(2) {
	animation: contactItemFadeIn 0.6s ease 0.45s forwards;
}

.reservation-section .sns-wrap {
	opacity: 0;
	transform: translateY(20px);
}

.reservation-section.contact-parallax-animate .sns-wrap {
	animation: contactItemFadeIn 0.6s ease 0.6s forwards;
}

.reservation-section .form-group {
	opacity: 0;
	transform: translateY(15px);
}

.reservation-section.contact-parallax-animate .form-group {
	animation: contactItemFadeIn 0.6s ease 0.5s forwards;
}

.reservation-section .form-wrap .footer-title {
	opacity: 0;
}

.reservation-section.contact-parallax-animate .form-wrap .footer-title {
	animation: contactItemFadeIn 0.6s ease 0.4s forwards;
}

.reservation-section .info-wrap {
	position: sticky;
	top: calc(var(--section) / 3 + var(--cnvs-header-height));
}

.reservation-section .info-item:not(:first-child) {
	border-top: 1px dashed var(--cnvs-contrast-400);
	padding-top: 24px;
}

.reservation-section .form-wrap {
	padding: 42px 48px;
	background-color: var(--cnvs-contrast-200);
	border-radius: 80px 0 0 80px;
	position: relative;
}

.reservation-section .form-wrap:after {
	content: '';
	background-color: var(--cnvs-contrast-200);
	left: 100%;
	top: 0px;
	bottom: 0px;
	right: 0px;
	position: absolute;
	width: 3000px;
}

.reservation-section .form-wrap .footer-title {
	border-bottom: 1px dashed var(--cnvs-contrast-500);
	padding-bottom: 20px;
}

.reservation-section .bg-threads {
	--cnvs-color-threads: var(--cnvs-black);
}

/* =========================================================================
==album
========================================================================= */
.list-wrap.album-list-page {
	--bs-gutter-x: 36px;
	row-gap: var(--bs-gutter-x);
}

.album-item .img-wrap {
	border-radius: 42px 0 42px 42px;
	z-index: 1;
	transition: .3s ease all;
}

.album-item:hover .img-wrap {
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.22);
}

.album-item .img-wrap img {
	transition: .3s ease all;
	aspect-ratio: 1000 / 667;
	object-fit: cover;
	width: 100%;
	background-color: var(--cnvs-white);
}

.album-item:hover .img-wrap img {
	transform: scale(1.05);
}

.album-item .txt-wrap {
	--space: 16px;
	padding: calc(var(--space) * 3) 24px var(--space);
	border: 5px solid var(--cnvs-contrast-300);
	margin-right: 36px;
	margin-top: calc(-1 * (var(--space) * 2 + 5px));
	border-radius: 0px 0px 36px 36px;
	transition: .3s ease all;
}

.album-item:hover .txt-wrap {
	background-color: var(--cnvs-themecolor);
	border-color: var(--cnvs-themecolor);
}

.album-item:hover .txt-wrap .item-title {
	color: var(--cnvs-white);
}

.album-tag {
	padding: 8px 40px;
	border-radius: 0 0 0 24px;
	color: var(--cnvs-white);
	background-color: var(--cnvs-black);
	line-height: 1.3;
	letter-spacing: 1px;
	font-weight: 400;
	position: absolute;
	top: 0;
	right: 0;
}

.album-tag:hover, .album-tag:active {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
}

/* ===== filter ===== */
.album-filter-wrap {
	background-color: var(--cnvs-contrast-200);
	padding: 20px;
	border-radius: 16px;
	margin-bottom: 36px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.album-filter-wrap .cate {
	display: flex;
	align-items: center;
	gap: 12px;
}

.album-filter-wrap .cate a {
	background-color: var(--cnvs-white);
	padding: 4px 16px;
	border-radius: 6px;
}

.album-filter-wrap .cate li.active a {
	background-color: var(--cnvs-themecolor);
	color: var(--cnvs-white);
}

.album-filter-wrap .form-control {
	border-radius: 6px;
}

/* ===== 水平滑動分類（992px 以上） ===== */
@media (min-width: 992px) {
	.cate-slider {
		display: flex;
		align-items: center;
		flex: 1;
		min-width: 0;
		position: relative;
		margin-right: 48px;
	}

	.cate-slider:before {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		background: linear-gradient(90deg, var(--cnvs-contrast-200) 3%, rgba(255, 255, 255, 0) 4%, rgba(255, 255, 255, 0) 96%, var(--cnvs-contrast-200) 97%);
		pointer-events: none;
	}

	.cate-slider.no-scroll:before {
		display: none;
	}

	.cate-container {
		flex: 1;
		min-width: 0;
		overflow: hidden;
		margin: 0 44px;
	}

	.cate-slider .cate {
		overflow-x: auto;
		scroll-behavior: smooth;
		scrollbar-width: none;
		flex-wrap: nowrap;
	}

	.cate-slider .cate::-webkit-scrollbar {
		display: none;
	}

	.cate-slider .cate li {
		flex-shrink: 0;
	}

	.cate-arrow {
		opacity: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 2;
		width: 32px;
		height: 32px;
		border: none;
		background-color: var(--cnvs-black);
		color: var(--cnvs-white);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: all 0.3s;
	}

	.cate-arrow:hover:not(.disabled) {
		background-color: var(--cnvs-themecolor);
		color: var(--cnvs-white);
	}

	.cate-prev {
		left: 0;
	}

	.cate-next {
		right: 0;
	}

	.cate-arrow.disabled {
		opacity: 0.3;
		cursor: not-allowed;
		pointer-events: none;
	}
}

@media (max-width: 991.98px) {
	.cate-arrow {
		display: none;
	}
}

/* ==================== info ==================== */
.album-info-title {
	border-bottom: 3px solid var(--cnvs-black);
	border-radius: 16px 16px 0 0;
}

.more-img-wrap .img-wrap {
	margin: 0 16px 16px 0;
}

.more-img-wrap .img-wrap::after {
	content: '';
	position: absolute;
	bottom: -16px;
	right: -16px;
	width: 100%;
	height: 100%;
	background-color: rgba(var(--cnvs-themecolor-rgb), .2);
	border-radius: 16px;
	z-index: -1;
}

.more-img-wrap a .img {
	border-radius: 16px;
}

.more-img-wrap a .img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.3);
	border-radius: 16px;
	opacity: 0;
	z-index: 1;
}

.more-img-wrap a:hover .img::before {
	opacity: 1;
}

.more-img-wrap a .img img {
	aspect-ratio: 1000 / 667;
	object-fit: cover;
	object-position: center;
	transition: .3s ease;
}

.more-img-wrap a:hover .img img {
	transform: scale(1.05);
}

/* =========================================================================
==footer
========================================================================= */
#footer {
	background-color: #080404;
}

#footer .footer {
	padding: 60px 0;
}

.footer-h1 {
	font-size: var(--fs-normal);
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 1px;
}

#footer .menu-wrap a,
#footer .contact-wrap a {
	color: var(--cnvs-white);
}

#footer .menu-wrap a:hover,
#footer .contact-wrap a:hover {
	color: var(--cnvs-themecolor);
}

/* ==================== sns ==================== */
.sns-wrap .social-icon {
	border-radius: 10px;
	font-size: 22px;
}

/* ==================== float ==================== */
.float-sns-wrap {
	position: fixed;
	right: 0;
	bottom: 120px;
	z-index: 99;
	pointer-events: none;
	transition: transform .6s ease;
}

.float-sns-wrap.float-hidden {
	transform: translateX(100%);
	transition: transform 1s ease;
}

.float-sns-wrap .sns-item {
	gap: 12px;
	height: var(--float-height);
	border-radius: 14px 0 0 14px;
	padding: 10px;
	transform: translateX(calc(100% - var(--float-height) + 1px));
	transition: .3s ease all;
	pointer-events: auto;
}

.float-sns-wrap .sns-item:hover {
	transform: translateX(0);
}

.float-sns-wrap .sns-item i {
	font-size: 30px;
}

.float-sns-wrap .sns-item[title="telephone"] i {
	font-size: 28px;
}

/* ==================== go to top ==================== */
.stretched #gotoTop {
	font-family: var(--font-work);
	right: 0;
	gap: 12px;
	width: auto;
	height: var(--float-height);
	border-radius: 14px 0 0 14px;
	padding: 10px;
	transform: translateX(calc(100% - var(--float-height)));
	background-color: var(--cnvs-themecolor);
	transition: .3s ease all;
}

.stretched #gotoTop:hover {
	transform: translateX(0);
}

.stretched #gotoTop i {
	font-size: 34px;
}

.stretched #gotoTop.on-orange-bg,
.stretched #gotoTop.on-orange-bg:hover {
	background-color: var(--cnvs-white);
	color: var(--cnvs-black);
}

/* =========================================================================
==breadcrumb + pagintaion + privacy
========================================================================= */
/* ==================== breadcrumb ==================== */
.breadcrumb-wrap {
	background-color: var(--cnvs-contrast-200);
}

.breadcrumb-subtitle {
	font-size: var(--fs-normal);
}

.breadcrumb-subtitle:before {
	content: '';
	display: inline-block;
	margin-right: 16px;
	width: 16px;
	height: 2px;
	background-color: var(--cnvs-themecolor);
}

.breadcrumb-subtitle:after {
	content: '';
	display: inline-block;
	margin-left: 16px;
	width: 16px;
	height: 2px;
	background-color: var(--cnvs-themecolor);
}

.breadcrumb-menu {
	padding: 16px 0;
}

.breadcrumb-menu > * {
	line-height: 1.3;
}

.breadcrumb-menu li:not(:last-child):after {
	content: "\f285";
	vertical-align: -.125em;
	display: inline-block;
	font-family: bootstrap-icons !important;
	color: var(--cnvs-themecolor);
	margin: 0 8px;
}

/* ==================== pagination ==================== */
.pagination {
	margin-top: 56px;
	gap: 12px;
}

.page-link {
	width: 44px;
	height: 44px;
	border-color: var(--cnvs-contrast-200);
}

/* ==================== privacy ==================== */
.fbox-content p {
	color: var(--cnvs-black);
}

.fbox-content h3 {
	font-size: var(--fs-itemTitle);
}

.fbox-icon a {
	font-family: var(--font-work);
}

/* =========================================================================
==RWD
========================================================================= */
@media (max-width: 1999px) {
	/* ==================== contact ==================== */
	.contact-section .img-wrap {
    width: 47%;
    left: -8%;
	}
}

@media (max-width: 1599px) {
	:root {
		--header-wrap-clone: 120px;
	}

	/* ==================== header ==================== */
	header {
    --cnvs-header-height: 80px;
	}

	#logo a {
		padding: 20px 42px;
	}

	.is-expanded-menu .menu-container > .menu-item:not(:first-child) {
		margin-left: 4px;
	}

	.is-expanded-menu .menu-link {
		padding: 24px 14px;
	}

	.header-misc {
		gap: 16px;
	}

	/* ==================== contact ==================== */
	.contact-section .img-wrap {
		width: 60%;
		left: -22%;
	}

	.contact-section .img-wrap .bg-img {
		clip-path: polygon(0 0, 100% 0, 88% 101%, 0% 101%);
	}
}

@media (max-width: 1399px) {
	:root {
		--fs-BNTitle: 38px;
		--fs-BNTxt: 18px;
		--fs-headerNav: 18px;
		--fs-itemTitle: 22px;

		--float-height: 48px;
		--header-wrap-clone: 97px;
	}

	.btn-base {
		padding: 10px 32px 6px;
		border-radius: 12px 12px 0 12px;
	}

	.section-title {
		margin-bottom: 24px;
	}

	/* ==================== header ==================== */
	header {
		--cnvs-header-height: 65px;
		--cnvs-header-height-shrink: 50px;
	}

	#logo a {
		padding: 16px 24px;
	}

	.is-expanded-menu .menu-container > .menu-item:not(:first-child) {
		margin-left: 0;
	}

	#top-search-trigger {
		width: 50px;
		font-size: 20px;
	}

	/* ==================== banner ==================== */
	.banner-wrap .btn-base {
    font-size: var(--fs-normal);
	}

	.swiper-pagination span {
    width: 10px;
    height: 10px;
	}

	/* ==================== intro ==================== */
	.intro-section .txt-wrap {
    gap: 24px;
	}

	/* ==================== product ==================== */
	.pd-section .section-title {
    margin-bottom: calc(24px - var(--hover-height));
	}

	.pd-section .owl-carousel .owl-stage-outer {
		padding-bottom: calc(24px + var(--cnvs-owl-nav-sizes) / 2);
	}

	/* ==================== faq ==================== */
	.faq-section .txt-wrap {
    padding-left: 24px;
	}

	.faq-wrap + .btn-base {
    margin-top: 24px;
	}
	
	/* ==================== news ==================== */
	.news-section .owl-carousel .owl-stage-outer {
    padding-bottom: 24px;
	}

	/* ==================== contact ==================== */
	.contact-section .img-wrap {
		width: 75%;
		left: -37%;
	}

	.contact-section .img-wrap .bg-img {
		clip-path: polygon(0 0, 100% 0, 86% 101%, 0% 101%);
	}

	.contact-section .car-img {
		bottom: 48px;
	}

	/* ==================== footer ==================== */
	.float-sns-wrap {
		bottom: 114px;
	}

	.float-sns-wrap .sns-item i {
    font-size: 26px;
	}

	.float-sns-wrap .sns-item[title="telephone"] i {
    font-size: 24px;
	}
	
	.stretched #gotoTop i {
    font-size: 30px;
	}

	.footer-logo img {
		width: 150px;
	}

	/* ==================== breadcrumb + pagintaion ==================== */
}

@media (max-width: 1199px) {
	:root {	
    --fs-BNTitle: 36px;
    --fs-BNTxt: 16px;
    --fs-sectionTitle: 34px;
    --fs-sectionEN: 17px;
    --fs-itemTitle: 20px;
		--fs-headerNav: 17px;

		--cnvs-content-padding: 80px;
		--header-wrap-clone: 84px;
	}

	/* ==================== base ==================== */
	.section-title {
		gap: 4px;
	}

	/* ==================== header ==================== */
	header {
		--cnvs-header-height: 60px;
	}

	#logo a {
		padding: 12px 18px;
	}

	.sticky-header #header-wrap #logo img {
    height: 45px;
	}
	
	.is-expanded-menu .menu-link {
		padding: 24px 8px;
	}

	.header-misc .go-btn {
		height: 43px;
		padding: 8px 16px 5px;
	}

	.header-misc .go-btn i {
    font-size: 18px;
	}

	#top-search-trigger {
		width: 46px;
		height: 43px;
		font-size: 18px;
	}

	.header-misc {
		gap: 12px;
	}

	/* ==================== product ==================== */
	.pd-section {
    --hover-height: 8px;
	}

	.pdicons-wrap {
    gap: 16px;
	}

	.pd-item-content {
    padding: var(--hover-height) 20px 20px;
	}

	.sidebar-wrap {
    top: var(--cnvs-header-height);
	}

	.search-wrap button {
		font-size: 18px;
	}

	.share-title {
		width: 100%;
	}

	/* ==================== intro ==================== */
	.service-item {
    padding: 24px 24px
	}

	.service-item img {
		width: 90px;
	}

	.idea-item .num {
    font-size: 52px;
		left: -16px;
	}

	.idea-wrap {
    --idea-space: 80px;
	}

	.idea-wrap img {
		width: 140px;
		height: 140px;
	}

	.idea-wrap > div:first-child img {
		width: 180px;
		height: 180px;
	}

	/* ==================== history ==================== */
	.history-item {
    --translate-y: 6px;
    gap: 24px;
	}

	.history-item:after {
		left: 145px;
		height: calc(100% - 60px);
		top: 55px;
	}
	
	.history-section .year {
		font-size: 42px;
		width: 110px;
	}

	/* ==================== faq ==================== */
	.faq-info-wrap .more-wrap .img-wrap {
		width: 100%;
	}

	.faq-info-wrap .faq-wrap {
		margin-left: 16px;
	}

	.faq-info-wrap .more-wrap .btn-base.white,
	.faq-info-wrap .more-wrap .btn-base.line {
		padding: 8px 32px;
	}
	
	/* ==================== news ==================== */
	.news-item {
    --item-padding: 20px;
	}

	.news-item .news-date {
    padding: 8px 6px 5px;
	}
	
	.news-item .news-date .date {
    font-size: 24px;
	}

	.news-share-wrap {
		top: var(--cnvs-header-height);
	}

	/* ==================== contact ==================== */
	.contact-section .img-wrap {
		left: -41%;
	}

	.contact-section .car-img {
		right: 40px;
		width: 295px;
	}

	.contact-section .txt-wrap {
    width: 82%;
	}

	.contact-section .txt-wrap .btn-base.white,
	.contact-section .txt-wrap .btn-base.black {
		padding: 8px 32px;
	}

	/* ==================== album ==================== */
	.album-item .txt-wrap {
		--space: 12px;
	}

	.album-tag {
    padding: 6px 32px;
    font-size: var(--fs-small);
	}

	/* ==================== breadcrumb + pagintaion ==================== */
	.breadcrumb-wrap .section {
		padding: 60px 0;
	}
}

@media (max-width: 991px) {
	.wow {
		animation-name: none !important;
		visibility: visible !important;
		opacity: 1;
	}

	:root {
		--fs-BNTitle: 32px;
		--fs-sectionTitle: 32px;
		--fs-infoTitle: 24px;
		--fs-sidebarTitle: 20px;
		--fs-footerTitle: 20px;
	
		--section: 60px;
		--cnvs-content-padding: 60px;
		--cnvs-swiper-dots-position-bottom: 16px;
	}

	.btn-base {
		padding: 10px 28px 7px;
		border-bottom: 3px solid var(--cnvs-themecolor);
	}

	/* ==================== header ==================== */
	.menu-link {
    --cnvs-primary-menu-padding-y: 12px;
	}

	.cnvs-hamburger {
    --cnvs-hamburger-size: 18px;
	}

	.primary-menu-trigger {
		background-color: #E9ECEF;
    width: 46px;
    height: 43px;
    border-radius: 12px 12px 0 12px;
    margin-left: 12px;
	}

	#top-search-trigger {
		transition: none;
	}

	.top-search-open #top-search a {
		background-color: transparent;
		border-color: transparent;
		color: var(--cnvs-black);
		position: absolute;
		right: 0;
		transform: translateY(-50%);
	}

	/* ==================== banner ==================== */
	.banner-wrap:hover [class*=slider-arrow-] {
		display: none;
	}

	.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
	.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
	}

	.swiper-pagination span.swiper-pagination-bullet-active {
    width: 28px;
	}

	.swiper-pagination span {
		width: 8px;
		height: 8px;
	}

	/* ==================== product ==================== */
	.pd-tag {
    padding: 6px 32px;
    font-size: 15px;
	}

	.pdSwiper2 div[class*=swiper-button-] {
		display: none;
	}

	.pdSwiper2 .swiper-slide {
    border-radius: 32px 32px 0 0;
	}

	/* .pdshort-txt, .tab-content {
		border-radius: 0 32px 32px;
	} */

	.tab-content {
		padding: 24px;
	}


	.share-title {
		width: auto;
	}

	/* ==================== intro ==================== */
	.service-item {
		padding: 16px;
	}

	.service-item img {
		width: 80px;
	}

	.service-item .item-title::before {
		margin-right: 6px;
	}

	.service-item .item-title::after {
		margin-left: 6px;
	}

	.idea-item {
		padding: 24px;
	}

	.color-content {
		--left-space: 40px;
	}
	
	.color-content .container:before {
		content: '';
		width: 100%;
		height: 100%;
		background: var(--cnvs-white);
		border-radius: 120px 0 0 0;
		position: absolute;
		left: calc(-1 * var(--left-space));
		top: 0;
		z-index: -1;
	}

	/* ==================== history ==================== */
	.history-section .img-deco {
		position: static;
    order: 2;
    width: 100%;
    height: 100%;	
    border-radius: 0;
	}

	.history-section .color-content .section {
		padding-top: 24px;
	}
	
	/* ==================== faq ==================== */
	.faq-section .img-wrap > * {
		width: 100%;
	}

	.faq-section .img-1 img,
	.faq-section .img-2 {
		height: 230px;
	}

	.faq-info-wrap .faq-wrap {
		margin-left: 0;
	}

	.faq-info-wrap .more-wrap .img-wrap {
		position: static;
		width: 80%;
    transform: none;
		margin: 0 auto -50px;
	}

	.faq-info-wrap .more-wrap {
		--contact-height: 28px;
	}

	.faq-info-wrap .more-wrap .row {
		gap: 36px;
	}

	.faq-info-wrap .more-wrap .section-title .en {
		margin: 0 auto;
	}

	.faq-info-wrap .more-wrap .row > div:last-child::after,
	.faq-info-wrap .more-wrap .row > div:first-child::after {
		display: none;
	}

	.faq-info-wrap .more-wrap .btn-base.white,
	.faq-info-wrap .more-wrap .btn-base.line {
		padding: 7px 28px;
	}

	.faq-info-wrap .col-lg-4 .img-wrap img,
	.faq-info-wrap .col-lg-4 .img-wrap::after {
		opacity: 1;
		transform: scale(1);
	}

	.faq-more-section .faq-more-txt,
	.faq-more-section .faq-more-car img,
	.faq-more-section .faq-more-btn {
		opacity: 1;
	}

	.faq-section .img-1 img,
	.faq-section .img-1:after,
	.faq-section .img-2,
	.faq-section .txt-wrap {
		opacity: 1;
	}

	/* ==================== news ==================== */
	.news-info-wrap .img-wrap {
		border-radius: 32px;
	}

	.news-share-wrap span {
		writing-mode: horizontal-tb;
	}

	.news-share-wrap span::after {
		display: none;
	}

	.news-share-wrap .items {
		gap: 12px;
	}

	.news-date-mobile {
		font-size: 15px;
		font-family: var(--font-work);
		color: var(--txt-gray);
	}

	/* ==================== contact ==================== */
	.contact-section {
    --contact-height: 28px;
	}
	
	.contact-section .txt-wrap {
		gap: 24px;
	}
	
	.contact-section .txt-wrap .btn-base.white,
	.contact-section .txt-wrap .btn-base.black {
		padding: 7px 28px;
	}

	.contact-section .img-wrap {
		left: -43%;
	}

	.contact-section .car-img {
		right: 27px;
		bottom: 40px;
		width: 275px;
		transform: none;
	}

	.reservation-section .form-wrap .footer-title {
		padding-bottom: 14px;
	}

	.contact-section .txt-wrap > div:first-child,
	.contact-section .btn-base {
		opacity: 1;
	}

	.reservation-section .info-wrap,
	.reservation-section .form-wrap,
	.reservation-section .info-item,
	.reservation-section .sns-wrap,
	.reservation-section .form-group,
	.reservation-section .form-wrap .footer-title {
		opacity: 1;
		transform: none;
	}

	/* ==================== footer ==================== */
	#footer .footer {
    padding: 48px 0;
	}

	.footer-logo img {
		width: 120px;
	}

	/* ==================== breadcrumb + pagintaion ==================== */
	.breadcrumb-menu {
		padding: 12px 0;
	}

	.pagination {
    margin-top: 48px;
	}
}

@media (max-width: 767px) {
	:root {
		--header-wrap-clone: 71px;
	}

	/* ==================== pop-ad ==================== */
	.pop-ad-content .btn-base {
		padding: 12px 16px;
	}

	.pop-ad-close {
    top: -32px;
	}

	/* ==================== header ==================== */
	header {
		--cnvs-header-height: 55px;
	}

	#logo a {
		padding: 8px 12px;
	}

	.header-misc .go-btn {
		gap: 4px;
		height: 40px;
	}

	.header-misc .go-btn,
	.header-misc .go-btn i {
		font-size: var(--fs-normal);
		border-radius: 12px 12px 0 12px;
	}
	
	#top-search-trigger {
		width: 42px;
		height: 40px;
		font-size: 16px;
		border-radius: 10px 10px 0 10px;
	}

	.primary-menu-trigger {
		width: 42px;
		height: 40px;
		border-radius: 10px 10px 0 10px;
		margin-right: 12px;
	}

	.cnvs-hamburger {
		--cnvs-hamburger-size: 16px;
	}

	.menu-link {
    --cnvs-primary-menu-padding-x: 16px;
	}

	.sub-menu-container {
		padding-left: 28px;
	}

	.menu-item .sub-menu-trigger {
		right: 12px;
	}

	.top-search-open #top-search a {
		right: 16px;
	}

	/* ==================== banner ==================== */
	.banner-wrap {
    aspect-ratio: 960 / 1008;
	}

	/* ==================== product ==================== */
	.pd-item-content:before,
	.pd-item-content:after {
		border-radius: 30px;
	}

	.pd-section {
		--hover-height: 0px;
	}

	.pd-section:after {
		height: 110px;
    border-radius: 80px 80px 0 0;
	}

	.pd-item-content {
		padding: var(--hover-height) 16px 16px;
	}

	.pd-item-content .img-wrap {
    border-radius: 28px;
	}

	.pdicons-wrap {
		gap: 12px;
	}

	.pdicons-wrap img {
		width: 18px;
		height: 18px;
	}
	
	.pdicons-wrap img + span {
		font-size: var(--fs-small);
	}

	.pd-tag {
		bottom: 98px;
		padding: 4px 24px;
		font-size: var(--fs-small);
	}

	.cate-wrap {
		border-radius: 0 0 30px 30px;
	}

	.pdinfo-tag-wrap .pd-tag {
		font-size: var(--fs-small);
		border-radius: 0 20px 0 0;
    padding: 4px 20px;
	}

	.pdSwiper2 .swiper-slide {
		border-radius: 28px 28px 0 0;
	}

	/* ==================== intro ==================== */
	.intro-section .txt-wrap + div {
		margin-top: 32px;
	}

	.color-content .container,
	.color-content .container:before {
		border-radius: 90px 0 0 0;
	}

	.idea-wrap {
		--idea-space: 60px;
	}

	.idea-item .num {
		font-size: 47px;
	}

	.idea-wrap img {
		width: 120px;
		height: 120px;
	}
	
	.idea-wrap > div:first-child img {
		width: 150px;
		height: 150px;
	}

	/* ==================== history ==================== */
	.history-section .year {
		font-size: 38px;
		width: 100px;
	}

	.history-item {
		--translate-y: 5px;
	}

	.history-item:after {
		height: calc(100% - 60px);
		left: 135px;
		top: 54px;
	}

	/* ==================== faq ==================== */
	.faq-section .txt-wrap {
		padding-left: 0;
	}

	.faq-section .img-wrap {
		margin-top: 32px;
	}

	.faq-info-wrap .more-wrap {
		border-radius: 80px 80px 0 0;
	}

	.faq-info-wrap .more-wrap .img-wrap {
		width: 100%;
	}

	/* ==================== news ==================== */
	.news-item {
		--item-padding: 16px;
	}

	.news-item .img-wrap {
    border-radius: 36px 36px 0 0;
	}

	.news-item .item-title {
    margin-top: 33px;
	}
	
	.news-item .news-date {
		padding: 8px 4px 5px;
	}

	.news-item .news-tag {
		font-size: var(--fs-small);
	}

	.news-info-wrap .img-wrap {
		border-radius: 28px;
	}

	.news-nav-item .nav-label {
		font-size: var(--fs-small);
	}

	/* ==================== contact ==================== */
	.contact-section .img-wrap::before {
		transform: skewX(-12deg);
	}

	/* ==================== album ==================== */
	.album-item .img-wrap {
		border-radius: 28px;
	}

	.album-item .txt-wrap {
		--space: 8px;
		margin-right: 24px;
		border-radius: 0px 0px 28px 28px;
	}

	.album-tag {
		padding: 6px 24px;
    border-radius: 0 0 0 22px;
	}

	/* ==================== breadcrumb + pagintaion + privacy ==================== */
	.page-link {
    width: 40px;
    height: 40px;
	}

	.feature-box {
		--cnvs-featured-box-icon: 3.5rem;
	}

	.fbox-content {
		padding-left: 6px;
	}
}

@media (max-width: 575px) {
	:root {
		--fs-BNTitle: 24px;
		--fs-sectionTitle: 28px;
		--fs-infoTitle: 22px;
		--fs-itemTitle: 18px;
		--fs-sectionEN: 16px;
	
		--section: 48px;
		--cnvs-content-padding: 56px;
		--float-height: 44px;
		--header-wrap-clone: 66px;
	}

	/* ==================== base ==================== */
	.btn-base {
		padding: 8px 24px 5px;
	}

	/* ==================== pop-ad ==================== */
	.pop-ad-content .btn-base {
		padding: 10px 16px;
	}

	.pop-ad-close {
    top: -30px;
	}

	/* ==================== header ==================== */
	header {
		--cnvs-header-height: 50px;
	}

	.menu-link {
		--cnvs-primary-menu-padding-x: 12px;
	}

	.header-misc .go-btn {
		padding: 8px 10px 5px;
	}

	.top-search-open #top-search a {
		right: 12px;
	}

	.top-search-form .form-control {
		padding-left: 12px;
	}

	/* ==================== product ==================== */
	.pd-cate-mobile small {
		font-size: 13px;
	}

	.pd-cate-mobile .form-control + button {
    font-size: 16px;
	}

	.list-wrap .pd-item-content {
		padding: 0 16px 16px;
	}

	.nav-link {
		padding: 6px 32px;
		border-radius: 12px 12px 0 0;
	}

	.pdSwiper .swiper-slide {
    border-radius: 6px
	}

	.pdshort-txt {
		padding: 16px;
		border-radius: 0 28px 28px;
	}

	/* ==================== intro ==================== */
	.service-item {
		border-radius: 32px 32px 0 32px;
	}

	.service-wrap > div:nth-child(2) .service-item {
    border-radius: 32px 32px 32px 0;
	}

	.idea-wrap {
		--idea-space: 56px;
	}

	.idea-wrap > div {
		position: relative;
	}

	.idea-item .num {
		font-size: 43px;
	}
	
	.idea-wrap .img-wrap {
		position: absolute !important;
		top: 0;
		right: 24px;
		z-index: 1;
		width: auto;
		transform: translateY(calc(-50% + 10px));
	}

	.idea-wrap img {
		width: 80px;
		height: 80px;
	}
	
	.idea-wrap > div:first-child img {
		width: 100px;
		height: 100px;
	}

	/* ==================== history ==================== */
	.history-section .color-content .section {
		padding-top: 12px;
	}

	.history-item {
		--translate-y: 0px;
		gap: 8px;
	}

	.history-item:after {
		left: 11px;
		top: 58px;
		height: calc(100% - 70px);
	}

	.history-item .dot {
		position: absolute;
		top: 18px;
	}

	.history-section .year {
		font-size: 34px;
		width: auto;
		padding-left: calc(24px + 16px);
	}

	.history-item .txt-wrap {
		padding-left: calc(24px + 16px);
	}

	/* ==================== faq ==================== */
	.faq-section {
    --imgdeco: 12px;
	}

	.faq-section .img-wrap {
		gap: calc(16px + var(--imgdeco));
	}

	.faq-item {
    padding: 0 16px;
	}

	.faq-info-wrap .img-wrap {
		--imgdeco: 12px;
	}

	.faq-info-wrap .faq-wrap {
		padding: 16px;
		border-radius: 24px;
	}

	.faq-info-wrap .more-wrap .row {
		gap: 24px;
	}

	.faq-info-wrap .more-wrap .item-title {
		font-size: 18px;
	}

	.faq-info-wrap .more-wrap .btn-base.white,
	.faq-info-wrap .more-wrap .btn-base.line {
		padding: 6px 24px;
	}

	.faq-info-wrap .more-wrap .img-wrap {
		margin: 0 auto -24px;
	}
	
	/* ==================== contact ==================== */
	.contact-section .txt-wrap {
		width: 100%;
	}

	.contact-section .txt-wrap .btn-base.white,
	.contact-section .txt-wrap .btn-base.black {
		padding: 6px 24px;
	}

	.history-section.reservation-section .color-content .section {
		padding-top: 24px;
	}

	.reservation-section .form-wrap {
		padding: 30px 24px;
		border-radius: 60px 0 0 60px;
	}

	/* ==================== album ==================== */
	.album-info-title {
		border-radius: 12px 12px 0 0;
	}

	.more-img-wrap .img-wrap::after {
		bottom: -10px;
		right: -10px;
	}

	/* ==================== footer ==================== */
	#footer .footer {
		padding: 40px 0;
	}

	.footer-logo img {
		width: 100px;
	}

	.social-icon {
    --cnvs-socialicon-size: 36px;
	}

	.sns-wrap .social-icon {
		font-size: 20px;
		border-radius: 8px;
	}

	.copyrights {
		font-size: var(--fs-small);
	}

	.stretched #gotoTop {
		border-radius: 12px 0 0 12px;
	}

	.stretched #gotoTop i {
		font-size: 28px;
	}

	.float-sns-wrap .sns-item i {
		font-size: 24px;
	}
	
	.float-sns-wrap .sns-item[title="telephone"] i {
    font-size: 22px;
	}
	
	.float-sns-wrap {
		bottom: 102px;
	}

	.float-sns-wrap .sns-item {
		border-radius: 12px 0 0 12px;
	}

	.mt-40 {
		margin-top: 40px;
	}

	/* ==================== breadcrumb + pagintaion ==================== */
	.breadcrumb-menu {
		font-size: var(--fs-small);
	}
	
	.page-link {
		width: 38px;
		height: 38px;
	}

	.feature-box {
		--cnvs-featured-box-icon: 3.2rem;
	}

	.fbox-icon i {
		font-size: 24px;
	}

}

/* ==================== Date & Time Input ==================== */
input[type="date"],
input[type="time"] {
	cursor: pointer;
	position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	cursor: pointer;
	opacity: 0;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="date"]::-webkit-datetime-edit,
input[type="time"]::-webkit-datetime-edit {
	padding: 0;
	margin: 0;
}

/* ==================== Loading Animation ==================== */
.loading-wrap {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100vh;
	padding: 60px 0;
	background: #EA5404;
	display: grid;
	place-items: center;
	opacity: 1;
	transition: opacity 0.5s ease;
}

.loading-wrap.fade-out {
	opacity: 0;
	pointer-events: none;
}

.loader {
	max-width: 350px;
	max-height: 220px;
}

.loading-wrap .wheel {
	fill: #EA5404;
}

.loading-wrap .back-wheel {
	transform-origin: 100.981px 210.787px;
	animation: wheel 300ms linear infinite;
}

.loading-wrap .front-wheel {
	transform-origin: 383.334px 210.787px;
	animation: wheel 300ms linear infinite;
	animation-delay: 200ms;
}

@keyframes wheel {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.loading-wrap .car {
	fill: #fff;
	transform-origin: center center;
	animation: car 600ms linear infinite;
}

@keyframes car {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(-1deg) translateY(2px);
	}
	100% {
		transform: rotate(0deg);
	}
}

.loading-wrap .line {
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 5px;
}

.loading-wrap .line-1 {
	stroke-dasharray: 20% 80%;
	animation: line-1 1200ms linear infinite;
}

.loading-wrap .line-2 {
	stroke-dasharray: 10% 90%;
	animation: line-1 1200ms linear infinite;
	animation-delay: 200ms;
}

.loading-wrap .line-floor {
	stroke-dasharray: 60% 10%;
	stroke-dashoffset: 1200;
	animation: line-2 1000ms linear infinite;
}

@keyframes line-1 {
	from {
		stroke-dashoffset: 0;
	}
	to {
		stroke-dashoffset: -500;
	}
}

@keyframes line-2 {
	from {
		stroke-dashoffset: 0;
	}
	to {
		stroke-dashoffset: -350;
	}
}

.loading-wrap .cloud {
	fill: #fff;
	opacity: 0.2;
	animation: cloud 1500ms linear infinite;
}

@keyframes cloud {
	from {
		transform: translateX(40%);
	}
	to {
		transform: translateX(-90%);
	}
}

@media (max-width: 991px) {
	.loader {
		max-width: 300px;
	}
}

@media (max-width: 575px) {
	.loader {
		max-width: 230px;
	}
}