@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=REM:ital,wght@0,100..900;1,100..900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

p, a, span {
  font-family: "Noto Sans TC", sans-serif;
}

@keyframes slide-up-reenter {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-100%);
  } /* 先推出去 */
  51% {
    transform: translateY(100%);
  } /* 瞬間回到底部 */
  100% {
    transform: translateY(0);
  } /* 再移上來 */
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateY(0); /* 初始位置 */
    opacity: 0.8;
  }
  100% {
    transform: translateY(10px); /* 向下移動 20px */
    opacity: 0.3;
  }
}
/*首頁 short 背景移動動畫 */
@keyframes move-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1000px 0; /* 向左移動 */
  }
}
/* 素人現身說法 amateur 上下漂浮動畫 */
@keyframes floatVar {
  0%, 100% {
    transform: translateY(var(--base, 0px));
  }
  50% {
    transform: translateY(calc(var(--base, 0px) + var(--amp, 0px)));
  }
}
/* ✅short-TITLE ATDER 不規則晃動動畫 */
@keyframes wobble {
  0%, 100% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(3deg);
  }
  10% {
    transform: rotate(-4deg);
  }
  15% {
    transform: rotate(2deg);
  }
  20% {
    transform: rotate(-3deg);
  }
  25% {
    transform: rotate(1deg);
  }
  30%, 100% {
    transform: rotate(0deg);
  }
}
:root {
  --primary-color: #f4d700;
  --secondary-color: #061036;
  --third-color: #061036;
  --third-hover-color:#1b7fcc;
  --text-color: #3c3c4a;
  --text-color-100: #455465;
  --text-color-200:#707070;
  --remark-color: #ffff06;
  --k2-color:#EFFF09;
  --white-color: #ffffff;
  --grey-color:#F0F0EB;
  --grey-color-100: #aaaaaa;
  --grey-color-200: #403939;
  --block-color: #000000;
  --remark-color:#DF182C;
  --float-light-color: #455465;
  --float-light-hover: #061036;
  --float-dark-bg: #a09688;
  --float-dark-text: #ffffff;
}

.main-wrapper {
  position: relative;
}

.mark {
  display: inline; /* 讓 box-decoration-break 生效 */
  padding: 0.1em 0.4em;
  background: transparent;
  background-image: linear-gradient(to top, rgba(255, 225, 0, 0.7), rgba(255, 225, 0, 0.3), 50%, rgba(255, 225, 0, 0));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.mark2 {
  display: inline; /* 讓 box-decoration-break 生效 */
  padding: 0.1em 0.4em;
  background: transparent;
  background-image: linear-gradient(to top, rgba(255, 225, 0, 0.5), rgba(255, 225, 0, 0.2) 10%, rgba(255, 225, 0, 0));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.mark3 {
  display: inline; /* 讓 box-decoration-break 生效 */
  background: transparent;
  background-image: linear-gradient(to right, rgba(255, 225, 0, 0.7), rgba(255, 225, 0, 0.3) 50%, rgba(255, 225, 0, 0.5));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.mark4 {
  display: inline; /* 讓 box-decoration-break 生效 */
  background: transparent;
  background-image: linear-gradient(to right, rgba(255, 225, 0, 0.7), rgba(255, 225, 0, 0.3) 50%, rgba(255, 225, 0, 0.5));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.index-title {
  font-size: 36px;
  font-weight: bold;
  font-family: "REM", sans-serif;
  color: var(--primary-color);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900.98px) {
  .index-title {
    font-size: 28px;
  }
}
@media (max-width: 480.98px) {
  .index-title {
    font-size: 21px;
  }
}
.index-title span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.5s forwards;
}

.index-subtitle {
  font-size: 54px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-left: 100px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInLeft 0.8s forwards;
  position: relative;
  z-index: 2;
}
@media (max-width: 1500.98px) {
  .index-subtitle {
    font-size: 52px;
  }
}
@media (max-width: 900.98px) {
  .index-subtitle {
    font-size: 48px;
    margin-left: 60px;
  }
}
@media (max-width: 480.98px) {
  .index-subtitle {
    font-size: 36px;
    margin-left: 40px;
  }
}
.index-subtitle span {
  display: inline-block;
  margin: 0 -4px;
}

.space-height {
  padding: 45px 0px;
}
@media (max-width: 1200.98px) {
  .space-height {
    padding: 40px 0px;
  }
}
@media (max-width: 834.98px) {
  .space-height {
    padding: 39px 0px;
  }
}

.domo-all-menu {
  background-color: #fff;
  width: 100%; /* 容器的寬度設為父容器的 100% */
  position: fixed;
  box-shadow: 0px 3px 7px rgba(192, 192, 192, 0.76);
  z-index: 99;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: calc(100% - 160px);
  padding: 8px 0px;
}
@media (max-width: 1420.98px) {
  .header-content {
    max-width: calc(100% - 80px);
  }
}
@media (max-width: 1242.98px) {
  .header-content {
    max-width: calc(100% - 40px);
  }
}
@media (max-width: 1200.98px) {
  .header-content {
    max-width: calc(100% - 120px);
  }
}
@media (max-width: 834.98px) {
  .header-content {
    max-width: calc(100% - 40px);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-logo a {
  display: block;
  flex-shrink: 0;
  background: url(../img/hp/logo.svg) no-repeat;
  background-size: contain;
  width: 280px;
  height: 83px;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 1520.98px) {
  .header-logo a {
    width: 224px;
    height: 66px;
  }
}
@media (max-width: 1438.98px) {
  .header-logo a {
    width: 250px;
    height: 73px;
  }
}
@media (max-width: 1210.98px) {
  .header-logo a {
    width: 212px;
    height: 62px;
  }
}

/*nav-icon*/
.nav-icon .nav-list {
  display: flex;
}
@media (max-width: 540.98px) {
  .nav-icon .nav-list {
    display: none;
  }
}

.nav-menu {
  display: flex;
}

.nav-item {
  font-family: "Noto Sans TC", sans-serif;
  color: #707070;
  font-size: 16px;
  padding: 36px 16px;
  display: flex;
}
@media (max-width: 1520.98px) {
  .nav-item {
    padding: 36px 10px;
    letter-spacing: 1px;
  }
}
@media (max-width: 1420.98px) {
  .nav-item {
    padding: 48px 8px;
  }
}
@media (max-width: 1297.98px) {
  .nav-item {
    font-size: 14px;
    padding: 24px 8px;
  }
}
@media (max-width: 1200.98px) {
  .nav-item {
    /* PCmenu-隱藏 */
    display: none;
  }
}
.nav-item a {
  color: #707070;
}

.nav-item .nav-item-iconbox {
  width: 12px;
  height: 12px;
  box-sizing: border-box;
}

.nav-item .nav-item-iconbox img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.nav-link {
  padding: 8px;
  position: relative;
}

.nav-icon .nav-link .icon-link {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #646464;
  border-radius: 50%;
}

.nav-link img {
  padding: 5px;
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}

.dm-menu {
  background-color: #393939;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 105px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s;
}
@media (max-width: 1297.98px) {
  .dm-menu {
    top: 90px;
  }
}

.nav-list .nav-item {
  cursor: pointer;
}

.nav-menu .nav-list:nth-child(1):hover .dm-menu,
.nav-menu .nav-list:nth-child(2):hover .dm-menu,
.nav-menu .nav-list:nth-child(4):hover .dm-menu,
.nav-menu .nav-list:nth-child(5):hover .dm-menu,
.nav-menu .nav-list:nth-child(6):hover .dm-menu {
  transform: scaleY(1);
}

.dm-menu .dm-menu-list a {
  color: #fff;
  padding: 16px;
}

.dm-menu li a:hover {
  background: #cfc8af;
  color: #393939;
  padding: 16px;
}

.nav-list:hover .nav-item {
  position: relative;
}

.nav-list:hover .nav-item::after {
  content: "";
  position: absolute;
  bottom: 30px; /* 視覺上可微調，讓底線貼近 nav-item 底部 */
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #f4d700; /* 你想要的底線顏色 */
}
@media (max-width: 1297.98px) {
  .nav-list:hover .nav-item::after {
    bottom: 13px;
  }
}

.nav-icon .nav-list .icon-link {
  position: relative;
}

.nav-link span {
  display: none;
}

/* 會員中心 */
.nav-icon .nav-link:nth-child(1):hover a:nth-child(1)::after {
  content: "會員中心";
  letter-spacing: 1px;
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 46px;
  left: -23px;
  z-index: 15;
  width: 62px;
  padding: 8px;
  background-color: #393939;
  border-radius: 8px;
}

.nav-icon .nav-link:nth-child(1):hover a:nth-child(1)::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #393939;
  top: 39px;
  left: 5px;
}

/* 客服中心 */
.nav-icon .nav-link:nth-child(2):hover a:nth-child(1)::after {
  content: "客服中心";
  letter-spacing: 1px;
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 46px;
  left: -23px;
  z-index: 15;
  width: 62px;
  padding: 8px;
  background-color: #393939; /* 你想要的底線顏色 */
  border-radius: 8px;
}

.nav-icon .nav-link:nth-child(2):hover a:nth-child(1)::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #393939;
  top: 39px;
  left: 5px;
}

/* 語言 */
.nav-icon .nav-link:nth-child(3):hover .language-box {
  transform: scaleY(1);
}

.language-box {
  background-color: #393939;
  position: absolute;
  z-index: 10;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s;
  z-index: 15;
  width: 80px;
  display: block;
  left: -14px;
  top: 54px;
  border-radius: 8px;
}

.language-box::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  z-index: 15;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #393939;
  top: -7px;
  left: 27px;
}

.language-box a {
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 8px;
  display: block;
}

.language-box .cn:hover {
  color: #393939; /* 你想要的 hover 顏色 */
  background-color: #f4d700; /* hover 時底線顏色 */
  border-radius: 7px 7px 0px 0px;
}

.language-box .en:hover {
  color: #393939; /* 你想要的 hover 顏色 */
  background-color: #f4d700; /* hover 時底線顏色 */
  border-radius: 0px 0px 7px 7px;
}

.language-box:has(.cn:hover)::after {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #f4d700;
}

/* 手機版mob-burger */
.domo-mob-nav {
  display: none;
}
@media (max-width: 1200.98px) {
  .domo-mob-nav {
    display: block;
    padding: 16px 8px;
  }
}
@media (max-width: 290px) {
  .domo-mob-nav {
    margin-top: -8px;
  }
}

.mob-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  z-index: 99;
  overflow-y: auto;
}

.mob-nav-list {
  flex: 1; /* 內容可伸縮填滿空間 */
  overflow-y: auto; /* 內容可滾動 */
}

.mob-im-menu {
  overflow-y: scroll;
}

.mob-im-menu::-webkit-scrollbar {
  display: none;
}

.mobMenu {
  display: none;
}

.domo-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明黑 */
  z-index: 98;
  display: none;
}

.domo-overlay.active1 {
  display: block;
}

@media (max-width: 1200.98px) {
  .domo-mob-burger {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 1200.98px) {
  .domo-mob-burger {
    width: 30px;
    height: 2px;
    background-color: #393939;
    position: relative;
    cursor: pointer;
  }
}

@media (max-width: 1200.98px) {
  .domo-mob-burger::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background-color: #393939;
    top: -10px;
  }
}

@media (max-width: 1200.98px) {
  .domo-mob-burger::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    background-color: #393939;
    bottom: -10px;
  }
}

@media (max-width: 1200.98px) {
  .mobMenu {
    display: block;
  }
}

@media (max-width: 1200.98px) {
  .mob-menu {
    background: #393939;
    color: #fff;
    font-family: "Noto Sans TC", sans-serif;
    position: fixed;
    width: 360px;
    z-index: 999;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    pointer-events: none;
    padding-bottom: 80px;
  }
}
@media (max-width: 540.98px) {
  .mob-menu {
    width: 65%;
  }
}

