@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
body {
  font-family: "Noto Sans TC", "微軟正黑體", "新細明體", "細明體", Arial, "Arial Black", sans-serif;
  text-align: justify;
}

* {
  max-height: 99999px;
}

/* header */
.navbar-nav {
  flex-grow: 1;
  justify-content: end;
}

/* root */
:root {
  --swiper-theme-color: #198754;
  --rwd-60px: 60px;
  --rwd-75px: 75px;
  --img-200: 200px;
}

@media (max-width: 1399px) {
  :root {
    --rwd-60px: 4.166vw;
    --rwd-75px: 5.2vw;
    --img-200: 75%;
  }
}
@media (max-width: 1024px) {
  :root {
    --rwd-60px: 4.166vw;
    --rwd-75px: 5.2vw;
  }
}
@media (max-width: 768px) {
  :root {
    --rwd-60px: 36px;
    --rwd-75px: 48px;
  }
}
@media (max-width: 575px) {
  :root {
    --rwd-75px: 40px;
    --rwd-60px: 32px;
  }
}
/*
@media (max-width: 480px) {
    :root{

    }
} */
@media (max-width: 320px) {
  :root {
    --rwd-75px: 11.12vw;
    --rwd-60px: 5.6vw;
  }
}
/* 通用 */
.hover-img {
  cursor: pointer;
}

a {
  text-decoration: none;
}

ul.ul-reset {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.img {
  max-width: 100%;
}

.hover-bigger:hover {
  transform: scale(1.1);
}

.hover-smaller:hover {
  transform: scale(0.975);
}

.tr-1 {
  transition: all 1s ease;
}

.tr-5 {
  transition: all 0.5s ease;
}

/* fixed */
#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #f1f2f3;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

#go-top {
  border: 0;
  background: none;
  bottom: 3vw;
  right: 30px;
  z-index: 999;
}

#go-top img {
  width: 5vw;
  height: auto;
}
@media (max-width: 1440px) {
  #go-top img {
    width: 5vw;
  }
}
@media (max-width: 991px) {
  #go-top img {
    width: 7vw;
  }
}
@media (max-width: 767px) {
  #go-top img {
    width: 12vw;
  }
}
@media (max-width: 576px) {
  #go-top img {
    width: 15vw;
  }
}

.buy-now {
  width: 7.5vw;
  position: fixed;
  z-index: 999;
  bottom: 120px;
  right: 30px;
  transition: all 0.5s ease-in-out;
  animation: buy-now 2s infinite;
}
@media (max-width: 1440px) {
  .buy-now {
    width: 9vw;
    bottom: 100px;
    right: 30px;
  }
}
@media (max-width: 991px) {
  .buy-now {
    width: 12vw;
    bottom: 100px;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .buy-now {
    width: 15vw;
    bottom: 90px;
    right: 30px;
  }
}
@media (max-width: 576px) {
  .buy-now {
    width: 21vw;
    bottom: 60px;
    right: 30px;
  }
}

@keyframes buy-now {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}
/*
@media (max-width: 320px) {

    #menu{

    }
}
*/
/* 內容區塊通用 */
.section-block {
  padding: var(--rwd-75px) 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 1440px) {
  .section-block {
    padding: var(--rwd-60px) 0;
  }
}
/* menu */
#menu {
  position: absolute;
  z-index: 99;
  width: 100%;
  margin-top: 1vw;
}
@media (max-width: 991px) {
  #menu {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  #menu.show-menu {
    position: fixed;
  }
}
@media (max-width: 575px) {
  #menu > div {
    padding-top: 2.5vw;
  }
}

.nav-link {
  font-weight: bold;
  font-size: 20px;
}

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

.nav-item a {
  color: #0b7bc2;
  font-weight: bold;
  font-size: 1.5vw;
  text-align: center;
  margin: 0 0.5vw;
  padding: 0.3vw 0.9vw;
  text-decoration: none;
  display: block;
  background-color: #fff;
  border-radius: 16px;
}
.nav-item a:hover {
  color: #fff;
  font-weight: 500;
  background-color: #0b7bc2;
}
@media (max-width: 767px) {
  .nav-item a {
    font-size: 2.25vw;
    margin: 0.75vw 0;
  }
}
@media (max-width: 575px) {
  .nav-item a {
    font-size: 4vw;
    margin: 1.5vw;
    width: 100%;
    border-radius: 0px;
  }
}

