@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Forum&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
@import url(animate-custom.css);
/*============root===============*/
:root {
  --color-background: #b3daffc5;
  --item-background: #0d85f7;
  --background: #FFF;
  --text-color: #000000;
  --text-color2: #171C61;
  --contrast-color: #B28247;
  --text-base-size: 6.5px;
  --offest-num: 2.5px;
}

* {
  padding: 0;
  margin: 0;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-weight: 500;
}

html {
  font-size: var(--text-base-size);
}

.wrapper {
  max-width: 1920px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

img {
  width: 100%;
}

span {
  display: inline-block;
}

.clearfix {
  display: block;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.mobile-hide,
.hide-680 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pc-hide,
.show-680 {
  display: none;
}

.width-500-hide {
  display: block;
}

.width-500 {
  display: none;
}

/*============grid===============*/
.grid-1-12 {
  width: 8%;
}

.grid-2-12 {
  width: 16.7%;
}

.grid-3-12 {
  width: 25%;
}

.grid-4-12 {
  width: 33.3%;
}

.grid-5-12 {
  width: 41.7%;
}

.grid-6-12 {
  width: 50%;
}

.grid-7-12 {
  width: 58.3%;
}

.grid-8-12 {
  width: 66.7%;
}

.grid-9-12 {
  width: 75%;
}

.grid-10-12 {
  width: 83.3%;
}

.grid-11-12 {
  width: 91.7%;
}

.grid-12-12 {
  width: 100%;
  max-width: 1920px;
}

/*============animate===============*/
.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.delay-1 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-2 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-4 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay-list li {
  opacity: 0;
  opacity: 1\9 \0 ;
  /*IE9hack*/
  -webkit-animation: fadeInUp 0.9s 1;
  animation: fadeInUp 0.9s 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.delay-list li:nth-child(10n+1) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-list li:nth-child(10n+2) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-list li:nth-child(10n+3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-list li:nth-child(10n+4) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay-list li:nth-child(10n+5) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-list li:nth-child(10n+6) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay-list li:nth-child(10n+7) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.delay-list li:nth-child(10n+8) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.delay-list li:nth-child(10n+9) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.delay-list li:nth-child(10n+10) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/*============load===============*/
.load-box {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow: hidden;
  background-color: var(--color-background);
  -webkit-transition: all 500ms ease-in;
  transition: all 500ms ease-in;
}
.load-box.active {
  height: 0px;
  top: -2px;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 15px;
  aspect-ratio: 1;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--background);
}

.loader::before {
  -webkit-box-shadow: -25px 0;
          box-shadow: -25px 0;
  -webkit-animation: l8-1 1s infinite linear;
          animation: l8-1 1s infinite linear;
}

.loader::after {
  -webkit-transform: rotate(0deg) translateX(25px);
          transform: rotate(0deg) translateX(25px);
  -webkit-animation: l8-2 1s infinite linear;
          animation: l8-2 1s infinite linear;
}

@-webkit-keyframes l8-1 {
  100% {
    -webkit-transform: translateX(25px);
            transform: translateX(25px);
  }
}

@keyframes l8-1 {
  100% {
    -webkit-transform: translateX(25px);
            transform: translateX(25px);
  }
}
@-webkit-keyframes l8-2 {
  100% {
    -webkit-transform: rotate(-180deg) translateX(25px);
            transform: rotate(-180deg) translateX(25px);
  }
}
@keyframes l8-2 {
  100% {
    -webkit-transform: rotate(-180deg) translateX(25px);
            transform: rotate(-180deg) translateX(25px);
  }
}
/*============fullpage===============*/
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background-color: var(--item-background);
}

/*============nav===============*/
.menu-item,
.menu-open-button {
  background: #EEEEEE;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  position: absolute;
  color: #FFFFFF;
  text-align: center;
  line-height: 80px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform ease-out 200ms;
  transition: -webkit-transform ease-out 200ms;
  transition: transform ease-out 200ms;
  transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
}

.menu-open {
  display: none;
}

.lines {
  width: 25px;
  height: 3px;
  background: #596778;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12.5px;
  margin-top: -1.5px;
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}

.line-1 {
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
}

.line-2 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.line-3 {
  -webkit-transform: translate3d(0, 8px, 0);
  transform: translate3d(0, 8px, 0);
}

.menu-open:checked + .menu-open-button .line-1 {
  -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  transform: translate3d(0, 0, 0) rotate(45deg);
}

.menu-open:checked + .menu-open-button .line-2 {
  -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
  transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.menu-open:checked + .menu-open-button .line-3 {
  -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
  transform: translate3d(0, 0, 0) rotate(-45deg);
}

.menu {
  margin: auto;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 26px;
  z-index: 99;
}

.menu-item {
  -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
          box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
  background-color: var(--item-background);
  -webkit-transform: translate3d(0px, 0px, 0);
          transform: translate3d(0px, 0px, 0);
}
.menu-item img {
  width: 100%;
}

.menu-open:checked ~ .menu-item {
  opacity: 1;
  -webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
          transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
  -webkit-transition: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
}
.menu-open:checked ~ .menu-item:hover {
  -webkit-transition: all ease-in-out 200ms;
  transition: all ease-in-out 200ms;
}

.menu-open:checked ~ .menu-item:nth-child(3) {
  -webkit-transition-duration: 180ms;
          transition-duration: 180ms;
  -webkit-transform: translate3d(0px, -250px, 0);
          transform: translate3d(0px, -250px, 0);
}
.menu-open:checked ~ .menu-item:nth-child(3):hover {
  -webkit-transform: translate3d(var(--offest-num), calc(-250px + var(--offest-num)), 0);
          transform: translate3d(var(--offest-num), calc(-250px + var(--offest-num)), 0);
}

.menu-open:checked ~ .menu-item:nth-child(4) {
  -webkit-transition-duration: 280ms;
          transition-duration: 280ms;
  -webkit-transform: translate3d(0px, -190px, 0);
          transform: translate3d(0px, -190px, 0);
}
.menu-open:checked ~ .menu-item:nth-child(4):hover {
  -webkit-transform: translate3d(var(--offest-num), calc(-190px + var(--offest-num)), 0);
          transform: translate3d(var(--offest-num), calc(-190px + var(--offest-num)), 0);
}

.menu-open:checked ~ .menu-item:nth-child(5) {
  -webkit-transition-duration: 380ms;
          transition-duration: 380ms;
  -webkit-transform: translate3d(0px, -130px, 0);
          transform: translate3d(0px, -130px, 0);
}
.menu-open:checked ~ .menu-item:nth-child(5):hover {
  -webkit-transform: translate3d(var(--offest-num), calc(-130px + var(--offest-num)), 0);
          transform: translate3d(var(--offest-num), calc(-130px + var(--offest-num)), 0);
}

.menu-open:checked ~ .menu-item:nth-child(6) {
  -webkit-transition-duration: 480ms;
          transition-duration: 480ms;
  -webkit-transform: translate3d(0px, -70px, 0);
          transform: translate3d(0px, -70px, 0);
}
.menu-open:checked ~ .menu-item:nth-child(6):hover {
  -webkit-transform: translate3d(var(--offest-num), calc(-70px + var(--offest-num)), 0);
          transform: translate3d(var(--offest-num), calc(-70px + var(--offest-num)), 0);
}

.menu-open:checked ~ .menu-item:nth-child(7) {
  -webkit-transition-duration: 580ms;
          transition-duration: 580ms;
  -webkit-transform: translate3d(-90.86291px, 52.62064px, 0);
          transform: translate3d(-90.86291px, 52.62064px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(8) {
  -webkit-transition-duration: 680ms;
          transition-duration: 680ms;
  -webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
          transform: translate3d(-91.03006px, -52.33095px, 0);
}

.menu-open:checked ~ .menu-item:nth-child(9) {
  -webkit-transition-duration: 780ms;
          transition-duration: 780ms;
  -webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
          transform: translate3d(-0.25084px, -104.9997px, 0);
}

.menu-open:checked ~ .menu-item:hover {
  background: var(--text-color2);
  color: #3290B1;
}

.menu-item:nth-child(3) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(4) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(5) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(6) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(7) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(8) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-item:nth-child(9) {
  -webkit-transition-duration: 180ms;
  transition-duration: 180ms;
}

.menu-open-button {
  z-index: 2;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
  -webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  transform: scale(1.1, 1.1) translate3d(0, 0, 0);
  cursor: pointer;
  -webkit-box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
          box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
}

.menu-open-button:hover {
  -webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
  transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

.menu-open:checked + .menu-open-button {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
  transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}

/*============swiper===============*/
.white-side {
  width: 85%;
  margin: 0 auto 10px;
  display: block;
}
.white-side .swiper {
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
  border: 10px solid #fff;
}
.white-side .swiper-notification {
  display: none;
}

.swiper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.swiper .swiper-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: 2;
}
.swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-box {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 5%;
  right: 0;
  z-index: 3;
}
.button-box > button {
  cursor: pointer;
  position: absolute;
  width: 50px;
  height: 50px;
  color: var(--contrast-color);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  background-color: transparent;
}
.button-box > button i {
  font-size: 36px;
  line-height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.swiper-pagination {
  position: relative;
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.swiper:hover .swiper-button-next.swiper-button-disabled,
.swiper-container:hover .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.swiper-lazy-preloader {
  opacity: 0;
}

.swiper-lazy {
  opacity: 1;
  -webkit-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
}

.swiper-lazy-loaded {
  opacity: 1;
}

.swiper-slide img {
  min-width: 100%;
  /* height: auto;*/
}

a:hover .img-box img,
a.img-box:hover img,
a:hover .img-over-box img,
.button-in .img-over-box:hover img {
  -webkit-transition: -webkit-transform 1000ms ease-out;
  transition: -webkit-transform 1000ms ease-out;
  transition: transform 1000ms ease-out;
  transition: transform 1000ms ease-out, -webkit-transform 1000ms ease-out;
}

.swiper .img-box img,
.swiper .img-over-box img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 1000ms ease-out;
  transition: -webkit-transform 1000ms ease-out;
  transition: transform 1000ms ease-out;
  transition: transform 1000ms ease-out, -webkit-transform 1000ms ease-out;
}

.swiper a .img-over-box:before,
.swiper a .img-box:before {
  font-size: 40px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  width: 100%;
  opacity: 0;
  z-index: 1;
}
.swiper .img-over-box {
  overflow: hidden;
  margin: 0;
}

/*============WORD & BASE===============*/
body {
  font-family: "Noto Serif TC", serif, "Forum", serif;
  background: var(--background);
  color: var(--text-color);
  text-transform: uppercase;
}

.text-box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-box * {
  line-height: 1em;
}
.text-box hr {
  width: 140px;
  height: 1px;
  background-color: var(--contrast-color);
  border: none;
  margin: 70px 0;
}
.text-box h1 {
  font-family: "Noto Serif TC", sans-serif;
  font-size: calc(var(--text-base-size) * 4.6);
  color: var(--text-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-weight: 700;
  line-height: 1.2em;
}
.text-box h1 span {
  font-weight: 700;
}
.text-box h1 span::before {
  content: " ";
  padding-left: 15px;
}
.text-box h2 {
  font-family: "Forum", sans-serif;
  font-weight: normal;
  font-size: calc(var(--text-base-size) * 4);
  color: var(--contrast-color);
  line-height: normal;
  padding-top: 0.5em;
}
.text-box h3 {
  font-size: calc(var(--text-base-size) * 4.6);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  color: var(--contrast-color);
  letter-spacing: 0.1em;
}
.text-box h3 span {
  font-weight: 700;
}

p,
.con {
  font-family: "Noto Sans TC", sans-serif;
  font-size: calc(var(--text-base-size) * 2.2);
  line-height: 2em;
  font-weight: 500;
}

label {
  font-family: "Noto Sans TC", sans-serif;
}

.img-caption {
  font-family: "Noto Sans TC", sans-serif;
  font-size: calc(var(--text-base-size) * 2.2);
  color: var(--background);
  position: absolute;
  padding: 0 5px 5px 5px;
  text-shadow: 2px 3px 5px #1d1d1d;
  left: 20px;
  bottom: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

h1,
h3,
p,
li {
  letter-spacing: 2px;
  -webkit-transform: scale(1, 1.095);
          transform: scale(1, 1.095);
}

h2 {
  -webkit-transform: scale(1, 0.9);
          transform: scale(1, 0.9);
  letter-spacing: 2px;
}

h1,
h3 {
  letter-spacing: 3px;
  line-height: 1.2em;
}

/*============PAGE===============*/
html {
  font-size: var(--text-base-size);
}

.wrapper .section {
  overflow: hidden;
  min-height: 100%;
  margin: 0;
}

.content {
  width: 90%;
  margin: 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-logo {
  max-width: 150px;
  width: 100%;
}

/*============section1===============*/
.fp-tableCell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

#section1 {
  background: url(../images/index-bg.jpg) no-repeat center/cover;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#section1 .content {
  position: relative;
}
#section1 .content .text-box {
  position: relative;
  padding-bottom: 57%;
  width: 100%;
  margin: 0 15%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#section1 .content .en-img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#section1 .content .ball {
  position: absolute;
}
#section1 .content .ball1 {
  width: 10%;
  top: 6%;
  left: 32%;
}
#section1 .content .ball2 {
  width: 13%;
  top: 45%;
  left: 15%;
}
#section1 .content .ball3 {
  width: 16%;
  top: auto;
  bottom: 27%;
  left: auto;
  right: -9%;
}

/*============section2===============*/
#section2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
#section2 .content {
  width: 100%;
  height: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#section2 .text-box {
  width: 35%;
  height: inherit;
  padding: 0 50px 0 50px;
}
#section2 .text-box hr:nth-of-type(1) {
  margin: 0 0px 70px;
}
#section2 .text-box hr:nth-of-type(2) {
  margin: 70px 0px;
}
#section2 .pic-box {
  position: relative;
  background: url(../images/location-map.jpg) no-repeat top left/cover;
  width: 65%;
  overflow: hidden;
  display: block;
  height: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#section2 .pic-box::before {
  position: absolute;
  right: 0;
  content: "";
  width: 10%;
  height: inherit;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255) 100%);
}