@media (max-width: 1200.98px) {
  .mob-menu.active1 {
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 1200.98px) {
  .mob-item {
    padding: 8px 16px;
    background: #393939;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 540.98px) {
  .mob-item {
    padding: 16px 24px;
  }
}

@media (max-width: 1200.98px) {
  .mob-item-domo {
    width: 100%;
  }
}

@media (max-width: 1200.98px) {
  .mob-item-domo .ta-c:hover {
    color: #fff;
  }
}

@media (max-width: 1200.98px) {
  .mob-toggle {
    display: flex;
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 1200.98px) {
  .mob-toggle .arrow {
    width: 10px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    transform: rotate(45deg);
    transition: 0.3s;
    margin-left: 8px;
    margin-top: 4px;
  }
}

@media (max-width: 1200.98px) {
  .mob-navlist.active1 .mob-toggle .arrow {
    transform: rotate(-135deg);
  }
}

@media (max-width: 1200.98px) {
  .mob-navlist.active1 .mob-item {
    background: #645947;
    /* 這是展開時的背景顏色 */
  }
}

@media (max-width: 1200.98px) {
  .mob-in-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #e0ddd3;
    position: relative;
    z-index: 10;
  }
}

@media (max-width: 1200.98px) {
  .mob-navlist.active1 .mob-in-list {
    max-height: 1000px;
    /* 根據內容高度調整 */
  }
}

@media (max-width: 1200.98px) {
  .mob-in-item {
    display: block;
  }
}

@media (max-width: 1200.98px) {
  .mob-in-item a {
    display: block;
    padding: 14px 16px;
    color: #393939;
    font-size: 15px;
    background-color: #cfc8af;
    text-decoration: none;
  }
}
@media (max-width: 360px) {
  .mob-in-item a {
    font-size: 14px;
  }
}

@media (max-width: 1200.98px) {
  .mob-in-item a:hover {
    background: #ccc6b2;
    color: #000;
  }
}

@media (max-width: 1200.98px) {
  .mob-item p {
    color: #fff;
    letter-spacing: 2px;
  }
}
@media (max-width: 360px) {
  .mob-item p {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

@media (max-width: 1200.98px) {
  .mob-item-img {
    margin-bottom: 8px;
  }
}

@media (max-width: 1200.98px) {
  .mob-in-list .mob-in-item a {
    padding: 8px 24px;
  }
}

@media (max-width: 1200.98px) {
  .ta-c {
    text-align: center;
    color: #fff;
    display: block;
  }
}

@media (max-width: 1200.98px) {
  .ta-c .mob-k2-link {
    display: block;
    width: 100%;
  }
}

@media (max-width: 1200.98px) {
  .mob-item .ta-c {
    letter-spacing: 2px;
    font-weight: bold;
  }
}

@media (max-width: 1200.98px) {
  .mob-navlist.active1 .ta-c {
    color: #fff;
  }
}

@media (max-width: 1200.98px) {
  .ta-c span {
    width: 16px;
    height: 16px;
    /* display: inline-flex; */
  }
}

@media (max-width: 1200.98px) {
  .ta-c .mob-k2-link {
    display: block;
  }
}

@media (max-width: 1200.98px) {
  .ta-c span img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1200.98px) {
  .bg-gary {
    background-color: #6a6b70;
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-close {
    position: relative;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-close::before {
    position: absolute;
    content: "";
    width: 36px;
    height: 2px;
    top: 16px;
    background-color: #fff;
    transform: translateY(9px) rotate(45deg);
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-close::after {
    position: absolute;
    content: "";
    width: 36px;
    height: 2px;
    top: 34px;
    background-color: #fff;
    transform: translateY(-9px) rotate(-45deg);
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-box {
    display: flex;
    justify-content: space-between;
    padding: 25px 8px 16px 16px;
  }
}
@media (max-width: 540.98px) {
  .mob-nav-box {
    padding: 16px 8px 16px 16px;
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-icon {
    display: flex;
    opacity: 0;
  }
}
@media (max-width: 540.98px) {
  .mob-nav-icon {
    opacity: 1;
  }
}

@media (max-width: 1200.98px) {
  .mob-nab-list {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 1200.98px) {
  .mob-nab-list:nth-child(3) {
    display: flex;
    width: 120px;
    align-items: center;
  }
}

@media (max-width: 1200.98px) {
  .mob-nab-list:nth-child(3) a {
    color: #fff;
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 1200.98px) {
  .mob-nab-list {
    padding: 8px;
  }
}

@media (max-width: 1200.98px) {
  .mob-nab-list img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1200.98px) {
  .domo-mob-box span {
    width: 16px;
    height: 16px;
    display: inline-flex;
    margin-left: 8px;
  }
}

@media (max-width: 1200.98px) {
  .domo-mob-bo span img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1200.98px) {
  .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 8px;
  }
}

@media (max-width: 1200.98px) {
  .mob-navlist.active1 .arrow img {
    transform: rotate(180deg);
  }
}

/* 社群ICON */
@media (max-width: 1200.98px) {
  .mob-nav-main {
    justify-content: space-evenly;
    padding: 16px;
    display: flex;
    background-color: #393939;
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-main .mob-nav-sc {
    display: block;
    width: 50px;
    height: 50px;
    text-indent: 101%;
    overflow: hidden;
    white-space: nowrap;
  }
}
@media (max-width: 540.98px) {
  .mob-nav-main .mob-nav-sc {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-sc a {
    display: block;
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-main .mob-nav-sc:nth-child(1) {
    background: url(../img/header/ig-w.svg) no-repeat;
    background-size: contain;
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-main .mob-nav-sc:nth-child(2) {
    background: url(../img/header/fb-w.svg) no-repeat;
    background-size: contain;
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-main .mob-nav-sc:nth-child(3) {
    background: url(../img/header/yt-w.svg) no-repeat;
    background-size: contain;
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-main .mob-nav-sc:nth-child(4) {
    background: url(../img/header/line-w.svg) no-repeat;
    background-size: contain;
  }
}

@media (max-width: 1200.98px) {
  .mob-nav-main .mob-nav-sc:nth-child(5) {
    background: url(../img/header/tik-tok-w.svg) no-repeat;
    background-size: contain;
  }
}

@media (max-width: 450.98px) {
  .mob-menu {
    width: 80%;
  }
}

@media (max-width: 450.98px) {
  .mob-nav-main {
    padding: 8px;
  }
}

@media (max-width: 430.98px) {
  .mob-menu {
    width: 100%;
  }
}

@media (max-width: 430.98px) {
  .mob-nav-box {
    padding: 8px 8px 16px 16px;
  }
}

@media (max-width: 430.98px) {
  .mob-item {
    padding: 8px;
  }
}

@media (max-width: 430.98px) {
  .header-logo {
    width: 240px;
  }
}
@media (max-width: 360px) {
  .header-logo {
    width: 220px;
  }
}
@media (max-width: 290px) {
  .header-logo {
    width: 200px;
  }
}

.footer-outbox {
  width: 100%;
  background: #403c39;
  padding: 36px 0px;
  display: flex;
  justify-content: center;
}
@media (max-width: 460.98px) {
  .footer-outbox {
    padding: 24px 0px 8px;
  }
}
.footer-outbox .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 580.98px) {
  .footer-outbox .footer-container {
    width: calc(100% - 48px);
  }
}
@media (max-width: 440.98px) {
  .footer-outbox .footer-container {
    width: calc(100% - 32px);
  }
}
.footer-outbox .footer-container .footer-logo {
  margin-bottom: 16px;
}
@media (max-width: 580.98px) {
  .footer-outbox .footer-container .footer-logo {
    order: 1;
  }
}
.footer-outbox .footer-container .footer-logo a {
  display: block;
  flex-shrink: 0;
  background: url(../img/hp/logo-mob-w.svg) no-repeat;
  background-size: contain;
  width: 365px;
  height: 105px;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 440.98px) {
  .footer-outbox .footer-container .footer-logo a {
    width: 280px;
    height: 81px;
  }
}

.footer-tel-box {
  margin-bottom: 32px;
}
@media (max-width: 580.98px) {
  .footer-tel-box {
    order: 2;
  }
}
.footer-tel-box p {
  font-size: 21px;
  font-weight: 500;
  padding: 8px 0px;
  text-align: center;
  color: var(--white-color);
}
.footer-tel-box a {
  font-size: 28px;
  font-weight: 500;
  color: var(--primary-color);
}

.footer-icon-box {
  display: flex;
  margin-bottom: 32px;
}
@media (max-width: 580.98px) {
  .footer-icon-box {
    order: 4;
  }
}
.footer-icon-box li {
  width: 50px;
  height: 50px;
  margin: 0px 8px;
}
.footer-icon-box li a {
  display: block;
}
.footer-icon-box li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 400.98px) {
  .footer-icon-box li {
    width: 40px;
    height: 40px;
  }
}

.footer-qrcode-box {
  margin-bottom: 56px;
}
@media (max-width: 580.98px) {
  .footer-qrcode-box {
    order: 6;
    margin-bottom: 24px;
  }
}
@media (max-width: 380.98px) {
  .footer-qrcode-box {
    margin-bottom: 8px;
  }
}
.footer-qrcode-box .qrcode-title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: var(--white-color);
  margin-bottom: 16px;
}

.footer-qrcode-wrap {
  display: flex;
}
.footer-qrcode-wrap .qrcode-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 161px;
  height: 169px;
  margin: 0px 8px;
}
@media (max-width: 580.98px) {
  .footer-qrcode-wrap .qrcode-box {
    width: 150px;
    height: 157px;
  }
}
@media (max-width: 380.98px) {
  .footer-qrcode-wrap .qrcode-box {
    width: 50%;
    height: 50%;
  }
}
.footer-qrcode-wrap .qrcode-box a {
  display: block;
  margin-bottom: 8px;
}
.footer-qrcode-wrap .qrcode-box a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-qrcode-wrap .qrcode-box p {
  display: block;
  font-size: 18px;
  color: var(--white-color);
}

.footer-link {
  display: flex;
  padding: 16px 0px 32px;
}
@media (max-width: 580.98px) {
  .footer-link {
    width: 100%;
    flex-wrap: wrap;
    order: 6;
  }
}
@media (max-width: 460.98px) {
  .footer-link {
    padding: 16px 0px;
  }
}
@media (max-width: 580.98px) {
  .footer-link {
    justify-content: center;
  }
}
@media (max-width: 580.98px) {
  .footer-link li {
    width: 20%;
  }
  .footer-link li:nth-child(6), .footer-link li:nth-child(7) {
    display: none;
  }
}
@media (max-width: 432.98px) {
  .footer-link li {
    width: 30%;
  }
}
@media (max-width: 300.98px) {
  .footer-link li {
    width: 33%;
  }
}
.footer-link li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
  padding: 8px;
}

.footer-brand-main {
  display: flex;
  overflow-x: auto; /* ✅ 允許水平滾動 */
  scroll-behavior: smooth; /* 按鈕平滑滾動 */
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.footer-brand-main::-webkit-scrollbar {
  display: none;
}
.footer-brand-main .dragging {
  cursor: grabbing; /* 拖曳時游標 */
}

.footer-brand-box {
  margin: 0 auto;
  max-width: 900px; /* 建議：限制容器寬度，例如剛好放4張 */
  position: relative;
  /*slider-左右按鈕*/
}
@media (max-width: 980.98px) {
  .footer-brand-box {
    max-width: 683px; /* 建議：限制容器寬度，例如剛好放4張 */
  }
}
@media (max-width: 780.98px) {
  .footer-brand-box {
    max-width: 450px; /* 建議：限制容器寬度，例如剛好放4張 */
  }
}
@media (max-width: 580.98px) {
  .footer-brand-box {
    max-width: 376px;
    order: 5;
  }
}
@media (max-width: 460.98px) {
  .footer-brand-box {
    max-width: 300px;
  }
}
@media (max-width: 360.98px) {
  .footer-brand-box {
    max-width: 260px;
  }
}
@media (max-width: 320.98px) {
  .footer-brand-box {
    max-width: 200px;
  }
}
.footer-brand-box .brand-slider-btn {
  font-size: 30px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  z-index: 8;
  opacity: 0.5;
}
.footer-brand-box .brand-slider-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-brand-box .brand-slider-btn:hover {
  opacity: 1;
}
.footer-brand-box .brand-slider-btn:focus {
  outline: 0px;
}
.footer-brand-box .brand-left {
  top: 22%;
  left: -40px;
}
@media (max-width: 780.98px) {
  .footer-brand-box .brand-left {
    top: 20%;
  }
}
@media (max-width: 560.98px) {
  .footer-brand-box .brand-left {
    top: 16%;
  }
}
@media (max-width: 460.98px) {
  .footer-brand-box .brand-left {
    top: 23%;
  }
}
.footer-brand-box .brand-right {
  top: 22%;
  right: -40px;
}
@media (max-width: 780.98px) {
  .footer-brand-box .brand-right {
    top: 20%;
  }
}
@media (max-width: 560.98px) {
  .footer-brand-box .brand-right {
    top: 16%;
  }
}
@media (max-width: 460.98px) {
  .footer-brand-box .brand-right {
    top: 23%;
  }
}
.footer-brand-box .brand-card {
  flex: 0 0 auto; /* 防止被壓縮 */
  margin-right: 16px;
  padding-bottom: 24px;
}
.footer-brand-box .brand-card .brand-img {
  width: 213px;
  height: 91px;
  margin-bottom: 8px;
}
@media (max-width: 580.98px) {
  .footer-brand-box .brand-card .brand-img {
    width: 180px;
    height: 77px;
  }
}
@media (max-width: 460.98px) {
  .footer-brand-box .brand-card .brand-img {
    width: 300px;
    height: 129px;
  }
}
@media (max-width: 360.98px) {
  .footer-brand-box .brand-card .brand-img {
    width: 260px;
    height: 112px;
  }
}
@media (max-width: 320.98px) {
  .footer-brand-box .brand-card .brand-img {
    width: 200px;
    height: 86px;
  }
}
.footer-brand-box .brand-card .brand-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-brand-box .brand-card .brand-text {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: var(--white-color);
  display: block;
}

.copyright {
  background: var(--block-color);
  padding: 8px 0px;
}
@media (max-width: 834.98px) {
  .copyright {
    margin-bottom: 81px;
  }
}
@media (max-width: 290.98px) {
  .copyright {
    margin-bottom: 86px;
  }
}
.copyright p {
  font-size: 14px;
  text-align: center;
  color: var(--white-color);
}

.float-icon-arrow {
  position: fixed;
  right: 0px;
  bottom: 3%;
  width: 60px;
  z-index: 95;
}
@media (max-width: 834.98px) {
  .float-icon-arrow {
    display: none;
  }
}

.float-icon-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.float-icon-main .float-icon-item {
  position: relative;
  z-index: 99;
  margin: 0 auto;
  margin-bottom: 10px;
}
.float-icon-main .float-icon-item .float-light-shop,
.float-icon-main .float-icon-item .float-light-line,
.float-icon-main .float-icon-item .float-light-messenger,
.float-icon-main .float-icon-item .float-light-stores {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: var(--float-light-color);
  border-radius: 50%;
  transition: background-color 0.4s ease; /* 平滑背景過渡 */
}
.float-icon-main .float-icon-item .float-light-shop img,
.float-icon-main .float-icon-item .float-light-line img,
.float-icon-main .float-icon-item .float-light-messenger img,
.float-icon-main .float-icon-item .float-light-stores img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.float-icon-main .float-icon-item .float-light-shop:hover,
.float-icon-main .float-icon-item .float-light-line:hover,
.float-icon-main .float-icon-item .float-light-messenger:hover,
.float-icon-main .float-icon-item .float-light-stores:hover {
  background: var(--float-light-hover);
}
.float-icon-main .float-icon-item .float-light-shop:hover::after,
.float-icon-main .float-icon-item .float-light-line:hover::after,
.float-icon-main .float-icon-item .float-light-messenger:hover::after,
.float-icon-main .float-icon-item .float-light-stores:hover::after {
  opacity: 1;
}
.float-icon-main .float-icon-item .float-light-shop::after {
  position: absolute;
  content: "耗材購買";
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  color: var(--float-light-hover);
  left: -60px;
  top: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.float-icon-main .float-icon-item .float-light-messenger::after {
  position: absolute;
  content: "臉書客服";
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  color: var(--float-light-hover);
  left: -60px;
  top: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.float-icon-main .float-icon-item .float-light-line::after {
  position: absolute;
  content: "加入好友";
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  color: var(--float-light-hover);
  left: -60px;
  top: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.float-icon-main .float-icon-item .float-light-stores::after {
  position: absolute;
  content: "門市資訊";
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  color: var(--float-light-hover);
  left: -60px;
  top: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.float-icon-main .float-icon-item .float-light-top {
  position: relative;
  display: block;
  height: 80px;
  width: 30px;
  overflow: hidden;
}
.float-icon-main .float-icon-item .float-light-top::after {
  position: absolute;
  content: "Go Top";
  color: var(--float-light-color);
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  bottom: 0;
  left: 0px;
  writing-mode: sideways-lr; /* 垂直排列 */
  text-orientation: mixed; /* 保持文字橫向 */
  transition: transform 0.3s ease-out;
}
.float-icon-main .float-icon-item .float-light-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center; /* 靠上置中 */
  /* 預設位置：往下藏一點點 */
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  /* cubic-bezier 做彈性往上推的感覺 */
}
.float-icon-main .float-icon-item .float-light-top:hover::after {
  transform: translateY(-8px); /* 稍微多一點位移 */
}
.float-icon-main .float-icon-item .float-light-top:hover img {
  animation: slide-up-reenter 0.8s forwards;
}
.float-icon-main .float-icon-item .float-dark-shop,
.float-icon-main .float-icon-item .float-dark-line,
.float-icon-main .float-icon-item .float-dark-messenger,
.float-icon-main .float-icon-item .float-dark-stores {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: var(--float-dark-bg);
  border-radius: 50%;
  transition: background-color 0.4s ease; /* 平滑背景過渡 */
}
.float-icon-main .float-icon-item .float-dark-shop img,
.float-icon-main .float-icon-item .float-dark-line img,
.float-icon-main .float-icon-item .float-dark-messenger img,
.float-icon-main .float-icon-item .float-dark-stores img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.float-icon-main .float-icon-item .float-dark-shop:hover::after,
.float-icon-main .float-icon-item .float-dark-line:hover::after,
.float-icon-main .float-icon-item .float-dark-messenger:hover::after,
.float-icon-main .float-icon-item .float-dark-stores:hover::after {
  opacity: 1;
}
.float-icon-main .float-icon-item .float-dark-shop::after {
  position: absolute;
  content: "耗材購買";
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  color: var(--float-dark-text);
  left: -60px;
  top: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.float-icon-main .float-icon-item .float-dark-messenger::after {
  position: absolute;
  content: "臉書客服";
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  color: var(--float-dark-text);
  left: -60px;
  top: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.float-icon-main .float-icon-item .float-dark-line::after {
  position: absolute;
  content: "加入好友";
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  color: var(--float-dark-text);
  left: -60px;
  top: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.float-icon-main .float-icon-item .float-dark-stores::after {
  position: absolute;
  content: "門市資訊";
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  color: var(--float-dark-text);
  left: -60px;
  top: 14px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.float-icon-main .float-icon-item .float-dark-top {
  position: relative;
  display: block;
  height: 80px;
  width: 30px;
  overflow: hidden;
}
.float-icon-main .float-icon-item .float-dark-top::after {
  position: absolute;
  content: "Go Top";
  color: var(--float-dark-text);
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  bottom: 0;
  left: 0px;
  writing-mode: sideways-lr; /* 垂直排列 */
  text-orientation: mixed; /* 保持文字橫向 */
  transition: transform 0.3s ease-out;
}
.float-icon-main .float-icon-item .float-dark-top img {
  width: 100%;
  height: 100%;
  filter: invert(1) brightness(2);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center; /* 靠上置中 */
  /* 預設位置：往下藏一點點 */
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  /* cubic-bezier 做彈性往上推的感覺 */
}
.float-icon-main .float-icon-item .float-dark-top:hover::after {
  transform: translateY(-8px); /* 稍微多一點位移 */
}
.float-icon-main .float-icon-item .float-dark-top:hover img {
  animation: slide-up-reenter 0.8s forwards;
}

/* 手機 sticky-container */
.sticky-container {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 90;
  background-color: var(--float-light-color);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
@media (max-width: 834.98px) {
  .sticky-container {
    display: block;
  }
}
.sticky-container .store-line {
  background: var(--float-light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  padding: 8px 0px;
}
.sticky-container .store-line img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.sticky-container .sticky-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--white-color);
}
.sticky-container .sticky-content .sticky-line {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0px;
  background: var(--float-light-color);
  color: var(--white-color);
  border-right: 1px solid var(--white-color);
}
.sticky-container .sticky-content .sticky-line:nth-child(3) {
  border: 0;
}
.sticky-container .sticky-content .sticky-line img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

/*banner 載入設定*/
.banner-container {
  opacity: 0; /* 頁面載入前完全隱藏 */
  transition: opacity 0.8s ease;
}

.banner-container.loaded {
  opacity: 1; /* 載入完成後淡入 */
}

/* banner-container */
.banner-container {
  position: relative;
  max-width: 1627px;
  width: 100%;
  height: 583px;
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y;
}
@media (max-width: 1674.98px) {
  .banner-container {
    max-width: 1468px;
    height: 521px;
  }
}
@media (max-width: 1500.98px) {
  .banner-container {
    max-width: 1268px;
    height: 440px;
  }
}
@media (max-width: 1300.98px) {
  .banner-container {
    max-width: 1100px;
    height: 448px;
  }
}
@media (max-width: 1297.98px) {
  .banner-container {
    height: 367px;
  }
}
@media (max-width: 1200.98px) {
  .banner-container {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 1200/490;
    height: auto;
  }
}
@media (max-width: 1024.98px) {
  .banner-container {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1; /* ✅ 手機版用影片實際比例 */
    position: relative; /* ✅ 避免被 absolute 定位干擾 */
    top: 0;
    right: 0;
    transform: none;
  }
}

/* slider */
.banner-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-in-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}
.banner-in-slide.active {
  opacity: 1;
  z-index: 2;
}

/* banner-video */
.banner-video {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1357px;
  aspect-ratio: 22/9;
  overflow: hidden;
  z-index: 1;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.banner-video.active, .banner-video[style*="opacity: 1"] {
  opacity: 1;
}
@media (max-width: 1740.98px) {
  .banner-video {
    width: 1300px;
  }
}
@media (max-width: 1674.98px) {
  .banner-video {
    width: 1200px;
  }
}
@media (max-width: 1500.98px) {
  .banner-video {
    width: 1000px;
  }
}
@media (max-width: 1337.98px) {
  .banner-video {
    width: 1066px;
  }
}
@media (max-width: 1300.98px) {
  .banner-video {
    width: 900px;
  }
}
@media (max-width: 1200.98px) {
  .banner-video {
    width: 100%;
    top: auto;
    transform: translateY(0%);
  }
}
@media (max-width: 1025px) {
  .banner-video {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    top: 0;
    right: 0;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
}
.banner-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
.banner-video .pc-video {
  display: block;
}
@media (max-width: 1025px) {
  .banner-video .pc-video {
    display: none;
  }
}
.banner-video .mob-video {
  display: none;
}
@media (max-width: 1025px) {
  .banner-video .mob-video {
    display: block;
  }
}

/* banner-title-container */
.banner-title-container {
  position: absolute;
  top: 36%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 20px;
  max-width: 375px;
  color: white;
  z-index: 3;
  transition: opacity 0.8s ease;
  opacity: 1;
  transition: none;
}
@media (max-width: 1740.98px) {
  .banner-title-container {
    left: 56px;
  }
}
@media (max-width: 1674.98px) {
  .banner-title-container {
    left: 0px;
  }
}
@media (max-width: 1200.98px) {
  .banner-title-container {
    display: none;
  }
}

.banner-title-container.active {
  opacity: 1;
}

/* 字體樣式 */
.banner-subtitle {
  font-size: 50px;
  letter-spacing: 8px;
  font-weight: 500;
  margin-left: 138px;
  margin-bottom: 80px;
  color: #3c3c4a;
}
@media (max-width: 1500.98px) {
  .banner-subtitle {
    font-size: 48px;
    margin-bottom: 36px;
  }
}
@media (max-width: 1337.98px) {
  .banner-subtitle {
    font-size: 36px;
    margin-left: 99px;
  }
}

.banner-up-title {
  color: #3c3c4a;
  font-size: 60px;
  font-weight: bolder;
  letter-spacing: 4px;
  font-family: "Noto Sans TC", sans-serif;
  margin-bottom: 24px;
}
@media (max-width: 1500.98px) {
  .banner-up-title {
    font-size: 52px;
  }
}
@media (max-width: 1337.98px) {
  .banner-up-title {
    font-size: 42px;
  }
}

.banner-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #3c3c4a;
  line-height: 32px;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.banner-text.active {
  opacity: 1;
}
@media (max-width: 1337.98px) {
  .banner-text {
    font-size: 16px;
  }
}

/* 拆字動畫 */
.banner-up-title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.banner-up-title .letter.active {
  opacity: 1;
  transform: translateY(0);
}

/*SUBTITLE 由下往上動畫*/
.fade-up,
.banner-down,
.banner-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.active,
.banner-down.active,
.banner-text.active {
  opacity: 1;
  transform: translateY(0);
}

.banner-down {
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-left: -18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.banner-down.active {
  opacity: 1;
  transform: translateY(0);
}

/* 左右箭頭 */
.banner-arrow {
  position: absolute;
  top: 68%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 24px;
  line-height: 24px;
  color: #333;
  background: #fff;
  border: 1px solid #333;
  cursor: pointer;
  padding: 0.5rem 1rem;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 1674.98px) {
  .banner-arrow {
    top: 78%;
  }
}
@media (max-width: 1500.98px) {
  .banner-arrow {
    top: 71%;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1200.98px) {
  .banner-arrow {
    top: 0%;
    transform: translateY(520%);
  }
}
@media (max-width: 1024.98px) {
  .banner-arrow {
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    background: transparent;
    border: transparent;
    color: var(--white-color);
    font-size: 60px;
  }
}

.banner-arrow:hover {
  opacity: 0.5;
}
@media (max-width: 1024.98px) {
  .banner-arrow:hover {
    opacity: 1;
  }
}

.banner-arrow.left {
  left: 120px;
}
@media (max-width: 1337.98px) {
  .banner-arrow.left {
    left: 66px;
  }
}
@media (max-width: 1200.98px) {
  .banner-arrow.left {
    left: 10px;
  }
}

.banner-arrow.right {
  left: 180px;
}
@media (max-width: 1337.98px) {
  .banner-arrow.right {
    left: 130px;
  }
}
@media (max-width: 1200.98px) {
  .banner-arrow.right {
    left: auto;
    right: 10px;
  }
}

/**/
.index-container {
  background: url(../img/hp/bg.svg);
  width: 100%;
  background-position: top center;
  background-repeat: repeat-y;
  background-size: cover;
}

.warning-container {
  width: 400px;
  margin-top: -115px;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
  margin-left: 124px;
  max-height: 100vh;
}
@media (max-width: 1740.98px) {
  .warning-container {
    margin-left: 78px;
  }
}
@media (max-width: 1674.98px) {
  .warning-container {
    margin-top: -64px;
  }
}
@media (max-width: 1500.98px) {
  .warning-container {
    margin-top: -84px;
    width: 350px;
  }
}
@media (max-width: 1297.98px) {
  .warning-container {
    margin-top: -36px;
  }
}
@media (max-width: 1200.98px) {
  .warning-container {
    margin: 40px auto 40px;
    width: 50%;
  }
}
@media (max-width: 1024.98px) {
  .warning-container {
    width: calc(100% - 32px);
    margin: 48px auto;
  }
}
@media (max-width: 420.98px) {
  .warning-container {
    margin: 30px auto;
  }
}
.warning-container .warning-content {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  background: var(--white-color);
  box-shadow: 4px 4px 12px 4px rgba(51, 51, 102, 0.5);
  padding: 16px;
}
@media (max-width: 1500.98px) {
  .warning-container .warning-content {
    padding: 8px;
  }
}
@media (max-width: 1200.98px) {
  .warning-container .warning-content {
    flex-direction: column;
    padding: 16px 16px;
    width: 80%;
  }
}
@media (max-width: 540.98px) {
  .warning-container .warning-content {
    width: 90%;
    padding: 16px;
  }
}
@media (max-width: 360.98px) {
  .warning-container .warning-content {
    padding: 8px;
  }
}
.warning-container .warning-content .warning-img {
  flex: 0 0 36px;
  border: 4px solid var(--text-color-100);
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 24px;
  padding: 8px;
}
@media (max-width: 1500.98px) {
  .warning-container .warning-content .warning-img {
    margin: 0 auto;
    flex: 0 0 28px;
  }
}
@media (max-width: 1200.98px) {
  .warning-container .warning-content .warning-img {
    width: 40px;
  }
}
@media (max-width: 1024.98px) {
  .warning-container .warning-content .warning-img {
    width: 60px;
    height: 60px;
    margin: 24px auto;
  }
}
@media (max-width: 500.98px) {
  .warning-container .warning-content .warning-img {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 434.98px) {
  .warning-container .warning-content .warning-img {
    width: 36px;
    height: 36px;
    margin: 16px auto;
  }
}
@media (max-width: 400.98px) {
  .warning-container .warning-content .warning-img {
    margin-right: 0px;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin: 0 auto 16px;
  }
}
.warning-container .warning-content .warning-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.warning-container .warning-content .warning-text {
  width: 77%;
}
@media (max-width: 1200.98px) {
  .warning-container .warning-content .warning-text {
    width: 90%;
  }
}
@media (max-width: 1024.98px) {
  .warning-container .warning-content .warning-text {
    width: 63%;
    text-align: center;
  }
}
@media (max-width: 900.98px) {
  .warning-container .warning-content .warning-text {
    width: 75%;
  }
}
@media (max-width: 834.98px) {
  .warning-container .warning-content .warning-text {
    width: 85%;
  }
}
@media (max-width: 768.98px) {
  .warning-container .warning-content .warning-text {
    width: 90%;
  }
}
@media (max-width: 500.98px) {
  .warning-container .warning-content .warning-text {
    width: 95%;
  }
}
.warning-container .warning-content .warning-text p {
  font-size: 18px;
  line-height: 32px;
  color: var(--text-color-100);
}
@media (max-width: 1500.98px) {
  .warning-container .warning-content .warning-text p {
    font-size: 15px;
  }
}
@media (max-width: 1200.98px) {
  .warning-container .warning-content .warning-text p {
    line-height: 28px;
  }
}
@media (max-width: 1024.98px) {
  .warning-container .warning-content .warning-text p {
    font-size: 24px;
    line-height: 48px;
  }
}
@media (max-width: 610.98px) {
  .warning-container .warning-content .warning-text p {
    font-size: 21px;
    line-height: 36px;
  }
}
@media (max-width: 500.98px) {
  .warning-container .warning-content .warning-text p {
    font-size: 16px;
    line-height: 32px;
  }
}

/*最新活動*/
.news-subtitle {
  font-size: 54px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-left: 100px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInLeft 0.8s forwards;
  position: relative;
  z-index: 2;
}
@media (max-width: 1500.98px) {
  .news-subtitle {
    font-size: 52px;
  }
}
@media (max-width: 900.98px) {
  .news-subtitle {
    font-size: 48px;
    margin-left: 60px;
  }
}
@media (max-width: 480.98px) {
  .news-subtitle {
    font-size: 36px;
    margin-left: 40px;
  }
}
.news-subtitle span {
  display: inline-block;
  margin: 0 -4px;
}

.index-container .news-container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  padding: 0px 0px 36px;
}
@media (max-width: 1200.98px) {
  .index-container .news-container {
    max-width: 960px;
  }
}
@media (max-width: 1023.98px) {
  .index-container .news-container {
    max-width: 840px;
  }
}
@media (max-width: 900.98px) {
  .index-container .news-container {
    max-width: 720px;
  }
}
@media (max-width: 768.98px) {
  .index-container .news-container {
    max-width: 600px;
  }
}
@media (max-width: 648.98px) {
  .index-container .news-container {
    max-width: calc(100% - 48px);
  }
}
.index-container .news-container .news-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.index-container .news-container .news-content .new-arrow-box {
  display: flex;
  gap: 10px;
  margin-right: 120px;
}
@media (max-width: 900.98px) {
  .index-container .news-container .news-content .new-arrow-box {
    margin-right: 48px;
  }
}
@media (max-width: 480.98px) {
  .index-container .news-container .news-content .new-arrow-box {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-right: 0;
    justify-content: space-between;
  }
}
.index-container .news-container .news-content .new-arrow-box .news-slider-btn {
  border: 1px solid var(--text-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: none;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s;
  z-index: 8;
}
.index-container .news-container .news-content .new-arrow-box .news-slider-btn:hover {
  opacity: 0.6;
}
.index-container .news-container .news-content .new-arrow-box .news-slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.index-container .news-container .news-content .new-arrow-box .news-slider-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.index-container .news-container .news-slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.index-container .news-container .news-main {
  display: flex;
  gap: 16px;
  scroll-behavior: smooth;
  transition: transform 0.6s ease;
  touch-action: pan-y;
}
.index-container .news-container .news-main .news-card {
  flex: 0 0 auto;
  width: auto;
}
.index-container .news-container .news-main .news-card:hover .news-img {
  overflow: hidden;
}
.index-container .news-container .news-main .news-card:hover .news-img img {
  transform: scale(1.1);
  transform-origin: center;
}
.index-container .news-container .news-main .news-card:hover .news-text {
  color: var(--secondary-color);
}
@media (min-width: 769px) {
  .index-container .news-container .news-main .news-card {
    width: calc((100% - 32px) / 3);
  }
}
@media (max-width: 768px) and (min-width: 481px) {
  .index-container .news-container .news-main .news-card {
    width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 480px) {
  .index-container .news-container .news-main .news-card {
    width: 100%;
  }
}
.index-container .news-container .news-main .news-card .news-img {
  width: 100%;
  padding-top: 58%;
  overflow: hidden;
  position: relative;
}
.index-container .news-container .news-main .news-card .news-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 2s;
}
.index-container .news-container .news-main .news-card .news-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  color: var(--text-color);
  margin-top: 8px;
}
@media (max-width: 900px) {
  .index-container .news-container .news-main .news-card .news-text {
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 1px;
  }
}
@media (max-width: 1023px) {
  .index-container .news-container .news-main .news-card {
    width: calc((100% - 16px) / 2);
  }
}
@media (max-width: 767px) {
  .index-container .news-container .news-main .news-card {
    width: 100%;
  }
  .index-container .news-container .new-arrow-box {
    display: none;
  }
}

/*品牌故事*/
.story-l-box,
.story-r-box,
.story-container::after {
  pointer-events: none;
}

.story-container {
  width: 100%;
  position: relative;
  overflow-x: clip;
  margin-top: 114px;
}
@media (max-width: 1200px) {
  .story-container {
    margin-top: 96px;
  }
}
@media (max-width: 768px) {
  .story-container {
    margin: 96px 0px 24px;
  }
}
@media (max-width: 580.98px) {
  .story-container {
    margin-top: 60px;
  }
}
@media (max-width: 360.98px) {
  .story-container {
    padding-top: 0px;
  }
}
.story-container::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../img/hp/yellow-plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 20px;
  right: 200px;
  transform: rotate(12deg);
  transform-origin: center;
}
@media (max-width: 1732.98px) {
  .story-container::after {
    right: 100px;
  }
}
@media (max-width: 768.98px) {
  .story-container::after {
    right: 48px;
  }
}
@media (max-width: 500.98px) {
  .story-container::after {
    width: 16px;
    height: 16px;
    right: 24px;
  }
}
@media (max-width: 340.98px) {
  .story-container::after {
    display: none;
  }
}
.story-container .story-l-box {
  position: absolute;
  width: 611px;
  height: 611px;
  border-radius: 50%;
  background-color: var(--primary-color);
  left: 85px;
  bottom: 80px;
  z-index: 0;
}
@media (max-width: 1732.98px) {
  .story-container .story-l-box {
    width: 550px;
    height: 550px;
  }
}
@media (max-width: 1465.98px) {
  .story-container .story-l-box {
    width: 450px;
    height: 450px;
    bottom: 126px;
  }
}
@media (max-width: 1465.98px) {
  .story-container .story-l-box {
    left: -39px;
  }
}
@media (max-width: 1200.98px) {
  .story-container .story-l-box {
    left: 55px;
    width: 350px;
    height: 350px;
    bottom: 166px;
  }
}
@media (max-width: 1080.98px) {
  .story-container .story-l-box {
    left: 12px;
    bottom: 128px;
  }
}
@media (max-width: 900.98px) {
  .story-container .story-l-box {
    left: 395px;
    bottom: 90px;
  }
}
@media (max-width: 648.98px) {
  .story-container .story-l-box {
    left: 289px;
    bottom: 87px;
  }
}
@media (max-width: 580.98px) {
  .story-container .story-l-box {
    left: 243px;
    bottom: 125px;
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 500.98px) {
  .story-container .story-l-box {
    left: 200px;
    bottom: 140px;
    width: 268px;
    height: 268px;
  }
}
@media (max-width: 440.98px) {
  .story-container .story-l-box {
    left: 205px;
    bottom: 142px;
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 400.98px) {
  .story-container .story-l-box {
    left: 145px;
  }
}
@media (max-width: 340.98px) {
  .story-container .story-l-box {
    left: 93px;
  }
}
@media (max-width: 300.98px) {
  .story-container .story-l-box {
    left: 50px;
    bottom: 176px;
  }
}
.story-container .story-l-box::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../img/hp/yellow-plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: -15px;
  top: 19px;
}
@media (max-width: 1732.98px) {
  .story-container .story-l-box::after {
    right: 24px;
  }
}
@media (max-width: 1200.98px) {
  .story-container .story-l-box::after {
    right: 4px;
    top: -8px;
  }
}
@media (max-width: 1080.98px) {
  .story-container .story-l-box::after {
    right: 8px;
    top: -28px;
  }
}
@media (max-width: 400.98px) {
  .story-container .story-l-box::after {
    display: none;
  }
}
.story-container .story-r-main {
  width: 60%;
}
@media (max-width: 900.98px) {
  .story-container .story-r-main {
    order: 1;
    width: 70%;
  }
}
@media (max-width: 768.98px) {
  .story-container .story-r-main {
    width: 80%;
  }
}
@media (max-width: 580.98px) {
  .story-container .story-r-main {
    width: 90%;
  }
}
@media (max-width: 440.98px) {
  .story-container .story-r-main {
    width: 100%;
  }
}
.story-container .story-r-box {
  position: absolute;
  width: 200px;
  height: 192px;
  right: 230px;
  top: 0px;
  opacity: 0.2;
  background-size: contain;
  background-image: url(../img/hp/story-k2logo.svg);
  background-repeat: no-repeat;
  transform: rotate(12deg);
  transform-origin: center;
}
@media (max-width: 1732.98px) {
  .story-container .story-r-box {
    right: 136px;
  }
}
@media (max-width: 1200.98px) {
  .story-container .story-r-box {
    width: 158px;
    height: 151px;
  }
}
@media (max-width: 768.98px) {
  .story-container .story-r-box {
    right: 75px;
  }
}
@media (max-width: 500.98px) {
  .story-container .story-r-box {
    right: 38px;
  }
}
@media (max-width: 440.98px) {
  .story-container .story-r-box {
    width: 130px;
    height: 124px;
  }
}
@media (max-width: 360.98px) {
  .story-container .story-r-box {
    width: 100px;
    height: 95px;
  }
}
@media (max-width: 360.98px) {
  .story-container .story-r-box {
    right: 37px;
  }
}
@media (max-width: 340.98px) {
  .story-container .story-r-box {
    width: 80px;
    height: 70px;
    right: 8px;
  }
}
.story-container .story-content {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0px 0px 78px;
}
@media (max-width: 1200.98px) {
  .story-container .story-content {
    max-width: 960px;
  }
}
@media (max-width: 1023.98px) {
  .story-container .story-content {
    max-width: 840px;
  }
}
@media (max-width: 900.98px) {
  .story-container .story-content {
    max-width: 740px;
  }
}
@media (max-width: 768.98px) {
  .story-container .story-content {
    max-width: 600px;
    padding: 0px 0px 80px;
  }
}
@media (max-width: 648.98px) {
  .story-container .story-content {
    max-width: calc(100% - 48px);
  }
}
@media (max-width: 500.98px) {
  .story-container .story-content {
    padding: 0px;
  }
}
@media (max-width: 440.98px) {
  .story-container .story-content {
    max-width: calc(100% - 32px);
  }
}

.story-bottom-title {
  display: none;
  text-align: center;
  font-size: 28px;
}
@media (max-width: 768.98px) {
  .story-bottom-title {
    display: block;
  }
}
@media (max-width: 540.98px) {
  .story-bottom-title {
    font-size: 24px;
    line-height: 32px;
  }
}

.story-main {
  display: flex;
  padding: 56px 0px;
  justify-content: space-between;
}
@media (max-width: 1200.98px) {
  .story-main {
    padding: 48px 0px;
  }
}
@media (max-width: 900.98px) {
  .story-main {
    flex-direction: column;
  }
}
.story-main .story-l-main {
  max-width: 20%;
  margin-top: 80px;
  position: relative;
}
@media (max-width: 1465.98px) {
  .story-main .story-l-main {
    margin-left: 80px;
    max-width: 18%;
  }
}
@media (max-width: 1200.98px) {
  .story-main .story-l-main {
    margin-top: 100px;
  }
}
@media (max-width: 1023.98px) {
  .story-main .story-l-main {
    margin-top: 160px;
    max-width: 20%;
  }
}
@media (max-width: 900.98px) {
  .story-main .story-l-main {
    order: 2;
    margin-top: -120px;
    margin-right: 0px;
    margin-left: 540px;
  }
}
@media (max-width: 768.98px) {
  .story-main .story-l-main {
    width: 100%;
    margin-left: 477px;
  }
}
@media (max-width: 648.98px) {
  .story-main .story-l-main {
    margin-left: 358px;
    margin-top: -48px;
  }
}
@media (max-width: 500.98px) {
  .story-main .story-l-main {
    margin-left: 270px;
  }
}
@media (max-width: 400.98px) {
  .story-main .story-l-main {
    margin-left: 220px;
  }
}
@media (max-width: 330.98px) {
  .story-main .story-l-main {
    margin-left: 167px;
    margin-top: 0px;
  }
}
@media (max-width: 300.98px) {
  .story-main .story-l-main {
    margin-left: 146px;
  }
}
.story-main .story-l-main img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768.98px) {
  .story-main .story-l-main img {
    width: 120%;
  }
}
@media (max-width: 500.98px) {
  .story-main .story-l-main img {
    width: 154%;
  }
}
@media (max-width: 330.98px) {
  .story-main .story-l-main img {
    width: 208%;
  }
}
.story-main .story-r-title {
  font-size: 32px;
  line-height: 48px;
  color: var(--secondary-color);
  margin-bottom: 48px;
}
@media (max-width: 1200.98px) {
  .story-main .story-r-title {
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 36px;
  }
}
@media (max-width: 440.98px) {
  .story-main .story-r-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.story-main .story-r-text {
  margin-bottom: 48px;
}
.story-main .story-r-text p {
  font-size: 18px;
  line-height: 32px;
}
@media (max-width: 1200.98px) {
  .story-main .story-r-text {
    margin-bottom: 32px;
  }
}
@media (max-width: 360.98px) {
  .story-main .story-r-text {
    font-size: 16px;
    line-height: 28px;
  }
}

.story-r-bottom-title {
  font-size: 36px;
  color: var(--secondary-color);
}
@media (max-width: 1200.98px) {
  .story-r-bottom-title {
    font-size: 28px;
  }
}
@media (max-width: 768.98px) {
  .story-r-bottom-title {
    display: none;
  }
}

.story-bottom-arrow {
  width: 36px;
  height: 36px;
  padding: 36px 90px 24px 0px;
  opacity: 0.3;
  margin: 56px auto 0px;
  animation: scrolldown 1s ease-in-out infinite alternate;
}
@media (max-width: 1732.98px) {
  .story-bottom-arrow {
    padding: 0px 90px 24px 0px;
    margin: 24px auto 0px;
  }
}
@media (max-width: 1200.98px) {
  .story-bottom-arrow {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 900.98px) {
  .story-bottom-arrow {
    padding: 0px 36px 24px 0px;
  }
}
@media (max-width: 580.98px) {
  .story-bottom-arrow {
    padding: 0px 0px 24px;
  }
}
.story-bottom-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.experience-container {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 710.98px) {
  .experience-container {
    margin: 0 auto -100px;
  }
}
@media (max-width: 500.98px) {
  .experience-container {
    margin: 0 auto -440px;
  }
}
@media (max-width: 440.98px) {
  .experience-container {
    margin: 0 auto -520px;
  }
}
@media (max-width: 380.98px) {
  .experience-container {
    margin: 0 auto -580px;
    overflow-x: hidden;
  }
}
@media (max-width: 360.98px) {
  .experience-container {
    margin: 0 auto -660px;
  }
}

.experience-content {
  display: flex;
  justify-content: center;
  padding: 0px 0px 48px;
}
@media (max-width: 710.98px) {
  .experience-content {
    flex-direction: column;
    padding: 24px 0px 0px;
  }
}
@media (max-width: 440.98px) {
  .experience-content {
    padding: 0px;
  }
}
@media (max-width: 380.98px) {
  .experience-content {
    padding: 24px 0px 0px;
  }
}
.experience-content .experience-left-main {
  position: relative;
  z-index: 8;
  width: 400px;
  height: 789px;
}
@media (max-width: 1320.98px) {
  .experience-content .experience-left-main {
    width: 300px;
    height: 600px;
  }
}
@media (max-width: 1024.98px) {
  .experience-content .experience-left-main {
    width: 240px;
    height: 444px;
  }
}
@media (max-width: 710.98px) {
  .experience-content .experience-left-main {
    flex-wrap: wrap;
    height: auto;
    width: 80%;
    margin: 0 auto;
  }
}
.experience-content .experience-center-main {
  position: relative;
}
.experience-content .experience-center-main .experience-center-img {
  width: 482px;
  height: 870px;
}
@media (max-width: 1320.98px) {
  .experience-content .experience-center-main .experience-center-img {
    width: 382px;
    height: 600px;
  }
}
@media (max-width: 1024.98px) {
  .experience-content .experience-center-main .experience-center-img {
    width: 285px;
    height: 444px;
  }
}
@media (max-width: 710.98px) {
  .experience-content .experience-center-main .experience-center-img {
    width: 322px;
    height: 502px;
    right: 27px;
    position: absolute;
    top: -557px;
  }
}
@media (max-width: 650.98px) {
  .experience-content .experience-center-main .experience-center-img {
    right: 16px;
  }
}
@media (max-width: 622.98px) {
  .experience-content .experience-center-main .experience-center-img {
    top: -489px;
    right: 0px;
  }
}
@media (max-width: 540.98px) {
  .experience-content .experience-center-main .experience-center-img {
    width: 291px;
    height: 453px;
  }
}
@media (max-width: 500.98px) {
  .experience-content .experience-center-main .experience-center-img {
    top: -714px;
    width: 259px;
    height: 403px;
  }
}
@media (max-width: 440.98px) {
  .experience-content .experience-center-main .experience-center-img {
    top: -752px;
    width: 228px;
    height: 354px;
  }
}
@media (max-width: 380.98px) {
  .experience-content .experience-center-main .experience-center-img {
    width: 212px;
    height: 329px;
    top: -770px;
  }
}
@media (max-width: 360.98px) {
  .experience-content .experience-center-main .experience-center-img {
    width: 197px;
    height: 306px;
    right: -16px;
  }
}
@media (max-width: 320.98px) {
  .experience-content .experience-center-main .experience-center-img {
    right: -36px;
    top: -800px;
  }
}
@media (max-width: 300.98px) {
  .experience-content .experience-center-main .experience-center-img {
    width: 182px;
    height: 276px;
  }
}
.experience-content .experience-center-main .experience-center-text-box {
  position: relative;
  z-index: 9;
}
.experience-content .experience-right-main {
  width: 400px;
  position: relative;
  z-index: 8;
  height: 789px;
}
@media (max-width: 1320.98px) {
  .experience-content .experience-right-main {
    width: 300px;
    height: 600px;
  }
}
@media (max-width: 1024.98px) {
  .experience-content .experience-right-main {
    width: 240px;
    height: 444px;
  }
}
@media (max-width: 710.98px) {
  .experience-content .experience-right-main {
    height: auto;
    width: 100%;
  }
}

.experience-text1,
.experience-text2,
.experience-text3 {
  display: none;
}
@media (max-width: 710.98px) {
  .experience-text1,
  .experience-text2,
  .experience-text3 {
    display: block;
  }
}

/*共用*/
.experience-img-1 img,
.experience-img-2 img,
.experience-img-3 img,
.experience-center-img img,
.experience-right-img-1 img,
.experience-right-img-2 img,
.experience-right-img-3 img,
.exper-mob-img-1 img,
.exper-mob-img-2 img,
.exper-mob-img-3 img,
.expe-right-mob-img-1 img,
.exper-right-mob-img-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*右側圖*/
.experience-img-1 {
  width: 311px;
  height: 286px;
  position: absolute;
  top: 0;
  right: -103px;
}
@media (max-width: 1320.98px) {
  .experience-img-1 {
    width: 211px;
    height: 193px;
  }
}
@media (max-width: 1024.98px) {
  .experience-img-1 {
    width: 161px;
    height: 147px;
    top: -17px;
    right: -66px;
  }
}
.experience-img-2 {
  width: 372px;
  height: 317px;
  position: absolute;
  top: 47%;
  left: 60%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1320.98px) {
  .experience-img-2 {
    width: 255px;
    height: 236px;
    top: 41%;
    left: 69%;
  }
}
@media (max-width: 1024.98px) {
  .experience-img-2 {
    width: 235px;
    height: 218px;
    left: 59%;
  }
}
.experience-img-2 img {
  transform: rotate(5deg);
  transform-origin: center;
}

.experience-img-3 {
  width: 327px;
  height: 293px;
  position: absolute;
  bottom: 35px;
  right: -67px;
}
@media (max-width: 1320.98px) {
  .experience-img-3 {
    width: 227px;
    height: 199px;
    bottom: 87px;
    right: -69px;
  }
}
@media (max-width: 1024.98px) {
  .experience-img-3 {
    width: 185px;
    height: 162px;
    bottom: 46px;
    right: -38px;
  }
}
/*中*/
.experience-center-text-img {
  width: 283px;
  height: 132px;
  position: absolute;
  bottom: 47px;
  left: 18px;
}
@media (max-width: 1320.98px) {
  .experience-center-text-img {
    width: 200px;
    height: 77px;
  }
}
@media (max-width: 1024.98px) {
  .experience-center-text-img {
    width: 150px;
    height: 58px;
    bottom: 12px;
  }
}
@media (max-width: 710.98px) {
  .experience-center-text-img {
    left: 237px;
    bottom: 25px;
    width: 280px;
    height: 109px;
  }
}
@media (max-width: 650.98px) {
  .experience-center-text-img {
    left: 211px;
    bottom: 51px;
  }
}
@media (max-width: 622.98px) {
  .experience-center-text-img {
    left: 86px;
    bottom: 23px;
  }
}
@media (max-width: 580.98px) {
  .experience-center-text-img {
    left: 36px;
    bottom: 42px;
  }
}
@media (max-width: 500.98px) {
  .experience-center-text-img {
    width: 243px;
    height: 102px;
    left: 14px;
    bottom: 453px;
    transform: rotate(10deg);
  }
}
@media (max-width: 460.98px) {
  .experience-center-text-img {
    width: 224px;
    height: 86px;
    left: 14px;
    bottom: 461px;
  }
}
@media (max-width: 440.98px) {
  .experience-center-text-img {
    bottom: 500px;
    width: 211px;
    height: 79px;
  }
}
@media (max-width: 380.98px) {
  .experience-center-text-img {
    bottom: 527px;
    width: 187px;
    height: 71px;
  }
}
@media (max-width: 360.98px) {
  .experience-center-text-img {
    width: 161px;
    height: 62px;
    bottom: 579px;
  }
}
@media (max-width: 320.98px) {
  .experience-center-text-img {
    bottom: 612px;
  }
}
@media (max-width: 280.98px) {
  .experience-center-text-img {
    left: 2px;
  }
}

/*右側*/
.experience-right-img-1 {
  width: 399px;
  height: 504px;
  position: absolute;
  z-index: 5;
  left: -126px;
  top: -40px;
}
@media (max-width: 1320.98px) {
  .experience-right-img-1 {
    width: 299px;
    height: 264px;
  }
}
@media (max-width: 1024.98px) {
  .experience-right-img-1 {
    width: 240px;
    height: 214px;
    left: -72px;
    top: -51px;
  }
}
.experience-right-img-2 {
  width: 356px;
  height: 253px;
  position: absolute;
  top: 56%;
  left: 47%;
  transform: translate(-50%, -50%);
  z-index: 6;
}
@media (max-width: 1320.98px) {
  .experience-right-img-2 {
    width: 275px;
    height: 210px;
    top: 45%;
    left: 35%;
  }
}
@media (max-width: 1024.98px) {
  .experience-right-img-2 {
    width: 225px;
    height: 172px;
    top: 49%;
    left: 42%;
  }
}
.experience-right-img-3 {
  width: 355px;
  height: 234px;
  position: absolute;
  z-index: 7;
  bottom: 0px;
  left: -1%;
}
@media (max-width: 1320.98px) {
  .experience-right-img-3 {
    width: 264px;
    height: 181px;
    bottom: 53px;
    left: -3%;
  }
}
@media (max-width: 1024.98px) {
  .experience-right-img-3 {
    width: 214px;
    height: 146px;
    bottom: 0px;
  }
}
/*換圖設定*/
@media (max-width: 710.98px) {
  .experience-img-1,
  .experience-img-2,
  .experience-img-3,
  .experience-right-img-1,
  .experience-right-img-2,
  .experience-right-img-3 {
    display: none;
  }
}

.experience-mob-img-1,
.experience-mob-img-2,
.experience-mob-img-3,
.expe-right-mob-img-1,
.expe-right-mob-img-1,
.expe-right-mob-img-2,
.experience-right-mob-1,
.expe-right-mob-img-2 {
  display: none;
}
@media (max-width: 710.98px) {
  .experience-mob-img-1,
  .experience-mob-img-2,
  .experience-mob-img-3,
  .expe-right-mob-img-1,
  .expe-right-mob-img-1,
  .expe-right-mob-img-2,
  .experience-right-mob-1,
  .expe-right-mob-img-2 {
    display: block;
  }
}

/*手機板*/
/*年紀還沒到幹嘛叫我阿伯或阿公！*/
.experience-mob-img-1 {
  position: relative;
  height: 281px;
}
@media (max-width: 622.98px) {
  .experience-mob-img-1 {
    height: 243px;
  }
}
.experience-mob-img-1 .exper-text1,
.experience-mob-img-1 .exper-mob-img-1 {
  position: absolute;
}
.experience-mob-img-1 .exper-mob-img-1 {
  right: 0px;
  top: 0px;
  width: 300px;
  height: 281px;
}
@media (max-width: 650.98px) {
  .experience-mob-img-1 .exper-mob-img-1 {
    right: -35px;
  }
}
@media (max-width: 622.98px) {
  .experience-mob-img-1 .exper-mob-img-1 {
    width: 259px;
    height: 243px;
  }
}
@media (max-width: 500.98px) {
  .experience-mob-img-1 .exper-mob-img-1 {
    width: 242px;
    height: 227px;
  }
}
@media (max-width: 440.98px) {
  .experience-mob-img-1 .exper-mob-img-1 {
    width: 200px;
    height: 188px;
  }
}
@media (max-width: 380.98px) {
  .experience-mob-img-1 .exper-mob-img-1 {
    top: -20px;
  }
}
@media (max-width: 360.98px) {
  .experience-mob-img-1 .exper-mob-img-1 {
    width: 180px;
    height: 169px;
  }
}
@media (max-width: 320.98px) {
  .experience-mob-img-1 .exper-mob-img-1 {
    width: 160px;
    height: 152px;
    right: -20px;
  }
}
.experience-mob-img-1 .exper-text1 {
  top: 25px;
  left: 32%;
  z-index: 2;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 2px;
  font-family: "Noto Sans TC", sans-serif;
  color: var(--third-color);
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
}
@media (max-width: 580.98px) {
  .experience-mob-img-1 .exper-text1 {
    left: 24%;
  }
}
@media (max-width: 540.98px) {
  .experience-mob-img-1 .exper-text1 {
    left: 20%;
  }
}
@media (max-width: 500.98px) {
  .experience-mob-img-1 .exper-text1 {
    left: 15%;
  }
}
@media (max-width: 440.98px) {
  .experience-mob-img-1 .exper-text1 {
    left: 13%;
    top: 5px;
  }
}
@media (max-width: 380.98px) {
  .experience-mob-img-1 .exper-text1 {
    left: 4%;
    top: 5px;
    font-size: 16px;
    line-height: 21px;
  }
}
@media (max-width: 360.98px) {
  .experience-mob-img-1 .exper-text1 {
    top: -12px;
  }
}
@media (max-width: 320.98px) {
  .experience-mob-img-1 .exper-text1 {
    left: -2%;
    font-size: 15px;
    line-height: 18px;
  }
}

/*爆汗出油好痛苦帽子無法拿下來*/
.experience-mob-img-2 {
  position: relative;
  height: 314px;
}
@media (max-width: 622.98px) {
  .experience-mob-img-2 {
    height: 283px;
  }
}
.experience-mob-img-2 .exper-mob-img-2,
.experience-mob-img-2 .experience-text2 {
  position: absolute;
}
.experience-mob-img-2 .exper-mob-img-2 {
  width: 320px;
  height: 314px;
  left: 3%;
  top: -127px;
}
@media (max-width: 650.98px) {
  .experience-mob-img-2 .exper-mob-img-2 {
    left: -2%;
    top: -148px;
  }
}
@media (max-width: 622.98px) {
  .experience-mob-img-2 .exper-mob-img-2 {
    width: 288px;
    height: 283px;
    top: -176px;
  }
}
@media (max-width: 580.98px) {
  .experience-mob-img-2 .exper-mob-img-2 {
    left: -6%;
  }
}
@media (max-width: 540.98px) {
  .experience-mob-img-2 .exper-mob-img-2 {
    left: -8%;
    width: 263px;
    height: 258px;
    top: -155px;
  }
}
@media (max-width: 500.98px) {
  .experience-mob-img-2 .exper-mob-img-2 {
    top: -162px;
    width: 254px;
    height: 250px;
  }
}
@media (max-width: 440.98px) {
  .experience-mob-img-2 .exper-mob-img-2 {
    width: 224px;
    height: 221px;
    top: -165px;
  }
}
@media (max-width: 380.98px) {
  .experience-mob-img-2 .exper-mob-img-2 {
    width: 210px;
    height: 207px;
    top: -186px;
  }
}
@media (max-width: 360.98px) {
  .experience-mob-img-2 .exper-mob-img-2 {
    width: 190px;
    height: 186px;
  }
}
@media (max-width: 320.98px) {
  .experience-mob-img-2 .exper-mob-img-2 {
    width: 175px;
    height: 172px;
  }
}
.experience-mob-img-2 .experience-text2 {
  z-index: 2;
  bottom: 110px;
  left: 42px;
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 24px;
  font-family: "Noto Sans TC", sans-serif;
  color: var(--third-color);
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
}
@media (max-width: 650.98px) {
  .experience-mob-img-2 .experience-text2 {
    bottom: 155px;
    left: 0px;
  }
}
@media (max-width: 440.98px) {
  .experience-mob-img-2 .experience-text2 {
    bottom: 186px;
  }
}
@media (max-width: 380.98px) {
  .experience-mob-img-2 .experience-text2 {
    bottom: 235px;
    font-size: 16px;
    line-height: 21px;
  }
}
@media (max-width: 360.98px) {
  .experience-mob-img-2 .experience-text2 {
    bottom: 256px;
    left: 10px;
  }
}
@media (max-width: 320.98px) {
  .experience-mob-img-2 .experience-text2 {
    bottom: 271px;
    left: 6px;
    font-size: 15px;
    line-height: 18px;
  }
}

/*外在形象阻礙事業發展這也太不公平*/
.experience-mob-img-3 {
  position: relative;
  height: 307px;
}
@media (max-width: 622.98px) {
  .experience-mob-img-3 {
    height: 280px;
  }
}
@media (max-width: 500.98px) {
  .experience-mob-img-3 {
    height: 420px;
  }
}
.experience-mob-img-3 .exper-mob-img-3,
.experience-mob-img-3 .experience-text3 {
  position: absolute;
}
.experience-mob-img-3 .exper-mob-img-3 {
  width: 325px;
  height: 284px;
  top: -114px;
  left: -31px;
}
@media (max-width: 710.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    width: 303px;
    height: 267px;
    top: -102px;
  }
}
@media (max-width: 650.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    top: -134px;
  }
}
@media (max-width: 622.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    width: 285px;
    height: 252px;
    top: -150px;
    left: -41px;
  }
}
@media (max-width: 580.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    width: 258px;
    height: 226px;
  }
}
@media (max-width: 540.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    width: 238px;
    height: 209px;
  }
}
@media (max-width: 500.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    width: 225px;
    height: 197px;
    left: -36px;
    top: -24px;
  }
}
@media (max-width: 440.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    width: 200px;
    height: 175px;
    left: -30px;
    top: -75px;
  }
}
@media (max-width: 380.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    width: 194px;
    height: 170px;
    top: -102px;
  }
}
@media (max-width: 360.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    width: 172px;
    height: 151px;
    top: -148px;
    left: -24px;
  }
}
@media (max-width: 320.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    top: -176px;
  }
}
@media (max-width: 300.98px) {
  .experience-mob-img-3 .exper-mob-img-3 {
    top: -189px;
  }
}
.experience-mob-img-3 .experience-text3 {
  z-index: 2;
  font-size: 18px;
  line-height: 24px;
  font-family: "Noto Sans TC", sans-serif;
  color: var(--third-color);
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
  bottom: 90px;
  left: 14px;
}
@media (max-width: 650.98px) {
  .experience-mob-img-3 .experience-text3 {
    bottom: 121px;
  }
}
@media (max-width: 622.98px) {
  .experience-mob-img-3 .experience-text3 {
    bottom: 130px;
    left: 0px;
  }
}
@media (max-width: 580.98px) {
  .experience-mob-img-3 .experience-text3 {
    bottom: 154px;
  }
}
@media (max-width: 500.98px) {
  .experience-mob-img-3 .experience-text3 {
    bottom: 198px;
    left: -15px;
  }
}
@media (max-width: 440.98px) {
  .experience-mob-img-3 .experience-text3 {
    bottom: 274px;
    left: -24px;
  }
}
@media (max-width: 380.98px) {
  .experience-mob-img-3 .experience-text3 {
    font-size: 16px;
    line-height: 21px;
    bottom: 310px;
    left: -15px;
  }
}
@media (max-width: 360.98px) {
  .experience-mob-img-3 .experience-text3 {
    bottom: 373px;
  }
}
@media (max-width: 320.98px) {
  .experience-mob-img-3 .experience-text3 {
    bottom: 408px;
    font-size: 15px;
    line-height: 18px;
    left: -20px;
  }
}
@media (max-width: 300.98px) {
  .experience-mob-img-3 .experience-text3 {
    bottom: 421px;
  }
}

/*因為頭髮沒自信不敢面對心儀對象*/
.experience-right-mob-1 {
  position: relative;
  height: 264px;
}
@media (max-width: 622.98px) {
  .experience-right-mob-1 {
    height: 249px;
  }
}
.experience-right-mob-1 .expe-right-mob-img-1,
.experience-right-mob-1 .expe-right-mob-text {
  position: absolute;
}
.experience-right-mob-1 .expe-right-mob-img-1 {
  width: 330px;
  height: 264px;
  left: 95px;
  bottom: 52px;
}
@media (max-width: 650.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    left: 67px;
    bottom: 86px;
  }
}
@media (max-width: 622.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    width: 310px;
    height: 249px;
    left: 37px;
    bottom: 17px;
  }
}
@media (max-width: 580.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    bottom: 35px;
    left: 20px;
  }
}
@media (max-width: 580.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    width: 260px;
    height: 208px;
    bottom: 132px;
  }
}
@media (max-width: 500.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    bottom: 235px;
    left: 40px;
  }
}
@media (max-width: 460.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    left: 14px;
  }
}
@media (max-width: 440.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    width: 238px;
    height: 190px;
    bottom: 325px;
  }
}
@media (max-width: 380.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    width: 213px;
    height: 170px;
    bottom: 383px;
    left: 14px;
  }
}
@media (max-width: 360.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    width: 188px;
    height: 150px;
    bottom: 453px;
  }
}
@media (max-width: 320.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    width: 161px;
    height: 129px;
  }
}
@media (max-width: 320.98px) {
  .experience-right-mob-1 .expe-right-mob-img-1 {
    bottom: 437px;
  }
}
.experience-right-mob-1 .expe-right-mob-text {
  z-index: 2;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 2px;
  font-family: "Noto Sans TC", sans-serif;
  color: var(--third-color);
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
  bottom: 27px;
  left: 155px;
}
@media (max-width: 650.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    bottom: 58px;
    left: 148px;
  }
}
@media (max-width: 622.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    bottom: -11px;
    left: 113px;
  }
}
@media (max-width: 580.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    bottom: 6px;
    left: 92px;
  }
}
@media (max-width: 540.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    left: 64px;
  }
}
@media (max-width: 500.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    left: 87px;
    bottom: 203px;
  }
}
@media (max-width: 460.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    left: 64px;
  }
}
@media (max-width: 440.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    bottom: 293px;
    left: 55px;
  }
}
@media (max-width: 380.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    bottom: 348px;
    left: 42px;
    font-size: 16px;
    line-height: 21px;
  }
}
@media (max-width: 360.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    bottom: 422px;
  }
}
@media (max-width: 300.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    left: 24px;
  }
}
@media (max-width: 280.98px) {
  .experience-right-mob-1 .expe-right-mob-text {
    bottom: 407px;
  }
}

