@charset "UTF-8";
/* 設計師用 桌機版CSS檔 style.css */
/* 說明：可提供設計師在此檔，針對桌機版面進行設計；為網站必載CSS檔。*/
@import "root.css";
html,
body {
  font-family: "Source Sans 3", "Noto Sans TC", Arial, "文泉驛正黑", "WenQuanYi Zen Hei", "儷黑 Pro", "LiHei Pro", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 16px;
}

html[lang=zh-Hans] body {
  font-family: "Source Sans 3", "Noto Sans SC", Arial, "文泉驛正黑", "WenQuanYi Zen Hei", "儷黑 Pro", "LiHei Pro", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
html[lang=jp] body {
  font-family: "Source Sans 3", "Noto Sans JP", Arial, "文泉驛正黑", "WenQuanYi Zen Hei", "儷黑 Pro", "LiHei Pro", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

::-moz-selection {
  background: var(--main-color) !important;
  color: var(--bs-white);
}

::selection {
  background: var(--main-color) !important;
  color: var(--bs-white);
}

::-moz-selection {
  background: var(--main-color) !important;
  color: var(--bs-white);
}

img::-moz-selection {
  background: transparent;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

.page_wrapper {
  overflow: clip;
}

a {
  color: var(--bs-body-color);
  text-decoration: none;
  transition: all ease 0.3s;
}
a:hover {
  color: var(--second-color);
}
a.underline {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.5em;
}
a.underline:hover {
  text-decoration-color: currentColor;
}

.fs-7 {
  font-size: 0.9375rem;
}

.fs-8 {
  font-size: 0.875rem;
}

.fs-9 {
  font-size: 0.75rem;
}

.btn-primary {
  --bs-btn-bg: var(--main-color);
  --bs-btn-border-color: var(--main-color);
  --bs-btn-hover-bg: rgba(var(--main-color-rgb), 0.85);
  --bs-btn-hover-border-color: rgba(var(--main-color-rgb), 0.95);
  --bs-btn-active-bg: rgba(var(--main-color-rgb), 0.95);
  --bs-btn-active-border-color: rgba(var(--main-color-rgb), 0.9);
  --bs-btn-disabled-bg: var(--main-color);
  --bs-btn-disabled-border-color: var(--main-color);
}

.btn-outline-primary {
  --bs-btn-color: var(--main-color);
  --bs-btn-border-color: var(--main-color);
  --bs-btn-hover-bg: var(--main-color);
  --bs-btn-hover-border-color: var(--main-color);
  --bs-btn-active-bg: var(--main-color);
  --bs-btn-active-border-color: var(--main-color);
  --bs-btn-disabled-color: var(--main-color);
  --bs-btn-disabled-border-color: var(--main-color);
}

.btn-secondary {
  --bs-btn-bg: var(--second-color);
  --bs-btn-border-color: var(--second-color);
  --bs-btn-hover-bg: rgba(var(--second-color-rgb), 0.85);
  --bs-btn-hover-border-color: rgba(var(--second-color-rgb), 0.95);
  --bs-btn-active-bg: rgba(var(--second-color-rgb), 0.9);
  --bs-btn-active-border-color: rgba(var(--second-color-rgb), 0.9);
  --bs-btn-disabled-bg: var(--second-color);
  --bs-btn-disabled-border-color: var(--second-color);
}

.btn-outline-secondary {
  --bs-btn-color: var(--second-color);
  --bs-btn-border-color: var(--second-color);
  --bs-btn-hover-bg: var(--second-color);
  --bs-btn-hover-border-color: var(--second-color);
  --bs-btn-active-bg: var(--second-color);
  --bs-btn-active-border-color: var(--second-color);
  --bs-btn-disabled-color: var(--second-color);
  --bs-btn-disabled-border-color: var(--second-color);
}

.btn-more {
  --bs-btn-padding-x: 1.5em;
  --bs-btn-padding-y: 1.125em;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-line-height: 1;
  --bs-btn-font-weight: 700;
  --bs-btn-color: var(--bs-dark);
  --bs-btn-bg: var(--bs-white);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: var(--main-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-white);
  --bs-btn-active-bg: var(--main-color);
  --bs-btn-active-border-color: transparent;
  display: inline-block;
  box-shadow: 0 0 15px rgba(var(--main-color-rgb), 0.5);
  min-width: 11em;
}

.btn-group-xs > .btn,
.btn-xs {
  --bs-btn-padding-y: 0.15rem;
  --bs-btn-padding-x: 0.4rem;
  --bs-btn-font-size: 0.75rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.w-1em {
  width: 1em !important;
}

.max-w-1em {
  max-width: 1em !important;
}

.min-w-1em {
  min-width: 1em !important;
}

.h-1em {
  height: 1em !important;
}

.max-h-1em {
  max-height: 1em !important;
}

.min-h-1em {
  min-height: 1em !important;
}

.w-2em {
  width: 2em !important;
}

.max-w-2em {
  max-width: 2em !important;
}

.min-w-2em {
  min-width: 2em !important;
}

.h-2em {
  height: 2em !important;
}

.max-h-2em {
  max-height: 2em !important;
}

.min-h-2em {
  min-height: 2em !important;
}

.w-3em {
  width: 3em !important;
}

.max-w-3em {
  max-width: 3em !important;
}

.min-w-3em {
  min-width: 3em !important;
}

.h-3em {
  height: 3em !important;
}

.max-h-3em {
  max-height: 3em !important;
}

.min-h-3em {
  min-height: 3em !important;
}

.w-4em {
  width: 4em !important;
}

.max-w-4em {
  max-width: 4em !important;
}

.min-w-4em {
  min-width: 4em !important;
}

.h-4em {
  height: 4em !important;
}

.max-h-4em {
  max-height: 4em !important;
}

.min-h-4em {
  min-height: 4em !important;
}

.w-5em {
  width: 5em !important;
}

.max-w-5em {
  max-width: 5em !important;
}

.min-w-5em {
  min-width: 5em !important;
}

.h-5em {
  height: 5em !important;
}

.max-h-5em {
  max-height: 5em !important;
}

.min-h-5em {
  min-height: 5em !important;
}

.w-6em {
  width: 6em !important;
}

.max-w-6em {
  max-width: 6em !important;
}

.min-w-6em {
  min-width: 6em !important;
}

.h-6em {
  height: 6em !important;
}

.max-h-6em {
  max-height: 6em !important;
}

.min-h-6em {
  min-height: 6em !important;
}

.w-7em {
  width: 7em !important;
}

.max-w-7em {
  max-width: 7em !important;
}

.min-w-7em {
  min-width: 7em !important;
}

.h-7em {
  height: 7em !important;
}

.max-h-7em {
  max-height: 7em !important;
}

.min-h-7em {
  min-height: 7em !important;
}

.w-8em {
  width: 8em !important;
}

.max-w-8em {
  max-width: 8em !important;
}

.min-w-8em {
  min-width: 8em !important;
}

.h-8em {
  height: 8em !important;
}

.max-h-8em {
  max-height: 8em !important;
}

.min-h-8em {
  min-height: 8em !important;
}

.w-9em {
  width: 9em !important;
}

.max-w-9em {
  max-width: 9em !important;
}

.min-w-9em {
  min-width: 9em !important;
}

.h-9em {
  height: 9em !important;
}

.max-h-9em {
  max-height: 9em !important;
}

.min-h-9em {
  min-height: 9em !important;
}

.w-10em {
  width: 10em !important;
}

.max-w-10em {
  max-width: 10em !important;
}

.min-w-10em {
  min-width: 10em !important;
}

.h-10em {
  height: 10em !important;
}

.max-h-10em {
  max-height: 10em !important;
}

.min-h-10em {
  min-height: 10em !important;
}

.w-11em {
  width: 11em !important;
}

.max-w-11em {
  max-width: 11em !important;
}

.min-w-11em {
  min-width: 11em !important;
}

.h-11em {
  height: 11em !important;
}

.max-h-11em {
  max-height: 11em !important;
}

.min-h-11em {
  min-height: 11em !important;
}

.w-12em {
  width: 12em !important;
}

.max-w-12em {
  max-width: 12em !important;
}

.min-w-12em {
  min-width: 12em !important;
}

.h-12em {
  height: 12em !important;
}

.max-h-12em {
  max-height: 12em !important;
}

.min-h-12em {
  min-height: 12em !important;
}

.w-13em {
  width: 13em !important;
}

.max-w-13em {
  max-width: 13em !important;
}

.min-w-13em {
  min-width: 13em !important;
}

.h-13em {
  height: 13em !important;
}

.max-h-13em {
  max-height: 13em !important;
}

.min-h-13em {
  min-height: 13em !important;
}

.w-14em {
  width: 14em !important;
}

.max-w-14em {
  max-width: 14em !important;
}

.min-w-14em {
  min-width: 14em !important;
}

.h-14em {
  height: 14em !important;
}

.max-h-14em {
  max-height: 14em !important;
}

.min-h-14em {
  min-height: 14em !important;
}

.w-15em {
  width: 15em !important;
}

.max-w-15em {
  max-width: 15em !important;
}

.min-w-15em {
  min-width: 15em !important;
}

.h-15em {
  height: 15em !important;
}

.max-h-15em {
  max-height: 15em !important;
}

.min-h-15em {
  min-height: 15em !important;
}

.w-16em {
  width: 16em !important;
}

.max-w-16em {
  max-width: 16em !important;
}

.min-w-16em {
  min-width: 16em !important;
}

.h-16em {
  height: 16em !important;
}

.max-h-16em {
  max-height: 16em !important;
}

.min-h-16em {
  min-height: 16em !important;
}

.w-17em {
  width: 17em !important;
}

.max-w-17em {
  max-width: 17em !important;
}

.min-w-17em {
  min-width: 17em !important;
}

.h-17em {
  height: 17em !important;
}

.max-h-17em {
  max-height: 17em !important;
}

.min-h-17em {
  min-height: 17em !important;
}

.w-18em {
  width: 18em !important;
}

.max-w-18em {
  max-width: 18em !important;
}

.min-w-18em {
  min-width: 18em !important;
}

.h-18em {
  height: 18em !important;
}

.max-h-18em {
  max-height: 18em !important;
}

.min-h-18em {
  min-height: 18em !important;
}

.w-19em {
  width: 19em !important;
}

.max-w-19em {
  max-width: 19em !important;
}

.min-w-19em {
  min-width: 19em !important;
}

.h-19em {
  height: 19em !important;
}

.max-h-19em {
  max-height: 19em !important;
}

.min-h-19em {
  min-height: 19em !important;
}

.w-20em {
  width: 20em !important;
}

.max-w-20em {
  max-width: 20em !important;
}

.min-w-20em {
  min-width: 20em !important;
}

.h-20em {
  height: 20em !important;
}

.max-h-20em {
  max-height: 20em !important;
}

.min-h-20em {
  min-height: 20em !important;
}

.object-fit-contain,
.object-fit-cover {
  width: 100% !important;
  height: 100% !important;
  -o-object-position: center;
     object-position: center;
}

.object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.ellipsis {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ellipsis.rows-1 {
  white-space: normal;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ellipsis.rows-2 {
  white-space: normal;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis.rows-3 {
  white-space: normal;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ellipsis.rows-4 {
  white-space: normal;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.ellipsis.rows-5 {
  white-space: normal;
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.ratio-7x3 {
  --bs-aspect-ratio: 42.86%;
}

.ratio-7x5 {
  --bs-aspect-ratio: 71.43%;
}

.nav-pills {
  --bs-nav-pills-link-bg: #f5f5f5;
  --bs-nav-pills-link-hover-bg: var(--main-color);
  --bs-nav-pills-link-active-bg: var(--main-color);
}
.nav-pills .nav-link {
  background-color: var(--bs-nav-pills-link-bg);
}
.nav-pills .nav-link:hover, .nav-pills .nav-link:focus {
  background-color: var(--bs-nav-pills-link-hover-bg);
}
.nav-pills.nav-justified > .nav-item:not(:first-child) > .nav-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.nav-pills.nav-justified > .nav-item:not(:first-child) > .nav-link.border {
  border-left: 0;
}
.nav-pills.nav-justified > .nav-item:not(:last-child) > .nav-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.nav-lg {
  --bs-nav-link-font-size: 1.25rem;
  --bs-nav-link-padding-x: 1em;
  --bs-nav-link-padding-y: 0.5em;
}

.bi.align-baseline:before {
  vertical-align: middle;
}

/********************* Header *********************/
.header .navbar .navbar-brand {
  display: block;
  width: 149px;
  height: 40px;
  margin: 10px 0;
  padding: 0;
}
.header .navbar .navbar-brand:hover {
  opacity: 0.7;
}
.header .navbar .nav-com-name {
  display: none;
}
.header .navbar {
  /* header 主選單 */
}
.header .navbar .navbar-nav > li > a {
  background: none;
  color: var(--bs-body-color);
  font-size: 0.9375rem;
  padding: 20px 5px;
}
.header .navbar .navbar-nav > li > a .caret {
  border-left: solid 5px transparent;
  border-right: solid 5px transparent;
  border-top: solid 6px var(--main-color);
}
.header .navbar .navbar-nav > li ul li a {
  padding: 5px;
}
.header .navbar .navbar-nav li a:hover {
  color: #333;
}
.header .navbar {
  /* header 次選單 */
}
.header .navbar .sub-nav li {
  padding: 0;
}
.header .navbar .small-btn-box {
  display: flex;
  gap: 15px;
  align-items: center;
}
.header .navbar .small-btn-box > ul {
  display: flex;
  gap: 15px;
  align-items: center;
}
.header .navbar .small-btn-box > ul li {
  margin: 0;
}
.header .navbar .small-btn-box > ul li a {
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0.5em 0.625em;
  color: var(--bs-white);
  background: var(--button-color, #505050);
  border-radius: var(--bs-border-radius);
}
.header .navbar .small-btn-box > ul li .icon {
  margin-right: 5px;
}
.header .navbar .small-btn-box > ul li .btn-group {
  overflow: hidden;
}
.header .navbar .small-btn-box > ul li .btn-group a {
  border-radius: 0;
}
.header .navbar .small-btn-box > ul li.primary {
  --button-color: var(--main-color);
}
.header .navbar .small-btn-box > ul li.secondary {
  --button-color: var(--second-color);
}
.header .navbar .nav_social {
  margin: 0 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
}
.header .navbar .nav_social > li {
  flex: 0 0 auto;
}
.header .navbar .nav_social a {
  font-size: 1.5rem;
}
.header > .navbar {
  background-color: var(--fifth-color);
  transition: all ease 0.3s;
}

.is_scroll .header > .navbar {
  background-color: var(--fifth-color) !important;
}

.navbar-nav .nav-item.active > .nav-link, .navbar-nav .nav-item:active:focus > .nav-link, .navbar-nav .nav-item:active > .nav-link, .navbar-nav .nav-item:focus > .nav-link, .navbar-nav .nav-item:hover > .nav-link {
  color: var(--main-color);
}

.navbar-toggler {
  border: none;
  width: 28px;
  height: 20px;
  padding: 0 !important;
  position: relative;
  border-radius: 0;
  cursor: pointer;
  margin-left: 10px !important;
}
.navbar-toggler .navbar-toggler-icon,
.navbar-toggler .navbar-toggler-icon::after,
.navbar-toggler .navbar-toggler-icon::before {
  background: var(--bs-white);
  height: 2px;
}
.navbar-toggler:focus-visible {
  box-shadow: 0 0 0 3px rgb(255, 0, 0) !important;
}
.navbar-toggler.toggler-spring.active .navbar-toggler-icon {
  background-image: unset !important;
}

.bsnavclose.close-btn {
  position: fixed;
  width: 24px;
  height: 24px;
  top: 34px;
  right: 36px;
  cursor: pointer;
  transform: scale(0);
  transition: all ease 0.5s;
  z-index: 51;
  pointer-events: none;
}
.bsnavclose.close-btn img {
  width: 100%;
  margin: 0 auto;
  display: table;
}
.bsnavclose.close-btn.active {
  transform: scale(1);
  pointer-events: all;
}

.bsnav-mobile .navbar .secondary, .bsnav-mobile .navbar .primary {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
  margin: 2px 0;
  text-align: start;
}
.bsnav-mobile .navbar .secondary a, .bsnav-mobile .navbar .primary a {
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0.5em 0.625em;
  color: var(--bs-white);
  background: var(--button-color, #505050);
  border-radius: var(--bs-border-radius);
}
.bsnav-mobile .navbar .list-inline {
  display: block;
  width: 100%;
}
.bsnav-mobile .navbar .search {
  display: none;
}
.bsnav-mobile .navbar .primary {
  --button-color: var(--main-color);
}
.bsnav-mobile .navbar .secondary {
  --button-color: var(--second-color);
  width: 100%;
}
.bsnav-mobile .navbar .lang {
  overflow: hidden;
}
.bsnav-mobile .navbar .lang a {
  border-radius: 0;
}
.bsnav-mobile .navbar .copyright {
  display: block;
  text-align: start;
  width: 100%;
  font-size: 0.75rem;
  margin-top: 5px;
}
.bsnav-mobile.right, .bsnav-mobile.left {
  --menu-width: 525px;
  --menu-padding-x: 50px;
  --menu-padding-top: 100px;
  --menu-padding-bottom: 20px;
}
.bsnav-mobile.right .bsnav-mobile-overlay, .bsnav-mobile.left .bsnav-mobile-overlay {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
}
.bsnav-mobile.right .navbar, .bsnav-mobile.left .navbar {
  padding: var(--menu-padding-top) var(--menu-padding-x) var(--menu-padding-bottom);
  justify-content: flex-start;
  max-width: 90vw;
  width: var(--menu-width);
  background: url(../images/all/mobile-nav.jpg) no-repeat top right;
  background-size: cover;
}
.bsnav-mobile.right .navbar .navbar-brand, .bsnav-mobile.left .navbar .navbar-brand {
  display: none;
}
.bsnav-mobile.right .navbar-nav, .bsnav-mobile.left .navbar-nav {
  padding: 0;
  flex: 1 1 auto;
  max-height: calc(100vh - var(--menu-padding-top) - var(--menu-padding-bottom) - 1.625rem);
  overflow-x: clip;
  overflow-y: auto;
}
.bsnav-mobile.right .navbar-nav::-webkit-scrollbar, .bsnav-mobile.left .navbar-nav::-webkit-scrollbar {
  width: 7px;
}
.bsnav-mobile.right .navbar-nav::-webkit-scrollbar-button, .bsnav-mobile.left .navbar-nav::-webkit-scrollbar-button {
  background: transparent;
  border-radius: 4px;
}
.bsnav-mobile.right .navbar-nav::-webkit-scrollbar-track-piece, .bsnav-mobile.left .navbar-nav::-webkit-scrollbar-track-piece {
  background: transparent;
}
.bsnav-mobile.right .navbar-nav::-webkit-scrollbar-thumb, .bsnav-mobile.left .navbar-nav::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid slategrey;
}
.bsnav-mobile.right .navbar-nav::-webkit-scrollbar-track, .bsnav-mobile.left .navbar-nav::-webkit-scrollbar-track {
  box-shadow: transparent;
}
.bsnav-mobile.right .navbar-nav .nav-item + .nav-item, .bsnav-mobile.left .navbar-nav .nav-item + .nav-item {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.bsnav-mobile.right .navbar-nav .nav-item.in .nav-link, .bsnav-mobile.left .navbar-nav .nav-item.in .nav-link {
  padding-bottom: 0.25em;
}
.bsnav-mobile.right .navbar-nav .nav-item.in .caret, .bsnav-mobile.left .navbar-nav .nav-item.in .caret {
  transform: translateY(-50%) scaleY(-1);
}
.bsnav-mobile.right .navbar-nav .nav-item .nav-link, .bsnav-mobile.left .navbar-nav .nav-item .nav-link {
  display: block;
  padding: 0.875em 10px 0.875em 0;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.bsnav-mobile.right .navbar-nav .nav-item .caret, .bsnav-mobile.left .navbar-nav .nav-item .caret {
  position: absolute;
  top: 1.75em;
  right: 0;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
.bsnav-mobile.right .navbar-nav .nav-item .navbar-nav, .bsnav-mobile.left .navbar-nav .nav-item .navbar-nav {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 15px;
}
.bsnav-mobile.right .navbar-nav .nav-item .navbar-nav .nav-item + .nav-item, .bsnav-mobile.left .navbar-nav .nav-item .navbar-nav .nav-item + .nav-item {
  border-top: 0;
}
.bsnav-mobile.right .navbar-nav .nav-item .navbar-nav .nav-item .nav-link, .bsnav-mobile.left .navbar-nav .nav-item .navbar-nav .nav-item .nav-link {
  padding: 0.25em 0;
  font-size: 1rem;
  font-weight: 400;
  overflow: visible;
  white-space: wrap;
  text-overflow: unset;
}
.bsnav-mobile.right .navbar-nav .nav-item .navbar-nav .nav-item .navbar-nav, .bsnav-mobile.left .navbar-nav .nav-item .navbar-nav .nav-item .navbar-nav {
  margin-bottom: 5px;
}
.bsnav-mobile.right .navbar-nav .nav-item .navbar-nav .nav-item .navbar-nav .nav-item .nav-link, .bsnav-mobile.left .navbar-nav .nav-item .navbar-nav .nav-item .navbar-nav .nav-item .nav-link {
  font-size: 0.9375rem;
  padding-left: 5px;
}
.bsnav-mobile.right .navbar {
  transform: translate3d(var(--menu-width), 0, 0);
}
.bsnav-mobile.right.in .navbar {
  transform: translate3d(0, 0, 0);
}
.bsnav-mobile.left .navbar {
  left: 0;
  right: auto;
  transform: translate3d(calc(var(--menu-width) * -1), 0, 0);
}
.bsnav-mobile.left.in .navbar {
  transform: translate3d(0, 0, 0);
}

.navbar-toggler.toggler-spring.active .navbar-toggler-icon {
  background-image: unset !important;
}

/*------- Banner -------*/
html.no-js .banner .banner-wrapbox,
html.no-js .banner .banner-wrapbox img {
  display: none;
}

html.js .banner .banner-wrapbox {
  display: block;
}

.banner .item .banner-txt.banner-txt_left .title {
  text-align: left;
  display: block;
  left: 5%;
  right: unset;
  bottom: 50%;
  font-size: 4.375rem;
}

.banner .item .banner-txt.banner-txt_left.banner-txt_en .title {
  font-size: 3.5rem;
}

.banner {
  position: relative;
}
.banner .item {
  display: block !important;
  padding: 0;
  position: relative;
}
.banner .item > a {
  padding: 0;
}
.banner .item .banner-txt .sub, .banner .item .banner-txt .title {
  position: absolute;
  text-align: center;
  color: #fff;
  display: block;
  left: 0;
  right: 0;
}
.banner .item .banner-txt {
  pointer-events: none;
}
.banner .item .banner-txt .title {
  font-size: 3.125rem;
  font-weight: bold;
  bottom: 24%;
  text-shadow: 0 0 50px var(--third-color);
}
.banner .item .banner-txt .title big {
  font-size: 1.4em;
}
.banner .item .banner-txt .sub {
  font-size: 1.125rem;
  font-weight: 300;
  top: 81%;
  bottom: 60px;
  letter-spacing: 0.25em;
}
.banner .slick-current .item .banner-txt .title,
.banner .slick-current .item .banner-txt .sub {
  animation: fadeInUp 1s ease both;
}
.banner .slick-current .item .banner-txt .title {
  animation-delay: 0.8s;
}
.banner .slick-current .item .banner-txt .sub {
  animation-delay: 1.2s;
}
.banner .bx-wrapper {
  margin-bottom: 0;
}
.banner .bx-wrapper .bx-viewport {
  background: none;
  border: none;
  box-shadow: none;
  left: 0;
}
.banner .bx-wrapper .bx-pager.bx-default-pager {
  text-align: right;
  padding: 0 15px;
  bottom: 2px;
  z-index: 60;
}
.banner .bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-align: left;
}
.banner .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #1eb5be;
}
.banner .bxslider li {
  background-repeat: no-repeat;
  background-position: center top;
}
.banner .bxslider li a {
  display: block;
}
.banner .bxslider li img {
  width: 100%;
  display: none;
}
.banner .banner-wrapbox {
  position: relative;
}
.banner .banner-wrapbox .slick {
  visibility: hidden;
}
.banner .banner-wrapbox .slick.slick-initialized, .banner .banner-wrapbox .slick.oneMode {
  visibility: visible;
}
.banner .banner-wrapbox .slick .slick-dots {
  bottom: 25px;
}
.banner .banner-wrapbox .slick .slick-dots li button {
  background: var(--bs-white);
}
.banner .banner-wrapbox .slick .slick-dots li.slick-active button {
  background: var(--main-color);
}
.banner .swiper-slide {
  position: relative;
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  color: var(--bs-gray-500);
}
.banner .swiper-pagination-bullet-active {
  background: var(--bs-gray-500);
}

/********************* Footer *********************/
.footer {
  padding: 0;
  text-align: start;
}
.footer .footer_top {
  background: url(../images/all/footer-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 115px 0;
}
.footer .footer_content {
  background-color: #ececec;
  font-size: 0.875rem;
  padding: 30px 0;
}
.footer .bsnav {
  z-index: inherit;
}
.footer .footer-logo {
  display: block;
  max-width: 85px;
}
.footer {
  /* sitemap */
}
.footer .sitemap {
  text-align: start;
}
.footer .sitemap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  margin-bottom: 0;
}
.footer .sitemap ul li {
  flex: 0 0 14.285%;
  color: #fff;
  padding-left: 10px;
}
.footer .sitemap ul li a {
  color: #fff;
  padding: 10px 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.footer .sitemap ul li a:hover {
  color: var(--main-color);
}
.footer .sitemap ul ul {
  display: block;
}
.footer .sitemap ul ul li {
  padding: 0;
}
.footer .sitemap ul ul li a {
  padding: 5px 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--forth-color);
}
.footer .sitemap ul ul li a:hover {
  color: var(--bs-white);
}
.footer {
  /* siteinfo */
}
.footer .siteinfo {
  font-size: 1rem;
}
.footer .siteinfo ul > li {
  padding: 0;
}
.footer .siteinfo ul > li + li {
  margin-top: 5px;
}
.footer .siteinfo ul > li.com, .footer .siteinfo ul > li.add {
  display: block;
}
.footer .siteinfo ul > li.com {
  margin-top: 5px;
  font-size: 1.25rem;
  font-weight: 700;
}
.footer .editor .list-inline {
  text-align: end;
  margin-bottom: 10px;
}
.footer .editor .list-inline .list-inline-item:not(:last-child) {
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  border-right: 1px solid #888;
}
.footer .editor .list-inline a {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.footer .copyright b {
  color: var(--main-color);
}
.footer .powered a {
  color: #aaa;
}
.footer .powered a:hover {
  color: #666;
}

/********************* floating *********************/
#floating .btn-floating {
  width: 28px;
  height: 58px;
  background-color: var(--second-color);
  display: none;
  margin: 1px;
  padding: 10px 3px;
  position: absolute;
  left: -30px;
}
#floating .btn-floating .icon-arrow {
  width: 32px;
  height: 40px;
  background: url(../images/all/arrow.png) no-repeat;
  display: block;
}
#floating.open .btn-floating .icon-arrow {
  background-position: 0 -40px;
}
#floating ul {
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
}
#floating ul li {
  padding: 10px 0;
}
#floating ul li + li {
  border-top: 1px solid #e7e7e7;
}
#floating ul li a {
  width: 56px;
  height: 60px;
  background: url(../images/all/floating_icon.png) no-repeat;
  background-position-x: 0;
  font-size: 0.5rem;
  color: #bbb;
  text-align: center;
  display: block;
  padding: 40px 0 0;
  position: relative;
}
#floating ul li a:hover {
  color: #333;
  background-position-x: -56px;
}
#floating ul li a .num {
  min-width: 20px;
  height: 20px;
  background-color: #eb0f0f;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 8px;
  top: 0;
}
#floating ul li.b1 a {
  background-position-y: 0;
}
#floating ul li.b2 a {
  background-position-y: -80px;
}
#floating ul li.b3 a {
  background-position-y: -160px;
}

.wid-float-section {
  position: fixed;
  right: 15px;
  bottom: 10%;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: all ease 0.5s;
}
.wid-float-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.wid-float-section ul li.icon_l {
  --button-color: #06c755;
}
.wid-float-section ul li.icon_p {
  --button-color: #df0022;
}
.wid-float-section ul li.icon_y {
  --button-color: #ff0033;
}
.wid-float-section ul li.icon_i {
  --button-color: #e1306c;
}
.wid-float-section ul li.icon_f {
  --button-color: #0865fe;
}
.wid-float-section ul li.icon_t {
  --button-color: #000000;
}
.wid-float-section a {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--bs-white);
  background: var(--button-color, #3d3d3d);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.7em;
  height: 2.7em;
}
.wid-float-section a:hover {
  filter: brightness(0.9);
}

.is_scroll .wid-float-section {
  pointer-events: all;
  opacity: 1;
}

/********************* Main *********************/
.main {
  z-index: 10;
}

.main_content {
  min-height: 600px;
  padding: 30px 0 50px;
}

.sticky-menu {
  position: sticky;
  top: 0;
  background-color: var(--bs-white);
  z-index: 1;
}

/*----------------------- side -----------------------*/
.side .side-toggle {
  font-size: 1rem;
  padding: 0.5em 0.75em;
  color: var(--main-color);
  text-align: center;
  margin-top: 0;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.05);
}
.side .nav > li {
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}
.side .nav > li + li {
  margin-top: 15px;
}
.side .nav > li > a {
  color: var(--bs-white);
  background: var(--main-color);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  display: block;
  padding: 0.625em 1em;
}
.side .nav > li > a:hover, .side .nav > li > a:focus {
  background-color: var(--second-color);
}
.side .nav > li > ul {
  border: 1px solid var(--third-color);
  border-top: 0;
  padding: 10px 15px;
  list-style-type: none;
  background: var(--bs-white);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.side .nav > li > ul > li > a {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.25em 0.5em;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
}
.side .nav > li > ul > li > a:hover {
  text-decoration-color: currentColor;
}
.side .nav > li > ul > li > a.active {
  text-decoration-color: var(--second-color);
  color: var(--second-color);
}
.side .nav > li > ul > li > ul {
  padding: 0;
  margin-left: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  list-style-type: none;
}
.side .nav > li > ul > li > ul > li > a {
  font-size: 0.875rem;
  background: url(../images/all/list_icon3.png) no-repeat 0 0.425em;
  padding: 0.425em 0.75em 0.425em 1.425em;
}
.side .nav > li > ul > li > ul > li > a:hover {
  background: url(../images/all/list_icon3.png) no-repeat 0 0.425em;
  padding: 0.425em 0.75em 0.425em 1.425em;
}
.side .nav > li > ul > li > ul > li > a.active {
  background: url(../images/all/list_icon3.png) no-repeat 0 0.425em;
  padding: 0.425em 0.75em 0.425em 1.425em;
  color: var(--second-color);
}

/* breadcrumb */
.breadcrumb {
  padding: 10px;
  background: none;
  margin: 0;
  font-size: 0.875rem;
}
.breadcrumb > li + li:before {
  content: "/";
  margin-left: 5px;
  margin-right: 5px;
  opacity: 0.4;
}

/*----------------------- Content -----------------------*/
.content {
  /* wid */
}
.content .wid {
  position: relative;
  z-index: 10;
}
.content {
  /* wid-home-news */
}
.content .wid-home-news {
  margin-left: 0;
}
.content .wid-home-news .txt-list {
  margin-bottom: 10px;
  margin-top: -10px;
}
.content .wid-home-news .txt-list li {
  padding-left: 14px;
  background-position: 0 4px;
  background-color: transparent;
}
.content .wid-home-news .txt-list li:last-child {
  border-bottom: 2px solid #ace7eb;
}
.content .wid-home-news .txt-list li a {
  padding: 0.5em 0;
  font-size: 0.875rem;
}
.content .wid-home-news .txt-list li a span {
  padding: 3px 0;
  font-size: 0.75rem;
}
.content {
  /* wid-home-product */
}
.content .wid-home-product .bxslider li a {
  border: 1px solid #ace7eb;
  padding: 2px;
  display: block;
}
.content .wid-home-product .bxslider li a:hover {
  border-color: var(--main-color);
}
.content .wid-home-product .bx-wrapper .bx-controls-direction a {
  width: 24px;
  height: 40px;
  background: url(../images/home/arrow.png) no-repeat;
}
.content .wid-home-product .bx-wrapper .bx-controls-direction a.bx-prev {
  left: -24px;
}
.content .wid-home-product .bx-wrapper .bx-controls-direction a.bx-next {
  right: -24px;
  background-position: 0 -40px;
}
.content {
  /* wid-home-contact */
}
.content .wid-home-contact ul li {
  color: #717171;
  font-size: 0.875rem;
  line-height: 1.8;
}
.content .wid-home-contact ul li.phone {
  font-size: 1.65rem;
  color: #333;
  font-weight: bold;
}

.kind-info {
  margin-bottom: 2.5rem;
}
.kind-info .h1 {
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--bs-dark);
  letter-spacing: 0.1em;
  text-align: start;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  position: relative;
}
.kind-info .h1:before {
  content: "";
  display: block;
  width: 2em;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
.kind-info .h2 {
  font-weight: 900;
}
.kind-info .sub {
  font-size: 1.25rem;
  font-weight: 400;
  color: Var(--bs-gray-600);
}
.kind-info .kind {
  display: inline-block;
  margin-right: 10px;
  font-size: 0.875rem;
  padding: 0.25em 0.625em;
  border-radius: 0.25rem;
  background: var(--main-color);
  color: var(--bs-white);
}
.kind-info .date {
  display: inline-block;
  margin-right: 10px;
  font-size: 0.9375rem;
  color: var(--bs-gray-500);
}

/* list-box */
.list-box .txt-list {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.list-box .txt-list li + li {
  border-top: 1px solid #eee;
}
.list-box .txt-list li a {
  display: block;
  padding: 10px 0;
}
.list-box .txt-list li a:hover, .list-box .txt-list li a:focus {
  color: var(--main-color);
}
.list-box .txt-list li .date {
  color: var(--bs-gray-500);
}
.list-box .txt-list li .icon {
  color: var(--main-color);
}
.list-box .txt-list li.list-header {
  background: none;
  border-bottom: 1px solid var(--bs-gray-200);
  padding-bottom: 0.25em;
  font-weight: 700;
  color: var(--main-color);
}

/* btn-box */
.btn-box {
  margin: 30px 0 0;
  clear: both;
}
.btn-box:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
.btn-box .page-link {
  min-width: 2.625em;
  text-align: center;
}
.btn-box .pager {
  text-align: left;
  display: inline-block;
  margin: 0 0 20px;
}
.btn-box .pager li {
  margin: 0 5px;
}
.btn-box .pager li > a {
  background: #fff;
  color: #888;
  border-radius: 5px;
  border: 1px solid #dfdfdf;
  padding: 5px 20px;
}
.btn-box .pager li > a:hover {
  background-color: var(--main-color);
  color: #fff;
}
.btn-box .pager li > a .icon {
  display: none;
}
.btn-box .page-info {
  color: #888;
  float: right;
  text-align: center;
  margin: 0 5px;
}
.btn-box .page-info select {
  min-width: 60px;
  border: 1px solid #dfdfdf;
  margin-right: 10px;
}

.pagination {
  --bs-pagination-active-bg: var(--second-color);
  --bs-pagination-active-border-color: var(--second-color);
  --bs-pagination-hover-bg: var(--second-color);
}

.slick .slick-arrow {
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  top: 50%;
}
.slick .slick-prev {
  background-image: url(../images/all/arrow_l.svg);
}
.slick .slick-next {
  background-image: url(../images/all/arrow_r.svg);
}
.slick .slick-dots {
  --dot-width: 12px;
  --dot-height: 12px;
}
.slick .slick-dots li {
  margin: 0 8px;
  width: var(--dot-width);
  height: var(--dot-height);
}
.slick .slick-dots button {
  margin: 0;
  width: var(--dot-width);
  height: var(--dot-height);
}
.slick .slick-dots .slick-active button {
  background: var(--main-color);
}

.article-grid .item {
  height: 100%;
}
.article-grid .item a {
  display: block;
  position: relative;
}
.article-grid .item .item-wrapper {
  height: 100%;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 20px;
  transition: all 0.3s ease;
}
.article-grid .item .item-wrapper:hover {
  border-color: var(--main-color);
  box-shadow: 0 0 1rem rgba(var(--main-color-rgb), 0.2);
}
.article-grid .item .info {
  margin-top: 15px;
}
.article-grid .item .info .date {
  font-size: 14px;
  color: #a2a2a2;
}
.article-grid .item .info .kind a {
  font-size: 0.65rem;
  display: inline-block;
  background: var(--third-color);
  padding: 1px 12px;
  margin-bottom: 10px;
  width: auto;
  margin-right: 10px;
}
.article-grid .item .info .title,
.article-grid .item .info .title a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--third-color);
}
.article-grid .item .info .desc,
.article-grid .item .info .desc a {
  font-size: 0.9375rem;
  color: var(--bs-gray-600);
}
.article-grid .item .info ul {
  font-size: 0.9375rem;
  word-break: break-word;
  margin-top: 5px;
}
.article-grid .item .info ul li {
  display: flex;
  gap: 5px;
}
.article-grid .item .info ul label {
  color: var(--main-color);
}
.article-grid .item p {
  margin-bottom: 0;
}

