@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400;600&family=Inconsolata:wght@400;600&display=swap");
body {
  font-family: "Arimo", Arial, Helvetica, "STHeiti Light", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #666;
  -webkit-text-size-adjust: 100%;
  background: #FFF;
}

a {
  text-decoration: none;
  color: #666;
}
a:hover {
  color: #666;
}

.loading {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #E4DED2;
  z-index: 20;
  -moz-transition: height 0.6s 1s;
  -o-transition: height 0.6s 1s;
  -webkit-transition: height 0.6s;
  -webkit-transition-delay: 1s;
  transition: height 0.6s 1s;
}
.loading.show-intro {
  height: 0;
}
.loading-bg {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  background: #ded7c8;
  box-shadow: 2px 0 6px #E4DED2;
  opacity: 0.3;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -moz-transition: height 0.6s 0.2s, -moz-transform 0.8s cubic-bezier(0.08, 0.7, 0.79, 0.34) 0.4s;
  -o-transition: height 0.6s 0.2s, -o-transform 0.8s cubic-bezier(0.08, 0.7, 0.79, 0.34) 0.4s;
  -webkit-transition: height 0.6s, -webkit-transform 0.8s cubic-bezier(0.08, 0.7, 0.79, 0.34);
  -webkit-transition-delay: 0.2s, 0.4s;
  transition: height 0.6s 0.2s, transform 0.8s cubic-bezier(0.08, 0.7, 0.79, 0.34) 0.4s;
}
.loading-bg p {
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: linear-gradient(to top, #d1c7b2, #ffffff);
  -moz-transition: height 0.8s cubic-bezier(0.08, 0.7, 0.79, 0.34) 0.2s;
  -o-transition: height 0.8s cubic-bezier(0.08, 0.7, 0.79, 0.34) 0.2s;
  -webkit-transition: height 0.8s cubic-bezier(0.08, 0.7, 0.79, 0.34);
  -webkit-transition-delay: 0.2s;
  transition: height 0.8s cubic-bezier(0.08, 0.7, 0.79, 0.34) 0.2s;
}
.show-intro .loading-bg {
  height: 100%;
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.show-intro .loading-bg p {
  height: 0;
}

.wrapper {
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 16px 80px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  z-index: 10;
  -moz-transition: opacity 0.6s, padding 0.4s, background 0.6s;
  -o-transition: opacity 0.6s, padding 0.4s, background 0.6s;
  -webkit-transition: opacity 0.6s, padding 0.4s, background 0.6s;
  transition: opacity 0.6s, padding 0.4s, background 0.6s;
}
.header.onscroll {
  padding: 12px 80px;
  background: #FFF;
  box-shadow: 0px 0px 3px #ddd;
}
.header.onscroll .header-btn {
  top: 28px;
}
.header-btn {
  position: absolute;
  top: 32px;
  cursor: pointer;
  display: none;
  -moz-transition: top 0.6s;
  -o-transition: top 0.6s;
  -webkit-transition: top 0.6s;
  transition: top 0.6s;
}
.header-menu:hover .header-menu-bar:last-child {
  width: 30px;
}
.header-menu-bar {
  width: 30px;
  height: 1px;
  margin: 6px 0;
  background: #000;
}
.header-menu-bar:last-child {
  width: 20px;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}

.logo {
  position: relative;
  width: fit-content;
  height: 63px;
}
.logo img, .logo svg {
  height: 100%;
}

.menu {
  margin-left: 60px;
  font-family: "Inconsolata", "Arimo", serif, "STHeiti Light", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}
.menu-close {
  position: absolute;
  top: 42px;
  right: 70px;
  cursor: pointer;
  opacity: 0;
  -moz-transition: opacity 0.6s 1s;
  -o-transition: opacity 0.6s 1s;
  -webkit-transition: opacity 0.6s;
  -webkit-transition-delay: 1s;
  transition: opacity 0.6s 1s;
}
.show-menu .menu-close {
  opacity: 1;
  z-index: 11;
}
.menu-close-bar {
  width: 30px;
  height: 1px;
  background: #666;
  position: absolute;
}
.menu-close-bar:nth-child(1) {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.menu-close-bar:nth-child(2) {
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.menu-nav {
  white-space: nowrap;
}
.menu-list {
  position: relative;
}
.menu-list li {
  position: relative;
  margin-left: 40px;
  float: left;
}
.menu-list li:nth-child(1) {
  margin-left: unset;
}
.menu-list li .tw {
  position: absolute;
  left: 50%;
  top: 1px;
  text-align: center;
  font-size: 0.95em;
  white-space: nowrap;
  opacity: 0;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.menu-list li .en {
  font-weight: 300;
  font-size: 1rem;
}
.menu-list li .en, .menu-list li .tw {
  display: inline-block;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.menu-list li .en:after, .menu-list li .tw:after {
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  background: #9EA86C;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.menu-list li:hover .en {
  opacity: 0;
}
.menu-list li:hover .en:after {
  width: 0;
}
.menu-list li:hover .tw {
  opacity: 1;
}
.menu-list li:hover .tw:after {
  width: 100%;
}
.menu-list li.active .en:after, .menu-list li.active .tw:after {
  width: 100%;
}

.top {
  position: relative;
  margin: 95px 80px 80px;
  height: calc(100vh - 160px - 15px);
}
.top-img {
  width: 100%;
  height: 100%;
}
.top-image {
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.top-capital {
  width: 90%;
  font-weight: normal;
  color: #FFF;
  font-family: "Inconsolata", "Arimo", serif, "STHeiti Light", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  text-align: center;
  text-shadow: 0 0 5px #666;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.top-capital .en {
  font-size: 28px;
}
.top-capital .tw {
  font-size: 1rem;
}
.top-video {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.top-video-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#indexVideo, #indexVideo2, #aboutVideo, #aboutVideo2 {
  width: 100%;
  height: 100%;
}

.main {
  position: relative;
  background: #FFF;
  padding: 100px 0;
  -moz-transition: -moz-transform 1s;
  -o-transition: -o-transform 1s;
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s;
  overflow: hidden;
  z-index: 1;
}

.section {
  padding: 100px 0;
}

.title {
  font-family: "Inconsolata", "Arimo", serif, "STHeiti Light", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  width: fit-content;
}
.title .en {
  color: #464721;
  font-size: 1.5rem;
}
.title .en:after {
  content: "";
  width: 80px;
  height: 1px;
  background: #333;
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 1px;
}
.title .tw {
  color: #000;
}

.text {
  font-size: 0.95em;
}
.text p {
  margin-top: 20px;
}
.text p:nth-child(1) {
  margin-top: unset;
}

.btn {
  font-size: 0.875em;
  margin-top: 30px;
}
.btn a {
  position: relative;
  color: #888;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.btn a:hover {
  color: #9EA86C;
}

.footer {
  font-size: 0.75em;
}
.footer-inner {
  padding: 0 90px 40px 80px;
}
.footer-wrap {
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.footer-content span {
  display: block;
}
.footer-link {
  margin-top: -3px;
}
.footer-link a {
  display: inline-block;
  font-size: 20px;
  margin-left: 10px;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-link a:hover {
  color: #9EA86C;
}

.media {
  position: fixed;
  right: 40px;
  bottom: 90px;
  width: 30px;
  z-index: 5;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.media-link {
  margin-top: -5px;
}
.media-link a {
  font-size: 22px;
  margin-left: 5px;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.media-link a:hover {
  color: #9EA86C;
}

.scroll-down {
  position: absolute;
  width: 30px;
  height: 50px;
  bottom: -80px;
  left: 50%;
  cursor: pointer;
  overflow: hidden;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.scroll-down-line {
  width: 1px;
  height: 100%;
  margin: auto;
  background: #666;
  -moz-animation: scrollLine 1.8s ease infinite;
  -webkit-animation: scrollLine 1.8s ease infinite;
  animation: scrollLine 1.8s ease infinite;
}
.scroll-top {
  position: fixed;
  right: 40px;
  bottom: 50px;
  width: 30px;
  height: 30px;
  background: #f6f6f6;
  z-index: 5;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  -moz-transition: opacity 0.6s, background 0.6s;
  -o-transition: opacity 0.6s, background 0.6s;
  -webkit-transition: opacity 0.6s, background 0.6s;
  transition: opacity 0.6s, background 0.6s;
}
.scroll-top:hover {
  background: #E4DED2;
}
.scroll-top:hover .scroll-top-arrow {
  border-right: 1px solid #464721;
  border-bottom: 1px solid #464721;
}
.scroll-top-arrow {
  width: 8px;
  height: 8px;
  border-right: 1px solid #666;
  border-bottom: 1px solid #666;
  position: absolute;
  top: 13px;
  left: 11px;
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  -moz-transition: border-right 0.6s, border-bottom 0.6s;
  -o-transition: border-right 0.6s, border-bottom 0.6s;
  -webkit-transition: border-right 0.6s, border-bottom 0.6s;
  transition: border-right 0.6s, border-bottom 0.6s;
}

@-moz-keyframes scrollLine {
  0% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  60% {
    -moz-transform: translateY(0%);
    transform: translateY(0%);
  }
  100% {
    -moz-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  60% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes scrollLine {
  0% {
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  60% {
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  100% {
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.fadeUp {
  opacity: 0;
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.fadeUp.show {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadeDown {
  opacity: 0;
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.fadeDown.show {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadeLeft {
  opacity: 0;
  -moz-transform: translateX(30px);
  -ms-transform: translateX(30px);
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.fadeLeft.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadeRight {
  opacity: 0;
  -moz-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.fadeRight.show {
  opacity: 1;
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.imgLeft {
  position: relative;
}
.imgLeft:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.imgLeft.show:after {
  width: 0;
}

.imgRight {
  position: relative;
}
.imgRight:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.imgRight.show:after {
  width: 0;
}

.imgTop {
  position: relative;
}
.imgTop:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  -moz-transition: height 0.6s;
  -o-transition: height 0.6s;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}
.imgTop.show:after {
  height: 0;
}

.imgBottom {
  position: relative;
}
.imgBottom:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  -moz-transition: height 0.6s;
  -o-transition: height 0.6s;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}
.imgBottom.show:after {
  height: 0;
}

@media screen and (max-width: 1100px) {
  /* set tablet */
  .header-btn {
    display: block;
  }
  .header-menu {
    right: 80px;
  }

  .menu {
    z-index: 11;
  }
  .menu-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #E4DED2;
    box-sizing: border-box;
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -moz-transition: -moz-transform 1s;
    -o-transition: -o-transform 1s;
    -webkit-transition: -webkit-transform 1s;
    transition: transform 1s;
  }
  .show-menu .menu-nav {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .menu-list {
    position: relative;
    top: 50%;
    left: 50%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -moz-transition: opacity 0.6s 1s;
    -o-transition: opacity 0.6s 1s;
    -webkit-transition: opacity 0.6s;
    -webkit-transition-delay: 1s;
    transition: opacity 0.6s 1s;
  }
  .show-menu .menu-list {
    opacity: 1;
  }
  .menu-list li {
    float: unset;
    margin: 15px 0;
    text-align: center;
  }
  .menu-list li.active .en:after, .menu-list li.active .tw:after {
    width: 0%;
  }

  .footer-inner {
    padding: 0 90px 40px 25px;
  }
}
@media screen and (max-width: 900px) {
  .menu-list li {
    float: unset;
    margin: 20px 0;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  /* set mobile */
  .header {
    padding: 16px 40px;
  }
  .header.onscroll {
    padding: 12px 40px;
  }
  .header-menu {
    right: 40px;
  }

  .menu-close {
    right: 70px;
  }

  .top {
    margin: 95px 40px 80px;
  }
  .top-capital .en {
    font-size: 1.5rem;
  }

  .main {
    padding: 50px 0;
  }

  .section {
    padding: 50px 0;
  }

  .title .en {
    font-size: 1.3rem;
  }
  .title .en:after {
    width: 60px;
  }
  .title .tw {
    font-size: 0.95em;
  }

  .footer-inner {
    padding: 0 40px 30px;
  }
  .footer-wrap {
    -webkit-flex-flow: column-reverse;
    flex-flow: column-reverse;
    padding-right: 30px;
  }
  .footer-link {
    margin: 0 0 10px;
  }
  .footer-link a:nth-child(1) {
    margin-left: unset;
  }

  .media {
    right: 20px;
    bottom: 60px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 460px) {
  .footer-content span {
    display: initial;
  }
}