/*髮量稀疏沒精神怎麼穿搭都不有型*/
.expe-right-mob-img-2 {
  position: relative;
  height: 300px;
}
.expe-right-mob-img-2 .exper-right-mob-img-2,
.expe-right-mob-img-2 .expe-right-mob-text {
  position: absolute;
}
.expe-right-mob-img-2 .exper-right-mob-img-2 {
  width: 300px;
  height: 300px;
  right: 22px;
  top: -170px;
}
@media (max-width: 622.98px) {
  .expe-right-mob-img-2 .exper-right-mob-img-2 {
    width: 287px;
    height: 287px;
    right: 17px;
    top: -120px;
  }
}
@media (max-width: 500.98px) {
  .expe-right-mob-img-2 .exper-right-mob-img-2 {
    width: 240px;
    height: 240px;
    top: -540px;
    right: 0px;
  }
}
@media (max-width: 440.98px) {
  .expe-right-mob-img-2 .exper-right-mob-img-2 {
    width: 200px;
    height: 200px;
    top: -590px;
  }
}
@media (max-width: 380.98px) {
  .expe-right-mob-img-2 .exper-right-mob-img-2 {
    width: 180px;
    height: 180px;
    top: -657px;
  }
}
@media (max-width: 360.98px) {
  .expe-right-mob-img-2 .exper-right-mob-img-2 {
    width: 150px;
    height: 150px;
    top: -695px;
  }
}
@media (max-width: 320.98px) {
  .expe-right-mob-img-2 .exper-right-mob-img-2 {
    top: -720px;
    right: -1px;
  }
}
@media (max-width: 300.98px) {
  .expe-right-mob-img-2 .exper-right-mob-img-2 {
    top: -711px;
    right: -5px;
  }
}
.expe-right-mob-img-2 .expe-right-mob-text {
  z-index: 2;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 2px;
  font-family: "Noto Sans TC", sans-serif;
  color: var(--third-color);
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
  bottom: 181px;
  right: 192px;
}
@media (max-width: 622.98px) {
  .expe-right-mob-img-2 .expe-right-mob-text {
    bottom: 163px;
    right: 195px;
  }
}
@media (max-width: 500.98px) {
  .expe-right-mob-img-2 .expe-right-mob-text {
    bottom: 555px;
    right: 20px;
  }
}
@media (max-width: 440.98px) {
  .expe-right-mob-img-2 .expe-right-mob-text {
    bottom: 640px;
  }
}
@media (max-width: 380.98px) {
  .expe-right-mob-img-2 .expe-right-mob-text {
    font-size: 16px;
    line-height: 21px;
    bottom: 729px;
    right: 6px;
  }
}
@media (max-width: 360.98px) {
  .expe-right-mob-img-2 .expe-right-mob-text {
    bottom: 803px;
  }
}
@media (max-width: 320.98px) {
  .expe-right-mob-img-2 .expe-right-mob-text {
    bottom: 834px;
    font-size: 15px;
    line-height: 18px;
  }
}
@media (max-width: 280.98px) {
  .expe-right-mob-img-2 .expe-right-mob-text {
    font-size: 14px;
  }
}