.article-horizontal-grid .item {
  display: block;
  padding: 20px;
}
.article-horizontal-grid .item a {
  display: flex;
  align-items: center;
  padding: 45px 55px;
  gap: 40px;
}
.article-horizontal-grid .item .pic {
  order: 2;
  flex: 0 0 auto;
  width: 50%;
  max-width: 460px;
}
.article-horizontal-grid .item .info {
  order: 1;
  flex: 1 1 auto;
  width: auto;
}
.article-horizontal-grid .item .date, .article-horizontal-grid .item .kind {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1rem;
  line-height: 1;
}
.article-horizontal-grid .item .kind {
  background-color: var(--main-color);
  color: var(--bs-white);
}
.article-horizontal-grid .item .date {
  color: var(--main-color);
}
.article-horizontal-grid .item .title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  margin: 0.25em 0 0.75em;
}
.article-horizontal-grid .item .desc {
  font-size: 1rem;
  line-height: 1.8;
}
.article-horizontal-grid .item ul {
  font-size: 0.9375rem;
}
.article-horizontal-grid .item ul li {
  display: flex;
  gap: 10px;
}
.article-horizontal-grid .item ul li + li {
  margin-top: 5px;
}
.article-horizontal-grid .item ul li label {
  flex: 0 0 auto;
  width: 5em;
}
.article-horizontal-grid .item ul a {
  display: block;
  padding: 0;
}
.article-horizontal-grid.contact-list .item {
  border: 1px solid #ddd;
  border-radius: 1rem;
  overflow: hidden;
}
.article-horizontal-grid.contact-list .item .item-wrapper {
  display: flex;
  align-items: center;
  padding: 25px 35px;
  gap: 40px;
}
.article-horizontal-grid.contact-list .item .pic {
  order: 1;
  max-width: 320px;
}
.article-horizontal-grid.contact-list .item .info {
  order: 2;
}
.article-horizontal-grid.contact-list .item .title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--main-color);
  border-bottom: 1px solid var(--second-color);
  padding-bottom: 0.25em;
}

