@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900");
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
}

* {
  box-sizing: border-box;
}

.pc {
  display: block !important;
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.mobile {
  display: none !important;
}
@media (max-width: 767px) {
  .mobile {
    display: block !important;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.wrapper.inner {
  background: #f3f3f3;
}
.wrapper.blur {
  filter: blur(3px);
}
.wrapper .header {
  position: fixed;
  padding: 30px;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  z-index: 20;
  box-sizing: border-box;
  transition: all 0.35s ease-in-out;
}
@media (max-width: 767px) {
  .wrapper .header {
    padding: 20px 30px;
  }
}
.wrapper .header.blur {
  padding: 15px 30px;
  transition: all 0.35s ease-in-out;
}
@media (max-width: 767px) {
  .wrapper .header.blur {
    padding: 20px 30px;
  }
}
.wrapper .header.blur::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
}
.wrapper .header.blur .logo {
  width: 100px;
}
@media (max-width: 767px) {
  .wrapper .header.blur .logo {
    width: 80px;
  }
}
.wrapper .header .logo {
  width: 120px;
  margin-right: auto;
}
@media (max-width: 767px) {
  .wrapper .header .logo {
    width: 80px;
  }
}
.wrapper .header .logo h1 {
  opacity: 0;
  font-size: 0;
  text-indent: -99999px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .wrapper .header .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    min-height: 50%;
    background: #fff;
    border-radius: 0 0 0 8vw;
    padding: 8vw 8vw 8vw 12vw;
    transition: right 0.25s ease;
    z-index: 5;
  }
}
.wrapper .header .menu.active {
  right: 0;
}
.wrapper .header .menu .close {
  display: none;
}
@media (max-width: 767px) {
  .wrapper .header .menu .close {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: end;
  }
}
.wrapper .header .menu .close p {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  font-family: "Bitter", serif;
  font-size: 4vw;
  padding-right: 40px;
  -ms-flex-pack: end;
      justify-content: end;
  margin: 0;
}
.wrapper .header .menu .close p::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 25px;
  height: 1px;
  background-color: #3d3d3d;
  transform: rotate(-45deg);
}
.wrapper .header .menu .close p::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 25px;
  height: 1px;
  background-color: #3d3d3d;
  transform: rotate(45deg);
}
.wrapper .header .menu ul {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .wrapper .header .menu ul {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 0;
  }
}
.wrapper .header .menu ul li {
  list-style-type: none;
}
@media (max-width: 767px) {
  .wrapper .header .menu ul li {
    padding: 4vw 0;
    border-bottom: 1px solid #b1d0ef;
  }
}
.wrapper .header .menu ul li:last-child {
  border-bottom: none;
}
.wrapper .header .menu ul li a {
  position: relative;
  text-decoration: none;
  display: block;
  width: 150px;
  height: 30px;
  color: #3f3f3f;
  font-family: "Bitter", serif;
  font-weight: 500;
  overflow: hidden;
}
@media (max-width: 767px) {
  .wrapper .header .menu ul li a {
    height: auto;
    color: #777777;
  }
}
@media (min-width: 767px) {
  .wrapper .header .menu ul li a:hover p:nth-child(1) {
    transform: rotateX(180deg) rotateY(0);
    opacity: 0;
  }
  .wrapper .header .menu ul li a:hover p:nth-child(2) {
    transform: none;
    opacity: 1;
  }
}
.wrapper .header .menu ul li a p {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  font-size: 18px;
  top: 0;
  left: 0;
  transform: none;
  transition: all 0.35s ease-in-out;
  text-align: center;
}
@media (max-width: 767px) {
  .wrapper .header .menu ul li a p {
    position: relative;
    text-align: left;
  }
}
.wrapper .header .menu ul li a p:nth-child(2) {
  font-size: 16px;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: rotateX(-180deg) rotateY(0);
  opacity: 0;
  color: #3e83e7;
}
@media (max-width: 767px) {
  .wrapper .header .menu ul li a p:nth-child(2) {
    text-align: left;
    transform: rotateX(0) rotateY(0);
    opacity: 1;
  }
}
.wrapper .header .menu-bg {
  height: 100%;
  left: 0;
  pointer-events: auto;
  position: fixed;
  top: 0;
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  width: 100%;
  z-index: -1;
  background: rgba(138, 134, 128, 0.4);
  opacity: 0;
  display: none;
}
.wrapper .header .menu-bg.active {
  opacity: 1;
  display: block;
}
.wrapper .header .hamburger-menu,
.wrapper .header .hamburger-menu:after,
.wrapper .header .hamburger-menu:before {
  width: 35px;
  height: 3px;
  border-radius: 5px;
}
.wrapper .header .hamburger-btn {
  position: absolute;
  padding: 36px 25px;
  cursor: pointer;
  top: 0;
  right: 0;
  z-index: 3;
}
.wrapper .header .hamburger-menu {
  display: none;
  position: relative;
  background: #696969;
  transition: all 0ms 300ms;
}
@media (max-width: 1300px) {
  .wrapper .header .hamburger-menu {
    display: block;
  }
}
.wrapper .header .hamburger-menu::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  background: #696969;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.wrapper .header .hamburger-menu::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  background: #696969;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.wrapper .kv-section {
  width: 100vw;
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  background: transparent;
  pointer-events: auto;
  overflow: hidden;
  z-index: 2;
}
.wrapper .circles-wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.wrapper .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: multiply;
  opacity: 0;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0.5);
}
@media (max-width: 767px) {
  .wrapper .circle {
    filter: blur(35px);
  }
}
.wrapper .circle-1 {
  width: 25vw;
  height: 25vw;
  background: #b4f1f6;
}
.wrapper .circle-2 {
  width: 30vw;
  height: 30vw;
  background: #a6b8ea;
}
.wrapper .circle-3 {
  width: 22vw;
  height: 22vw;
  background: #e7eff4;
}
.wrapper .circle-4 {
  width: 28vw;
  height: 28vw;
  background: #e7f9fb;
}
.wrapper .circle-5 {
  width: 20vw;
  height: 20vw;
  background: #b2bdcf;
}
.wrapper .circle-6 {
  width: 26vw;
  height: 26vw;
  background: #b1d0ef;
}
.wrapper .kv-content {
  position: absolute;
  text-align: center;
  color: #475569;
  pointer-events: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 767px) {
  .wrapper .kv-content {
    width: 80%;
    margin: 0 auto;
  }
}
.wrapper .kv-content .kv-logo {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 100%;
}
.wrapper .kv-content h1 {
  font-size: 4rem;
  margin: 0;
  letter-spacing: 2px;
  font-weight: bold;
}
.wrapper .kv-content p {
  position: relative;
  z-index: 20;
  font-size: 24px;
  opacity: 0.8;
  font-weight: 800;
  font-family: "Bitter", serif;
  letter-spacing: 1px;
  color: #6a9fec;
  font-style: italic;
}
.wrapper .breathing-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
}
.wrapper .breathing-circles .b-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.8), inset 0 0 40px rgba(255, 255, 255, 0.8);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  -webkit-mask-image: conic-gradient(#000 var(--draw-angle), transparent var(--draw-angle));
  mask-image: conic-gradient(#000 var(--draw-angle), transparent var(--draw-angle));
}
.wrapper .breathing-circles .b-circle-1 {
  width: 45vw;
  height: 45vw;
  z-index: 16;
  animation: drawIntro 2s ease-in-out forwards, breathing 6s 2s infinite ease-in-out;
}
@media (max-width: 767px) {
  .wrapper .breathing-circles .b-circle-1 {
    width: 100vw;
    height: 100vw;
  }
}
.wrapper .breathing-circles .b-circle-2 {
  width: 60vw;
  height: 60vw;
  z-index: 10;
  animation: drawIntro 2.5s ease-in-out forwards, breathing 8s 2.5s infinite ease-in-out;
}
@media (max-width: 767px) {
  .wrapper .breathing-circles .b-circle-2 {
    width: 130vw;
    height: 130vw;
  }
}
.wrapper .section {
  position: relative;
  z-index: 10;
}
.wrapper .section.bg {
  background-color: #f1f8fe;
}
.wrapper .section.inner-bg {
  background-color: #f3f3f3;
}
.wrapper .section.d-flex {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .wrapper .section.d-flex {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .section.d-flex::before {
  content: "";
  position: absolute;
  width: calc(50vw + 816px);
  height: calc(100% - 300px);
  border-radius: 50px 0 0 50px;
  background-color: #fff;
  top: 150px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1300px) {
  .wrapper .section.d-flex::before {
    width: 90%;
    height: 70%;
    top: 12vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.d-flex::before {
    width: 100%;
    height: calc(100% - 35vw);
  }
}
.wrapper .section.d-flex .sidebar {
  width: 23%;
  height: 600px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  background-color: #6a9fec;
  border-radius: 0 50px 50px 0;
  padding: 50px;
  z-index: 1;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  .wrapper .section.d-flex .sidebar {
    padding: 3vw;
    height: 45vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .sidebar {
    width: 50%;
    height: auto;
    padding: 6vw 10vw;
    border-radius: 0 6vw 6vw 0;
    -ms-flex-pack: start;
        justify-content: start;
  }
}
.wrapper .section.d-flex .sidebar h2 {
  font-size: 60px;
  letter-spacing: 5px;
  font-family: "Bitter", serif;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  margin: 0;
}
@media (max-width: 1300px) {
  .wrapper .section.d-flex .sidebar h2 {
    font-size: 4vw;
    letter-spacing: 3px;
  }
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .sidebar h2 {
    font-size: 5.5vw;
  }
}
.wrapper .section.d-flex .work-content {
  position: relative;
  width: 77%;
  padding: 50px 100px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  z-index: 0;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  .wrapper .section.d-flex .work-content {
    padding: 3vw 8vw 0;
  }
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .work-content {
    width: 100%;
    margin: 0 auto;
    padding: 5vw 18vw 0;
  }
}
.wrapper .section.d-flex .work-content .btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .work-content .btn {
    -ms-flex-order: 2;
        order: 2;
    color: #fff;
    background-color: #6a9fec;
  }
}
.wrapper .section.d-flex .work-content .swiper {
  overflow: hidden;
  padding: 80px 0;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  .wrapper .section.d-flex .work-content .swiper {
    padding: 6vw 0;
  }
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .work-content .swiper {
    -ms-flex-order: 1;
        order: 1;
    padding: 0;
  }
}
.wrapper .section.d-flex .work-content .swiper .swiper-slide .work-photo {
  display: block;
  margin-bottom: 20px;
}
.wrapper .section.d-flex .work-content .swiper .swiper-slide .work-photo img {
  width: 100%;
  max-width: 100%;
}
.wrapper .section.d-flex .work-content .swiper .swiper-slide .work-type {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  color: #6a9fec;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f1f8fe;
}
@media (max-width: 1300px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-slide .work-type {
    font-size: 1.3vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-slide .work-type {
    font-size: 4vw;
    padding: 1.5vw 4vw;
  }
}
.wrapper .section.d-flex .work-content .swiper .swiper-slide .work-title {
  display: block;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: #6a9fec;
  letter-spacing: 1px;
  padding: 10px 20px;
}
@media (max-width: 1300px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-slide .work-title {
    font-size: 1.5vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-slide .work-title {
    font-size: 4.5vw;
    padding: 2vw 1.5vw;
  }
}
.wrapper .section.d-flex .work-content .swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #6a9fec;
  background-image: none;
  border-radius: 50%;
  padding: 15px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  right: 25px;
  margin-top: 0;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-button-next {
    width: 4vw;
    height: 4vw;
    padding: 1vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-button-next {
    width: 10vw;
    height: 10vw;
    padding: 3vw;
    right: 4vw;
    margin-top: -33vw;
  }
}
.wrapper .section.d-flex .work-content .swiper .swiper-button-next::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  background-image: url(../img/arrow_2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -20px;
  top: 19px;
  transition: all 0.3s ease;
}
@media (min-width: 767px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-button-next:hover img {
    transform: translate(50px, 0);
    transition: transform 0.3s ease;
  }
  .wrapper .section.d-flex .work-content .swiper .swiper-button-next:hover::before {
    left: 15px;
    transition: all 0.3s ease;
  }
}
.wrapper .section.d-flex .work-content .swiper .swiper-button-next img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease;
}
.wrapper .section.d-flex .work-content .swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: #6a9fec;
  background-image: none;
  border-radius: 50%;
  padding: 15px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  left: 25px;
  margin-top: 0;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-button-prev {
    width: 4vw;
    height: 4vw;
    padding: 1vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-button-prev {
    width: 10vw;
    height: 10vw;
    padding: 3vw;
    left: 4vw;
    margin-top: -33vw;
  }
}
.wrapper .section.d-flex .work-content .swiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  transform: rotate(180deg);
  background-image: url(../img/arrow_2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: -20px;
  top: 19px;
  transition: all 0.3s ease;
}
@media (min-width: 767px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-button-prev:hover img {
    transform: rotate(180deg) translate(50px, 0);
    transition: transform 0.3s ease;
  }
  .wrapper .section.d-flex .work-content .swiper .swiper-button-prev:hover::before {
    right: 15px;
    transition: all 0.3s ease;
  }
}
.wrapper .section.d-flex .work-content .swiper .swiper-button-prev img {
  width: 100%;
  max-width: 100%;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.wrapper .section.d-flex .work-content .swiper .swiper-pagination {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-pagination {
    padding: 6vw 0 8vw;
  }
}
.wrapper .section.d-flex .work-content .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 5px;
  border-radius: 5px;
  background-color: #d7d7d7;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .wrapper .section.d-flex .work-content .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 3px;
  }
}
.wrapper .section.d-flex .work-content .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #6a9fec;
  transition: all 0.3s ease;
}
.wrapper .section.other-section {
  padding: 0 100px 150px;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section {
    padding: 0 5vw 10vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section {
    padding: 0 5vw 20vw;
  }
}
.wrapper .section.other-section::before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f3f3f3;
  z-index: -1;
}
.wrapper .section.other-section .content {
  position: relative;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  background-color: #6a9fec;
  padding: 100px 50px;
  text-align: left;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content {
    padding: 10vw 4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content {
    padding: 10vw 0 15vw;
  }
}
.wrapper .section.other-section .content .title h2 {
  font-family: "Bitter", serif;
  font-size: 48px;
  color: #fff;
  font-weight: 800;
  font-style: italic;
  text-align: center;
  margin: 0 0 20px;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .title h2 {
    font-size: 4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .title h2 {
    font-size: 6vw;
  }
}
.wrapper .section.other-section .content .other-works-swiper {
  position: relative;
  padding: 0 100px;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .other-works-swiper {
    padding: 0 8vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .other-works-swiper {
    padding: 0 16vw;
  }
}
.wrapper .section.other-section .content .other-works-swiper .swiper {
  overflow: hidden;
  box-sizing: border-box;
}
.wrapper .section.other-section .content .other-works-swiper .swiper .swiper-slide .work-photo {
  display: block;
  margin-bottom: 20px;
}
.wrapper .section.other-section .content .other-works-swiper .swiper .swiper-slide .work-photo img {
  width: 100%;
  max-width: 100%;
}
.wrapper .section.other-section .content .other-works-swiper .swiper .swiper-slide .work-type {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  color: #6a9fec;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f1f8fe;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-slide .work-type {
    font-size: 1.3vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-slide .work-type {
    font-size: 4vw;
    padding: 1.5vw 4vw;
  }
}
.wrapper .section.other-section .content .other-works-swiper .swiper .swiper-slide .work-title {
  display: block;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1px;
  padding: 10px 20px;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-slide .work-title {
    font-size: 1.5vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-slide .work-title {
    font-size: 4.5vw;
    padding: 2vw 1.5vw;
  }
}
.wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #fff;
  background-image: none;
  border-radius: 50%;
  padding: 15px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  right: 25px;
  margin-top: -5vw;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-next {
    width: 4vw;
    height: 4vw;
    padding: 1vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-next {
    width: 10vw;
    height: 10vw;
    padding: 3vw;
    right: 4vw;
    margin-top: -25vw;
  }
}
.wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-next::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  background-image: url(../img/arrow_3.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -20px;
  top: 19px;
  transition: all 0.3s ease;
}
@media (min-width: 767px) {
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-next:hover img {
    transform: translate(50px, 0);
    transition: transform 0.3s ease;
  }
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-next:hover::before {
    left: 15px;
    transition: all 0.3s ease;
  }
}
.wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-next img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease;
}
.wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: #fff;
  background-image: none;
  border-radius: 50%;
  padding: 15px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  left: 25px;
  margin-top: -5vw;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-prev {
    width: 4vw;
    height: 4vw;
    padding: 1vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-prev {
    width: 10vw;
    height: 10vw;
    padding: 3vw;
    left: 4vw;
    margin-top: -25vw;
  }
}
.wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  transform: rotate(180deg);
  background-image: url(../img/arrow_3.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: -20px;
  top: 19px;
  transition: all 0.3s ease;
}
@media (min-width: 767px) {
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-prev:hover img {
    transform: rotate(180deg) translate(50px, 0);
    transition: transform 0.3s ease;
  }
  .wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-prev:hover::before {
    right: 15px;
    transition: all 0.3s ease;
  }
}
.wrapper .section.other-section .content .other-works-swiper .swiper .swiper-button-prev img {
  width: 100%;
  max-width: 100%;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.wrapper .section.other-section .content .other-info-all {
  position: relative;
  width: 1000px;
  max-width: 100%;
  padding: 0 100px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .other-info-all {
    padding: 0 8vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .other-info-all {
    padding: 0 8vw;
  }
}
.wrapper .section.other-section .content .other-info-all .info-item {
  background-color: #fff;
  padding: 10px;
  gap: 10px;
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .other-info-all .info-item {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 4vw;
  }
}
.wrapper .section.other-section .content .other-info-all .info-item .info-type {
  width: 15%;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  color: #6a9fec;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f1f8fe;
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .other-info-all .info-item .info-type {
    font-size: 1.3vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .other-info-all .info-item .info-type {
    width: auto;
    font-size: 4vw;
    padding: 1.5vw 4vw;
    -ms-flex-item-align: start;
        align-self: start;
  }
}
.wrapper .section.other-section .content .other-info-all .info-item .info-title {
  width: 70%;
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #696969;
  letter-spacing: 1px;
  padding: 10px 0;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .other-info-all .info-item .info-title {
    font-size: 1.3vw;
    padding: 0.5vw 0;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .other-info-all .info-item .info-title {
    width: 100%;
    font-size: 4vw;
    padding: 0;
  }
}
@media (min-width: 767px) {
  .wrapper .section.other-section .content .other-info-all .info-item .info-title:hover {
    color: #3e83e7;
  }
}
.wrapper .section.other-section .content .other-info-all .info-item .date {
  width: 15%;
  color: #6a9fec;
  font-family: "Bitter", serif;
  font-size: 18px;
  margin: 0 0 0 auto;
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .other-info-all .info-item .date {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .other-info-all .info-item .date {
    font-size: 4vw;
    width: 100%;
    text-align: right;
  }
}
.wrapper .section.other-section .content .btn {
  width: 300px;
  position: absolute;
  bottom: -2vw;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1300px) {
  .wrapper .section.other-section .content .btn {
    bottom: -3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section.other-section .content .btn {
    bottom: -6vw;
    width: 50vw;
  }
}
.wrapper .section .deco-a {
  position: absolute;
  width: 20%;
  top: 84%;
  right: 8%;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 767px) {
  .wrapper .section .deco-a {
    width: 28%;
    top: 91%;
    right: -3%;
  }
}
.wrapper .section .deco-a img {
  width: 100%;
  max-width: 100%;
}
.wrapper .section .deco-b {
  position: absolute;
  width: 30%;
  top: 74%;
  left: -5%;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 767px) {
  .wrapper .section .deco-b {
    width: 50%;
    top: 84%;
    left: -14%;
  }
}
.wrapper .section .deco-b img {
  width: 100%;
  max-width: 100%;
}
.wrapper .section .deco-c {
  position: absolute;
  width: 25%;
  top: -12%;
  right: -1%;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 767px) {
  .wrapper .section .deco-c {
    width: 45%;
    top: -5%;
  }
}
.wrapper .section .deco-c img {
  width: 100%;
  max-width: 100%;
}
.wrapper .section .btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 250px;
  padding: 15px 15px 15px 30px;
  font-family: "Bitter", serif;
  font-weight: 800;
  font-style: italic;
  background-color: #fff;
  text-decoration: none;
  color: #696969;
  font-size: 24px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .wrapper .section .btn {
    font-size: 1.8vw;
    padding: 1vw 1vw 1vw 2.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .btn {
    font-size: 3.5vw;
    padding: 2vw 2vw 2vw 5vw;
  }
}
@media (min-width: 767px) {
  .wrapper .section .btn:hover {
    color: #3e83e7;
    background-color: #d2e3f6;
  }
  .wrapper .section .btn:hover span {
    transform: scale(1.2);
    transition: all 0.3s ease;
    background-color: #fff;
  }
  .wrapper .section .btn:hover span img {
    transform: translate(30px, -30px);
    transition: transform 0.3s ease;
  }
  .wrapper .section .btn:hover span::before {
    left: 15px;
    top: 15px;
    transition: all 0.3s ease;
  }
}
.wrapper .section .btn span {
  position: relative;
  background-color: #d2e3f6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  padding: 15px;
  box-sizing: border-box;
  margin-left: auto;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .wrapper .section .btn span {
    width: 10vw;
    height: 10vw;
    padding: 3vw;
  }
}
.wrapper .section .btn span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -20px;
  top: 100%;
  transition: all 0.3s ease;
}
.wrapper .section .btn span img {
  width: 100%;
  transition: all 0.3s ease;
}
.wrapper .section .content {
  padding: 150px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 1300px) {
  .wrapper .section .content {
    padding: 15vw 10vw;
  }
}
.wrapper .section .content.pt-0 {
  padding-top: 0;
}
.wrapper .section .content.px-0 {
  padding: 150px 0;
}
@media (max-width: 1300px) {
  .wrapper .section .content.px-0 {
    padding: 15vw 0;
  }
}
.wrapper .section .content.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.wrapper .section .content .about h3 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 28px;
  color: #3d3d3d;
  font-weight: 300;
  letter-spacing: 5px;
  margin: 0;
}
@media (max-width: 1300px) {
  .wrapper .section .content .about h3 {
    font-size: 2.4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .about h3 {
    font-size: 5vw;
  }
}
.wrapper .section .content .about h2 {
  font-family: "Bitter", serif;
  font-size: 48px;
  color: #6a9fec;
  font-weight: 800;
  font-style: italic;
  margin: 20px 0;
}
@media (max-width: 1300px) {
  .wrapper .section .content .about h2 {
    font-size: 4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .about h2 {
    font-size: 6vw;
  }
}
.wrapper .section .content .about p {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 18px;
  color: #3d3d3d;
  line-height: 2;
  margin: 20px 0 0 0;
}
@media (max-width: 1300px) {
  .wrapper .section .content .about p {
    font-size: 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .about p {
    font-size: 4vw;
  }
}
.wrapper .section .content .client h3 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 28px;
  color: #3d3d3d;
  font-weight: 300;
  letter-spacing: 5px;
}
@media (max-width: 1300px) {
  .wrapper .section .content .client h3 {
    font-size: 2.4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .client h3 {
    font-size: 5vw;
  }
}
.wrapper .section .content .client .client-logo {
  width: 1060px;
  max-width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px;
  margin: 0 auto;
}
.wrapper .section .content .client .client-logo .item {
  position: relative;
  --widthA: 100%;
  --widthB: calc(var(--widthA) - 60px);
  --widthC: calc(var(--widthB) / 4);
  width: var(--widthC);
  border-radius: 20px;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .wrapper .section .content .client .client-logo .item {
    --widthA: 100%;
    --widthB: calc(var(--widthA) - 20px);
    --widthC: calc(var(--widthB) / 2);
    width: var(--widthC);
  }
}
.wrapper .section .content .client .client-logo .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7529411765);
  filter: blur(20px);
  top: 0;
  left: 0;
  z-index: -1;
}
.wrapper .section .content .client .client-logo .item img {
  width: 100%;
  height: 100%;
}
.wrapper .section .content .info {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 767px) {
  .wrapper .section .content .info {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .section .content .info h2 {
  width: 20%;
  font-family: "Bitter", serif;
  font-size: 48px;
  color: #6a9fec;
  font-weight: 800;
  font-style: italic;
}
@media (max-width: 1300px) {
  .wrapper .section .content .info h2 {
    font-size: 4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .info h2 {
    width: 100%;
    font-size: 5.5vw;
  }
}
.wrapper .section .content .info .info-all {
  width: 80%;
}
@media (max-width: 767px) {
  .wrapper .section .content .info .info-all {
    width: 100%;
  }
}
.wrapper .section .content .info .info-all .item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .wrapper .section .content .info .info-all .item {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 4vw;
  }
}
.wrapper .section .content .info .info-all .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: -1;
  transition: all 0.3s ease;
}
@media (min-width: 767px) {
  .wrapper .section .content .info .info-all .item:hover::before {
    filter: blur(10px);
    opacity: 0.5;
    transition: all 0.3s ease;
  }
}
.wrapper .section .content .info .info-all .item .photo {
  display: block;
  width: 35%;
  padding-right: 20px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .section .content .info .info-all .item .photo {
    width: 100%;
    padding-right: 0;
  }
}
.wrapper .section .content .info .info-all .item .photo img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.wrapper .section .content .info .info-all .item .info {
  width: 65%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: start;
}
@media (max-width: 767px) {
  .wrapper .section .content .info .info-all .item .info {
    width: 100%;
    padding-top: 4vw;
  }
}
.wrapper .section .content .info .info-all .item .info .d-flex {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 10px;
}
.wrapper .section .content .info .info-all .item .info .d-flex .type {
  text-decoration: none;
  display: block;
  font-size: 18px;
  color: #6a9fec;
  padding: 8px 20px;
  border-radius: 20px;
  background-color: #f1f8fe;
  margin-right: auto;
}
@media (max-width: 1300px) {
  .wrapper .section .content .info .info-all .item .info .d-flex .type {
    font-size: 1.3vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .info .info-all .item .info .d-flex .type {
    font-size: 4vw;
    padding: 1.5vw 4vw;
  }
}
.wrapper .section .content .info .info-all .item .info .d-flex p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 18px;
  color: #6a9fec;
  margin: 0;
}
@media (max-width: 1300px) {
  .wrapper .section .content .info .info-all .item .info .d-flex p {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .info .info-all .item .info .d-flex p {
    font-size: 4vw;
  }
}
.wrapper .section .content .info .info-all .item .info .d-flex p::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #6a9fec;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .wrapper .section .content .info .info-all .item .info .d-flex p::before {
    width: 5vw;
  }
}
.wrapper .section .content .info .info-all .item .info .title {
  display: block;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: #6a9fec;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
@media (max-width: 1300px) {
  .wrapper .section .content .info .info-all .item .info .title {
    font-size: 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .info .info-all .item .info .title {
    font-size: 4.5vw;
    text-align: left;
    margin-bottom: 2vw;
  }
}
.wrapper .section .content .info .info-all .item .info p {
  font-size: 18px;
  line-height: 1.5;
  color: #3d3d3d;
  text-align: left;
  margin: 0;
}
@media (max-width: 1300px) {
  .wrapper .section .content .info .info-all .item .info p {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .info .info-all .item .info p {
    font-size: 4vw;
  }
}
.wrapper .section .content .info .info-all .btn {
  margin-left: auto;
}
@media (max-width: 767px) {
  .wrapper .section .content .info .info-all .btn {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .partner {
    padding: 0 8vw;
  }
}
.wrapper .section .content .partner h2 {
  font-family: "Bitter", serif;
  font-size: 48px;
  color: #6a9fec;
  font-weight: 800;
  font-style: italic;
}
@media (max-width: 1300px) {
  .wrapper .section .content .partner h2 {
    font-size: 4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .partner h2 {
    font-size: 5.5vw;
  }
}
.wrapper .section .content .partner .swiper {
  overflow: hidden;
}
.wrapper .section .content .partner .swiper .swiper-slide .photo {
  position: relative;
  border-radius: 0 0 50% 50%;
  overflow: hidden;
}
.wrapper .section .content .partner .swiper .swiper-slide .photo::before {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
  margin-top: 50px;
  transition: all 0.3s ease;
}
.wrapper .section .content .partner .swiper .swiper-slide .photo .card-h {
  position: absolute;
  width: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  padding-top: 20px;
}
.wrapper .section .content .partner .swiper .swiper-slide .photo .card-h img {
  width: 100%;
  max-width: 100%;
}
.wrapper .section .content .partner .swiper .swiper-slide p {
  font-family: "Bitter", serif;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  color: #6a9fec;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .wrapper .section .content .partner .swiper .swiper-slide p {
    font-size: 4vw;
    margin-bottom: 1vw;
  }
}
.wrapper .section .content .partner .swiper .swiper-slide b {
  font-family: "Bitter", serif;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #777777;
}
@media (max-width: 767px) {
  .wrapper .section .content .partner .swiper .swiper-slide b {
    font-size: 3.5vw;
  }
}
.wrapper .section .content .partner .swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #6a9fec;
  background-image: none;
  border-radius: 50%;
  padding: 15px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  right: 50px;
  margin-top: 30px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .wrapper .section .content .partner .swiper .swiper-button-next {
    width: 4vw;
    height: 4vw;
    padding: 1vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .partner .swiper .swiper-button-next {
    width: 10vw;
    height: 10vw;
    padding: 3vw;
    right: 4vw;
  }
}
.wrapper .section .content .partner .swiper .swiper-button-next::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  background-image: url(../img/arrow_2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -20px;
  top: 19px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .wrapper .section .content .partner .swiper .swiper-button-next::before {
    display: none;
  }
}
@media (min-width: 767px) {
  .wrapper .section .content .partner .swiper .swiper-button-next:hover img {
    transform: translate(50px, 0);
    transition: transform 0.3s ease;
  }
  .wrapper .section .content .partner .swiper .swiper-button-next:hover::before {
    left: 15px;
    transition: all 0.3s ease;
  }
}
.wrapper .section .content .partner .swiper .swiper-button-next img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease;
}
.wrapper .section .content .partner .swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: #6a9fec;
  background-image: none;
  border-radius: 50%;
  padding: 15px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  left: 50px;
  margin-top: 30px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .wrapper .section .content .partner .swiper .swiper-button-prev {
    width: 4vw;
    height: 4vw;
    padding: 1vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .partner .swiper .swiper-button-prev {
    width: 10vw;
    height: 10vw;
    padding: 3vw;
    left: 4vw;
  }
}
.wrapper .section .content .partner .swiper .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  transform: rotate(180deg);
  background-image: url(../img/arrow_2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: -20px;
  top: 19px;
  transition: all 0.3s ease;
}
@media (min-width: 767px) {
  .wrapper .section .content .partner .swiper .swiper-button-prev:hover img {
    transform: rotate(180deg) translate(50px, 0);
    transition: transform 0.3s ease;
  }
  .wrapper .section .content .partner .swiper .swiper-button-prev:hover::before {
    right: 15px;
    transition: all 0.3s ease;
  }
}
.wrapper .section .content .partner .swiper .swiper-button-prev img {
  width: 100%;
  max-width: 100%;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.wrapper .section .content .contact {
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 767px) {
  .wrapper .section .content .contact {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .section .content .contact .contact-logo {
  -ms-flex-item-align: center;
      align-self: center;
  padding-right: 50px;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 1300px) {
  .wrapper .section .content .contact .contact-logo {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .contact-logo {
    width: 60%;
    padding-right: 0;
    margin-bottom: 10vw;
  }
}
.wrapper .section .content .contact .form {
  position: relative;
  width: 800px;
  max-width: 100%;
  padding: 100px 50px;
  border-radius: 50px;
}
@media (max-width: 1300px) {
  .wrapper .section .content .contact .form {
    padding: 5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form {
    padding: 10vw 5vw;
  }
}
.wrapper .section .content .contact .form::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #3e83e7;
  top: 0;
  border-radius: 50px;
  left: 0;
  z-index: -1;
  opacity: 0.7;
  filter: blur(10px);
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form::before {
    border-radius: 5vw;
    filter: blur(5px);
  }
}
.wrapper .section .content .contact .form::after {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid #fff;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form::after {
    border-radius: 5vw;
  }
}
.wrapper .section .content .contact .form h2 {
  font-family: "Bitter", serif;
  font-size: 48px;
  color: #fff;
  font-weight: 800;
  font-style: italic;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form h2 {
    font-size: 5.5vw;
  }
}
.wrapper .section .content .contact .form form .form-row {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form form .form-row {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .section .content .contact .form form .form-row .form-group {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 0 10px;
  box-sizing: border-box;
  -ms-flex-align: start;
      align-items: start;
  margin-bottom: 15px;
}
.wrapper .section .content .contact .form form .form-row .form-group label {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
  padding: 0 10px;
}
@media (max-width: 1300px) {
  .wrapper .section .content .contact .form form .form-row .form-group label {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form form .form-row .form-group label {
    font-size: 4vw;
  }
}
.wrapper .section .content .contact .form form .form-row .form-group .form-control {
  width: 100%;
  max-width: 100%;
  padding: 15px;
  font-size: 18px;
  color: #3d3d3d;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
}
@media (max-width: 1300px) {
  .wrapper .section .content .contact .form form .form-row .form-group .form-control {
    font-size: 1.3vw;
    padding: 1.2vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form form .form-row .form-group .form-control {
    font-size: 4vw;
    padding: 4vw;
  }
}
.wrapper .section .content .contact .form form .form-row .form-group .form-control-select {
  appearance: none;
  background-image: url(../img/select-bg.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 30px 30px;
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form form .form-row .form-group .form-control-select {
    background-image: none;
    appearance: auto;
  }
}
.wrapper .section .content .contact .form form .form-row .form-group .form-check {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-right: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form form .form-row .form-group .form-check {
    margin-right: 20px;
  }
}
@media (max-width: 1300px) {
  .wrapper .section .content .contact .form form .form-row .form-group .form-check {
    margin-right: 0;
    font-size: 1.3vw;
  }
}
.wrapper .section .content .contact .form form .form-row .form-group .form-check input:checked ~ .checkmark::after {
  display: block;
}
.wrapper .section .content .contact .form form .form-row .form-group .form-check input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}
.wrapper .section .content .contact .form form .form-row .form-group .form-check .form-check-label {
  font-size: 18px;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form form .form-row .form-group .form-check .form-check-label {
    font-size: 15px;
  }
}
.wrapper .section .content .contact .form form .form-row .form-group .form-check .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #6a9fec;
  border-radius: 5px;
}
.wrapper .section .content .contact .form form .form-row .form-group .form-check .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #6a9fec;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.wrapper .section .content .contact .form form .form-row .form-group .form-check a {
  color: #fff;
  text-decoration: underline;
}
.wrapper .section .content .contact .form form .form-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 250px;
  padding: 10px 15px 10px 30px;
  background-color: #fff;
  text-decoration: none;
  color: #696969;
  font-size: 20px;
  font-weight: 500;
  border-radius: 50px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
@media (max-width: 1300px) {
  .wrapper .section .content .contact .form form .form-btn {
    font-size: 1.4vw;
    width: 18vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form form .form-btn {
    font-size: 3.5vw;
    width: 50vw;
    margin: 5vw auto 0;
    padding: 2vw 2vw 2vw 5vw;
  }
}
@media (min-width: 767px) {
  .wrapper .section .content .contact .form form .form-btn:hover {
    color: #3e83e7;
    background-color: #d2e3f6;
  }
  .wrapper .section .content .contact .form form .form-btn:hover span {
    transform: scale(1.2);
    transition: all 0.3s ease;
    background-color: #fff;
  }
  .wrapper .section .content .contact .form form .form-btn:hover span img {
    transform: translate(25px, -25px);
    transition: transform 0.3s ease;
  }
  .wrapper .section .content .contact .form form .form-btn:hover span::before {
    left: 12px;
    top: 12px;
    transition: all 0.3s ease;
  }
}
.wrapper .section .content .contact .form form .form-btn span {
  position: relative;
  background-color: #d2e3f6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  padding: 10px;
  box-sizing: border-box;
  margin-left: auto;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .wrapper .section .content .contact .form form .form-btn span {
    width: 10vw;
    height: 10vw;
    padding: 3vw;
  }
}
.wrapper .section .content .contact .form form .form-btn span::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -15px;
  top: 100%;
  transition: all 0.3s ease;
}
.wrapper .section .content .contact .form form .form-btn span img {
  width: 100%;
  transition: all 0.3s ease;
}
.wrapper .section .content .marquee .marquee-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: #f3f3f3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .section .content .marquee .marquee-wrapper .marquee-link {
  display: block;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}
.wrapper .section .content .marquee .marquee-wrapper .marquee-link .marquee-track {
  display: -ms-flexbox;
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}
.wrapper .section .content .marquee .marquee-wrapper .marquee-link .marquee-track:hover {
  animation-play-state: paused;
}
.wrapper .section .content .marquee .marquee-wrapper .marquee-link .marquee-track .marquee-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  min-width: 60%;
  white-space: nowrap;
}
.wrapper .section .content .marquee .marquee-wrapper .marquee-link .marquee-track .marquee-group .marquee-text {
  font-family: "Bitter", "Noto Sans TC", serif;
  font-size: 100px;
  font-weight: 800;
  font-style: italic;
  color: #6a9fec;
  padding: 0 40px;
  transition: color 0.3s ease;
}
@media (max-width: 1300px) {
  .wrapper .section .content .marquee .marquee-wrapper .marquee-link .marquee-track .marquee-group .marquee-text {
    font-size: 6vw;
  }
}
@media (max-width: 767px) {
  .wrapper .section .content .marquee .marquee-wrapper .marquee-link .marquee-track .marquee-group .marquee-text {
    font-size: 12vw;
    padding: 0 20px;
  }
}
.wrapper .section .content .marquee .marquee-wrapper .marquee-link .marquee-track .marquee-group .marquee-text:hover {
  color: #3e83e7;
}
.wrapper .section .content .marquee .btn {
  width: 300px;
  margin: 50px auto 0;
  background-color: #6a9fec;
  color: #fff;
}
@media (max-width: 767px) {
  .wrapper .section .content .marquee .btn {
    width: 50vw;
  }
}
.wrapper .section .content .marquee .btn span {
  background-color: #fff;
}
.wrapper .inner-content {
  width: 100%;
  padding: 100px;
  box-sizing: border-box;
}
@media (max-width: 1300px) {
  .wrapper .inner-content {
    padding: 10vw 5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content {
    padding: 15vw 8vw 12vw;
  }
}
.wrapper .inner-content.bg {
  background-color: #f3f3f3;
}
.wrapper .inner-content .breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  -ms-flex-align: center;
      align-items: center;
  list-style-type: none;
  margin-bottom: 20px;
}
.wrapper .inner-content .breadcrumb .breadcrumb-item {
  font-size: 16px;
  font-weight: 600;
  color: #838383;
  font-family: "Bitter", serif;
}
@media (max-width: 767px) {
  .wrapper .inner-content .breadcrumb .breadcrumb-item {
    font-size: 14px;
  }
}
.wrapper .inner-content .breadcrumb .breadcrumb-item a {
  color: #6a9fec;
  text-decoration: none;
}
.wrapper .inner-content .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.wrapper .inner-content .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  padding-right: 0;
  margin-right: 10px;
  vertical-align: 4px;
  border: 1px solid #939393;
  border-bottom: none;
  border-left: none;
  transform: rotate(45deg);
}
.wrapper .inner-content .inner-title h1 {
  text-align: center;
  color: #6a9fec;
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  font-family: "Bitter", serif;
}
@media (max-width: 767px) {
  .wrapper .inner-content .inner-title h1 {
    font-size: 6vw;
  }
}
.wrapper .inner-content .inner-title h1 span {
  font-size: 18px;
  color: #777777;
  display: block;
  font-weight: 500;
  font-style: normal;
}
@media (max-width: 767px) {
  .wrapper .inner-content .inner-title h1 span {
    font-size: 4vw;
  }
}
.wrapper .inner-content .main {
  width: 1600px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 30px;
  padding: 50px;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main {
    padding: 4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main {
    padding: 6vw;
  }
}
.wrapper .inner-content .main.w-1400 {
  width: 1400px;
  padding: 100px;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main.w-1400 {
    padding: 4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main.w-1400 {
    padding: 8vw;
  }
}
.wrapper .inner-content .main .nav {
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .nav {
    -ms-flex-direction: column;
        flex-direction: column;
    padding-bottom: 4vw;
    margin-bottom: 4vw;
  }
}
.wrapper .inner-content .main .nav .category {
  width: 80%;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .nav .category {
    width: 100%;
    -ms-flex-order: 2;
        order: 2;
  }
}
.wrapper .inner-content .main .nav .category ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .nav .category ul {
    display: none;
  }
}
.wrapper .inner-content .main .nav .category ul li {
  margin-right: 20px;
  margin-bottom: 20px;
}
.wrapper .inner-content .main .nav .category ul li a {
  font-family: "微軟正黑體";
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  color: #6a9fec;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f1f8fe;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main .nav .category ul li a {
    font-size: 1.3vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .nav .category ul li a {
    font-size: 4vw;
    padding: 1.5vw 4vw;
  }
}
.wrapper .inner-content .main .nav .category ul li a.active {
  color: #fff;
  background-color: #6a9fec;
}
.wrapper .inner-content .main .nav .category form {
  display: none;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .nav .category form {
    display: block;
  }
}
.wrapper .inner-content .main .nav .category form select {
  width: 100%;
  color: #6a9fec;
  background-color: #f1f8fe;
  border: none;
  border-radius: 10px;
  font-size: 4vw;
  padding: 15px 20px;
  box-sizing: border-box;
  outline: none;
}
.wrapper .inner-content .main .nav .search {
  position: relative;
  width: 20%;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .nav .search {
    width: 100%;
    -ms-flex-order: 1;
        order: 1;
    margin-bottom: 4vw;
  }
}
.wrapper .inner-content .main .nav .search input {
  display: block;
  width: 100%;
  padding: 15px 50px 15px 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #6a9fec;
  background-color: #f1f8fe;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .nav .search input {
    font-size: 4vw;
  }
}
.wrapper .inner-content .main .nav .search a {
  background-image: url("../img/search.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 12px;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.wrapper .inner-content .main .works-all {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.wrapper .inner-content .main .works-all .works-item {
  --widthA: 100%;
  --widthB: calc(var(--widthA) - 90px);
  --widthC: calc(var(--widthB) / 4);
  width: var(--widthC);
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-all .works-item {
    width: 100%;
    margin-bottom: 6vw;
  }
}
.wrapper .inner-content .main .works-all .works-item .work-photo {
  display: block;
  margin-bottom: 20px;
}
.wrapper .inner-content .main .works-all .works-item .work-photo img {
  width: 100%;
  max-width: 100%;
}
.wrapper .inner-content .main .works-all .works-item .work-type {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  color: #6a9fec;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f1f8fe;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main .works-all .works-item .work-type {
    font-size: 1.3vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-all .works-item .work-type {
    font-size: 4vw;
    padding: 1.5vw 4vw;
  }
}
.wrapper .inner-content .main .works-all .works-item .px-20 {
  padding: 0 20px;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main .works-all .works-item .px-20 {
    padding: 0 1.5vw;
  }
}
.wrapper .inner-content .main .works-all .works-item .px-20 .production {
  position: relative;
}
.wrapper .inner-content .main .works-all .works-item .px-20 .production::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.wrapper .inner-content .main .works-all .works-item .px-20 .production p {
  position: relative;
  font-size: 18px;
  color: #777777;
  padding: 10px 20px 0 0;
  margin: 0;
  background-color: #fff;
  display: inline-block;
  z-index: 1;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main .works-all .works-item .px-20 .production p {
    font-size: 1.3vw;
    padding: 0.5vw 1.5vw 0 0;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-all .works-item .px-20 .production p {
    font-size: 4vw;
    padding: 2vw 1.5vw 0 0;
  }
}
.wrapper .inner-content .main .works-all .works-item .px-20 .work-title {
  display: block;
  text-decoration: none;
  font-weight: bold;
  color: #6a9fec;
  letter-spacing: 1px;
}
.wrapper .inner-content .main .works-all .works-item .px-20 .work-title h2 {
  margin: 0;
  font-size: 24px;
  padding: 10px 0;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main .works-all .works-item .px-20 .work-title h2 {
    font-size: 1.5vw;
    padding: 0.5vw 0;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-all .works-item .px-20 .work-title h2 {
    font-size: 4.5vw;
    padding: 2vw 0;
  }
}
.wrapper .inner-content .main .works-all .works-item .px-20 .text {
  position: relative;
  font-size: 18px;
  color: #777777;
  margin: 0;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main .works-all .works-item .px-20 .text {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-all .works-item .px-20 .text {
    font-size: 4vw;
  }
}
.wrapper .inner-content .main .works-inner-nav {
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-inner-nav {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 0;
  }
}
.wrapper .inner-content .main .works-inner-nav .title {
  width: 65%;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-inner-nav .title {
    width: 100%;
  }
}
.wrapper .inner-content .main .works-inner-nav .title h1 {
  color: #6a9fec;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 20px;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main .works-inner-nav .title h1 {
    font-size: 4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-inner-nav .title h1 {
    font-size: 5.5vw;
    margin: 0 0 2vw;
  }
}
.wrapper .inner-content .main .works-inner-nav .title .work-type {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  color: #6a9fec;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f1f8fe;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main .works-inner-nav .title .work-type {
    font-size: 1.3vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-inner-nav .title .work-type {
    font-size: 4vw;
    padding: 1.5vw 4vw;
    margin-bottom: 3vw;
  }
}
.wrapper .inner-content .main .works-inner-nav .info {
  width: 35%;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-inner-nav .info {
    width: 100%;
  }
}
.wrapper .inner-content .main .works-inner-nav .info dl {
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-inner-nav .info dl {
    margin: 3vw 0;
  }
}
.wrapper .inner-content .main .works-inner-nav .info dl dt {
  width: 30%;
  font-family: "Bitter", serif;
  font-size: 18px;
  color: #6a9fec;
  text-align: right;
  font-weight: bold;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main .works-inner-nav .info dl dt {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-inner-nav .info dl dt {
    font-size: 3.5vw;
  }
}
.wrapper .inner-content .main .works-inner-nav .info dl dd {
  width: 65%;
  font-size: 18px;
  color: #777777;
  margin-left: 20px;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .main .works-inner-nav .info dl dd {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .main .works-inner-nav .info dl dd {
    font-size: 3.5vw;
  }
}
.wrapper .inner-content .main .works-inner-nav .info dl dd a {
  color: #777777;
  word-wrap: break-word;
}
.wrapper .inner-content .main .work-pic {
  margin-bottom: 20px;
}
.wrapper .inner-content .main .work-pic img {
  width: 100%;
  max-width: 100%;
}
.wrapper .inner-content .pagination ul {
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0;
}
@media (max-width: 767px) {
  .wrapper .inner-content .pagination ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wrapper .inner-content .pagination ul .page-item {
  padding: 0 20px;
}
@media (max-width: 767px) {
  .wrapper .inner-content .pagination ul .page-item {
    padding: 0 2vw;
  }
}
.wrapper .inner-content .pagination ul .page-item .page-link {
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: #777777;
  font-family: "Bitter", serif;
}
@media (max-width: 767px) {
  .wrapper .inner-content .pagination ul .page-item .page-link {
    font-size: 4vw;
  }
}
.wrapper .inner-content .pagination ul .page-item .page-link.active {
  color: #6a9fec;
}
.wrapper .inner-content .pagination ul .page-item .arrows {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #6a9fec;
  background-image: none;
  border-radius: 50%;
  padding: 15px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .wrapper .inner-content .pagination ul .page-item .arrows {
    width: 10vw;
    height: 10vw;
    padding: 3vw;
  }
}
.wrapper .inner-content .pagination ul .page-item .arrows.right::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  background-image: url(../img/arrow_2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -20px;
  top: 19px;
  transition: all 0.3s ease;
}
.wrapper .inner-content .pagination ul .page-item .arrows.right img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease;
}
@media (min-width: 767px) {
  .wrapper .inner-content .pagination ul .page-item .arrows.right:hover img {
    transform: translate(50px, 0);
    transition: transform 0.3s ease;
  }
  .wrapper .inner-content .pagination ul .page-item .arrows.right:hover::before {
    left: 15px;
    transition: all 0.3s ease;
  }
}
.wrapper .inner-content .pagination ul .page-item .arrows.left::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 14px;
  transform: rotate(180deg);
  background-image: url(../img/arrow_2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: -20px;
  top: 19px;
  transition: all 0.3s ease;
}
.wrapper .inner-content .pagination ul .page-item .arrows.left img {
  width: 100%;
  max-width: 100%;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
@media (min-width: 767px) {
  .wrapper .inner-content .pagination ul .page-item .arrows.left:hover img {
    transform: rotate(180deg) translate(50px, 0);
    transition: transform 0.3s ease;
  }
  .wrapper .inner-content .pagination ul .page-item .arrows.left:hover::before {
    right: 15px;
    transition: all 0.3s ease;
  }
}
.wrapper .inner-content .info-content {
  width: 1600px;
  max-width: 100%;
  padding: 0 100px;
  box-sizing: border-box;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content {
    padding: 0 4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content {
    padding: 0;
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.wrapper .inner-content .info-content .info-all {
  width: 72%;
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all {
    width: 100%;
  }
}
.wrapper .inner-content .info-content .info-all.info-inner {
  background-color: #fff;
  padding: 50px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all.info-inner {
    padding: 8vw;
  }
}
.wrapper .inner-content .info-content .info-all .info-item {
  display: -ms-flexbox;
  display: flex;
  padding: 25px;
  border-radius: 20px;
  background-color: #fff;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-item {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 6vw;
  }
}
.wrapper .inner-content .info-content .info-all .info-item .photo {
  width: 35%;
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-item .photo {
    width: 100%;
  }
}
.wrapper .inner-content .info-content .info-all .info-item .photo img {
  width: 100%;
}
.wrapper .inner-content .info-content .info-all .info-item .text {
  width: 65%;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-item .text {
    width: 100%;
    padding: 0;
  }
}
.wrapper .inner-content .info-content .info-all .info-item .text .d-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper .inner-content .info-content .info-all .info-item .text .d-flex .info-type {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  color: #6a9fec;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f1f8fe;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .info-all .info-item .text .d-flex .info-type {
    font-size: 1.3vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-item .text .d-flex .info-type {
    font-size: 4vw;
    padding: 1.5vw 4vw;
  }
}
.wrapper .inner-content .info-content .info-all .info-item .text .d-flex .date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 5px;
  color: #6a9fec;
  font-family: "Bitter", serif;
  font-size: 18px;
  margin: 0 0 0 auto;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .info-all .info-item .text .d-flex .date {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-item .text .d-flex .date {
    font-size: 4vw;
  }
}
.wrapper .inner-content .info-content .info-all .info-item .text .d-flex .date::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #3e83e7;
}
.wrapper .inner-content .info-content .info-all .info-item .text .info-title {
  display: block;
  text-decoration: none;
  font-weight: bold;
  color: #6a9fec;
  letter-spacing: 1px;
}
.wrapper .inner-content .info-content .info-all .info-item .text .info-title h2 {
  margin: 0;
  font-size: 24px;
  padding: 10px 0;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .info-all .info-item .text .info-title h2 {
    font-size: 1.5vw;
    padding: 0.5vw 0;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-item .text .info-title h2 {
    font-size: 4.5vw;
    padding: 2vw 0;
  }
}
.wrapper .inner-content .info-content .info-all .info-item .text p {
  position: relative;
  font-size: 18px;
  color: #777777;
  margin: 0;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .info-all .info-item .text p {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-item .text p {
    font-size: 4vw;
  }
}
.wrapper .inner-content .info-content .info-all .info-inner-nav {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-inner-nav {
    gap: 0;
  }
}
.wrapper .inner-content .info-content .info-all .info-inner-nav h1 {
  color: #6a9fec;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 20px;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .info-all .info-inner-nav h1 {
    font-size: 4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-inner-nav h1 {
    font-size: 5.5vw;
    margin: 0 0 2vw;
  }
}
.wrapper .inner-content .info-content .info-all .info-inner-nav .d-flex {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
}
.wrapper .inner-content .info-content .info-all .info-inner-nav .d-flex .work-type {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  color: #6a9fec;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #f1f8fe;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .info-all .info-inner-nav .d-flex .work-type {
    font-size: 1.3vw;
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-inner-nav .d-flex .work-type {
    font-size: 4vw;
    padding: 1.5vw 4vw;
    margin-bottom: 3vw;
  }
}
.wrapper .inner-content .info-content .info-all .info-inner-nav .d-flex .date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 5px;
  color: #6a9fec;
  font-family: "Bitter", serif;
  font-size: 18px;
  margin: 0 0 0 auto;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .info-all .info-inner-nav .d-flex .date {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .info-all .info-inner-nav .d-flex .date {
    font-size: 4vw;
  }
}
.wrapper .inner-content .info-content .info-all .info-inner-nav .d-flex .date::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #3e83e7;
}
.wrapper .inner-content .info-content .info-all .info-pic {
  margin-bottom: 20px;
}
.wrapper .inner-content .info-content .info-all .info-pic img {
  width: 100%;
  max-width: 100%;
}
.wrapper .inner-content .info-content .article-category {
  display: none;
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .article-category {
    display: block;
  }
}
.wrapper .inner-content .info-content .article-category h4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 5vw;
  color: #3e83e7;
  margin: 0;
  white-space: nowrap;
  gap: 20px;
  margin-bottom: 2vw;
}
.wrapper .inner-content .info-content .article-category h4::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #6a9fec;
}
.wrapper .inner-content .info-content .article-category .choose_bar {
  display: block;
}
.wrapper .inner-content .info-content .article-category .choose_bar .search {
  position: relative;
  width: 100%;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  margin-bottom: 2vw;
}
.wrapper .inner-content .info-content .article-category .choose_bar .search input {
  display: block;
  width: 100%;
  padding: 15px 50px 15px 20px;
  line-height: 1.5;
  color: #6a9fec;
  background-color: #f1f8fe;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
  border: 1px solid #3e83e7;
  font-size: 4vw;
}
.wrapper .inner-content .info-content .article-category .choose_bar .search a {
  background-image: url("../img/search.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 12px;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.wrapper .inner-content .info-content .article-category .choose_bar .select {
  width: 100%;
  color: #6a9fec;
  background-color: #f1f8fe;
  font-size: 4vw;
  padding: 4vw;
  border-radius: 10px;
  margin-bottom: 2vw;
  border: 1px solid #3e83e7;
}
.wrapper .inner-content .info-content .sidebar {
  width: 28%;
  border-radius: 20px;
  background-color: #fff;
  padding: 25px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .sidebar {
    display: none;
  }
}
.wrapper .inner-content .info-content .sidebar .search {
  position: relative;
  width: 100%;
  -ms-flex-item-align: baseline;
      align-self: baseline;
  margin-bottom: 20px;
}
.wrapper .inner-content .info-content .sidebar .search input {
  display: block;
  width: 100%;
  padding: 15px 50px 15px 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #6a9fec;
  background-color: #f1f8fe;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .sidebar .search input {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .sidebar .search input {
    font-size: 4vw;
  }
}
.wrapper .inner-content .info-content .sidebar .search a {
  background-image: url("../img/search.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 12px;
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.wrapper .inner-content .info-content .sidebar h4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 24px;
  color: #3e83e7;
  margin: 0;
  white-space: nowrap;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .sidebar h4 {
    font-size: 1.6vw;
  }
}
.wrapper .inner-content .info-content .sidebar h4::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #6a9fec;
}
.wrapper .inner-content .info-content .sidebar .link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  padding: 15px 15px 15px 30px;
  font-weight: 800;
  background-color: #6a9fec;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  border-radius: 50px;
  overflow: hidden;
  margin: 0 auto 20px;
  font-weight: 300;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .sidebar .link {
    font-size: 1.3vw;
    padding: 0.8vw 0.8vw 0.8vw 2vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .sidebar .link {
    width: 70vw;
    font-size: 4vw;
    padding: 2vw 2vw 2vw 5vw;
  }
}
@media (min-width: 767px) {
  .wrapper .inner-content .info-content .sidebar .link:hover {
    color: #3e83e7;
    font-weight: bold;
    background-color: #d2e3f6;
  }
  .wrapper .inner-content .info-content .sidebar .link:hover span {
    transform: scale(1.2);
    transition: all 0.3s ease;
    background-color: #fff;
  }
  .wrapper .inner-content .info-content .sidebar .link:hover span img {
    transform: translate(30px, -30px);
    transition: transform 0.3s ease;
  }
  .wrapper .inner-content .info-content .sidebar .link:hover span::before {
    left: 8px;
    top: 8px;
    transition: all 0.3s ease;
  }
}
.wrapper .inner-content .info-content .sidebar .link span {
  position: relative;
  background-color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-left: auto;
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .sidebar .link span {
    width: 8vw;
    height: 8vw;
    padding: 2vw;
  }
}
.wrapper .inner-content .info-content .sidebar .link span::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -20px;
  top: 100%;
  transition: all 0.3s ease;
}
.wrapper .inner-content .info-content .sidebar .link span img {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
}
.wrapper .inner-content .info-content .sidebar ul {
  position: relative;
  padding-left: 0;
}
.wrapper .inner-content .info-content .sidebar ul li {
  color: #777777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 25px;
  list-style-type: disc;
  list-style-position: inside;
  line-height: 1.8;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .sidebar ul li {
    padding: 0 2vw;
  }
}
.wrapper .inner-content .info-content .sidebar ul li a {
  font-size: 18px;
  color: #777777;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1300px) {
  .wrapper .inner-content .info-content .sidebar ul li a {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .inner-content .info-content .sidebar ul li a {
    font-size: 4vw;
  }
}
.wrapper .inner-content .info-content .sidebar ul li a:hover {
  color: #3e83e7;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.wrapper .footer {
  background-color: #696c79;
}
.wrapper .footer .content {
  width: 1720px;
  max-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 767px) {
  .wrapper .footer .content {
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 5vw 0 0;
  }
}
.wrapper .footer .content .main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 767px) {
  .wrapper .footer .content .main {
    width: 100%;
    -ms-flex-pack: center;
        justify-content: center;
    padding: 0 5vw;
  }
}
.wrapper .footer .content .main .logo {
  width: 100px;
}
@media (max-width: 767px) {
  .wrapper .footer .content .main .logo {
    padding-right: 4vw;
  }
}
.wrapper .footer .content .main ul {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .wrapper .footer .content .main ul {
    -ms-flex-direction: column;
        flex-direction: column;
    padding-left: 4vw;
  }
}
.wrapper .footer .content .main ul li {
  list-style-type: none;
  padding: 0 20px;
  color: #fff;
  border-right: 1px solid #fff;
  font-size: 18px;
}
@media (max-width: 1300px) {
  .wrapper .footer .content .main ul li {
    font-size: 1.4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .footer .content .main ul li {
    font-size: 4vw;
    line-height: 1.6;
    border-right: none;
    text-align: left;
    padding: 0;
  }
}
.wrapper .footer .content .main ul li:last-child {
  border-right: none;
}
.wrapper .footer .content .main ul li a {
  font-family: "Bitter", "Noto Sans TC", serif;
  font-size: 18px;
  display: block;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1300px) {
  .wrapper .footer .content .main ul li a {
    font-size: 1.4vw;
  }
}
@media (max-width: 767px) {
  .wrapper .footer .content .main ul li a {
    font-size: 4vw;
  }
}
.wrapper .footer .content .copyright {
  font-size: 16px;
  margin-left: auto;
  color: #fff;
  font-family: "Bitter", serif;
}
@media (max-width: 1300px) {
  .wrapper .footer .content .copyright {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) {
  .wrapper .footer .content .copyright {
    width: 100%;
    font-size: 3vw;
    text-align: center;
    margin: 0;
    border-top: 1px solid #fff;
    padding: 4vw;
  }
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 998;
  white-space: nowrap;
  overflow: hidden;
  overflow-y: auto;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease all;
  display: none;
}
.lightbox.active {
  opacity: 1;
  display: block;
  visibility: visible;
}
.lightbox.active .lightbox-content {
  animation: zoomIn 0.3s ease-out 1;
}
@media (min-width: 1400px) {
  .lightbox {
    font-size: 16px;
  }
}
.lightbox:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.lightbox .d-flex-end {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  margin-bottom: 10px;
}
.lightbox .lightbox-close {
  z-index: 2;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  background: url("../img/close.svg") center/contain no-repeat;
  cursor: pointer;
}
@media (max-width: 767px) {
  .lightbox .lightbox-close {
    width: 20px;
    height: 20px;
  }
}
.lightbox .lightbox-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #70a2eb;
  opacity: 0.3;
}
.lightbox .lightbox-blur.transparent {
  background-color: transparent;
}
.lightbox .lightbox-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 2;
  width: 100%;
  max-width: 645px;
  padding: 30px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .lightbox .lightbox-content {
    max-width: 100%;
    padding: 20px;
  }
}
.lightbox .lightbox-content .lightbox-wrap {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
  }
}
.lightbox .lightbox-content .lightbox-wrap .privacy {
  position: relative;
  width: 100%;
  padding: 80px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap .privacy {
    padding: 10vw 6vw;
  }
}
.lightbox .lightbox-content .lightbox-wrap .privacy::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #3e83e7;
  top: 0;
  border-radius: 50px;
  left: 0;
  z-index: -1;
  opacity: 0.7;
  filter: blur(3px);
}
@media (max-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap .privacy::before {
    border-radius: 5vw;
  }
}
.lightbox .lightbox-content .lightbox-wrap .privacy::after {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid #fff;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap .privacy::after {
    border-radius: 5vw;
  }
}
.lightbox .lightbox-content .lightbox-wrap .privacy .form-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 200px;
  padding: 10px 10px 10px 30px;
  background-color: #fff;
  text-decoration: none;
  color: #696969;
  font-size: 20px;
  font-weight: 500;
  border-radius: 50px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  margin: 0 auto 50px;
}
@media (max-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap .privacy .form-btn {
    font-size: 4vw;
    width: 50vw;
    margin: 0 auto 10vw;
    padding: 2vw 2vw 2vw 5vw;
  }
}
@media (min-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap .privacy .form-btn:hover {
    color: #3e83e7;
    background-color: #d2e3f6;
  }
  .lightbox .lightbox-content .lightbox-wrap .privacy .form-btn:hover span {
    transform: scale(1.2);
    transition: all 0.3s ease;
    background-color: #fff;
  }
  .lightbox .lightbox-content .lightbox-wrap .privacy .form-btn:hover span img {
    transform: translate(25px, -25px);
    transition: transform 0.3s ease;
  }
  .lightbox .lightbox-content .lightbox-wrap .privacy .form-btn:hover span::before {
    left: 12px;
    top: 12px;
    transition: all 0.3s ease;
  }
}
.lightbox .lightbox-content .lightbox-wrap .privacy .form-btn span {
  position: relative;
  background-color: #d2e3f6;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
  padding: 10px;
  box-sizing: border-box;
  margin-left: auto;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap .privacy .form-btn span {
    width: 8vw;
    height: 8vw;
    padding: 2vw;
  }
}
.lightbox .lightbox-content .lightbox-wrap .privacy .form-btn span::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -15px;
  top: 100%;
  transition: all 0.3s ease;
}
.lightbox .lightbox-content .lightbox-wrap .privacy .form-btn span img {
  width: 100%;
  transition: all 0.3s ease;
}
.lightbox .lightbox-content .lightbox-wrap .privacy p {
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.lightbox .lightbox-content .lightbox-wrap .privacy input {
  font-size: 18px;
  padding: 20px;
  border-radius: 10px;
  border: none;
  width: 300px;
  text-align: center;
  margin: 0 auto 20px;
}
.lightbox .lightbox-content .lightbox-wrap .privacy .btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 300px;
  padding: 10px 10px 10px 30px;
  font-weight: 800;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  border-radius: 50px;
  overflow: hidden;
  margin: 0 auto;
  font-weight: 300;
}
@media (max-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap .privacy .btn {
    width: 70vw;
    font-size: 4vw;
    padding: 2vw 2vw 2vw 5vw;
  }
}
@media (min-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap .privacy .btn:hover {
    color: #3e83e7;
    background-color: #d2e3f6;
  }
  .lightbox .lightbox-content .lightbox-wrap .privacy .btn:hover span {
    transform: scale(1.2);
    transition: all 0.3s ease;
    background-color: #fff;
  }
  .lightbox .lightbox-content .lightbox-wrap .privacy .btn:hover span img {
    transform: translate(30px, -30px);
    transition: transform 0.3s ease;
  }
  .lightbox .lightbox-content .lightbox-wrap .privacy .btn:hover span::before {
    left: 8px;
    top: 8px;
    transition: all 0.3s ease;
  }
}
.lightbox .lightbox-content .lightbox-wrap .privacy .btn span {
  position: relative;
  background-color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-left: auto;
}
@media (max-width: 767px) {
  .lightbox .lightbox-content .lightbox-wrap .privacy .btn span {
    width: 8vw;
    height: 8vw;
    padding: 2vw;
  }
}
.lightbox .lightbox-content .lightbox-wrap .privacy .btn span::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -20px;
  top: 100%;
  transition: all 0.3s ease;
}
.lightbox .lightbox-content .lightbox-wrap .privacy .btn span img {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
}

.fr-view.editor-text .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 25px;
}
.fr-view.editor-text .row .text-center {
  text-align: center;
}
.fr-view.editor-text .row .col-100 {
  width: 100%;
  margin-bottom: 20px;
}
.fr-view.editor-text .row .col-50-text {
  width: 49%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .fr-view.editor-text .row .col-50-text {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .fr-view.editor-text .row .col-50-text.order-1 {
    -ms-flex-order: 1;
        order: 1;
  }
}
@media (max-width: 767px) {
  .fr-view.editor-text .row .col-50-text.order-2 {
    -ms-flex-order: 2;
        order: 2;
  }
}
.fr-view.editor-text .row .col-50 {
  width: 49%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .fr-view.editor-text .row .col-50 {
    width: 48%;
  }
}
.fr-view.editor-text .row .col-30 {
  width: 32%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .fr-view.editor-text .row .col-30 {
    width: 48%;
  }
}
.fr-view.editor-text .row .col-25 {
  width: 23.25%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .fr-view.editor-text .row .col-25 {
    width: 48%;
  }
}
.fr-view.editor-text .row .fr-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: block;
  padding-bottom: 55%;
}
.fr-view.editor-text .row .fr-video iframe {
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.fr-view.editor-text .row .video-text {
  padding: 10px 0;
  text-align: left;
}
@media (max-width: 767px) {
  .fr-view.editor-text .row .video-text {
    padding: 5px 0;
  }
}
.fr-view.editor-text .row img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
}
.fr-view.editor-text .row h3 {
  font-size: 20px;
  margin: 0;
  margin-bottom: 5px;
  line-height: 1.5;
  font-weight: bold;
  color: #3e83e7;
}
.fr-view.editor-text .row p {
  font-size: 16px;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #777777;
}
.fr-view.editor-text .row ul {
  padding-left: 25px;
}
.fr-view.editor-text .row ul li {
  font-size: 16px;
  list-style-position: outside;
  font-size: 16px;
  line-height: 1.5;
  list-style-type: disc;
  color: #777777;
}

@property --draw-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes drawIntro {
  0% {
    --draw-angle: 0deg;
  }
  100% {
    --draw-angle: 360deg;
  }
}
@keyframes breathing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
/* WebGL Canvas 設定：疊在水墨斑塊之上，使用 multiply 產生融合感 */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  mix-blend-mode: multiply; /* 讓 Canvas 的白底變透明，流體顏色與背景斑塊自然疊加融合 */
  pointer-events: none; /* 讓滑鼠事件可以穿透，由 window 統一監聽 */
  opacity: 0.5; /* 將滑鼠特效的色彩濃度降低 50% */
}

/* 裝飾圖片設定 */
.deco {
  position: absolute;
  z-index: 15;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  max-width: 25vw; /* 限制最大寬度避免圖片過大 */
}
@media (max-width: 767px) {
  .deco {
    max-width: 42vw;
  }
}

.deco-left {
  left: 5%;
  bottom: 15%;
  animation-delay: 0s;
}

.deco-top {
  top: 5%;
  right: 15%;
  animation-delay: -2s;
}
@media (max-width: 767px) {
  .deco-top {
    top: 22%;
    right: 4%;
  }
}

.deco-bottom-right {
  bottom: 5%;
  right: 5%;
  animation-delay: -4s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}/*# sourceMappingURL=style.css.map */