@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poiret+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap");
body {
  font-family: "Josefin Sans", sans-serif, "STHeiti Light", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background: #FCFCFC;
  color: #000;
  display: flex;
  width: max-content;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  transition: background-color 0.8s ease-in-out;
}

main {
  display: flex;
}

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

.w100 {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  position: fixed;
  width: calc( 100% - 100px );
  margin: auto 50px;
  height: 100px;
  z-index: 1001;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.navbar .logo {
  max-width: 100px;
}
.navbar .logo img {
  width: 100%;
}
.navbar-menu {
  cursor: pointer;
}
.navbar-menu .label {
  color: #000;
  display: inline-block;
  -moz-transition: -moz-transform 1s ease-out;
  -o-transition: -o-transform 1s ease-out;
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
}
.navbar-menu .label:before {
  content: "MENU";
}
.show-nav .navbar-menu .label:before {
  content: "CLOSE";
}
.navbar:hover .label {
  opacity: 0.5;
}
.navbar-bg {
  opacity: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  background-color: #FDFDFD;
  z-index: 1000;
  pointer-events: none;
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -moz-transition: opacity 0.6s ease-out, -moz-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: opacity 0.6s ease-out, -o-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease-out, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.show-nav .navbar-bg {
  opacity: 1;
  will-change: opacity, transform;
  -moz-transform: scale(1.1, 1) translateY(0%);
  -ms-transform: scale(1.1, 1) translateY(0%);
  -webkit-transform: scale(1.1, 1) translateY(0%);
  transform: scale(1.1, 1) translateY(0%);
}
.navbar-wrap {
  position: absolute;
  left: 0;
  height: 0;
  width: 100%;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  -moz-transition: width 0s 3s;
  -o-transition: width 0s 3s;
  -webkit-transition: width 0s;
  -webkit-transition-delay: 3s;
  transition: width 0s 3s;
}
.show-nav .navbar-wrap {
  height: calc(100vh);
  height: 100%;
  position: fixed;
  z-index: 30;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.navbar-inner {
  position: relative;
  margin: auto;
  display: flex;
  z-index: 1001;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding: 0px 80px;
}

nav li {
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: opacity 0.6s 0s, -moz-transform 0.6s 0s;
  -o-transition: opacity 0.6s 0s, -o-transform 0.6s 0s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  -webkit-transition-delay: 0s, 0s;
  transition: opacity 0.6s 0s, transform 0.6s 0s;
}
.show-nav nav li {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.show-nav nav li:nth-child(1) {
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.show-nav nav li:nth-child(2) {
  -moz-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.show-nav nav li:nth-child(3) {
  -moz-transition-delay: 1s;
  -o-transition-delay: 1s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.show-nav nav li:nth-child(4) {
  -moz-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.show-nav nav li:nth-child(5) {
  -moz-transition-delay: 1.4s;
  -o-transition-delay: 1.4s;
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.show-nav nav li:nth-child(6) {
  -moz-transition-delay: 1.6s;
  -o-transition-delay: 1.6s;
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
nav a {
  display: block;
  position: relative;
  margin: 15px 0;
  font-weight: 400;
}
nav .num {
  color: #aaaaaa;
  position: absolute;
  top: 2px;
  left: -30px;
  font-size: 0.75rem;
}
nav .en {
  font-size: 1.5rem;
  color: #666666;
  text-transform: uppercase;
}
nav .tw {
  position: absolute;
  left: 0;
  font-size: 1.25rem;
  opacity: 0;
  color: #888;
}
nav .en, nav .tw {
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
nav a:hover .tw {
  opacity: 1;
}
nav a:hover .en {
  opacity: 0;
}

.hamburger {
  cursor: pointer;
  z-index: 1;
  display: none;
}
.hamburger-bar {
  width: 30px;
  height: 1px;
  margin: 10px 0;
  background: #716650;
  -moz-transition: -moz-transform 0.6s, opacity 0.6s;
  -o-transition: -o-transform 0.6s, opacity 0.6s;
  -webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
  transition: transform 0.6s, opacity 0.6s;
}
.show-nav .hamburger-bar:nth-child(1) {
  -moz-transform: translateY(11px) rotate(45deg);
  -ms-transform: translateY(11px) rotate(45deg);
  -webkit-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
}
.show-nav .hamburger-bar:nth-child(2) {
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.show-nav .hamburger-bar:nth-child(3) {
  -moz-transform: translateY(-11px) rotate(-45deg);
  -ms-transform: translateY(-11px) rotate(-45deg);
  -webkit-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
}
.hamburger:hover .hamburger-bar:nth-child(1) {
  -moz-transform: translateY(11px) rotate(90deg);
  -ms-transform: translateY(11px) rotate(90deg);
  -webkit-transform: translateY(11px) rotate(90deg);
  transform: translateY(11px) rotate(90deg);
}
.show-nav .hamburger:hover .hamburger-bar:nth-child(1) {
  -moz-transform: translateY(11px);
  -ms-transform: translateY(11px);
  -webkit-transform: translateY(11px);
  transform: translateY(11px);
}
.hamburger:hover .hamburger-bar:nth-child(3) {
  -moz-transform: translateY(-11px);
  -ms-transform: translateY(-11px);
  -webkit-transform: translateY(-11px);
  transform: translateY(-11px);
}

.credits {
  position: fixed;
  right: 58px;
  bottom: 30px;
  font-size: 0.5rem;
  color: #AFA38A;
  text-align: right;
  display: none;
  z-index: 1001;
}
.show-nav .credits {
  display: block;
}
.credits a {
  color: #AFA38A;
}
.credits a:hover {
  opacity: 0.5;
}

.footer {
  z-index: 20;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 15px 50px;
  font-size: 0.5rem;
  color: #AFA38A;
  min-height: 20px;
}
.footer div {
  display: inline-block;
  margin-left: 5px;
}
.footer a {
  color: #AFA38A;
}
.footer a:hover {
  opacity: 0.5;
}

.main {
  height: 100vh;
  width: auto;
  box-sizing: border-box;
  position: relative;
  background: #FCFCFC;
}

.title {
  font-weight: normal;
  margin-bottom: 40px;
  color: #000;
  display: flex;
}
.title-inner {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.title .caption {
  font-size: 1.25rem;
  text-transform: uppercase;
}
.title .subtitle {
  font-size: 0.875rem;
  position: relative;
  width: 100%;
  text-align: right;
  color: #888;
}
.title .subtitle:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 8px;
  height: 5px;
  width: 5px;
  background: #aaaaaa;
}
.title .subtitle:after {
  content: "";
  width: calc(100% - 70px);
  left: 1px;
  top: 10px;
  height: 1px;
  position: absolute;
  background: #aaaaaa;
}

.text {
  color: #666666;
  font-size: 0.875rem;
}

.inner-text {
  margin: 10px 0;
}

.fadeIn {
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.fadeIn.show {
  opacity: 1;
}

.moveIn {
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.moveIn.show {
  opacity: 1;
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.loading {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}
.loading-bg {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #FFF;
}
.loading-logo {
  position: absolute;
  max-width: 50px;
  max-height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  margin: 0 auto;
  opacity: 0;
}
.loading-logo img, .loading-logo svg {
  width: 100%;
  height: 100%;
  margin: auto;
}
.loading-logo.show-loading {
  opacity: 1;
  -moz-transition: -moz-transform 0.6s, opacity 0.6s;
  -o-transition: -o-transform 0.6s, opacity 0.6s;
  -webkit-transition: -webkit-transform 0.6s, opacity 0.6s;
  transition: transform 0.6s, opacity 0.6s;
}
.loading-text {
  position: absolute;
  bottom: calc(50% - 65px);
  left: calc(50% - 42px);
  text-align: center;
  width: 82px;
  font-size: 0.75rem;
}
.loading-w {
  position: relative;
  display: inline-block;
}

.logo .path {
  opacity: 0;
  transform: translateX(25px);
  animation: dash 900ms;
  animation-fill-mode: forwards;
}
.logo .path:nth-child(9) {
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.logo .path:nth-child(8) {
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.logo .path:nth-child(7) {
  -moz-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.logo .path:nth-child(6) {
  -moz-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.logo .path:nth-child(5) {
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.logo .path:nth-child(4) {
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.logo .path:nth-child(3) {
  -moz-animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.logo .path:nth-child(2) {
  -moz-animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.logo .path:nth-child(1) {
  -moz-animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

@keyframes dash {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.w1 {
  -moz-animation: w1 3s infinite;
  -webkit-animation: w1 3s infinite;
  animation: w1 3s infinite;
}

.w2 {
  -moz-animation: w2 3s infinite;
  -webkit-animation: w2 3s infinite;
  animation: w2 3s infinite;
}

.w3 {
  -moz-animation: w3 3s infinite;
  -webkit-animation: w3 3s infinite;
  animation: w3 3s infinite;
}

.w4 {
  -moz-animation: w4 3s infinite;
  -webkit-animation: w4 3s infinite;
  animation: w4 3s infinite;
}

.w5 {
  -moz-animation: w5 3s infinite;
  -webkit-animation: w5 3s infinite;
  animation: w5 3s infinite;
}

.w6 {
  -moz-animation: w6 3s infinite;
  -webkit-animation: w6 3s infinite;
  animation: w6 3s infinite;
}

.w7 {
  -moz-animation: w7 3s infinite;
  -webkit-animation: w7 3s infinite;
  animation: w7 3s infinite;
}

@-moz-keyframes w1 {
  0% {
    top: 0;
  }
  10% {
    top: -10px;
  }
  20% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes w1 {
  0% {
    top: 0;
  }
  10% {
    top: -10px;
  }
  20% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@keyframes w1 {
  0% {
    top: 0;
  }
  10% {
    top: -10px;
  }
  20% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-moz-keyframes w2 {
  0% {
    top: 0;
  }
  10% {
    top: 0;
  }
  20% {
    top: -10px;
  }
  30% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes w2 {
  0% {
    top: 0;
  }
  10% {
    top: 0;
  }
  20% {
    top: -10px;
  }
  30% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@keyframes w2 {
  0% {
    top: 0;
  }
  10% {
    top: 0;
  }
  20% {
    top: -10px;
  }
  30% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-moz-keyframes w3 {
  0% {
    top: 0;
  }
  15% {
    top: 0;
  }
  25% {
    top: -10px;
  }
  35% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes w3 {
  0% {
    top: 0;
  }
  15% {
    top: 0;
  }
  25% {
    top: -10px;
  }
  35% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@keyframes w3 {
  0% {
    top: 0;
  }
  15% {
    top: 0;
  }
  25% {
    top: -10px;
  }
  35% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-moz-keyframes w4 {
  0% {
    top: 0;
  }
  20% {
    top: 0;
  }
  30% {
    top: -10px;
  }
  40% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes w4 {
  0% {
    top: 0;
  }
  20% {
    top: 0;
  }
  30% {
    top: -10px;
  }
  40% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@keyframes w4 {
  0% {
    top: 0;
  }
  20% {
    top: 0;
  }
  30% {
    top: -10px;
  }
  40% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-moz-keyframes w5 {
  0% {
    top: 0;
  }
  25% {
    top: 0;
  }
  35% {
    top: -10px;
  }
  45% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes w5 {
  0% {
    top: 0;
  }
  25% {
    top: 0;
  }
  35% {
    top: -10px;
  }
  45% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@keyframes w5 {
  0% {
    top: 0;
  }
  25% {
    top: 0;
  }
  35% {
    top: -10px;
  }
  45% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-moz-keyframes w6 {
  0% {
    top: 0;
  }
  30% {
    top: 0;
  }
  40% {
    top: -10px;
  }
  50% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes w6 {
  0% {
    top: 0;
  }
  30% {
    top: 0;
  }
  40% {
    top: -10px;
  }
  50% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@keyframes w6 {
  0% {
    top: 0;
  }
  30% {
    top: 0;
  }
  40% {
    top: -10px;
  }
  50% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-moz-keyframes w7 {
  0% {
    top: 0;
  }
  35% {
    top: 0;
  }
  45% {
    top: -10px;
  }
  55% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes w7 {
  0% {
    top: 0;
  }
  35% {
    top: 0;
  }
  45% {
    top: -10px;
  }
  55% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@keyframes w7 {
  0% {
    top: 0;
  }
  35% {
    top: 0;
  }
  45% {
    top: -10px;
  }
  55% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
@media screen and (min-width: 1101px) {
  body.hori {
    overflow-x: auto;
  }
}
@media screen and (max-width: 1100px) {
  body, section {
    display: flex;
    width: 100%;
    height: max-content;
    flex-flow: row wrap;
    overflow: unset;
    align-items: self-start;
  }

  main {
    overflow: visible;
  }

  .navbar {
    margin: 0;
    padding: 0 50px;
    width: calc( 100% - 100px );
    height: 80px;
    background: #FFF;
  }
  .navbar-menu .label {
    display: none;
  }
  .navbar .logo {
    max-width: 85px;
  }

  nav .en {
    font-size: 1.25rem;
  }
  nav .tw {
    font-size: 1rem;
  }

  .show-nav .navbar {
    background-color: transparent;
  }

  .hamburger {
    display: block;
  }
  .hamburger-bar {
    width: 25px;
    margin: 6px 0;
  }
  .show-nav .hamburger-bar:nth-child(1) {
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
  .show-nav .hamburger-bar:nth-child(2) {
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  .show-nav .hamburger-bar:nth-child(3) {
    -moz-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
  .hamburger:hover .hamburger-bar:nth-child(1) {
    -moz-transform: translateY(7px) rotate(90deg);
    -ms-transform: translateY(7px) rotate(90deg);
    -webkit-transform: translateY(7px) rotate(90deg);
    transform: translateY(7px) rotate(90deg);
  }
  .show-nav .hamburger:hover .hamburger-bar:nth-child(1) {
    -moz-transform: translateY(7px);
    -ms-transform: translateY(7px);
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
  }
  .hamburger:hover .hamburger-bar:nth-child(3) {
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }

  .credits {
    display: none !important;
  }

  .footer {
    position: relative;
    padding: 10px 50px;
  }
  .footer div {
    display: block;
  }
}
@media screen and (max-height: 500px) {
  body, section {
    display: flex;
    width: 100%;
    height: max-content;
    flex-flow: row wrap;
    overflow: unset;
    align-items: self-start;
  }

  .navbar {
    margin: 0;
    padding: 0 50px;
    width: calc( 100% - 100px );
  }

  nav a {
    margin: 8px 0;
  }
  nav .en {
    font-size: 0.9rem;
  }
  nav .tw {
    font-size: 0.8rem;
  }
  nav .num {
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  main {
    overflow: visible;
  }

  .footer {
    position: relative;
    padding: 10px 50px;
  }
}
@media screen and (max-width: 640px) and (max-height: 500px) {
  .navbar {
    margin: 0;
    padding: 0 25px;
    width: calc( 100% - 50px );
  }

  .footer {
    padding: 10px 25px;
  }
}
@media screen and (max-width: 640px) {
  /* set mobile */
  .navbar {
    margin: 0;
    padding: 0 25px;
    width: calc( 100% - 50px );
  }

  nav .en {
    font-size: 0.9rem;
  }
  nav .tw {
    font-size: 0.8rem;
  }
  nav .num {
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  .footer {
    padding: 10px 25px;
  }
}