/*============section3===============*/
#section3,
#section4,
#section5 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(201, 202, 202, 0)), to(rgb(201, 202, 202)));
  background: linear-gradient(to bottom, rgba(201, 202, 202, 0) 80%, rgb(201, 202, 202) 100%);
}

#section3 .content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#section3 .pic-box {
  width: 120%;
  position: relative;
}
#section3 .pic-box .swiper-wrapper .swiper-slide {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0.3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#section3 .pic-box .swiper-wrapper .img-caption {
  width: 100%;
  z-index: 2;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}
#section3 .text-box {
  padding: 150px 0;
}

/*============section4===============*/
#section4 .content,
#section5 .content {
  margin: 0 auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#section4 .content .text-box,
#section5 .content .text-box {
  margin-top: 10%;
}
#section4 .content .text-box .page-logo,
#section5 .content .text-box .page-logo {
  margin-top: 140px;
}
#section4 .swiper-container,
#section5 .swiper-container {
  overflow: hidden;
}

/*============section5===============*/
#section5 .content .text-box {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#section5 .content .pic-box {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/*============contact===============*/
#contact {
  background: #afc8e1 url(../images/final-bg.jpg) no-repeat center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact .content .map-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact .content .map-box .text-box {
  width: 50%;
  margin: 0 5% 0 15%;
}
#contact .content .map-box .logo {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
#contact .content .map-box .map {
  max-width: 430px;
  padding-top: 50px;
}
#contact #form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#contact #contact_form {
  width: 85%;
  margin-left: 2.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 隱藏原始的 checkbox */
  /* 自定義 checkbox 的樣式 */
  /* 勾選後的狀態 */
  /* 勾選後顯示的符號 */
  /* 當 checkbox 被勾選後，顯示打勾符號 */
  /* 勾選符號的樣式（這裡是簡單的勾勾） */
}
#contact #contact_form .text-box {
  margin: 0 auto 30px;
}
#contact #contact_form .text-box h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact #contact_form .text-box h3::after, #contact #contact_form .text-box h3::before {
  content: " ";
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--contrast-color);
}
#contact #contact_form .text-box h3::after {
  margin-left: 15px;
}
#contact #contact_form .text-box h3::before {
  margin-right: 15px;
}
#contact #contact_form .text-box .text1 {
  width: 98%;
  max-width: 800px;
  margin: 8% auto 2.5%;
}
#contact #contact_form .text-box .text-button {
  width: 98%;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