.gallery-list.kind-list .item {
  filter: drop-shadow(5px 10px 0 var(--fifth-color));
}
.gallery-list.kind-list .item .item-wrapper {
  position: relative;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}
.gallery-list.kind-list .item .pic {
  position: relative;
}
.gallery-list.kind-list .item .pic:after {
  content: "";
  display: block;
  background: linear-gradient(to top, var(--sixth-color), transparent);
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
}
.gallery-list.kind-list .item .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 45px;
}
.gallery-list.kind-list .item .info .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bs-white);
}

.gallery-horizontal-grid .item + .item {
  margin-top: 50px;
}
.gallery-horizontal-grid .item:nth-child(even) a {
  flex-direction: row-reverse;
}
.gallery-horizontal-grid .item .info, .gallery-horizontal-grid .item .pic {
  flex: 1 1 auto;
  width: 50%;
}
.gallery-horizontal-grid .item .item-wrapper {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  background: #efefef;
  transition: all 0.5s ease;
}
.gallery-horizontal-grid .item .item-wrapper:hover {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
}
.gallery-horizontal-grid .item .item-wrapper:hover .pic img {
  opacity: 1;
}
.gallery-horizontal-grid .item a {
  display: flex;
}
.gallery-horizontal-grid .item .pic img {
  transition: all 0.5s ease;
  opacity: 0.85;
}
.gallery-horizontal-grid .item .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
}
.gallery-horizontal-grid .item .title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--main-color);
}

.product-list .item {
  overflow: hidden;
}
.product-list .item + .item {
  margin-top: 40px;
}
.product-list .item .title {
  display: table;
  position: relative;
  font-size: 1.625rem;
  font-weight: 900;
  margin-bottom: 0.5em;
  color: var(--second-color);
}
.product-list .item .title:after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 1px;
  left: calc(100% + 5px);
  bottom: 0.4em;
  background-color: var(--bs-gray-400);
}
.product-list .item .list a {
  font-size: 1.25rem;
  font-weight: 700;
}
.product-list .item .list a small {
  display: block;
  font-weight: 300;
  line-height: 1.2;
  font-size: 0.9375rem;
}

/* 外層容器：確保按鈕與滾動區在同一行 */
.scroll-bar {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* 滾動視窗：隱藏溢出的內容 */
.scroll-container {
  flex-grow: 1;
  overflow: hidden; /* 隱藏原生滾動條 */
  white-space: nowrap;
  /* 核心：強制 Tabs 不換行 */
}
.scroll-container .nav {
  --bs-nav-link-padding-x: 0.875em;
  --bs-nav-link-padding-y: 0.375em;
  --bs-nav-link-font-size: 1.125rem;
  display: flex;
  flex-wrap: nowrap; /* 強制不換行 */
  overflow-x: auto; /* 允許水平滾動 */
  scroll-behavior: smooth; /* 讓滾動變平滑 */
  -ms-overflow-style: none; /* IE/Edge 隱藏滾動條 */
  scrollbar-width: none; /* Firefox 隱藏滾動條 */
  gap: 5px;
  /* Chrome/Safari 隱藏滾動條 */
}
.scroll-container .nav::-webkit-scrollbar {
  display: none;
}

.function-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}
.function-bar .function-item {
  flex: 0 0 auto;
  width: auto;
}