.retrieve-container {
  width: 100%;
  margin: 0 auto;
  background: url(../img/hp/retrieve-bg.png);
  background-position: center center;
  background-size: contain;
  background-color: #ebe8ed;
}
@media (max-width: 710.98px) {
  .retrieve-container {
    background-color: linear-gradient(to bottom, #f5f5f5, #f5f5f5, #ebe8ed, #dfd9e3);
    background-position: center center;
    background-size: contain;
  }
}

.retrieve-content {
  width: 90%;
  margin: 0 auto;
  height: 980px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0px 0px;
}
@media (max-width: 1460.98px) {
  .retrieve-content {
    height: 920px;
    padding: 0px;
  }
}
@media (max-width: 1360.98px) {
  .retrieve-content {
    height: 800px;
    padding: 30px 0px 0px;
  }
}
@media (max-width: 1240.98px) {
  .retrieve-content {
    width: 95%;
    padding: 0px 0px 36px;
  }
}
@media (max-width: 1136.98px) {
  .retrieve-content {
    height: 700px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-content {
    height: 620px;
    width: 950px;
    padding: 36px 0px 0px;
  }
}
@media (max-width: 952.98px) {
  .retrieve-content {
    width: 834px;
    height: 580px;
    padding: 0px 0px;
  }
}
@media (max-width: 952.98px) {
  .retrieve-content {
    width: 768px;
  }
}
@media (max-width: 768.98px) {
  .retrieve-content {
    width: 710px;
  }
}
@media (max-width: 710.98px) {
  .retrieve-content {
    width: 100%;
  }
}

.retrieve-left-main {
  width: 425px;
  height: 911px;
  position: relative;
}
@media (max-width: 1136.98px) {
  .retrieve-left-main {
    width: 359px;
    height: 830px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-left-main {
    height: 650px;
  }
}
@media (max-width: 952.98px) {
  .retrieve-left-main {
    height: 580px;
  }
}

.retrieve-right-main {
  width: 434px;
  height: 911px;
  position: relative;
}
@media (max-width: 1136.98px) {
  .retrieve-right-main {
    height: 830px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-right-main {
    height: 650px;
  }
}
@media (max-width: 952.98px) {
  .retrieve-right-main {
    height: 580px;
  }
}

.retrieve-left-img-1,
.retrieve-left-img-2,
.retrieve-left-img-3,
.retrieve-right-img-1,
.retrieve-right-img-2,
.retrieve-right-img-3 {
  position: absolute;
}
.retrieve-left-img-1 img,
.retrieve-left-img-2 img,
.retrieve-left-img-3 img,
.retrieve-right-img-1 img,
.retrieve-right-img-2 img,
.retrieve-right-img-3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.retrieve-left-img-1 {
  width: 325px;
  height: 273px;
  left: 122px;
  top: 23px;
  z-index: 2;
}
@media (max-width: 1460.98px) {
  .retrieve-left-img-1 {
    top: 82px;
  }
}
@media (max-width: 1360.98px) {
  .retrieve-left-img-1 {
    width: 286px;
    height: 241px;
  }
}
@media (max-width: 1240.98px) {
  .retrieve-left-img-1 {
    top: 144px;
    width: 270px;
    height: 226px;
  }
}
@media (max-width: 1136.98px) {
  .retrieve-left-img-1 {
    left: 48px;
    top: 100px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-left-img-1 {
    width: 231px;
    height: 196px;
    left: 95px;
    top: 31px;
  }
}
@media (max-width: 952.98px) {
  .retrieve-left-img-1 {
    width: 209px;
    height: 174px;
    left: 48px;
    top: 45px;
  }
}
@media (max-width: 834.98px) {
  .retrieve-left-img-1 {
    left: 16px;
  }
}

.retrieve-left-img-2 {
  width: 322px;
  height: 290px;
  left: 108px;
  top: 278px;
  z-index: 2;
}
@media (max-width: 1460.98px) {
  .retrieve-left-img-2 {
    width: 287px;
    height: 259px;
    top: 323px;
  }
}
@media (max-width: 1360.98px) {
  .retrieve-left-img-2 {
    width: 265px;
    height: 238px;
  }
}
@media (max-width: 1360.98px) {
  .retrieve-left-img-2 {
    top: 370px;
    width: 249px;
    height: 223px;
  }
}
@media (max-width: 1136.98px) {
  .retrieve-left-img-2 {
    left: 24px;
    top: 312px;
    width: 230px;
    height: 204px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-left-img-2 {
    left: 72px;
    top: 213px;
    width: 211px;
    height: 189px;
  }
}
@media (max-width: 952.98px) {
  .retrieve-left-img-2 {
    left: 30px;
    top: 207px;
    width: 181px;
    height: 162px;
  }
}
@media (max-width: 834.98px) {
  .retrieve-left-img-2 {
    left: 0px;
  }
}

.retrieve-left-img-3 {
  width: 309px;
  height: 301px;
  left: 203px;
  bottom: 96px;
  z-index: 2;
}
@media (max-width: 1460.98px) {
  .retrieve-left-img-3 {
    width: 291px;
    height: 279px;
  }
}
@media (max-width: 1360.98px) {
  .retrieve-left-img-3 {
    width: 258px;
    height: 248px;
    bottom: 131px;
  }
}
@media (max-width: 1240.98px) {
  .retrieve-left-img-3 {
    width: 237px;
    height: 228px;
    bottom: 95px;
  }
}
@media (max-width: 1136.98px) {
  .retrieve-left-img-3 {
    width: 210px;
    height: 202px;
    bottom: 96px;
    left: 165px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-left-img-3 {
    bottom: 83px;
    left: 166px;
    width: 187px;
    height: 181px;
  }
}
@media (max-width: 952.98px) {
  .retrieve-left-img-3 {
    bottom: 52px;
    left: 132px;
    width: 169px;
    height: 163px;
  }
}
@media (max-width: 834.98px) {
  .retrieve-left-img-3 {
    left: 80px;
  }
}

.retrieve-center-main {
  width: 524px;
  height: 725px;
  position: relative;
}
@media (max-width: 1460.98px) {
  .retrieve-center-main {
    width: 486px;
    height: 665px;
    top: 62px;
  }
}
@media (max-width: 1240.98px) {
  .retrieve-center-main {
    top: 105px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-center-main {
    width: 401px;
    height: 447px;
    top: 17px;
    left: 16px;
  }
}
@media (max-width: 952.98px) {
  .retrieve-center-main {
    width: 401px;
    height: 385px;
    top: 20px;
    left: 0px;
  }
}
@media (max-width: 834.98px) {
  .retrieve-center-main {
    width: 504px;
    height: auto;
    top: 40px;
    left: 0px;
  }
}

.retrieve-right-img-1 {
  width: 673px;
  height: 333px;
  right: -64px;
  top: -12px;
  z-index: 2;
}
@media (max-width: 1460.98px) {
  .retrieve-right-img-1 {
    width: 629px;
    height: 311px;
    right: 10px;
    top: 44px;
  }
}
@media (max-width: 1360.98px) {
  .retrieve-right-img-1 {
    width: 591px;
    height: 296px;
    top: 60px;
    right: -15px;
  }
}
@media (max-width: 1240.98px) {
  .retrieve-right-img-1 {
    width: 540px;
    height: 269px;
    top: 135px;
    right: 0px;
  }
}
@media (max-width: 1136.98px) {
  .retrieve-right-img-1 {
    width: 446px;
    height: 224px;
    top: 96px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-right-img-1 {
    width: 391px;
    height: 195px;
    top: 40px;
    right: 24px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-right-img-1 {
    width: 373px;
    height: 188px;
    top: 47px;
    right: 25px;
  }
}
@media (max-width: 834.98px) {
  .retrieve-right-img-1 {
    top: 48px;
    right: 0px;
    width: 360px;
    height: 176px;
  }
}

.retrieve-right-img-2 {
  width: 343px;
  height: 261px;
  right: 60px;
  top: 350px;
  z-index: 2;
}
@media (max-width: 1460.98px) {
  .retrieve-right-img-2 {
    width: 327px;
    height: 250px;
    top: 377px;
  }
}
@media (max-width: 1360.98px) {
  .retrieve-right-img-2 {
    width: 298px;
    height: 227px;
    top: 360px;
  }
}
@media (max-width: 1240.98px) {
  .retrieve-right-img-2 {
    width: 274px;
    height: 206px;
    top: 433px;
    right: 86px;
  }
}
@media (max-width: 1136.98px) {
  .retrieve-right-img-2 {
    top: 328px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-right-img-2 {
    width: 224px;
    height: 171px;
    top: 248px;
  }
}
@media (max-width: 952.98px) {
  .retrieve-right-img-2 {
    width: 203px;
    height: 155px;
    top: 254px;
  }
}
@media (max-width: 834.98px) {
  .retrieve-right-img-2 {
    right: 24px;
  }
}

.retrieve-right-img-3 {
  width: 400px;
  height: 229px;
  right: 96px;
  bottom: 106px;
  z-index: 2;
}
@media (max-width: 1460.98px) {
  .retrieve-right-img-3 {
    bottom: 73px;
  }
}
@media (max-width: 1360.98px) {
  .retrieve-right-img-3 {
    width: 348px;
    height: 204px;
    bottom: 114px;
  }
}
@media (max-width: 1240.98px) {
  .retrieve-right-img-3 {
    width: 320px;
    height: 189px;
    bottom: 78px;
  }
}
@media (max-width: 1136.98px) {
  .retrieve-right-img-3 {
    width: 297px;
    height: 174px;
    bottom: 93px;
  }
}
@media (max-width: 1024.98px) {
  .retrieve-right-img-3 {
    width: 251px;
    height: 149px;
    bottom: 78px;
    right: 83px;
  }
}
@media (max-width: 952.98px) {
  .retrieve-right-img-3 {
    width: 220px;
    height: 130px;
    bottom: 41px;
    right: 97px;
  }
}
@media (max-width: 834.98px) {
  .retrieve-right-img-3 {
    right: 60px;
  }
}

/*共用*/
@media (max-width: 710.98px) {
  .retrieve-content {
    display: none;
  }
}

.ret-mob-main {
  display: none;
}
@media (max-width: 710.98px) {
  .ret-mob-main {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 48px;
  }
}

.ret-mob-text-main {
  display: flex;
  justify-content: center;
  padding: 96px 0px 24px;
}
.ret-mob-text-main h2,
.ret-mob-text-main p {
  writing-mode: vertical-rl; /* 垂直排版，文字方向從上到下，行從右到左 */
  text-orientation: upright; /* 直立顯示每個字（適合中文、日文） */
}

.ret-mob-text {
  font-size: 28px;
  line-height: 36px;
  color: var(--text-color-100);
  letter-spacing: 4px;
  margin-right: 24px;
}

.ret-mob-mark {
  font-size: 40px;
  color: var(--secondary-color);
  letter-spacing: 2px;
  margin-top: 48px;
}

.reduction-container {
  width: 100%;
  padding: 96px 0px 208px;
}
@media (max-width: 1440.98px) {
  .reduction-container {
    padding: 96px 0px 0px;
    overflow-x: hidden;
  }
}
@media (max-width: 900.98px) {
  .reduction-container {
    padding: 96px 0px 60px;
  }
}
@media (max-width: 834.98px) {
  .reduction-container {
    padding: 96px 0px 0px;
  }
}
@media (max-width: 450.98px) {
  .reduction-container {
    padding: 56px 0px 0px;
  }
}

.reduction-title-content {
  width: 1128px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1770.98px) {
  .reduction-title-content {
    margin-bottom: 48px;
  }
}
@media (max-width: 1204.98px) {
  .reduction-title-content {
    width: 936px;
  }
}
@media (max-width: 900.98px) {
  .reduction-title-content {
    width: 800px;
  }
}
@media (max-width: 834.98px) {
  .reduction-title-content {
    width: 90%;
  }
}
@media (max-width: 540.98px) {
  .reduction-title-content {
    width: 90%;
  }
}
.reduction-title-content p {
  text-align: center;
}

.reduction-subtitle {
  display: flex;
  font-size: 36px;
  line-height: 48px;
  color: var(--text-color-100);
  margin-bottom: 16px;
  position: relative;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.reduction-subtitle .reduction-text-en {
  font-family: "REM", sans-serif;
}
@media (max-width: 720.98px) {
  .reduction-subtitle .reduction-sort {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 515.98px) {
  .reduction-subtitle .reduction-sort {
    justify-content: space-between;
  }
}
@media (max-width: 489.98px) {
  .reduction-subtitle .reduction-sort {
    font-size: 23px;
  }
}
@media (max-width: 475.98px) {
  .reduction-subtitle .reduction-sort {
    flex-direction: column;
    font-size: 24px;
    margin-bottom: 8px;
    letter-spacing: 2px;
  }
}
.reduction-subtitle .reduction-text-mark {
  font-weight: 700;
  margin: 0px 8px;
}
@media (max-width: 720.98px) {
  .reduction-subtitle .reduction-text-mark {
    font-weight: 500;
    margin: 0px 16px;
  }
}
@media (max-width: 515.98px) {
  .reduction-subtitle .reduction-text-mark {
    margin: 0px;
  }
}
@media (max-width: 1204.98px) {
  .reduction-subtitle {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 900.98px) {
  .reduction-subtitle {
    font-size: 24px;
  }
}
@media (max-width: 720.98px) {
  .reduction-subtitle {
    flex-direction: column;
    font-size: 28px;
  }
}
@media (max-width: 600.98px) {
  .reduction-subtitle {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }
}
@media (max-width: 380.98px) {
  .reduction-subtitle {
    margin-bottom: 8px;
  }
}
.reduction-subtitle::after {
  position: absolute;
  content: "";
  background: url(../img/hp/bule-plus.svg);
  width: 32px;
  height: 32px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-32deg);
  top: -33px;
  right: 60px;
}
@media (max-width: 1204.98px) {
  .reduction-subtitle::after {
    width: 22px;
    height: 22px;
    top: -29px;
    right: 36px;
  }
}
@media (max-width: 900.98px) {
  .reduction-subtitle::after {
    right: 56px;
  }
}
@media (max-width: 834.98px) {
  .reduction-subtitle::after {
    right: 22px;
  }
}
@media (max-width: 768.98px) {
  .reduction-subtitle::after {
    font-size: 21px;
    line-height: 36px;
    margin-bottom: 8px;
  }
}
@media (max-width: 720.98px) {
  .reduction-subtitle::after {
    top: -24px;
    right: 42px;
  }
}
@media (max-width: 660.98px) {
  .reduction-subtitle::after {
    top: -36px;
  }
}
@media (max-width: 600.98px) {
  .reduction-subtitle::after {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 540.98px) {
  .reduction-subtitle::after {
    right: 4px;
    top: -26px;
  }
}
@media (max-width: 475.98px) {
  .reduction-subtitle::after {
    right: 48px;
    top: -8px;
  }
}
@media (max-width: 415.98px) {
  .reduction-subtitle::after {
    right: 30px;
    top: -18px;
  }
}
@media (max-width: 380.98px) {
  .reduction-subtitle::after {
    right: 10px;
  }
}

.reduction-title {
  font-size: 60px;
  font-weight: 500;
  line-height: 72px;
  text-align: center;
  color: var(--secondary-color);
}
@media (max-width: 1204.98px) {
  .reduction-title {
    font-size: 48px;
    line-height: 60px;
  }
}
@media (max-width: 900.98px) {
  .reduction-title {
    font-size: 42px;
  }
}
@media (max-width: 768.98px) {
  .reduction-title {
    font-size: 36px;
    line-height: 48px;
  }
}
@media (max-width: 660.98px) {
  .reduction-title {
    font-size: 30px;
  }
}
@media (max-width: 600.98px) {
  .reduction-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 550.98px) {
  .reduction-title {
    font-size: 42px;
    line-height: 60px;
  }
}
@media (max-width: 440.98px) {
  .reduction-title {
    font-size: 38px;
    line-height: 48px;
    letter-spacing: 1px;
  }
}
@media (max-width: 379.98px) {
  .reduction-title {
    font-size: 32px;
  }
}
@media (max-width: 314.98px) {
  .reduction-title {
    font-size: 28px;
  }
}
@media (max-width: 300.98px) {
  .reduction-title {
    letter-spacing: 1px;
  }
}
.reduction-title::before {
  display: none;
}
@media (max-width: 550.98px) {
  .reduction-title::before {
    position: absolute;
    display: block;
    content: "";
    padding: 0.1em 0.4em;
    background: transparent;
    background-image: linear-gradient(to top, rgba(255, 225, 0, 0.7), rgba(255, 225, 0, 0.3) 50%, rgba(255, 225, 0, 0.1));
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    bottom: 31%;
    left: 0%;
    width: 92%;
    height: 8px;
  }
}
@media (max-width: 475.98px) {
  .reduction-title::before {
    bottom: 24%;
  }
}
@media (max-width: 440.98px) {
  .reduction-title::before {
    bottom: 21%;
  }
}
.reduction-title::after {
  position: absolute;
  content: "";
  padding: 0.1em 0.4em;
  background: transparent;
  background-image: linear-gradient(to top, rgba(255, 225, 0, 0.7), rgba(255, 225, 0, 0.3) 50%, rgba(255, 225, 0, 0.1));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  bottom: 0%;
  left: 6%;
  width: 84%;
  height: 8px;
}
@media (max-width: 1204.98px) {
  .reduction-title::after {
    width: 82%;
    left: 7%;
  }
}
@media (max-width: 834.98px) {
  .reduction-title::after {
    left: 3%;
    width: 90%;
  }
}
@media (max-width: 768.98px) {
  .reduction-title::after {
    left: 6%;
    width: 84%;
  }
}
@media (max-width: 730.98px) {
  .reduction-title::after {
    left: 4%;
    width: 89%;
  }
}
@media (max-width: 710.98px) {
  .reduction-title::after {
    left: 2%;
    width: 91%;
  }
}
@media (max-width: 660.98px) {
  .reduction-title::after {
    left: 5%;
    width: 84%;
    bottom: 8%;
  }
}
@media (max-width: 600.98px) {
  .reduction-title::after {
    left: 6%;
    bottom: 2%;
  }
}
@media (max-width: 550.98px) {
  .reduction-title::after {
    left: 25%;
    bottom: 2%;
    width: 42%;
  }
}
@media (max-width: 515.98px) {
  .reduction-title::after {
    left: 21%;
    width: 50%;
    height: 8px;
  }
}
@media (max-width: 485.98px) {
  .reduction-title::after {
    left: 12%;
    width: 70%;
  }
}

.red-mark {
  display: none;
}
@media (max-width: 440.98px) {
  .red-mark {
    display: inline; /* 讓 box-decoration-break 生效 */
    padding: 0.1em 0.4em;
    background: transparent;
    line-height: 1.6;
    background-image: linear-gradient(to top, rgba(255, 225, 0, 0.5), rgba(255, 225, 0, 0.2) 50%, rgba(255, 225, 0, 0.1));
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
}
@media (max-width: 346.98px) {
  .red-mark {
    line-height: 64px;
    padding: 0px;
  }
}

.reduction-content {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (max-width: 1770.98px) {
  .reduction-content {
    width: 85%;
  }
}
@media (max-width: 1204.98px) {
  .reduction-content {
    justify-content: space-between;
  }
}
@media (max-width: 1000.98px) {
  .reduction-content {
    width: 90%;
  }
}
@media (max-width: 834.98px) {
  .reduction-content {
    flex-direction: column;
    padding-top: 48px;
  }
}

.reduction-main {
  position: relative;
  margin-bottom: 48px;
}
@media (max-width: 900.98px) {
  .reduction-main {
    margin-bottom: 24px;
  }
}
@media (max-width: 900.98px) {
  .reduction-main {
    margin-bottom: 0px;
  }
}
.reduction-main:nth-child(1), .reduction-main:nth-child(3), .reduction-main:nth-child(5), .reduction-main:nth-child(7) {
  margin-top: 64px;
}
@media (max-width: 1770.98px) {
  .reduction-main:nth-child(1), .reduction-main:nth-child(3), .reduction-main:nth-child(5), .reduction-main:nth-child(7) {
    margin-top: 48px;
  }
}
@media (max-width: 900.98px) {
  .reduction-main:nth-child(1), .reduction-main:nth-child(3), .reduction-main:nth-child(5), .reduction-main:nth-child(7) {
    margin-top: 24px;
  }
}
.reduction-main:nth-child(1), .reduction-main:nth-child(3), .reduction-main:nth-child(5), .reduction-main:nth-child(7) {
  flex: 0 0 38%;
}
@media (max-width: 1204.98px) {
  .reduction-main:nth-child(1), .reduction-main:nth-child(3), .reduction-main:nth-child(5), .reduction-main:nth-child(7) {
    flex: 0 0 40%;
  }
}
@media (max-width: 834.98px) {
  .reduction-main:nth-child(1), .reduction-main:nth-child(3), .reduction-main:nth-child(5), .reduction-main:nth-child(7) {
    width: 100%;
  }
}
.reduction-main:nth-child(2), .reduction-main:nth-child(4), .reduction-main:nth-child(6), .reduction-main:nth-child(8) {
  flex: 0 0 40%;
}
@media (max-width: 834.98px) {
  .reduction-main:nth-child(2), .reduction-main:nth-child(4), .reduction-main:nth-child(6), .reduction-main:nth-child(8) {
    width: 100%;
  }
}
@media (max-width: 834.98px) {
  .reduction-main:nth-child(1) {
    order: 2;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 834.98px) {
  .reduction-main:nth-child(2) {
    order: 1;
  }
}
@media (max-width: 834.98px) {
  .reduction-main:nth-child(3) {
    order: 4;
    margin-top: -36px;
    margin-bottom: 48px;
  }
}
@media (max-width: 834.98px) {
  .reduction-main:nth-child(4) {
    order: 3;
  }
}
@media (max-width: 834.98px) {
  .reduction-main:nth-child(5) {
    order: 6;
    margin-top: 48px;
    margin-bottom: 72px;
  }
}
@media (max-width: 834.98px) {
  .reduction-main:nth-child(6) {
    order: 5;
  }
}
@media (max-width: 834.98px) {
  .reduction-main:nth-child(7) {
    order: 8;
    margin-top: 48px;
    margin-bottom: 0px;
  }
}
@media (max-width: 834.98px) {
  .reduction-main:nth-child(8) {
    order: 7;
  }
}

.reduction-main-title {
  font-size: 48px;
  line-height: 60px;
  color: var(--secondary-color);
  margin-bottom: 24px;
}
@media (max-width: 1770.98px) {
  .reduction-main-title {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 48px;
  }
}
@media (max-width: 1204.98px) {
  .reduction-main-title {
    font-size: 36px;
  }
}
@media (max-width: 1000.98px) {
  .reduction-main-title {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
@media (max-width: 600.98px) {
  .reduction-main-title {
    font-size: 28px;
    line-height: 36px;
  }
}

.reduction-text {
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color-100);
}
@media (max-width: 1000.98px) {
  .reduction-text {
    font-size: 16px;
  }
}

.reduction-absolute {
  position: absolute;
}

/*共用*/
.reduction-img-1,
.reduction-img-2,
.reduction-img-3,
.reduction-img-4,
.reduction-talk-img-1,
.reduction-talk-img-2,
.reduction-talk-img-3,
.reduction-talk-img-4 {
  position: absolute;
}
.reduction-img-1 img,
.reduction-img-2 img,
.reduction-img-3 img,
.reduction-img-4 img,
.reduction-talk-img-1 img,
.reduction-talk-img-2 img,
.reduction-talk-img-3 img,
.reduction-talk-img-4 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.reduction-talk-img-1,
.reduction-talk-img-2,
.reduction-talk-img-3,
.reduction-talk-img-4 {
  z-index: 2;
}

.reduction-talk-img-1 {
  width: 401px;
  height: 194px;
  right: 14px;
  top: -56px;
}
@media (max-width: 1770.98px) {
  .reduction-talk-img-1 {
    width: 315px;
    height: 181px;
    right: 94px;
  }
}
@media (max-width: 1620.98px) {
  .reduction-talk-img-1 {
    right: 0px;
  }
}
@media (max-width: 834.98px) {
  .reduction-talk-img-1 {
    right: 59px;
  }
}
@media (max-width: 710.98px) {
  .reduction-talk-img-1 {
    right: 26px;
  }
}
@media (max-width: 440.98px) {
  .reduction-talk-img-1 {
    width: 260px;
    height: 134px;
    right: 0px;
  }
}
@media (max-width: 400.98px) {
  .reduction-talk-img-1 {
    width: 276px;
    height: 140px;
    right: 8px;
  }
}
@media (max-width: 300.98px) {
  .reduction-talk-img-1 {
    width: 254px;
    height: 131px;
    right: 0px;
  }
}

.reduction-img-1 {
  width: 450px;
  height: 405px;
  left: -56px;
  top: 36px;
}
@media (max-width: 1770.98px) {
  .reduction-img-1 {
    width: 400px;
    height: 360px;
  }
}
@media (max-width: 1204.98px) {
  .reduction-img-1 {
    left: -96px;
  }
}
@media (max-width: 1000.98px) {
  .reduction-img-1 {
    width: 320px;
    height: 288px;
  }
}
@media (max-width: 834.98px) {
  .reduction-img-1 {
    position: relative;
    width: 70%;
    height: auto;
    left: 0px;
  }
}
@media (max-width: 440.98px) {
  .reduction-img-1 {
    width: 80%;
  }
}
@media (max-width: 400.98px) {
  .reduction-img-1 {
    width: 100%;
  }
}

.reduction-talk-img-2 {
  width: 347px;
  height: 137px;
  top: 294px;
  right: -86px;
}
@media (max-width: 1770.98px) {
  .reduction-talk-img-2 {
    width: 301px;
    height: 110px;
    top: 252px;
    right: -37px;
  }
}
@media (max-width: 1440.98px) {
  .reduction-talk-img-2 {
    width: 250px;
    height: 91px;
    right: -82px;
  }
}
@media (max-width: 1204.98px) {
  .reduction-talk-img-2 {
    right: -39px;
    top: 235px;
  }
}
@media (max-width: 1000.98px) {
  .reduction-talk-img-2 {
    top: 142px;
    width: 200px;
    height: 73px;
  }
}
@media (max-width: 900.98px) {
  .reduction-talk-img-2 {
    top: 210px;
  }
}
@media (max-width: 834.98px) {
  .reduction-talk-img-2 {
    display: none;
  }
}

.reduction-talk-mob-img-2 {
  display: none;
}
@media (max-width: 834.98px) {
  .reduction-talk-mob-img-2 {
    display: block;
    width: 351px;
    height: 128px;
    left: 100px;
    top: -82px;
    position: relative;
  }
}
@media (max-width: 540.98px) {
  .reduction-talk-mob-img-2 {
    left: 36px;
  }
}
@media (max-width: 440.98px) {
  .reduction-talk-mob-img-2 {
    width: 250px;
    height: 91px;
    left: 0px;
  }
}
@media (max-width: 440.98px) {
  .reduction-talk-mob-img-2 {
    top: -60px;
  }
}

.reduction-img-2 {
  width: 264px;
  height: 238px;
  right: 0px;
  top: 100px;
}
@media (max-width: 1770.98px) {
  .reduction-img-2 {
    width: 214px;
    height: 193px;
    top: 72px;
    right: 74px;
  }
}
@media (max-width: 1620.98px) {
  .reduction-img-2 {
    right: 24px;
  }
}
@media (max-width: 1440.98px) {
  .reduction-img-2 {
    right: -41px;
  }
}
@media (max-width: 1204.98px) {
  .reduction-img-2 {
    right: 8px;
  }
}
@media (max-width: 1000.98px) {
  .reduction-img-2 {
    width: 180px;
    height: 162px;
    right: -16px;
    top: 36px;
  }
}
@media (max-width: 900.98px) {
  .reduction-img-2 {
    top: 86px;
  }
}
@media (max-width: 834.98px) {
  .reduction-img-2 {
    position: relative;
    width: 70%;
    height: auto;
    top: 0px;
    right: -222px;
  }
}
@media (max-width: 710.98px) {
  .reduction-img-2 {
    right: -168px;
  }
}
@media (max-width: 540.98px) {
  .reduction-img-2 {
    right: -134px;
  }
}
@media (max-width: 440.98px) {
  .reduction-img-2 {
    width: 80%;
    right: -70px;
  }
}
@media (max-width: 400.98px) {
  .reduction-img-2 {
    width: 100%;
    right: 0px;
  }
}

.reduction-talk-img-3 {
  width: 333px;
  height: 165px;
  left: -76px;
  top: -56px;
}
@media (max-width: 1770.98px) {
  .reduction-talk-img-3 {
    width: 283px;
    height: 138px;
    top: -68px;
  }
}
@media (max-width: 1204.98px) {
  .reduction-talk-img-3 {
    top: -92px;
    left: -117px;
  }
}
@media (max-width: 1000.98px) {
  .reduction-talk-img-3 {
    top: -180px;
    left: -150px;
  }
}
@media (max-width: 900.98px) {
  .reduction-talk-img-3 {
    left: -108px;
    top: -75px;
    width: 221px;
    height: 107px;
  }
}
@media (max-width: 834.98px) {
  .reduction-talk-img-3 {
    display: none;
  }
}

.reduction-talk-mob-img-3 {
  display: none;
}
@media (max-width: 834.98px) {
  .reduction-talk-mob-img-3 {
    display: block;
    position: absolute;
    width: 333px;
    height: 163px;
    z-index: 2;
    right: 80px;
  }
}
@media (max-width: 710.98px) {
  .reduction-talk-mob-img-3 {
    right: 30px;
  }
}
@media (max-width: 440.98px) {
  .reduction-talk-mob-img-3 {
    width: 260px;
    height: 126px;
  }
}
@media (max-width: 320.98px) {
  .reduction-talk-mob-img-3 {
    right: 0px;
  }
}

.reduction-img-3 {
  width: 350px;
  height: 315px;
  top: 35px;
  left: 4px;
}
@media (max-width: 1770.98px) {
  .reduction-img-3 {
    width: 300px;
    height: 270px;
    top: 18px;
    left: -26px;
  }
}
@media (max-width: 1440.98px) {
  .reduction-img-3 {
    top: 6px;
  }
}
@media (max-width: 1204.98px) {
  .reduction-img-3 {
    left: -106px;
    top: 9px;
  }
}
@media (max-width: 1000.98px) {
  .reduction-img-3 {
    width: 250px;
    height: 225px;
    top: -73px;
  }
}
@media (max-width: 1000.98px) {
  .reduction-img-3 {
    top: -10px;
  }
}
@media (max-width: 834.98px) {
  .reduction-img-3 {
    position: relative;
    width: 70%;
    height: auto;
    top: 0px;
    left: 0px;
    margin-top: 80px;
  }
}
@media (max-width: 440.98px) {
  .reduction-img-3 {
    width: 80%;
  }
}
@media (max-width: 400.98px) {
  .reduction-img-3 {
    width: 100%;
  }
}

.reduction-img-4 {
  width: 380px;
  height: 342px;
  top: 68px;
  right: 0px;
}
@media (max-width: 1770.98px) {
  .reduction-img-4 {
    width: 330px;
    height: 297px;
    top: 54px;
    right: 54px;
  }
}
@media (max-width: 1620.98px) {
  .reduction-img-4 {
    right: 14px;
  }
}
@media (max-width: 1440.98px) {
  .reduction-img-4 {
    top: 0px;
  }
}
@media (max-width: 1000.98px) {
  .reduction-img-4 {
    width: 280px;
    height: 252px;
    top: -113px;
  }
}
@media (max-width: 900.98px) {
  .reduction-img-4 {
    top: 0px;
  }
}
@media (max-width: 834.98px) {
  .reduction-img-4 {
    width: 70%;
    height: auto;
    right: -212px;
    top: 0px;
    position: relative;
  }
}
@media (max-width: 834.98px) {
  .reduction-img-4 {
    right: -168px;
  }
}
@media (max-width: 540.98px) {
  .reduction-img-4 {
    right: -71px;
    width: 80%;
  }
}
@media (max-width: 400.98px) {
  .reduction-img-4 {
    right: 0px;
    width: 100%;
  }
}

.reduction-talk-img-4 {
  width: 283px;
  height: 239px;
  top: 193px;
  left: 0px;
}
@media (max-width: 1770.98px) {
  .reduction-talk-img-4 {
    width: 224px;
    height: 149px;
    top: 187px;
    left: 20px;
  }
}
@media (max-width: 1620.98px) {
  .reduction-talk-img-4 {
    left: 0px;
  }
}
@media (max-width: 1440.98px) {
  .reduction-talk-img-4 {
    left: -128px;
    top: 130px;
  }
}
@media (max-width: 1000.98px) {
  .reduction-talk-img-4 {
    top: -13px;
  }
}
@media (max-width: 1000.98px) {
  .reduction-talk-img-4 {
    top: 100px;
  }
}
@media (max-width: 834.98px) {
  .reduction-talk-img-4 {
    left: 19px;
    top: 294px;
  }
}
@media (max-width: 710.98px) {
  .reduction-talk-img-4 {
    top: 196px;
  }
}
@media (max-width: 540.98px) {
  .reduction-talk-img-4 {
    width: 200px;
    height: 133px;
    top: 148px;
    left: 0px;
  }
}
@media (max-width: 440.98px) {
  .reduction-talk-img-4 {
    width: 180px;
    height: 120px;
    top: 136px;
  }
}
@media (max-width: 400.98px) {
  .reduction-talk-img-4 {
    top: 228px;
  }
}
@media (max-width: 380.98px) {
  .reduction-talk-img-4 {
    top: 164px;
  }
}
@media (max-width: 320.98px) {
  .reduction-talk-img-4 {
    width: 150px;
    height: 99px;
    top: 140px;
  }
}

.index-vs-container {
  background: url(../img/hp/vs-gb.png);
  width: 100%;
  height: auto;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 100px;
}
@media (max-width: 840.98px) {
  .index-vs-container {
    background: url(../img/hp/vs-flat-m-gb.png);
    width: 100%;
    height: auto;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 0px;
  }
}
@media (max-width: 960.98px) {
  .index-vs-container {
    padding-bottom: 48px;
  }
}
@media (max-width: 490.98px) {
  .index-vs-container {
    padding-bottom: 100px;
  }
}

.index-vs-content {
  max-width: calc(100% - 32px);
  width: 1330px;
  margin: 0 auto;
  padding-top: 250px;
}
@media (max-width: 1470.98px) {
  .index-vs-content {
    width: 1000px;
  }
}
@media (max-width: 1080.98px) {
  .index-vs-content {
    width: 800px;
  }
}
@media (max-width: 960.98px) {
  .index-vs-content {
    padding-top: 200px;
  }
}
@media (max-width: 840.98px) {
  .index-vs-content {
    padding-top: 164px;
  }
}
@media (max-width: 790.98px) {
  .index-vs-content {
    width: 650px;
  }
}
@media (max-width: 680.98px) {
  .index-vs-content {
    padding-top: 170px;
  }
}
@media (max-width: 495.98px) {
  .index-vs-content {
    padding-top: 184px;
  }
}
@media (max-width: 480.98px) {
  .index-vs-content {
    padding-top: 140px;
  }
}
@media (max-width: 380.98px) {
  .index-vs-content {
    padding-top: 140px;
    width: 100%;
  }
}
@media (max-width: 340.98px) {
  .index-vs-content {
    padding-top: 120px;
  }
}
.index-vs-content .index-vs-header-img {
  width: 1211px;
  height: 522px;
  margin-left: 16px;
}
@media (max-width: 1470.98px) {
  .index-vs-content .index-vs-header-img {
    width: 1000px;
    height: 431px;
    margin-left: -12px;
  }
}
@media (max-width: 1080.98px) {
  .index-vs-content .index-vs-header-img {
    width: 600px;
    height: 259px;
    margin-left: 74px;
  }
}
@media (max-width: 790.98px) {
  .index-vs-content .index-vs-header-img {
    margin-left: 2px;
  }
}
@media (max-width: 680.98px) {
  .index-vs-content .index-vs-header-img {
    width: 500px;
    height: 216px;
    margin-left: 48px;
  }
}
@media (max-width: 645.98px) {
  .index-vs-content .index-vs-header-img {
    margin-left: 39px;
  }
}
@media (max-width: 610.98px) {
  .index-vs-content .index-vs-header-img {
    margin-left: 17px;
  }
}
@media (max-width: 590.98px) {
  .index-vs-content .index-vs-header-img {
    margin-left: 9px;
  }
}
@media (max-width: 540.98px) {
  .index-vs-content .index-vs-header-img {
    width: 400px;
    height: 172px;
    margin-left: 39px;
  }
}
@media (max-width: 495.98px) {
  .index-vs-content .index-vs-header-img {
    margin-left: 18px;
  }
}
@media (max-width: 470.98px) {
  .index-vs-content .index-vs-header-img {
    margin-left: 7px;
  }
}
@media (max-width: 450.98px) {
  .index-vs-content .index-vs-header-img {
    width: 368px;
    height: 159px;
  }
}
@media (max-width: 450.98px) {
  .index-vs-content .index-vs-header-img {
    margin-left: 0px;
    width: 350px;
    height: 149px;
  }
}
@media (max-width: 380.98px) {
  .index-vs-content .index-vs-header-img {
    width: 320px;
    height: 128px;
    margin-left: 6px;
  }
}
@media (max-width: 360.98px) {
  .index-vs-content .index-vs-header-img {
    width: 312px;
    height: 132px;
    margin-left: 0px;
  }
}
@media (max-width: 340.98px) {
  .index-vs-content .index-vs-header-img {
    width: 270px;
    height: 121px;
    margin-left: 11px;
  }
}
@media (max-width: 330.98px) {
  .index-vs-content .index-vs-header-img {
    margin-left: 6px;
  }
}
@media (max-width: 310.98px) {
  .index-vs-content .index-vs-header-img {
    margin-left: 0px;
    width: 265px;
    height: 120px;
  }
}
.index-vs-content .index-vs-header-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.index-vs-header-title {
  background-image: url(../img/hp/vs-icon02.png);
  width: 542px;
  height: 138px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(2deg);
  position: relative;
  z-index: 3;
}
@media (max-width: 1470.98px) {
  .index-vs-header-title {
    width: 400px;
    height: 102px;
  }
}
@media (max-width: 1080.98px) {
  .index-vs-header-title {
    top: 44px;
    transform: rotate(0deg);
  }
}
@media (max-width: 840.98px) {
  .index-vs-header-title {
    margin-top: 20px;
    top: 0px;
  }
}
@media (max-width: 790.98px) {
  .index-vs-header-title {
    width: 374px;
    height: 95px;
  }
}
@media (max-width: 680.98px) {
  .index-vs-header-title {
    margin-top: 42px;
  }
}
@media (max-width: 540.98px) {
  .index-vs-header-title {
    width: 300px;
    height: 77px;
  }
}
@media (max-width: 450.98px) {
  .index-vs-header-title {
    width: 263px;
    height: 72px;
  }
}
@media (max-width: 380.98px) {
  .index-vs-header-title {
    width: 238px;
    height: 60px;
  }
}
.index-vs-header-title p {
  color: var(--remark-color);
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 16px;
  margin-right: 26px;
  margin-bottom: 8px;
  transform: rotate(2deg);
}
@media (max-width: 1470.98px) {
  .index-vs-header-title p {
    font-size: 48px;
  }
}
@media (max-width: 840.98px) {
  .index-vs-header-title p {
    font-size: 36px;
    letter-spacing: 4px;
  }
}
@media (max-width: 680.98px) {
  .index-vs-header-title p {
    margin-right: 14px;
  }
}
@media (max-width: 540.98px) {
  .index-vs-header-title p {
    font-size: 24px;
  }
}
@media (max-width: 380.98px) {
  .index-vs-header-title p {
    font-size: 21px;
    margin-bottom: 0px;
    margin-right: 7px;
  }
}
.index-vs-header-title::after {
  position: absolute;
  content: "";
  right: -149px;
  top: -47px;
  background: url(../img/hp/vs-icon01.svg);
  width: 259px;
  height: 212px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1470.98px) {
  .index-vs-header-title::after {
    width: 200px;
    height: 163px;
  }
}
@media (max-width: 840.98px) {
  .index-vs-header-title::after {
    background: url(../img/hp/vs-mob-icon02.svg);
    width: 150px;
    height: 152px;
    background-size: contain;
    background-repeat: no-repeat;
    right: -27px;
    top: -30px;
  }
}
@media (max-width: 680.98px) {
  .index-vs-header-title::after {
    right: -48px;
    top: -40px;
  }
}
@media (max-width: 540.98px) {
  .index-vs-header-title::after {
    width: 125px;
    height: 126px;
  }
}
@media (max-width: 450.98px) {
  .index-vs-header-title::after {
    width: 100px;
    height: 101px;
    top: -24px;
  }
}
@media (max-width: 380.98px) {
  .index-vs-header-title::after {
    width: 90px;
    height: 91px;
  }
}
@media (max-width: 340.98px) {
  .index-vs-header-title::after {
    right: -21px;
  }
}
@media (max-width: 840.98px) {
  .index-vs-header-title::before {
    position: absolute;
    content: "";
    background: url(../img/hp/vs-mob-icon01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 62px;
    left: -28px;
    top: -12px;
  }
}
@media (max-width: 540.98px) {
  .index-vs-header-title::before {
    left: -40px;
    top: -23px;
  }
}
@media (max-width: 340.98px) {
  .index-vs-header-title::before {
    width: 104px;
    height: 53px;
    left: -22px;
    top: -33px;
  }
}

.vs-container {
  display: flex;
  margin-top: -40px;
  position: relative;
  /* 左側方塊：下方由右高往左矮 */
  /* 右側方塊：下方由右矮往左高 */
}
@media (max-width: 680.98px) {
  .vs-container {
    margin-top: -42px;
  }
}
.vs-container .vs-square {
  width: 50%;
  height: 1150px;
}
@media (max-width: 1470.98px) {
  .vs-container .vs-square {
    height: 1000px;
  }
}
@media (max-width: 1080.98px) {
  .vs-container .vs-square {
    height: 936px;
  }
}
@media (max-width: 840.98px) {
  .vs-container .vs-square {
    height: 890px;
  }
}
@media (max-width: 510.98px) {
  .vs-container .vs-square {
    height: 772px;
  }
}
.vs-container .vs-square-center {
  position: absolute;
  width: 1174px;
  margin: 0 auto;
  left: 50%; /* 左邊距父容器 50% */
  top: 100px;
  transform: translateX(-50%); /* 向左移自身寬度的一半 */
  z-index: 5;
}
@media (max-width: 1470.98px) {
  .vs-container .vs-square-center {
    width: 900px;
  }
}
@media (max-width: 1080.98px) {
  .vs-container .vs-square-center {
    width: 725px;
  }
}
@media (max-width: 840.98px) {
  .vs-container .vs-square-center {
    top: 80px;
  }
}
@media (max-width: 790.98px) {
  .vs-container .vs-square-center {
    width: 575px;
  }
}
@media (max-width: 645.98px) {
  .vs-container .vs-square-center {
    width: 90%;
  }
}
@media (max-width: 590.98px) {
  .vs-container .vs-square-center {
    top: 72px;
  }
}
@media (max-width: 540.98px) {
  .vs-container .vs-square-center {
    top: 56px;
  }
}
@media (max-width: 490.98px) {
  .vs-container .vs-square-center {
    position: relative;
    left: 0px;
    transform: translateX(0%); /* 向左移自身寬度的一半 */
  }
}
@media (max-width: 490.98px) {
  .vs-container .vs-square-center {
    width: 100%;
  }
}
.vs-container .vs-left {
  background-color: rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0%, 100% 0, 111% 100%, 0 88%);
}
@media (max-width: 1470.98px) {
  .vs-container .vs-left {
    clip-path: polygon(0 0%, 100% 0, 147% 100%, 0 88%);
  }
}
@media (max-width: 490.98px) {
  .vs-container .vs-left {
    display: none;
  }
}
.vs-container .vs-right {
  background: var(--white-color);
  clip-path: polygon(0% 99%, 100% 89%, 100% 0%, 0% 0%);
}
@media (max-width: 1470.98px) {
  .vs-container .vs-right {
    clip-path: polygon(0% 96%, 100% 89%, 100% 0%, 0% 0%);
  }
}
@media (max-width: 490.98px) {
  .vs-container .vs-right {
    display: none;
  }
}

.vs-square-list {
  display: flex;
  position: relative;
  justify-content: space-around;
  align-items: center;
  height: 158px;
  margin-bottom: 24px;
}
@media (max-width: 1470.98px) {
  .vs-square-list {
    height: 130px;
  }
}
@media (max-width: 1080.98px) {
  .vs-square-list {
    height: 120px;
  }
}
@media (max-width: 790.98px) {
  .vs-square-list {
    line-height: 32px;
  }
}
@media (max-width: 510.98px) {
  .vs-square-list {
    margin-bottom: 0px;
  }
}
@media (max-width: 400.98px) {
  .vs-square-list {
    height: 110px;
  }
  .vs-square-list:nth-child(3) {
    height: 90px;
    margin-bottom: 8px;
  }
  .vs-square-list:nth-child(4) {
    margin-bottom: 8px;
  }
}
@media (max-width: 380.98px) {
  .vs-square-list:nth-child(4) {
    margin-bottom: 24px;
  }
}
@media (max-width: 380.98px) and (max-width: 340.98px) {
  .vs-square-list:nth-child(4) {
    height: 140px;
  }
}
.vs-square-list .square-text {
  font-size: 30px;
  line-height: 36px;
  color: var(--third-color);
  text-align: center;
  width: 500px;
}
.vs-square-list .square-text a {
  color: var(--third-color);
}
.vs-square-list .square-text a:hover {
  color: var(--third-hover-color);
}
@media (max-width: 1470.98px) {
  .vs-square-list .square-text {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 1080.98px) {
  .vs-square-list .square-text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 790.98px) {
  .vs-square-list .square-text {
    letter-spacing: 2px;
  }
}
@media (max-width: 570.98px) {
  .vs-square-list .square-text {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (max-width: 450.98px) {
  .vs-square-list .square-text {
    font-size: 15px;
  }
}
.vs-square-list .square-text span {
  position: relative;
  z-index: 3;
}
.vs-square-list .square-text span::after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  z-index: 1;
  background: linear-gradient(to top, rgba(255, 225, 0, 0.5), rgba(255, 225, 0, 0.3) 50%, rgba(255, 225, 0, 0.1));
}
@media (max-width: 790.98px) {
  .vs-square-list .square-text span::after {
    opacity: 0;
  }
}
.vs-square-list .domo-text {
  padding: 24px 0px;
  border-radius: 16px;
  background-color: var(--white-color);
  margin-right: 36px;
  box-shadow: -4px 4px 3px rgba(51, 51, 102, 0.5);
}
@media (max-width: 1080.98px) {
  .vs-square-list .domo-text {
    margin-right: 24px;
    padding: 24px 0px 24px 0px;
  }
}
@media (max-width: 790.98px) {
  .vs-square-list .domo-text {
    padding: 28px 0px 24px 0px;
    margin-right: 68px;
  }
}
@media (max-width: 645.98px) {
  .vs-square-list .domo-text {
    padding: 28px 8px 24px 8px;
    margin-right: 48px;
  }
}
@media (max-width: 540.98px) {
  .vs-square-list .domo-text {
    margin-right: 20px;
  }
}
@media (max-width: 510.98px) {
  .vs-square-list .domo-text {
    padding: 12px;
    line-height: 28px;
    letter-spacing: 0px;
    margin-right: 40px;
  }
}
@media (max-width: 450.98px) {
  .vs-square-list .domo-text {
    padding: 16px 8px;
    margin-right: 26px;
    line-height: 24px;
  }
}
@media (max-width: 360.98px) {
  .vs-square-list .domo-text {
    line-height: 21px;
  }
}
.vs-square-list .k2-text {
  padding: 24px 0px;
  border-radius: 16px;
  background-color: var(--grey-color);
  margin-left: 36px;
  box-shadow: 4px 4px 3px rgba(51, 51, 102, 0.5);
}
@media (max-width: 1080.98px) {
  .vs-square-list .k2-text {
    margin-left: 24px;
    padding: 24px 0px 24px 0px;
  }
}
@media (max-width: 790.98px) {
  .vs-square-list .k2-text {
    padding: 28px 0px 24px 0px;
    margin-left: 34px;
  }
}
@media (max-width: 645.98px) {
  .vs-square-list .k2-text {
    padding: 28px 8px 24px 8px;
  }
}
@media (max-width: 540.98px) {
  .vs-square-list .k2-text {
    margin-left: 40px;
  }
}
@media (max-width: 510.98px) {
  .vs-square-list .k2-text {
    padding: 12px;
    line-height: 28px;
    letter-spacing: 0px;
    margin-left: 28px;
  }
}
@media (max-width: 450.98px) {
  .vs-square-list .k2-text {
    padding: 16px 8px;
    margin-left: 26px;
    line-height: 24px;
  }
}
@media (max-width: 360.98px) {
  .vs-square-list .k2-text {
    line-height: 21px;
  }
}
.vs-square-list .square-p {
  font-size: 36px;
  color: var(--white-color);
  letter-spacing: 2px;
  text-align: center;
}
@media (max-width: 1470.98px) {
  .vs-square-list .square-p {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 1080.98px) {
  .vs-square-list .square-p {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 645.98px) {
  .vs-square-list .square-p {
    font-size: 21px;
    line-height: 24px;
  }
}
@media (max-width: 540.98px) {
  .vs-square-list .square-p {
    font-size: 18px;
  }
}
@media (max-width: 440.98px) {
  .vs-square-list .square-p {
    font-size: 16px;
    line-height: 21px;
  }
}
@media (max-width: 360.98px) {
  .vs-square-list .square-p {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
.vs-square-list .vs-square-item {
  z-index: 6;
  position: absolute;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text-color);
  left: 50%; /* 左邊距父容器 50% */
  transform: translateX(-50%); /* 向左移自身寬度的一半 */
}
@media (max-width: 1470.98px) {
  .vs-square-list .vs-square-item {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 1080.98px) {
  .vs-square-list .vs-square-item {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 645.98px) {
  .vs-square-list .vs-square-item {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 540.98px) {
  .vs-square-list .vs-square-item {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 450.98px) {
  .vs-square-list .vs-square-item {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 450.98px) {
  .vs-square-list .vs-square-item {
    width: 60px;
    height: 60px;
  }
}

.short-container {
  background: url(../img/hp/short-bg.jpg);
  width: 100%;
  height: auto;
  background-position: top left;
  background-size: contain;
  background-repeat: repeat;
}
@media (max-width: 380.98px) {
  .short-container {
    padding: 24px 0px;
  }
}

.short-content {
  width: 100%;
  position: relative;
}
.short-content .short-content-bg {
  position: absolute;
  margin-top: 300px;
  inset: 0;
  z-index: 0;
  background: url(../img/hp/short-header-bg.svg);
  background-repeat: repeat-x; /* 水平重複 */
  animation: move-bg 50s linear infinite;
  background-size: auto; /* 根據需求調整 */
}
@media (max-width: 768.98px) {
  .short-content .short-content-bg {
    margin-top: 246px;
  }
}
@media (max-width: 380.98px) {
  .short-content .short-content-bg {
    margin-top: 106px;
  }
}
.short-content .short-header {
  position: relative;
  z-index: 2;
}

.short-img {
  width: 186px;
  height: 186px;
  margin: 48px auto;
  border-radius: 50%; /* 讓外框變成圓形 */
  overflow: hidden; /* 裁切圖片溢出的部分 */
}
@media (max-width: 440.98px) {
  .short-img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 380.98px) {
  .short-img {
    margin: 48px auto 24px;
  }
}
.short-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.short-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.short-header .short-title {
  position: relative;
  font-size: 48px;
  font-weight: 700;
  color: var(--white-color);
}
@media (max-width: 768.98px) {
  .short-header .short-title {
    font-size: 36px;
  }
}
@media (max-width: 440.98px) {
  .short-header .short-title {
    font-size: 28px;
  }
}
@media (max-width: 380.98px) {
  .short-header .short-title {
    font-size: 24px;
  }
}
@media (max-width: 320.98px) {
  .short-header .short-title {
    font-size: 21px;
  }
}
.short-header .short-title::after {
  position: absolute;
  content: "";
  right: -44px;
  top: -36px;
  background: url(../img/hp/short-title-icon.svg);
  width: 60px;
  height: 72px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  /* ✅ 加入晃動動畫 */
  animation: wobble 3s ease-in-out infinite;
  animation-delay: 2s; /* 每次開始前停頓幾秒 */
}
@media (max-width: 460.98px) {
  .short-header .short-title::after {
    width: 34px;
    height: 48px;
    right: -25px;
    top: -24px;
  }
}
.short-header .short-subtitle {
  font-size: 24px;
  color: var(--white-color);
}
@media (max-width: 768.98px) {
  .short-header .short-subtitle {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
@media (max-width: 768.98px) {
  .short-header .short-subtitle {
    width: calc(100% - 32px);
    line-height: 24px;
    margin: 0 auto;
    text-align: center;
  }
}

.short-icon-box {
  display: flex;
  margin: 36px 0px;
  width: 480px;
  max-width: calc(100% - 32px);
  justify-content: space-evenly;
}
@media (max-width: 768.98px) {
  .short-icon-box {
    width: 360px;
  }
}
@media (max-width: 440.98px) {
  .short-icon-box {
    margin: 24px 0px;
  }
}
@media (max-width: 380.98px) {
  .short-icon-box {
    width: 100%;
  }
}
.short-icon-box li a {
  display: block;
  width: 50px;
  height: 50px;
}
@media (max-width: 380.98px) {
  .short-icon-box li a {
    width: 44px;
    height: 44px;
  }
}
.short-icon-box li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.short-main {
  padding: 48px 0px;
  width: 80%;
  margin: 0 auto;
}

.short-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 每行 3 個 */
  gap: 16px;
  justify-items: start; /* 靠左 */
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .short-list {
    grid-template-columns: repeat(2, 1fr); /* 每行 2 個 */
  }
}
@media (max-width: 450px) {
  .short-list {
    grid-template-columns: 1fr; /* 每行 1 個 */
    justify-items: center;
  }
}
.short-list .short-item {
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .short-list .short-item {
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .short-list .short-item {
    max-width: 100%;
  }
}
.short-list .short-item .short-box {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 4px;
}
.short-list .short-item .short-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*amateur-item:hover 目前隱藏等候文案，
amateur-overlay 834尺寸隱藏 */
.amateur-container {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}
.amateur-container::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: url(../img/hp/amateur-bg.jpg);
  background-repeat: repeat;
  background-size: contain;
  width: 412px;
  height: 450px;
}
@media (max-width: 1200.98px) {
  .amateur-container::before {
    width: 250px;
    height: 350px;
  }
}
@media (max-width: 768.98px) {
  .amateur-container::before {
    width: 209px;
    height: 257px;
  }
}
@media (max-width: 540.98px) {
  .amateur-container::before {
    height: 220px;
    width: 175px;
  }
}
@media (max-width: 400.98px) {
  .amateur-container::before {
    height: 200px;
  }
}
.amateur-container::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0px;
  background: url(../img/hp/amateur-bg-r.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 971px;
  height: 229px;
  z-index: 0;
}
@media (max-width: 1400.98px) {
  .amateur-container::after {
    width: 813px;
    height: 212px;
  }
}
@media (max-width: 1150.98px) {
  .amateur-container::after {
    width: 594px;
    height: 170px;
  }
}
@media (max-width: 1024.98px) {
  .amateur-container::after {
    width: 542px;
    height: 163px;
  }
}
@media (max-width: 840.98px) {
  .amateur-container::after {
    width: 500px;
    height: 148px;
  }
}
@media (max-width: 434.98px) {
  .amateur-container::after {
    width: 416px;
    height: 115px;
  }
}
@media (max-width: 380.98px) {
  .amateur-container::after {
    width: 342px;
    height: 99px;
  }
}
@media (max-width: 360.98px) {
  .amateur-container::after {
    display: none;
  }
}

.amateur-header {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  padding-top: 230px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1200.98px) {
  .amateur-header {
    max-width: 80%;
    padding-top: 131px;
    justify-content: center;
  }
}
@media (max-width: 1024.98px) {
  .amateur-header {
    max-width: 100%;
    justify-content: space-around;
  }
}
@media (max-width: 768.98px) {
  .amateur-header {
    flex-direction: column;
    max-width: 70%;
    padding-top: 88px;
  }
}
@media (max-width: 540.98px) {
  .amateur-header {
    max-width: 80%;
    padding-bottom: 40px;
  }
}
@media (max-width: 480.98px) {
  .amateur-header {
    max-width: 90%;
  }
}

.amateur-subtitle {
  font-size: 36px;
  font-family: "REM", sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.amateur-title {
  font-size: 54px;
  font-weight: 700;
  color: var(--third-color);
  position: relative;
}
@media (max-width: 1200.98px) {
  .amateur-title {
    font-size: 48px;
  }
}
@media (max-width: 400.98px) {
  .amateur-title {
    font-size: 36px;
    letter-spacing: 2px;
  }
}
.amateur-title::after {
  content: "";
  width: 83px;
  height: 45px;
  background: url(../img/hp/wow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -48px;
  bottom: -46px;
  transform: rotate(-12deg);
}
@media (max-width: 768.98px) {
  .amateur-title::after {
    bottom: 40px;
    left: 63%;
    right: auto;
    transform: rotate(12deg);
  }
}
@media (max-width: 480.98px) {
  .amateur-title::after {
    left: 68%;
  }
}

.amateur-text-main {
  margin-left: 218px;
}
@media (max-width: 1200.98px) {
  .amateur-text-main {
    margin-left: 18%;
  }
}
@media (max-width: 1024.98px) {
  .amateur-text-main {
    margin-left: 0px;
  }
}
.amateur-text-main .amateur-text {
  margin-top: 80px;
  font-size: 28px;
  font-weight: 300;
  line-height: 48px;
  color: var(--third-color);
}
@media (max-width: 1200.98px) {
  .amateur-text-main .amateur-text {
    font-size: 21px;
    line-height: 36px;
  }
}
@media (max-width: 768.98px) {
  .amateur-text-main .amateur-text {
    margin-top: 40px;
  }
}
@media (max-width: 400.98px) {
  .amateur-text-main .amateur-text {
    font-size: 18px;
    line-height: 32px;
  }
}
.amateur-text-main .amateur-text span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.amateur-text-main .amateur-text span::after {
  content: "";
  left: 0;
  bottom: 4px;
  height: 10px;
  width: 100%;
  position: absolute;
  background: transparent;
  z-index: 0;
  background-image: linear-gradient(to top, rgba(255, 225, 0, 0.7), rgba(255, 225, 0, 0.3) 50%, rgba(255, 225, 0, 0.1));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.amateur-main {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 647px; /* 視圖高度，確保上下位移不被完全裁掉 */
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 440px) {
  .amateur-main {
    height: 530px;
  }
}
@media (max-width: 440px) {
  .amateur-main {
    height: 530px;
  }
}
@media (max-width: 320px) {
  .amateur-main {
    height: 470px;
  }
}
.amateur-track {
  display: flex;
  align-items: flex-start;
  position: absolute;
  left: 0;
  top: 0;
}

.amateur-item {
  position: relative;
  display: inline-block;
  width: 20vw; /* 桌機寬度 */
  min-width: 320px; /* 防止手機太小 */
  aspect-ratio: 482/745; /* 固定寬高比 */
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .amateur-item {
    width: 25vw;
  }
}
@media (max-width: 768px) {
  .amateur-item {
    width: 40vw;
  }
}
@media (max-width: 440px) {
  .amateur-item {
    width: 60vw; /* 60% 手機畫面寬度 */
  }
}
@media (max-width: 320px) {
  .amateur-item {
    min-width: 280px; /* 防止手機太小 */
  }
}
@media (max-width: 280px) {
  .amateur-item {
    min-width: 260px; /* 防止手機太小 */
  }
}

/* 浮動容器：用 CSS 變數控制初始位置與動畫幅度/時間/延遲 */
.float-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translateY(var(--base, 0px));
  animation: floatVar var(--duration, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.amateur-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.amateur-item:hover img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transform: scale(1.02);
}

/*amateur- overlay */
.amateur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 48px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.35s ease;
}
@media (max-width: 400px) {
  .amateur-overlay {
    padding-bottom: 16px;
  }
}
.amateur-overlay .float-text-main {
  width: 90%;
}
.amateur-overlay .float-text-main .float-text {
  font-size: 21px;
  line-height: 28px;
  font-weight: 300;
  margin-bottom: 16px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8); /* 陰影效果 */
}
@media (max-width: 400px) {
  .amateur-overlay .float-text-main .float-text {
    font-size: 18px;
    line-height: 24px;
  }
}
.amateur-overlay .float-text-main .domo-mark {
  color: var(--primary-color);
  font-weight: 700;
}
.amateur-overlay .float-text-main .k2-mark {
  color: var(--k2-color);
  font-weight: 700;
}
.amateur-overlay .float-amateur-text {
  text-align: end;
}
.amateur-overlay .float-amateur-text .float-name {
  font-size: 18px;
  margin-bottom: 8px;
}
@media (max-width: 834px) {
  .amateur-overlay {
    opacity: 1; /*永遠顯示 */
    background: rgba(0, 0, 0, 0.65); /*可以稍微加深*/
  }
}

.amateur-item:hover .amateur-overlay {
  opacity: 1;
}

/* 修正：滑鼠移上時暫停滾動軌道 */
.amateur-main:hover .amateur-track {
  animation-play-state: paused;
}

/*素人按鈕*/
.amateur-btn-main {
  max-width: 646px;
  width: 664px;
  height: 230px;
  background: url(../img/hp/amateur-bg-1.jpg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
  margin-top: -50px;
  aspect-ratio: 400/253;
}
@media (max-width: 768px) {
  .amateur-btn-main {
    margin: 0 auto;
    background: none;
    height: 200px;
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .amateur-btn-main {
    height: 160px;
    margin-bottom: 48px;
  }
}
.amateur-btn-main .amteur-btn-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 664px;
  height: 230px;
}
@media (max-width: 768px) {
  .amateur-btn-main .amteur-btn-wrap {
    max-width: 80%;
    margin: 0px auto;
    flex-direction: column;
    justify-content: center;
    height: 200px;
  }
}
@media (max-width: 480px) {
  .amateur-btn-main .amteur-btn-wrap {
    height: 160px;
  }
}
.amateur-btn-main .amteur-btn-wrap .amteur-btn {
  font-size: 24px;
  color: var(--third-color);
  background: var(--white-color);
  padding: 16px 36px;
  border: 1px solid var(--third-color);
  border-radius: 8px;
}
.amateur-btn-main .amteur-btn-wrap .amteur-btn:hover {
  color: var(--white-color);
  background-color: var(--third-color);
}
@media (max-width: 768px) {
  .amateur-btn-main .amteur-btn-wrap .amteur-btn {
    text-align: center;
    width: 80%;
  }
  .amateur-btn-main .amteur-btn-wrap .amteur-btn:nth-child(1) {
    margin-bottom: 24px;
  }
}

.reception-container {
  width: 100%;
  background: url(../img/hp/recp-bg.jpg);
  padding-top: 236px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.reception-container::after {
  background: url(../img/hp/short-header-bg.png);
  background-size: contain;
  background-repeat: repeat-x;
  animation: move-bg 50s linear infinite;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
@media (max-width: 1610px) {
  .reception-container {
    padding-top: 124px;
    height: 650px;
  }
}
@media (max-width: 1470px) {
  .reception-container {
    padding-top: 100px;
    height: 600px;
  }
}
@media (max-width: 1400px) {
  .reception-container {
    display: flex;
    justify-content: center;
    height: 560px;
  }
}
@media (max-width: 1250px) {
  .reception-container {
    height: 500px;
  }
}
@media (max-width: 1150px) {
  .reception-container {
    height: 450px;
    padding-top: 72px;
    padding-bottom: 36px;
  }
}
@media (max-width: 1024px) {
  .reception-container {
    padding-top: 86px;
  }
}
@media (max-width: 840px) {
  .reception-container {
    height: auto;
    padding-top: 106px;
    padding-bottom: 240px;
  }
}
@media (max-width: 580px) {
  .reception-container {
    padding-top: 80px;
  }
}
@media (max-width: 434px) {
  .reception-container {
    padding-bottom: 200px;
  }
}
@media (max-width: 320px) {
  .reception-container {
    padding-bottom: 152px;
  }
}

.reception-pc {
  display: block;
}
@media (max-width: 1610px) {
  .reception-pc {
    display: none;
  }
}

.reception-pc-m {
  display: none;
}
@media (max-width: 1610px) {
  .reception-pc-m {
    display: block;
  }
}
@media (max-width: 1150px) {
  .reception-pc-m {
    display: none;
  }
}

.reception-pc-s {
  display: none;
}
@media (max-width: 1150px) {
  .reception-pc-s {
    display: block;
  }
}
@media (max-width: 520px) {
  .reception-pc-s {
    display: none;
  }
}

.reception-mob {
  display: none;
}
@media (max-width: 520px) {
  .reception-mob {
    display: block;
  }
}

.reception-main {
  margin-right: 16px;
}
@media (max-width: 1610px) {
  .reception-main {
    margin-right: 80px;
  }
}
@media (max-width: 1400px) {
  .reception-main {
    margin-right: 0px;
  }
}
@media (max-width: 840px) {
  .reception-main {
    order: 2;
    margin-top: 40px;
  }
}
@media (max-width: 580px) {
  .reception-main {
    margin-top: 60px;
  }
}

.reception-content {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .reception-content {
    width: 84%;
  }
}
@media (max-width: 840px) {
  .reception-content {
    flex-direction: column;
    align-items: center;
  }
}

.reception-left-img {
  width: 800px;
  height: auto;
}
@media (max-width: 1610px) {
  .reception-left-img {
    width: 650px;
  }
}
@media (max-width: 1470px) {
  .reception-left-img {
    width: 550px;
  }
}
@media (max-width: 1250px) {
  .reception-left-img {
    width: 500px;
  }
}
@media (max-width: 1150px) {
  .reception-left-img {
    width: 450px;
  }
}
@media (max-width: 1024px) {
  .reception-left-img {
    width: 40vw;
  }
}
@media (max-width: 950px) {
  .reception-left-img {
    width: 43vw;
  }
}
@media (max-width: 840px) {
  .reception-left-img {
    width: 80vw;
  }
}
.reception-left-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.reception-left-img {
  margin-bottom: 146px;
}
@media (max-width: 1610px) {
  .reception-left-img {
    margin-bottom: 48px;
  }
}
@media (max-width: 1150px) {
  .reception-left-img {
    margin-bottom: 24px;
  }
}
@media (max-width: 710px) {
  .reception-left-img {
    margin-bottom: 36px;
  }
}

.reception-left-btn-main {
  display: flex;
  position: relative;
}
@media (max-width: 840px) {
  .reception-left-btn-main {
    justify-content: space-between;
  }
}
.reception-left-btn-main::before {
  position: absolute;
  content: "";
  width: 135px;
  height: 135px;
  right: 144px;
  bottom: -200px;
  transform: rotate(6deg);
  background: url(../img/hp/recp-img-sign.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1610px) {
  .reception-left-btn-main::before {
    width: 110px;
    height: 110px;
    right: 88px;
    bottom: -160px;
  }
}
@media (max-width: 1470px) {
  .reception-left-btn-main::before {
    bottom: -134px;
    right: 22px;
  }
}
@media (max-width: 1400px) {
  .reception-left-btn-main::before {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1150px) {
  .reception-left-btn-main::before {
    bottom: -110px;
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 840px) {
  .reception-left-btn-main::before {
    bottom: -194px;
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 480px) {
  .reception-left-btn-main::before {
    bottom: -164px;
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 320px) {
  .reception-left-btn-main::before {
    width: 100px;
    height: 100px;
    bottom: -130px;
  }
}
.reception-left-btn-main .reception-left-btn {
  display: flex;
  background: var(--white-color);
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border-radius: 8px;
}
@media (max-width: 1400px) {
  .reception-left-btn-main .reception-left-btn {
    padding: 16px;
  }
}
@media (max-width: 1150px) {
  .reception-left-btn-main .reception-left-btn {
    padding: 8px 16px;
  }
}
@media (max-width: 840px) {
  .reception-left-btn-main .reception-left-btn {
    width: 40%;
    padding: 24px;
  }
}
@media (max-width: 710px) {
  .reception-left-btn-main .reception-left-btn {
    padding: 16px 24px;
  }
}
@media (max-width: 380px) {
  .reception-left-btn-main .reception-left-btn {
    padding: 16px;
  }
}
@media (max-width: 320px) {
  .reception-left-btn-main .reception-left-btn {
    padding: 8px;
  }
}
.reception-left-btn-main .reception-left-btn:nth-child(1) {
  margin-right: 24px;
}
@media (max-width: 360px) {
  .reception-left-btn-main .reception-left-btn:nth-child(1) {
    margin-right: 8px;
  }
}
.reception-left-btn-main .reception-left-btn:nth-child(1) .rece-icon-hover {
  display: none;
}
.reception-left-btn-main .reception-left-btn:nth-child(1) .rece-icon {
  display: block;
}
.reception-left-btn-main .reception-left-btn:nth-child(1):hover {
  background: var(--text-color);
}
.reception-left-btn-main .reception-left-btn:nth-child(1):hover div {
  color: var(--white-color);
}
.reception-left-btn-main .reception-left-btn:nth-child(1):hover .rece-icon-hover {
  display: block;
}
.reception-left-btn-main .reception-left-btn:nth-child(1):hover .rece-icon {
  display: none;
}
.reception-left-btn-main .reception-left-btn:nth-child(2) .rece-line-hover {
  display: none;
}
.reception-left-btn-main .reception-left-btn:nth-child(2) .rece-line {
  display: block;
}
.reception-left-btn-main .reception-left-btn:nth-child(2):hover {
  background: var(--text-color);
}
.reception-left-btn-main .reception-left-btn:nth-child(2):hover div {
  color: var(--white-color);
}
.reception-left-btn-main .reception-left-btn:nth-child(2):hover .rece-line-hover {
  display: block;
}
.reception-left-btn-main .reception-left-btn:nth-child(2):hover .rece-line {
  display: none;
}
.reception-left-btn-main .reception-left-btn div {
  font-size: 24px;
  color: var(--text-color);
  font-weight: bold;
  border-radius: 4px;
  text-align: center;
  margin-right: 8px;
}
@media (max-width: 1470px) {
  .reception-left-btn-main .reception-left-btn div {
    font-size: 18px;
  }
}
@media (max-width: 1150px) {
  .reception-left-btn-main .reception-left-btn div {
    font-size: 16px;
  }
}
@media (max-width: 840px) {
  .reception-left-btn-main .reception-left-btn div {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (max-width: 480px) {
  .reception-left-btn-main .reception-left-btn div {
    font-size: 18px;
    line-height: 24px;
    margin-right: 4px;
  }
}
@media (max-width: 360px) {
  .reception-left-btn-main .reception-left-btn div {
    font-size: 16px;
  }
}
.reception-left-btn-main .reception-left-btn span {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 840px) {
  .reception-left-btn-main .reception-left-btn span {
    width: 40px;
    height: 40px;
  }
}
.reception-left-btn-main .reception-left-btn span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.reception-right-main {
  position: relative;
  width: 560px;
  height: 777px;
  aspect-ratio: 560/777; /* 固定寬高比 */
}
@media (max-width: 1610px) {
  .reception-right-main {
    width: 30vw;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .reception-right-main {
    width: 35vw;
  }
}
@media (max-width: 840px) {
  .reception-right-main {
    order: 1;
    width: 70vw;
  }
}
@media (max-width: 640px) {
  .reception-right-main {
    width: 75vw;
  }
}
@media (max-width: 434px) {
  .reception-right-main {
    width: 80vw;
  }
}
.reception-right-main::after {
  margin-top: 56px;
  position: absolute;
  content: "";
  background: var(--white-color);
  opacity: 0.8;
  width: 560px;
  height: 760px;
  aspect-ratio: 560/760; /* 固定寬高比 */
  top: 50%; /* 向下偏移父層一半 */
  left: 50%; /* 向右偏移父層一半 */
  transform: translate(-48%, -48%) rotate(2deg); /* ✅ 合併在一起 */
  border: 1px solid var(--grey-color-200);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
@media (max-width: 1610px) {
  .reception-right-main::after {
    width: 30vw;
    height: auto;
    transform: translate(-49%, -45%) rotate(3deg);
  }
}
@media (max-width: 1500px) {
  .reception-right-main::after {
    transform: translate(-47%, -43%) rotate(1deg);
  }
}
@media (max-width: 1400px) {
  .reception-right-main::after {
    margin-top: 0px;
  }
}
@media (max-width: 1150px) {
  .reception-right-main::after {
    transform: translate(-47%, -31%) rotate(1deg);
  }
}
@media (max-width: 1024px) {
  .reception-right-main::after {
    width: 35vw;
    transform: translate(-47%, -29%) rotate(1deg);
  }
}
@media (max-width: 840px) {
  .reception-right-main::after {
    width: 70vw;
    transform: translate(-47%, -50%) rotate(1deg);
  }
}
@media (max-width: 710px) {
  .reception-right-main::after {
    transform: translate(-47%, -48%) rotate(1deg);
  }
}
@media (max-width: 640px) {
  .reception-right-main::after {
    width: 75vw;
  }
}
@media (max-width: 580px) {
  .reception-right-main::after {
    transform: translate(-47%, -46%) rotate(1deg);
  }
}
@media (max-width: 434px) {
  .reception-right-main::after {
    width: 80vw;
  }
}
.reception-right-main::before {
  margin-top: 56px;
  opacity: 0.6;
  position: absolute;
  content: "";
  background: var(--white-color);
  width: 560px;
  height: 760px;
  aspect-ratio: 560/760; /* 固定寬高比 */
  top: 50%; /* 向下偏移父層一半 */
  left: 50%; /* 向右偏移父層一半 */
  transform: translate(-48%, -48%) rotate(-3deg); /* ✅ 合併在一起 */
  border: 1px solid var(--grey-color-200);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
@media (max-width: 1610px) {
  .reception-right-main::before {
    width: 30vw;
    height: auto;
    transform: translate(-45%, -45%) rotate(-2deg);
  }
}
@media (max-width: 1500px) {
  .reception-right-main::before {
    transform: translate(-47%, -43%) rotate(-2deg);
  }
}
@media (max-width: 1400px) {
  .reception-right-main::before {
    margin-top: 0px;
  }
}
@media (max-width: 1150px) {
  .reception-right-main::before {
    transform: translate(-47%, -28%) rotate(-2deg);
  }
}
@media (max-width: 1024px) {
  .reception-right-main::before {
    width: 35vw;
    transform: translate(-47%, -26%) rotate(-2deg);
  }
}
@media (max-width: 840px) {
  .reception-right-main::before {
    width: 70vw;
    transform: translate(-47%, -49%) rotate(-2deg);
  }
}
@media (max-width: 710px) {
  .reception-right-main::before {
    transform: translate(-47%, -48%) rotate(-2deg);
  }
}
@media (max-width: 640px) {
  .reception-right-main::before {
    width: 75vw;
  }
}
@media (max-width: 580px) {
  .reception-right-main::before {
    transform: translate(-47%, -45%) rotate(-2deg);
  }
}
@media (max-width: 434px) {
  .reception-right-main::before {
    width: 80vw;
  }
}
.reception-right-main .reception-right {
  position: absolute;
  z-index: 4;
  top: 56px;
  width: 560px;
  height: 777px;
  aspect-ratio: 560/777; /* 固定寬高比 */
}
@media (max-width: 1610px) {
  .reception-right-main .reception-right {
    width: 30vw;
    top: 9px;
  }
}
@media (max-width: 1610px) {
  .reception-right-main .reception-right {
    top: -78px;
  }
}
@media (max-width: 1250px) {
  .reception-right-main .reception-right {
    top: -114px;
  }
}
@media (max-width: 1150px) {
  .reception-right-main .reception-right {
    top: -80px;
  }
}
@media (max-width: 1024px) {
  .reception-right-main .reception-right {
    width: 35vw;
  }
}
@media (max-width: 840px) {
  .reception-right-main .reception-right {
    width: 70vw;
    top: 0px;
  }
}
@media (max-width: 768px) {
  .reception-right-main .reception-right {
    top: -16px;
  }
}
@media (max-width: 710px) {
  .reception-right-main .reception-right {
    top: -45px;
  }
}
@media (max-width: 640px) {
  .reception-right-main .reception-right {
    top: -78px;
    width: 75vw;
  }
}
@media (max-width: 520px) {
  .reception-right-main .reception-right {
    top: -105px;
  }
}
@media (max-width: 480px) {
  .reception-right-main .reception-right {
    top: -132px;
  }
}
@media (max-width: 434px) {
  .reception-right-main .reception-right {
    width: 80vw;
    top: 0px;
  }
}
.reception-right-main .reception-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 434px) {
  .reception-right-main .reception-right img {
    height: auto;
  }
}

.index-process-container {
  background: url(../img/hp/index-process.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 100px 0px 40px;
}
@media (max-width: 1120px) {
  .index-process-container {
    padding: 50px 0px 40px;
  }
}
@media (max-width: 834px) {
  .index-process-container {
    padding: 96px 0px 0px;
    width: 100%;
    background: url(../img/hp/index-process-mob.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-position: bottom center;
  }
}
@media (max-width: 670px) {
  .index-process-container {
    padding: 72px 0px 0px;
  }
}
@media (max-width: 424px) {
  .index-process-container {
    padding: 54px 0px 0px;
  }
}

.index-process-img {
  width: 1400px;
  height: 731px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 1400/731; /* 固定寬高比 */
}
@media (max-width: 1600px) {
  .index-process-img {
    width: 1200px;
    height: 626px;
  }
}
@media (max-width: 1300px) {
  .index-process-img {
    width: 1000px;
    height: 522px;
  }
}
@media (max-width: 1120px) {
  .index-process-img {
    width: 900px;
    height: 470px;
  }
}
@media (max-width: 960px) {
  .index-process-img {
    width: 800px;
    height: 417px;
  }
}
@media (max-width: 834px) {
  .index-process-img {
    width: 700px;
    height: 365px;
  }
}
@media (max-width: 768px) {
  .index-process-img {
    width: 80%;
    height: auto;
  }
}
@media (max-width: 660px) {
  .index-process-img {
    display: none;
  }
}
.index-process-img::after {
  position: absolute;
  z-index: 2;
  content: "";
  left: 60px;
  top: 60px;
  transform: rotate(4deg);
  background: url(../img/hp/process-domo-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 220px;
  height: 247px;
}
@media (max-width: 1500px) {
  .index-process-img::after {
    width: 180px;
    height: 210px;
  }
}
@media (max-width: 1300px) {
  .index-process-img::after {
    width: 150px;
    height: 167px;
  }
}
@media (max-width: 1150px) {
  .index-process-img::after {
    width: 120px;
    height: 133px;
  }
}
@media (max-width: 960px) {
  .index-process-img::after {
    left: 44px;
  }
}
@media (max-width: 834px) {
  .index-process-img::after {
    width: 100px;
    height: 111px;
  }
}
@media (max-width: 768px) {
  .index-process-img::after {
    top: 24px;
    left: 24px;
  }
}
.index-process-img::before {
  position: absolute;
  z-index: 2;
  content: "";
  right: 110px;
  top: 118px;
  transform: rotate(-4deg);
  background: url(../img/hp/process-k2-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 233px;
  height: 160px;
}
@media (max-width: 1500px) {
  .index-process-img::before {
    width: 200px;
    height: 146px;
  }
}
@media (max-width: 1300px) {
  .index-process-img::before {
    width: 160px;
    height: 116px;
    right: 90px;
  }
}
@media (max-width: 1150px) {
  .index-process-img::before {
    width: 120px;
    height: 133px;
  }
}
@media (max-width: 960px) {
  .index-process-img::before {
    right: 70px;
  }
}
@media (max-width: 834px) {
  .index-process-img::before {
    right: 57px;
    top: 90px;
  }
}
@media (max-width: 768px) {
  .index-process-img::before {
    right: 44px;
    top: 48px;
  }
}
@media (max-width: 720px) {
  .index-process-img::before {
    right: 32px;
    top: 40px;
  }
}
.index-process-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.index-process-mob-img {
  display: none;
}
@media (max-width: 660px) {
  .index-process-mob-img {
    display: block;
    width: 90%;
    height: auto;
    margin: 0 auto;
    position: relative;
  }
}
@media (max-width: 600px) {
  .index-process-mob-img {
    width: 95%;
  }
}
@media (max-width: 380px) {
  .index-process-mob-img {
    width: 90%;
  }
}
.index-process-mob-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.index-process-mob-img::after {
  position: absolute;
  z-index: 2;
  content: "";
  transform: rotate(4deg);
  background: url(../img/hp/process-domo-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 24px;
  left: 24px;
  width: 100px;
  height: 111px;
}
@media (max-width: 626px) {
  .index-process-mob-img::after {
    width: 80px;
    height: 89px;
  }
}
@media (max-width: 480px) {
  .index-process-mob-img::after {
    width: 70px;
    height: 78px;
    left: 19px;
  }
}
@media (max-width: 424px) {
  .index-process-mob-img::after {
    left: 8px;
  }
}
@media (max-width: 390px) {
  .index-process-mob-img::after {
    width: 60px;
    height: 67px;
  }
}
@media (max-width: 340px) {
  .index-process-mob-img::after {
    width: 50px;
    height: 56px;
  }
}
@media (max-width: 290px) {
  .index-process-mob-img::after {
    left: 3px;
    top: 4px;
  }
}
.index-process-mob-img::before {
  position: absolute;
  z-index: 2;
  content: "";
  transform: rotate(-4deg);
  background: url(../img/hp/process-k2-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 32px;
  top: 40px;
  width: 120px;
  height: 133px;
}
@media (max-width: 626px) {
  .index-process-mob-img::before {
    width: 110px;
    height: 80px;
  }
}
@media (max-width: 480px) {
  .index-process-mob-img::before {
    width: 86px;
    height: 63px;
    top: 31px;
  }
}
@media (max-width: 424px) {
  .index-process-mob-img::before {
    right: 24px;
  }
}
@media (max-width: 390px) {
  .index-process-mob-img::before {
    width: 70px;
    height: 51px;
  }
}
@media (max-width: 340px) {
  .index-process-mob-img::before {
    width: 60px;
    height: 44px;
    right: 16px;
  }
}
@media (max-width: 290px) {
  .index-process-mob-img::before {
    right: 3px;
    top: 18px;
  }
}

.process-slider-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: -32px auto 24px;
  font-family: "Noto Sans TC", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 1600px) {
  .process-slider-wrapper {
    max-width: 1200px;
  }
}
@media (max-width: 1300px) {
  .process-slider-wrapper {
    max-width: 1000px;
  }
}
@media (max-width: 1150px) {
  .process-slider-wrapper {
    max-width: 900px;
    margin: -16px auto 24px;
  }
}
@media (max-width: 960px) {
  .process-slider-wrapper {
    max-width: 800px;
  }
}
@media (max-width: 834px) {
  .process-slider-wrapper {
    max-width: 700px;
  }
}
@media (max-width: 768px) {
  .process-slider-wrapper {
    max-width: 85%;
  }
}
@media (max-width: 626px) {
  .process-slider-wrapper {
    max-width: 90%;
  }
}
@media (max-width: 600px) {
  .process-slider-wrapper {
    max-width: 95%;
    margin: -12px auto 24px;
  }
}
@media (max-width: 380px) {
  .process-slider-wrapper {
    max-width: 90%;
    margin: -7px auto 24px;
  }
}

.process-slider-buttons {
  display: flex;
  width: 100%;
}
.process-slider-buttons .process-switch-btn {
  background: var(--white-color);
  color: var(--third-color);
  border: 1px solid var(--third-color);
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  width: 50%;
  transition: background 0.3s, transform 0.3s;
}
@media (max-width: 768px) {
  .process-slider-buttons .process-switch-btn {
    padding: 10px;
  }
}
@media (max-width: 660px) {
  .process-slider-buttons .process-switch-btn {
    padding: 4px;
  }
}
@media (max-width: 290px) {
  .process-slider-buttons .process-switch-btn {
    padding: 4px 0px;
  }
}
.process-slider-buttons .process-switch-btn .process-switch-title {
  font-size: 36px;
  color: var(--text-color-200);
}
@media (max-width: 1300px) {
  .process-slider-buttons .process-switch-btn .process-switch-title {
    font-size: 28px;
  }
}
@media (max-width: 660px) {
  .process-slider-buttons .process-switch-btn .process-switch-title {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .process-slider-buttons .process-switch-btn .process-switch-title {
    font-size: 32px;
  }
}
@media (max-width: 532px) {
  .process-slider-buttons .process-switch-btn .process-switch-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .process-slider-buttons .process-switch-btn .process-switch-title {
    font-size: 26px;
  }
}
@media (max-width: 424px) {
  .process-slider-buttons .process-switch-btn .process-switch-title {
    font-size: 24px;
  }
}
@media (max-width: 380px) {
  .process-slider-buttons .process-switch-btn .process-switch-title {
    font-size: 18px;
  }
}
.process-slider-buttons .process-switch-btn .process-switch-text {
  font-size: 24px;
  color: var(--text-color-200);
}
@media (max-width: 1300px) {
  .process-slider-buttons .process-switch-btn .process-switch-text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .process-slider-buttons .process-switch-btn .process-switch-text {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .process-slider-buttons .process-switch-btn .process-switch-text {
    display: none;
  }
}
.process-slider-buttons .process-switch-btn .process-switch-mob-text {
  display: none;
}
@media (max-width: 600px) {
  .process-slider-buttons .process-switch-btn .process-switch-mob-text {
    display: block;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 2px;
  }
}
@media (max-width: 424px) {
  .process-slider-buttons .process-switch-btn .process-switch-mob-text {
    font-size: 15px;
  }
}
@media (max-width: 380px) {
  .process-slider-buttons .process-switch-btn .process-switch-mob-text {
    font-size: 13px;
  }
}
@media (max-width: 290px) {
  .process-slider-buttons .process-switch-btn .process-switch-mob-text {
    letter-spacing: 0px;
  }
}
.process-slider-buttons .process-switch-btn:hover {
  background: var(--third-color);
}
.process-slider-buttons .process-switch-btn:hover .process-switch-title {
  color: var(--white-color);
}
.process-slider-buttons .process-switch-btn:hover .process-switch-text {
  color: var(--primary-color);
}
.process-slider-buttons .process-switch-btn:hover .process-switch-mob-text {
  color: var(--white-color);
}
.process-slider-buttons .process-switch-btn.process-active {
  color: var(--white-color);
  background: var(--third-color);
}
.process-slider-buttons .process-switch-btn.process-active .process-switch-title {
  color: var(--white-color);
}
.process-slider-buttons .process-switch-btn.process-active .process-switch-text {
  color: var(--primary-color);
}
.process-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.process-slider {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  width: 100%;
}
@media (max-width: 960px) {
  .process-slider {
    margin-top: 24px;
  }
}

.process-slide-main {
  width: 80%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 1600px) {
  .process-slide-main {
    width: 90%;
  }
}
@media (max-width: 960px) {
  .process-slide-main {
    display: none;
  }
}

.process-slide-s-main {
  display: none;
}
@media (max-width: 960px) {
  .process-slide-s-main {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 834px) {
  .process-slide-s-main {
    display: none;
  }
}

.process-slide-mob-main {
  display: none;
}
@media (max-width: 834px) {
  .process-slide-mob-main {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 660px) {
  .process-slide-mob-main {
    width: 90%;
  }
}

.process-slide {
  flex-shrink: 0; /* 🧩 修正：防止跑版的關鍵！ */
  width: 100%; /* 🧩 確保每個區塊固定寬度 */
  padding: 0 20px;
  text-align: center;
  font-size: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.7;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (max-width: 960px) {
  .process-slide {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .process-slide {
    padding: 0px;
  }
}
.process-slide.process-active-slide {
  opacity: 1;
  transform: scale(1);
}
.process-slide h2 {
  font-size: 42px;
  color: var(--text-color-100);
  padding: 80px 0px 0px;
  font-weight: 500;
  margin-bottom: 36px;
  display: inline-block;
}
@media (max-width: 1600px) {
  .process-slide h2 {
    padding: 60px 0px 0px;
  }
}
@media (max-width: 1150px) {
  .process-slide h2 {
    padding: 36px 0px 0px;
  }
}
@media (max-width: 1150px) {
  .process-slide h2 {
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .process-slide h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .process-slide h2 {
    padding: 16px 0px 0px;
  }
}
@media (max-width: 480px) {
  .process-slide h2 {
    font-size: 28px;
  }
}
@media (max-width: 400px) {
  .process-slide h2 {
    margin-bottom: 24px;
  }
}
@media (max-width: 380px) {
  .process-slide h2 {
    font-size: 24px;
    padding: 0px;
  }
}
@media (max-width: 340px) {
  .process-slide h2 {
    font-size: 21px;
  }
}
@media (max-width: 290px) {
  .process-slide h2 {
    font-size: 18px;
  }
}
.process-slide .process-domo-title {
  position: relative;
  z-index: 2;
}
.process-slide .process-domo-title::before {
  position: absolute;
  display: inline-block;
  content: "";
  z-index: 1;
  height: 26px;
  left: 0px;
  right: 0px;
  bottom: -6px;
  background-image: linear-gradient(to top, rgba(255, 225, 0, 0.7), rgba(255, 225, 0, 0.3), 50%, rgba(255, 225, 0, 0));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.process-slide .process-k2-title {
  position: relative;
  z-index: 2;
}
.process-slide .process-k2-title::before {
  position: absolute;
  display: inline-block;
  content: "";
  z-index: 1;
  height: 18px;
  left: 0px;
  right: 0px;
  bottom: -6px;
  background-image: linear-gradient(to top, rgba(239, 255, 9, 0.7), rgba(186, 215, 28, 0.29), 50%, rgba(255, 225, 0, 0));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.process-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-color-200);
  background: transparent;
  border: none;
  font-size: 32px;
  padding: 12px;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.process-nav-btn.process-prev {
  left: 10px;
}
@media (max-width: 626px) {
  .process-nav-btn.process-prev {
    left: 0px;
  }
}
.process-nav-btn.process-next {
  right: 10px;
}
@media (max-width: 626px) {
  .process-nav-btn.process-next {
    right: 0px;
  }
}
.process-nav-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  color: var(--white-color);
  border-radius: 50%;
}/*# sourceMappingURL=common.css.map */