#contact #contact_form .text-box .text-button a {
  width: 55%;
  height: 50px;
  position: relative;
  padding-bottom: 5px;
}
#contact #contact_form .text-box .text-button a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 5px;
  background: #f08000;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#contact #contact_form .text-box .text-button a:last-child {
  width: 40%;
  margin-left: 5%;
}
#contact #contact_form .text-box .text-button a:hover::after {
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#contact #contact_form .row-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 98%;
  margin-top: 20px;
}
#contact #contact_form label {
  position: absolute;
  font-size: 18px;
  padding-left: 1%;
  height: 46px;
  line-height: 46px;
  display: block;
}
#contact #contact_form small {
  line-height: 20px;
  font-size: 20px;
  width: 15px;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  padding-top: 0;
  color: var(--contrast-color);
}
#contact #contact_form .input-row,
#contact #contact_form .input-button,
#contact #contact_form .select-row {
  position: relative;
  width: 48%;
  clear: both;
  color: var(--text-color2);
  margin: 0 1% 5px;
  border-bottom: solid 1px rgba(65, 65, 65, 0.18);
  background-color: rgba(235, 235, 235, 0.5);
}
#contact #contact_form .long-area {
  width: 98%;
}
#contact #contact_form .middle-area {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: none;
}
#contact #contact_form input[type=text],
#contact #contact_form input[type=password],
#contact #contact_form .input-button,
#contact #contact_form select,
#contact #contact_form textarea,
#contact #contact_form .input-box {
  height: 46px;
  width: 80%;
  float: right;
  background-color: transparent;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  color: var(--text-color);
}
#contact #contact_form input[type=text] option,
#contact #contact_form input[type=password] option,
#contact #contact_form .input-button option,
#contact #contact_form select option,
#contact #contact_form textarea option,
#contact #contact_form .input-box option {
  color: var(--text-color);
  margin-left: 10%;
  display: block;
}
#contact #contact_form input[type=text]:focus,
#contact #contact_form input[type=password]:focus,
#contact #contact_form .input-button:focus,
#contact #contact_form select:focus,
#contact #contact_form textarea:focus,
#contact #contact_form .input-box:focus {
  border-color: #C89F63;
}
#contact #contact_form textarea {
  height: 150px;
  line-height: 24px;
  padding-top: 13px;
}
#contact #contact_form .small-text {
  font-size: clamp(17px, 1.1vw, 1em);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--text-color);
  padding-left: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background: none;
  line-height: 1em;
}
#contact #contact_form .small-text label {
  position: relative;
}
#contact #contact_form .small-text a {
  color: var(--text-color2);
}
#contact #contact_form .small-text a span {
  display: inline;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#contact #contact_form .small-text a:hover span {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: var(--item-background);
  color: var(--background);
}
#contact #contact_form .input-button {
  width: 45%;
  overflow: hidden;
  background: none;
  float: right;
  background-color: var(--item-background);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#contact #contact_form .input-button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: var(--background);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#contact #contact_form .input-button a:hover {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background-color: var(--item-background);
  color: var(--background);
}
#contact #contact_form .input-button::before {
  background: rgba(255, 255, 255, 0.8);
  content: "";
  height: 155px;
  left: -75px;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 1;
}
#contact #contact_form .input-button:hover::before {
  left: 120%;
  -webkit-transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