.logos {
  display: flex;
  align-items: flex-start;
}
.logos a {
  display: block;
}

.logos img {
  width: auto;
  height: 3vw;
  margin-left: 0vw;
}
@media (max-width: 991px) {
  .logos img {
    width: auto;
    height: 3.5vw;
    margin-left: 0vw;
  }
}
@media (max-width: 575px) {
  .logos img {
    height: 10vw;
    margin-left: 1vw;
  }
}

@media (max-width: 767px) {
  #menu-nav:not(.inside) > ul {
    border-radius: 36px;
    padding: 7vw 0.35vw;
  }
}

@media (max-width: 991px) {
  .nav-item:not(:last-child) {
    border-bottom: none;
  }
}

#menu-btn img {
  display: block;
  padding: 0.5vw;
  width: 5vw;
  height: auto;
}
@media (max-width: 767px) {
  #menu-btn img {
    width: 7.5vw;
  }
}
@media (max-width: 575px) {
  #menu-btn img {
    width: 11vw;
  }
}
#menu-btn div {
  background-image: url("../images/menu-icon.png");
  background-size: cover;
  width: 3.5vw;
  height: 3.5vw;
  margin-right: 1.5vw;
}
@media (max-width: 575px) {
  #menu-btn div {
    width: 8vw;
    height: 8vw;
    margin-right: 1vw;
  }
}

.show-menu #menu-btn div {
  background-image: url("../images/menu-close.png");
}

.menu-link ul {
  display: flex;
  align-items: center;
}

/* TODO: MENU RWD */
@media (max-width: 767px) {
  #menu.menu-add-bg {
    top: 0px;
  }
  .nav-item {
    width: 100%;
    text-align: center;
  }
  .nav-item {
    width: 100%;
    text-align: center;
  }
  .nav-item a {
    padding: 8px;
  }
  .menu-link:not(.inside) {
    position: fixed;
    top: 0px;
    right: 0;
    width: 27%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    background: rgba(255, 255, 255, 0.7019607843);
    transform: translateX(100%);
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .menu-link:not(.inside) {
    width: 50%;
  }
}
@media (max-width: 767px) and (max-width: 575px) {
  .menu-link:not(.inside) {
    width: 100%;
    padding-top: 12vw;
  }
}
@media (max-width: 767px) {
  .show-menu .menu-link {
    transform: translateX(0%);
  }
  .menu-link:not(.inside) ul {
    flex-direction: column;
    padding-top: 54px;
    padding-bottom: 16px;
  }
}
.sw-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

.swiper-add-arrows {
  position: relative;
  width: 60%;
  margin: auto;
}

.swiper-add-arrows .swiper-button-next, .swiper-add-arrows .swiper-button-prev {
  opacity: 0;
  z-index: -99;
}

.arr-left, .arr-right {
  position: absolute;
  opacity: 1;
  cursor: pointer;
  width: 4vw;
  height: 4vw;
  top: 40%;
  background: url(../images/arr.png) center center no-repeat;
  background-size: 100% auto;
}

.arr-left:hover, .arr-right:hover {
  opacity: 0.5;
}

.arr-left {
  left: -4vw;
}

.arr-right {
  right: -4vw;
  transform: rotate(180deg);
}

.hide-3-items .arr-left, .hide-3-items .arr-right {
  display: none;
}

.kv {
  height: 50vw;
  background-image: url("../images/kv/kv-bg.png");
  background-size: 100% auto;
  background-position: left top;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.kv::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-image: url("../images/kv/1x/kv-bg-light.png");
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  bottom: -15%;
  background-position: left bottom;
  mix-blend-mode: screen;
  background-size: 100% auto;
  animation: fade-in 3s infinite;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  50% {
    opacity: 0.75;
  }
  to {
    opacity: 0;
  }
}
.kv::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-image: url("../images/kv/1x/kv-bottom.png");
  display: block;
  width: 100%;
  height: 10.5vw;
  background-position: left bottom;
  background-size: 100% auto;
  bottom: -2px;
  left: 0;
}
@media (max-width: 575px) {
  .kv {
    height: 150vw;
    background-size: auto 100%;
    background-position: center bottom;
  }
}

.kv-title {
  width: 52vw;
  top: 4%;
}
@media (max-width: 575px) {
  .kv-title {
    width: 90vw;
    top: 12%;
  }
}

.kv-bg-l {
  position: absolute;
  left: 0%;
  top: 20%;
  width: 15.6%;
}
@media (max-width: 575px) {
  .kv-bg-l {
    top: 32%;
    width: 30.6%;
  }
}

.kv-bg-r {
  position: absolute;
  right: 0%;
  top: 20%;
  width: 15.6%;
}
@media (max-width: 575px) {
  .kv-bg-r {
    top: 32%;
    width: 30.6%;
  }
}

.kv-card-g {
  transform: translate(0%, 5%);
}

.kv-card-o {
  transform: translate(-70%, 0%);
}

.kv-card-b {
  transform: translate(70%, 0%);
}

.kv-card {
  width: 48%;
}
@media (max-width: 575px) {
  .kv-card {
    width: 60%;
  }
}

.kv-light-straight-bg {
  animation: fadeOutUp 1.5s infinite;
}
@keyframes fadeOutUp {
  from {
    opacity: 0;
    transform: translate3d(0, 0%, 0);
  }
  40% {
    opacity: 1;
    transform: translate3d(0, -15%, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }
}

.kv-light-straight-r {
  opacity: 0;
  animation: spiralUp 1s linear infinite;
  z-index: 15;
  animation-delay: 0.5s;
}
@keyframes spiralUp {
  from {
    opacity: 0;
    transform: translateY(0%) translateX(0%);
  }
  20% {
    opacity: 1;
  }
  25% {
    transform: translateY(-10%) translateX(25%);
  }
  50% {
    transform: translateY(-20%) translateX(0%);
  }
  75% {
    transform: translateY(-30%) translateX(-25%);
  }
  80% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateY(-50%) translateX(0%);
  }
}

.kv-light-straight-l {
  animation: spiralUp 1s linear infinite;
  z-index: 15;
}
@keyframes spiralUp {
  from {
    opacity: 0;
    transform: translateY(0%) translateX(0%);
  }
  20% {
    opacity: 0.8;
  }
  25% {
    transform: translateY(-10%) translateX(-25%);
  }
  50% {
    transform: translateY(-20%) translateX(0%);
  }
  75% {
    transform: translateY(-30%) translateX(25%);
  }
  80% {
    opacity: 0.8;
  }
  to {
    opacity: 0;
    transform: translateY(-50%) translateX(0%);
  }
}

.kv-card-box {
  width: 42%;
  position: absolute;
  z-index: 20;
  transition: all 0.5s linear;
  left: 29%;
}
.kv-card-box::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 15%;
  background-image: url("../images/kv/1x/kv-card-light-bottom.png");
  background-position: left center;
  background-size: 100% auto;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .kv-card-box {
    top: 32%;
    width: 60%;
  }
}

.kv-card-bottom {
  position: absolute;
  overflow: hidden;
  height: 50%;
}
.kv-card-bottom > img {
  width: 90%;
  margin-left: 5%;
  transform-origin: center center;
  transform: translateY(0%);
  animation: light-scrolling 3.5s linear infinite;
  mix-blend-mode: color-dodge;
}