.table-primary {
  --bs-table-color: var(--bs-white);
  --bs-table-bg: var(--main-color);
  --bs-table-border-color: var(--bs-white);
  --bs-table-striped-bg: var(--main-color);
  --bs-table-striped-color: var(--bs-white);
  --bs-table-active-bg: var(--main-color);
  --bs-table-active-color: var(--bs-white);
  --bs-table-hover-bg: var(--main-color);
  --bs-table-hover-color: var(--bs-white);
}

table td.fit,
table th.fit {
  width: 1%;
  white-space: nowrap;
}

.editor > *:last-child {
  margin-bottom: 0;
}

/*----------------------------------------- 首頁 home --------------------------------------*/
body.home .header > .navbar {
  background: transparent;
}
body.home .banner {
  padding-top: 0 !important;
}
body.home .main_content {
  min-height: 0;
  padding: 0;
}
body.home .main_content .container-fluid {
  --bs-gutter-x: 0;
}
body.home .section {
  --section-gap: 120px;
  padding: var(--section-gap) 0;
}
body.home .section .h3 {
  font-size: 2.625rem;
  font-weight: 700;
  color: var(--bs-dark);
  letter-spacing: 0.1em;
  text-align: center;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  position: relative;
}
body.home .section .h3:before {
  content: "";
  display: block;
  width: 2em;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
body.home .section .more-btn-area {
  text-align: center;
  margin-top: 80px;
}
body.home .section.home_news {
  padding-bottom: calc(var(--section-gap) * 1.83);
  background: url(../images/home/news-bg.jpg) no-repeat center;
  background-size: cover;
}
body.home .section.home_news .article-horizontal-grid.slick .slick-arrow {
  top: 50%;
}
body.home .section.home_news .article-horizontal-grid.slick .slick-prev {
  left: 23.5vw;
  transform: translate(-50%, -50%);
}
body.home .section.home_news .article-horizontal-grid.slick .slick-next {
  right: 23.5vw;
  transform: translate(50%, -50%);
}
body.home .section.home_news .article-horizontal-grid.slick .slick-slide .item {
  opacity: 0.65;
  transition: all ease 0.5s;
}
body.home .section.home_news .article-horizontal-grid.slick .slick-slide .item .item-wrapper {
  box-shadow: 0;
  background-color: transparent;
  transition: all ease 0.5s;
}
body.home .section.home_news .article-horizontal-grid.slick .slick-slide.slick-current .item {
  opacity: 1;
}
body.home .section.home_news .article-horizontal-grid.slick .slick-slide.slick-current .item .item-wrapper {
  box-shadow: 0 0 20px rgba(var(--main-color-rgb), 0.2);
  background-color: var(--bs-white);
}
body.home .section.home_news .article-horizontal-grid.slick .slick-slide.slick-current:hover .item .item-wrapper {
  box-shadow: 0 0 20px rgba(var(--main-color-rgb), 0.5);
}
body.home .section.home_about {
  background: url(../images/home/about-bg01.jpg) no-repeat center;
  background-size: cover;
  background-position-x: 80%;
  padding-top: 0;
}
body.home .section.home_product {
  background: url(../images/home/product-bg.jpg) no-repeat center;
  background-size: cover;
}
body.home .section.home_product .h3 {
  margin-bottom: 1.5em;
}
body.home .section.home_product .gallery-list.kind-list.row {
  --bs-gutter-x: 0;
}
body.home .section.home_product .gallery-list.kind-list.slick {
  --clip-size: 60px;
}
body.home .section.home_product .gallery-list.kind-list.slick .item {
  transition: all ease 0.5s;
}
body.home .section.home_product .gallery-list.kind-list.slick .item .item-wrapper {
  margin: 0 -10px;
}
body.home .section.home_product .gallery-list.kind-list.slick .slick-list {
  padding-bottom: 10px;
  overflow: visible;
  clip-path: polygon(var(--clip-size) 0%, 100% 0%, calc(100% - var(--clip-size)) 100%, 0% 100%);
}
body.home .section.home_product .gallery-list.kind-list.slick .slick-track {
  padding: 20px 0 10px;
}
body.home .section.home_product .gallery-list.kind-list.slick .slick-center .item {
  transform: translateY(-20px);
}
body.home .section.home_product .gallery-list.kind-list.slick .slick-prev {
  left: 15px;
}
body.home .section.home_product .gallery-list.kind-list.slick .slick-next {
  right: 15px;
}
body.home .section.home_product .gallery-list.kind-list.slick.slick-dotted {
  margin-bottom: 0;
}
body.home .section.home_product .gallery-list.kind-list.slick.slick-dotted .slick-dots {
  width: auto;
  right: 0;
  bottom: calc(100% + 40px);
}
body.home .about-box {
  position: relative;
  display: block;
  width: 62%;
  padding: calc(var(--section-gap) * 0.45) var(--section-gap) var(--section-gap);
  z-index: 1;
}
body.home .about-box:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + var(--section-gap));
  background: url(../images/home/about-bg02.jpg) no-repeat center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, 89% 100%, 0% 100%);
  pointer-events: none;
}
body.home .about-box .h3 {
  color: var(--bs-white);
  text-align: start;
}
body.home .about-box .h3:before {
  left: 0;
  transform: translateX(0);
  background-color: var(--bs-white);
}
body.home .about-box .desc {
  color: var(--bs-white);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
}
body.home .about-box ul {
  margin-top: 30px;
}
body.home .about-box ul .list-inline-item:not(:last-child) {
  padding-right: 6.5%;
  margin-right: 6.5%;
  border-right: 1px solid rgba(255, 255, 255, 0.65);
}
body.home .about-box ul .icon {
  width: 40px;
  margin: 0 auto 10px;
}
body.home .about-box ul .text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bs-white);
}
body.home .about-box .more-btn-area {
  text-align: start;
  margin-top: 60px;
}

html[lang=en] .article-horizontal-grid .item ul li label, html[lang=jp] .article-horizontal-grid .item ul li label {
  width: 9em;
  text-align: end;
}
html[lang=en] .article-horizontal-grid .item ul li label {
  width: 9em;
}
html[lang=jp] .article-horizontal-grid .item ul li label {
  width: 7.5em;
}
html[lang=jp] .footer .sitemap > ul > li, html[lang=zh-Hans] .footer .sitemap > ul > li {
  flex: 0 0 20%;
}/*# sourceMappingURL=style.css.map */