#contact #contact_form img.rand-img {
  position: absolute;
  right: 0px;
  bottom: 1px;
  width: 90px;
  height: 45px;
  cursor: pointer;
}
#contact #contact_form input[type=reset],
#contact #contact_form input[type=submit],
#contact #contact_form input[type=button],
#contact #contact_form input[type=file] {
  font-family: "Noto Serif TC", serif, "Forum", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  margin: 0 auto;
  min-height: 20px;
  padding: 13px 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  letter-spacing: 10px;
  font-weight: 550;
  color: var(--background);
  background: #52abff;
  border: none;
}
#contact #contact_form input[type=checkbox] + label,
#contact #contact_form input[type=radio] + label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contact #contact_form .checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
#contact #contact_form .checkbox .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: #ccc 1px solid;
  border-radius: 5px;
  /* 可以設置為圓角或方形 */
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
#contact #contact_form .checkbox input:checked + .checkmark {
  background-color: var(--item-background);
  border-color: #3290B1;
}
#contact #contact_form .checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#contact #contact_form .checkbox input:checked + .checkmark:after {
  display: block;
}
#contact #contact_form .checkbox .checkmark:after {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -110%) rotate(45deg) scale(2, 2);
          transform: translate(-50%, -110%) rotate(45deg) scale(2, 2);
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
}