@keyframes light-scrolling {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.go-cards {
  display: flex;
  justify-content: center;
}

.go-cards > li {
  width: 22vw;
  transition: all 0.25s linear;
  cursor: pointer;
}
.go-cards > li:hover {
  transform: scale(1.05);
}
.go-cards > li img {
  width: 100%;
}

/* 物件一：動畫設定 */
.go-cards > li:nth-child(1) img,
.item-1,
.run-kv-float01 {
  animation: float-path 12s infinite linear;
  animation-delay: 0s;
}

/* 物件二：動畫設定 */
.go-cards > li:nth-child(2) img,
.item-2,
.run-kv-float02 {
  animation: float-path 12s infinite ease-in-out;
  animation-delay: -4s;
  /* 錯開動畫開始時間 */
}

/* 物件三：動畫設定 */
.go-cards > li:nth-child(3) img,
.item-3,
.run-kv-float03 {
  animation: float-path 12s infinite ease-in-out;
  animation-delay: -8s;
  /* 錯開動畫開始時間 */
}

.run-kv-float01 {
  width: 10.46vw;
  right: 0%;
  top: 11vw;
}
@media (max-width: 575px) {
  .run-kv-float01 {
    width: 22vw;
    right: 57%;
    top: 60vw;
  }
}

.run-kv-float02 {
  width: 10.46vw;
  right: 31%;
  top: 3vw;
}
@media (max-width: 575px) {
  .run-kv-float02 {
    width: 22vw;
    right: 60%;
    top: 92vw;
  }
}

.run-kv-float03 {
  width: 10.46vw;
  right: 32%;
  top: 14vw;
}
@media (max-width: 575px) {
  .run-kv-float03 {
    width: 22vw;
    right: 73%;
    top: 75vw;
  }
}

@media (max-width: 575px) {
  .go-cards-outer {
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content;
  }
  .go-cards {
    animation: go-cards-outer 30s linear infinite;
  }
  .go-cards > li {
    width: 50vw;
  }
}
@keyframes go-cards-outer {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-50%);
  }
}
.run-kv-card {
  animation: float-path 12s infinite linear;
  animation-delay: -3s;
  /* 錯開動畫開始時間 */
}

@keyframes float-path {
  /* 0% 處於右側圓弧最頂點 */
  0% {
    transform: translate(1.5%, -1%) rotate(0deg);
  }
  /* 沿著上半圓弧向左移動 */
  12.5% {
    transform: translate(0.5%, 0%) rotate(-0.5deg);
  }
  /* 到達左側圓弧最左點 */
  25% {
    transform: translate(-1.5%, 1%) rotate(-1.5deg);
  }
  /* 沿著左下圓弧向右移動 */
  37.5% {
    transform: translate(-0.5%, 3%) rotate(-2.5deg);
  }
  /* 到達左側圓弧最底點 */
  50% {
    transform: translate(1.5%, 3%) rotate(0deg);
  }
  /* 沿著右下圓弧向左移動 */
  62.5% {
    transform: translate(0.5%, 4%) rotate(0.5deg);
  }
  /* 到達左側圓弧最左點 */
  75% {
    transform: translate(-1.5%, 3%) rotate(1.5deg);
  }
  /* 沿著左上圓弧向右移動 */
  87.5% {
    transform: translate(-0.5%, 1%) rotate(2.5deg);
  }
  /* 回到起點 */
  100% {
    transform: translate(1.5%, -1%) rotate(0deg);
  }
}
.kv-up-box {
  animation: fadeOutUp 2s infinite;
}
@keyframes fadeOutUp {
  from {
    opacity: 0;
    transform: translate3d(0, 0%, 0);
  }
  40% {
    opacity: 1;
    transform: translate3d(0, -15%, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }
}

.kv-up-R1 {
  width: 7.6%;
  right: 7%;
  bottom: 5%;
  opacity: 0;
}

.kv-up-R2 {
  width: 4%;
  right: 3%;
  bottom: 15%;
  opacity: 0;
  animation-delay: 0.5s;
}

.kv-up-R3 {
  width: 3.6%;
  right: 7%;
  bottom: 25%;
  opacity: 0;
  animation-delay: 1s;
}

.kv-up-L1 {
  width: 8.6%;
  left: 7%;
  bottom: 15%;
  opacity: 0;
}

.kv-up-L2 {
  width: 4%;
  left: 3%;
  bottom: 9%;
  opacity: 0;
  animation-delay: 0.5s;
}

body {
  margin: 0;
  /* overflow: hidden;  隱藏滾動條 */
}

.img-title {
  width: 56.25vw;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2vw;
}
@media (max-width: 575px) {
  .img-title {
    width: 100%;
  }
}/*# sourceMappingURL=all.css.map */