#submit.loading {
  background-image: url(../images/loader.gif);
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  background-size: contain;
  background-color: rgba(0, 0, 0, 0.5);
}

#result {
  width: 90%;
  color: var(--text-color2);
  font-size: 18px;
  text-align: center;
  padding: 50px 0;
}

/*============private===============*/
#private {
  width: 75%;
  margin: 0 auto;
}
#private .text-box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#private .text-box h3,
#private .text-box h4,
#private .text-box .con {
  text-align: left;
}
#private .text-box h3 {
  padding-bottom: 50px;
}
#private .text-box h4,
#private .text-box .con {
  padding-bottom: 35px;
  text-align: justify;
}
#private .text-box h4 {
  font-size: calc(var(--text-base-size) * 2.6);
  line-height: 1.5em;
}
#private .text-box .con {
  font-size: 16px;
  letter-spacing: 0;
}
#private .text-box .con li {
  line-height: 2em;
}

@media screen and (max-width: 1400px) {
  #contact .text-box h3 {
    font-size: calc(var(--text-base-size) * 4.2 * 0.7);
  }
}
@media screen and (max-width: 1100px) {
  .mobile-hide {
    display: none !important;
  }
  .pc-hide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .grid-5-12,
  .grid-6-12,
  .grid-7-12 {
    width: 100%;
  }
  .section:nth-child(2),
  :nth-child(3) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .section:not(:first-child) .content {
    height: auto !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px auto;
  }
  /*============section1===============*/
  #section1 .content .text-box {
    margin: 0 5%;
  }
  /*============section2===============*/
  #section2 .content {
    background: none;
  }
  #section2,
  #section3,
  #section4,
  #section5,
  #contact {
    height: auto !important;
  }
  #section2 .fp-tableCell,
  #section3 .fp-tableCell,
  #section4 .fp-tableCell,
  #section5 .fp-tableCell,
  #contact .fp-tableCell {
    height: inherit !important;
  }
  #section2 .content,
  #section3 .content,
  #section4 .content,
  #section5 .content,
  #contact .content {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #section2 .content .pic-box,
  #section3 .content .pic-box,
  #section4 .content .pic-box,
  #section5 .content .pic-box,
  #contact .content .pic-box {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, rgb(255, 255, 255) 100%);
  }
  #section2 .content .pic-box img,
  #section3 .content .pic-box img,
  #section4 .content .pic-box img,
  #section5 .content .pic-box img,
  #contact .content .pic-box img {
    position: relative;
    z-index: -1;
  }
  #section2 .text-box,
  #section3 .text-box,
  #section4 .text-box,
  #section5 .text-box,
  #contact .text-box {
    width: 80%;
    padding: 100px 0;
    margin-top: 0 !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: none;
  }
  /*============section3===============*/
  #section3 .content {
    margin: 0 auto;
  }
  #section3 .content .text-box {
    padding: 150px 0 300px;
  }
  /*============section5===============*/
  #section5 .content .text-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #section5 .content .pic-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  /*============contact===============*/
  #contact .fp-tableCell {
    height: inherit !important;
  }
  #contact .content {
    margin: 100px auto;
  }
  #contact .content .text-box {
    margin: 0 auto !important;
    padding: 0;
  }
  #contact .content .text-box h3 {
    font-size: calc(var(--text-base-size) * 4.2 * 0.9);
  }
  #contact .content #contact_form {
    margin: 0 auto;
    width: 80%;
  }
  #contact .content #contact_form .text-box {
    width: 100%;
    padding: 100px 0 50px;
  }
  #contact #result {
    width: 100%;
    margin: 50px auto;
  }
  #contact .top-text-box .logo {
    width: 100%;
  }
  #contact .top-text-box .text {
    margin: 10px auto;
    width: 100%;
    max-width: 650px;
  }
}
@media screen and (max-width: 1000px) {
  #section3 .pic-box .swiper-wrapper .swiper-slide {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 680px) {
  .show-680 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide-680 {
    display: none;
  }
  /*============section1===============*/
  #section1 .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #section1 .content .text-box {
    padding-bottom: 0%;
  }
  #section1 .content .show-680 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  #section1 .content .logo {
    width: 80%;
    margin-bottom: 50px;
  }
  #section1 .content .en-img {
    position: relative;
    width: 100%;
    padding: 5px 0;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
  #section1 .content .en-img1 {
    width: 48%;
  }
  #section1 .content .en-img2 {
    width: 14%;
  }
  #section1 .content .en-img3 {
    width: 77%;
  }
  #section1 .content .ball1 {
    top: -5%;
    left: 42%;
  }
  #section1 .content .ball2 {
    top: 40%;
    left: 15%;
  }
  #section1 .content .ball3 {
    bottom: 15%;
    right: -8%;
  }
  /*============contact===============*/
  #contact .content .form .text-box,
  #private .text-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .content .form .text-box h3,
  #private .text-box h3 {
    font-size: calc(var(--text-base-size) * 4.2 * 0.8);
  }
  #contact .content .form #contact_form label,
  #private #contact_form label {
    font-size: 16px;
  }
  #contact .content .form #contact_form .row-box,
  #private #contact_form .row-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .content .form #contact_form .input-row,
  #contact .content .form #contact_form .input-button,
  #contact .content .form #contact_form .select-row,
  #contact .content .form #contact_form .small-text,
  #private #contact_form .input-row,
  #private #contact_form .input-button,
  #private #contact_form .select-row,
  #private #contact_form .small-text {
    width: 100%;
    clear: both;
    margin-left: 0;
  }
  #contact .content .form #contact_form .middle-area,
  #private #contact_form .middle-area {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 580px) {
  p,
  .con {
    letter-spacing: 0;
  }
  #contact #contact_form .text-box h3::after, #contact #contact_form .text-box h3::before {
    display: none;
  }
}
@media screen and (max-width: 510px) {
  .width-500-hide {
    display: none;
  }
  .width-500 {
    display: block;
  }
  .text-box h1 {
    font-size: calc(var(--text-base-size) * 4.6 * 0.8);
  }
  #contact #contact_form .text-box h3 {
    padding-bottom: 20px;
    display: block;
  }
  #contact #contact_form .text-box .text1 {
    padding-bottom: 10px;
  }
  #contact #contact_form .text-box .text-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact #contact_form .text-box .text-button a {
    width: 80%;
    margin: 0%;
  }
  #contact #contact_form .text-box .text-button a:last-child {
    width: 80%;
    margin: 0%;
  }
}
@media screen and (max-width: 450px) {
  #contact .content .form #contact_form input[type=text],
  #contact .content .form #contact_form textarea {
    width: 70%;
  }
}
@media screen and (max-width: 400px) {
  .text-box {
    width: 95%;
  }
  .text-box p,
  .text-box .con {
    font-size: calc(var(--text-base-size) * 2);
  }
  #contact .text-box .text1 {
    max-width: 230px;
    margin-top: 50px;
  }
  #contact .text-box .text-button a {
    width: 100%;
    max-width: -webkit-fit-content !important;
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
  }
  #contact .text-box .text-button a:last-child {
    width: 80%;
  }
  #contact .content .form #contact_form input[type=text],
  #contact .content .form #contact_form textarea {
    width: 65%;
  }
}
@media screen and (max-width: 360px) {
  #section2 #contact form .row-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #section2 #contact form .input-row,
  #section2 #contact form .input-button,
  #section2 #contact form .select-row {
    width: 98%;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
  #section2 #contact form .input-button {
    border: none;
  }
  #section2 #contact form label {
    position: relative;
    width: 100%;
  }
  #section2 #contact form input[type=text],
  #section2 #contact form input[type=password],
  #section2 #contact form select,
  #section2 #contact form textarea,
  #section2 #contact form .input-box,
  #section2 #contact form .small-text {
    width: 100%;
    padding-left: 0%;
  }
  #section2 #contact form .small-text {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */