@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Play:wght@400;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  height: 32px;
  line-height: 32px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  padding: 0;
  border: 0;
  width: 100%;
  color: #fff;
  display: block;
  background-color: #008ed6;
  letter-spacing: .05em;
  -moz-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.btn:hover, .btn:active {
  background-color: #162c4c;
}
.btn.active {
  background-color: #162c4c;
}

.icon {
  width: 36px;
  height: 36px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  border-radius: 0;
  position: relative;
}
.icon-facebook {
  background-image: url(../images/icon-facebook.png);
}
.icon-line {
  background-image: url(../images/icon-line.png);
}
.icon-language {
  background-image: url(../images/icon-language.svg);
  width: 20px;
  height: 20px;
  display: block;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

html {
  width: 100%;
}

body {
  font: 1em/1.6 'Noto Sans TC', Arial, 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  background: #001a45;
  color: #fff;
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  -moz-outline-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: 'Noto Sans TC', Arial, 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

.container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 20px;
  position: relative;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-block {
  display: inline-block;
}

.scroll--hidden {
  overflow: hidden;
}

.in-view {
  opacity: 0;
}

.site-content {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: calc(100vh - 220px);
}

.header--sticky {
  padding-top: 220px;
}

.site-header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
}
.site-header .bg {
  background-color: #001333;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  opacity: 0;
}
.site-header .logo {
  position: absolute;
  top: 55px;
  left: 55px;
  width: 300px;
  height: 84px;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  font-size: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/logo.png);
  z-index: 2;
}
.site-header .mail {
  display: none;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
  letter-spacing: .1em;
  margin-bottom: 25px;
}
.site-header .mail a:hover, .site-header .mail a:active {
  color: #00a0e9;
}
.site-header.sticky, .site-header.is-view {
  height: 70px;
}
.site-header.sticky .logo, .site-header.is-view .logo {
  top: 14px;
  width: 205px;
  height: 42px;
  background-image: url(../images/logo_s.png);
}
.site-header.sticky .bg, .site-header.is-view .bg {
  opacity: 1;
}
.site-header.sticky .site-menu, .site-header.is-view .site-menu {
  top: 22px;
}
.site-header.sticky .menu-toggle, .site-header.is-view .menu-toggle {
  background-color: transparent;
}

.header-language {
  position: absolute;
  top: -2px;
  right: 15px;
  padding: 4px;
  border-radius: 28px;
}
.header-language.is-toggle {
  background-color: #014099;
}
.header-language.is-toggle .header-language__content {
  height: 2.6em;
}
.header-language.is-toggle .icon-language {
  background-image: url(../images/icon-language.svg);
}
.header-language__trigger {
  cursor: pointer;
  position: relative;
}
.header-language__content {
  height: 0;
  overflow: hidden;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.header-language li {
  padding-top: 2px;
}
.header-language a {
  font-size: 10px;
  text-align: center;
  display: block;
}
.header-language a:hover, .header-language a:active {
  color: #00a0e9;
}

.site-menu {
  position: absolute;
  top: 50px;
  right: 68px;
}

.menu-panel {
  z-index: 3;
  display: block;
}

.main-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  width: 100%;
  padding-right: 55px;
}
.main-menu li {
  position: relative;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.main-menu a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  width: 100%;
}
.main-menu a:hover, .main-menu a:active, .main-menu a.active {
  color: #00a0e9;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.index {
  background-image: none !important;
}
.index .site-header .container {
  max-width: 100%;
}
.index .site-header .logo {
  top: 55px;
  left: 55px;
}
.index .site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.index .site-footer .container {
  max-width: 100%;
}

.kv {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.kv .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/kv-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
.kv .bg:before, .kv .bg:after {
  content: "";
  position: absolute;
  background-repeat: repeat-x;
  background-size: 100% auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.kv .bg:before {
  background-position: center top;
  background-image: url(../images/kv-bg-top.png);
}
.kv .bg:after {
  background-position: center bottom;
  background-image: url(../images/kv-bg-bottom.png);
}
.kv .container {
  height: 100vh;
  max-width: 100%;
  -moz-animation: fadeInLeft 1s both;
  -webkit-animation: fadeInLeft 1s both;
  animation: fadeInLeft 1s both;
}
.kv-slogan {
  position: absolute;
  top: 50%;
  left: 7.2%;
  -moz-transform: translateY(-50%) translateZ(0);
  -ms-transform: translateY(-50%) translateZ(0);
  -webkit-transform: translateY(-50%) translateZ(0);
  transform: translateY(-50%) translateZ(0);
  width: 446px;
  width: 30.972222222%;
  height: 100%;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center 49.25%;
  background-image: url(../images/kv-slogan.png);
  opacity: 1;
}
.kv .animated {
  opacity: 1;
}

.page {
  position: relative;
  margin-bottom: 100px;
  -moz-animation: fadeIn 1s both;
  -webkit-animation: fadeIn 1s both;
  animation: fadeIn 1s both;
}
.page-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 60px;
}
.page-header__heading {
  width: 31.25%;
}
.page-header__image {
  width: calc(100% - 31.25%);
  height: 280px;
  background-image: url(../images/page.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  background-color: #001333;
  position: relative;
}
.page-header__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  visibility: hidden;
}
.page-content {
  padding-left: 31.25%;
  padding-right: 20px;
}
.page-content .container {
  padding: 0;
  margin: 0;
  max-width: 950px;
}
.page-title {
  font-size: 42px;
  line-height: 1.3;
  text-align: right;
  padding-right: 50px;
}
.page .en {
  font-size: 45px;
  font-family: 'Play', sans-serif;
}
.page p {
  margin-bottom: 1em;
  text-align: justify;
}
.page p:last-child {
  margin-bottom: 0;
}

.origin .page-header__image {
  background-image: url(../images/origin.jpg);
}
.origin .page-content .container {
  max-width: 800px;
}
.origin p {
  font-size: 18px;
  line-height: 44px;
  letter-spacing: .1em;
  margin-bottom: 44px;
}

.target .page-header__image {
  background-image: url(../images/target.jpg);
}
.target .top-text {
  font-size: 22px;
  line-height: 44px;
  letter-spacing: .1em;
  margin-bottom: 70px;
  max-width: 770px;
}
.target .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.target .item:nth-child(2n) {
  padding-left: 130px;
}
.target .item + .item {
  margin-top: 80px;
}
.target .item .image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.target .item .content {
  width: calc(100% - 160px);
  padding-left: 30px;
}
.target .item-1 .sub-text {
  max-width: 420px;
}
.target .item-2 .sub-text {
  max-width: 480px;
}
.target .item-3 .sub-text {
  max-width: 480px;
}
.target .item-4 .sub-text {
  max-width: 535px;
}
.target .main-text {
  font-size: 28px;
  line-height: 44px;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.target .sub-text {
  font-size: 16px;
  line-height: 36px;
  letter-spacing: .1em;
}

.director .page-header__image {
  background-image: url(../images/director.jpg);
}
.director .heading {
  font-size: 30px;
  line-height: 44px;
  font-weight: 400;
  letter-spacing: .1em;
  padding-left: 18px;
  margin-bottom: 55px;
  position: relative;
}
.director .heading:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 2px;
  height: 29px;
  background-color: #00a0e9;
}
.director .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -42px -20px 88px;
}
.director .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  width: calc(100% / 2 - 10px * 2);
  margin: 42px 10px;
}
.director .item .image {
  width: 121px;
  height: 121px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #001333;
}
.director .item .content {
  width: calc(100% - 121px);
  padding-left: 25px;
  padding-top: 8px;
}
.director .main-text {
  font-size: 30px;
  line-height: 44px;
  letter-spacing: .1em;
}
.director .sub-text {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: .1em;
  text-align: left;
}
.director .text-small {
  font-size: 16px;
  line-height: 44px;
  letter-spacing: .1em;
}

.contact .page-header__image {
  background-image: url(../images/contact.jpg);
}
.contact .top-text {
  font-size: 22px;
  line-height: 44px;
  letter-spacing: .1em;
  margin-bottom: 80px;
}
.contact .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.contact .item + .item {
  margin-top: 60px;
}
.contact .item .image {
  width: 95px;
  height: 95px;
  border-radius: 50%;
}
.contact .item .content {
  width: calc(100% - 95px);
  padding-left: 26px;
  padding-top: 10px;
}
.contact .main-text {
  font-size: 28px;
  line-height: 44px;
  letter-spacing: .1em;
}
.contact .sub-text {
  font-size: 16px;
  line-height: 36px;
  letter-spacing: .1em;
}
.contact a:hover, .contact a:active {
  color: #00a0e9;
}

.join .page-header__image {
  background-image: url(../images/join.jpg);
}
.join .top-text {
  font-size: 22px;
  line-height: 44px;
  letter-spacing: .1em;
  margin-bottom: 70px;
  max-width: 900px;
}
.join .item {
  position: relative;
  padding-left: 70px;
  padding-top: 8px;
}
.join .item + .item {
  margin-top: 85px;
}
.join .item:nth-child(3) {
  margin-top: 40px;
}
.join .item .number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 93px;
  line-height: 1;
  font-family: 'Play', sans-serif;
}
.join .main-text {
  font-size: 28px;
  line-height: 44px;
  letter-spacing: .1em;
}
.join .sub-text {
  font-size: 16px;
  line-height: 36px;
  letter-spacing: .1em;
}

.site-footer {
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
}
.site-footer .container {
  padding: 40px 55px;
}
.site-footer p {
  margin: 0;
}
.site-footer p + p {
  margin-top: 5px;
}
.site-footer .tel span {
  margin-right: 1em;
}
.site-footer .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.site-footer .social a {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.site-footer .social a + a {
  margin-left: 10px;
}
.site-footer .social a:hover, .site-footer .social a:active {
  opacity: .8;
}
.site-footer .icon {
  width: 30px;
  height: 30px;
}

.menu-toggle {
  position: absolute;
  top: 7px;
  right: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: none;
  width: 48px;
  height: 48px;
}

.c-hamburger {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 25px;
  height: 25px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  top: 11px;
  left: 12px;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
  -moz-transition: -moz-transform 0s 0.3s;
  -o-transition: -o-transform 0s 0.3s;
  -webkit-transition: -webkit-transform 0s;
  -webkit-transition-delay: 0.3s;
  transition: transform 0s 0.3s;
}
.c-hamburger span::before,
.c-hamburger span::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  height: 2px;
  background-color: #fff;
  -moz-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -moz-transition-delay: 0.3s, 0s;
  -o-transition-delay: 0.3s, 0s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.c-hamburger span::before {
  top: -7px;
  right: 0;
  -moz-transition-property: top, -moz-transform;
  -o-transition-property: top, -o-transform;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.c-hamburger span::after {
  bottom: -7px;
  right: 0;
  -moz-transition-property: bottom, -moz-transform;
  -o-transition-property: bottom, -o-transform;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
.c-hamburger.active span {
  background: none;
}
.c-hamburger.active span::before {
  top: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-hamburger.active span::after {
  bottom: 0;
  left: 0;
  right: 0;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-hamburger.active span::before, .c-hamburger.active span::after {
  -moz-transition-delay: 0s, 0.3s;
  -o-transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}

.to-top {
  position: fixed;
  bottom: -100px;
  right: 20px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 2;
  width: 64px;
  height: 64px;
  background-image: url(../images/totop.png);
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  margin: 0 auto;
  display: block;
  opacity: 0;
}
.to-top.is-view {
  opacity: 1;
  bottom: 20px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.post-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

@media (min-width: 1440px) {
  .origin .page-header__image {
    background-image: url(../images/lg/origin.jpg);
  }

  .target .page-header__image {
    background-image: url(../images/lg/target.jpg);
  }

  .director .page-header__image {
    background-image: url(../images/lg/director.jpg);
  }

  .contact .page-header__image {
    background-image: url(../images/lg/contact.jpg);
  }

  .join .page-header__image {
    background-image: url(../images/lg/join.jpg);
  }
}
@media (max-width: 1440px) {
  body {
    background-size: 100% auto;
  }
}
@media (max-width: 1200px) {
  .header--sticky {
    padding-top: 140px;
  }

  .site-header .logo {
    top: 32px;
    left: 32px;
    width: 200px;
    height: 55px;
  }

  .site-menu {
    top: 32px;
    right: 20px;
  }

  .main-menu li {
    padding: 0 15px;
  }

  .page-header {
    margin-bottom: 30px;
  }
  .page-header__image {
    height: 190px;
  }
  .page-title {
    font-size: 26px;
    padding-right: 30px;
  }
  .page .en {
    font-size: 27px;
  }

  .site-footer .container {
    padding: 35px 32px;
  }

  .index .site-header .logo {
    top: 32px;
    left: 32px;
    width: 200px;
    height: 55px;
  }

  .origin .page-header__image {
    background-position: right center;
  }
  .origin p {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  .target .top-text {
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 25px;
    max-width: 460px;
  }
  .target .item:nth-child(2n) {
    padding-left: 70px;
  }
  .target .item + .item {
    margin-top: 35px;
  }
  .target .item .image {
    width: 87px;
    height: 87px;
  }
  .target .item .content {
    width: calc(100% - 87px);
    padding-left: 16px;
  }
  .target .main-text {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
  }
  .target .sub-text {
    font-size: 12px;
    line-height: 24px;
    max-width: 100%;
  }
  .target .item-1 .sub-text {
    max-width: 285px;
  }
  .target .item-2 .sub-text {
    max-width: 320px;
  }
  .target .item-3 .sub-text {
    max-width: 320px;
  }
  .target .item-4 .sub-text {
    max-width: 360px;
  }

  .director .heading {
    font-size: 24px;
    line-height: 36px;
    padding-left: 14px;
    margin-bottom: 40px;
  }
  .director .heading:before {
    top: 8px;
    width: 2px;
    height: 24px;
  }
  .director .list {
    margin: -23px -10px 42px;
  }
  .director .item {
    width: calc(100% / 2 - 10px * 2);
    margin: 23px 10px;
    min-width: 310px;
  }
  .director .item .image {
    width: 94px;
    height: 94px;
  }
  .director .item .content {
    width: calc(100% - 94px);
    padding-left: 20px;
    padding-top: 10px;
  }
  .director .main-text {
    font-size: 24px;
    line-height: 32px;
  }
  .director .sub-text {
    font-size: 14px;
    line-height: 19px;
  }
  .director .text-small {
    font-size: 12px;
    line-height: 32px;
  }

  .contact .top-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .contact .item + .item {
    margin-top: 36px;
  }
  .contact .item .image {
    width: 57px;
    height: 57px;
  }
  .contact .item .content {
    width: calc(100% - 57px);
    padding-left: 16px;
    padding-top: 8px;
  }
  .contact .main-text {
    font-size: 18px;
    line-height: 24px;
  }
  .contact .sub-text {
    font-size: 12px;
    line-height: 22px;
  }

  .join .top-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .join .item {
    padding-left: 40px;
  }
  .join .item + .item {
    margin-top: 30px;
  }
  .join .item .number {
    top: 0;
    left: 0;
    font-size: 55px;
  }
  .join .main-text {
    font-size: 18px;
    line-height: 24px;
  }
  .join .sub-text {
    font-size: 12px;
    line-height: 22px;
  }
}
@media (max-width: 1366px) {
  .kv-slogan {
    background-position: center 48.75%;
  }
}
@media (max-width: 1000px) and (min-width: 768px) {
  .kv .bg {
    background-image: url(../images/kv-bg_m.jpg);
    background-position: center right;
    background-size: auto 100%;
    background-color: #010815;
  }
  .kv-slogan {
    background-image: url(../images/kv-slogan_m.png);
    background-position: center 50.75%;
  }
}
@media (max-width: 959px) {
  .director .lg-view {
    display: none;
  }
}
@media (max-width: 767px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .menu-toggle {
    display: block;
    top: 14px;
  }

  .menu-panel {
    display: none;
    background-color: #001a45;
  }
  .menu-panel.is-toggle {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    max-height: 100%;
    /* with viewportHeight */
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 94px;
  }

  .main-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    padding-right: 0;
  }
  .main-menu li {
    position: relative;
    padding: 0;
  }
  .main-menu li + li {
    margin-top: 40px;
  }
  .main-menu a {
    font-size: 24px;
    line-height: 44px;
    color: #fff;
  }

  .header-language {
    position: relative;
    right: 0;
    top: 0;
    padding: 36px 0 0;
    margin-bottom: 45px;
  }
  .header-language.is-toggle {
    background-color: transparent;
  }
  .header-language.is-toggle .header-language__content {
    height: inherit;
  }
  .header-language__trigger {
    position: absolute;
    left: calc(50% - 20px / 2);
    top: 0;
  }
  .header-language__content {
    height: auto;
    display: block;
  }
  .header-language li {
    padding-top: 0;
  }
  .header-language li + li {
    margin-top: 10px;
  }
  .header-language a {
    font-size: 16px;
    line-height: 36px;
    text-align: center;
    padding: 0;
  }

  .site-header .bg {
    height: 60px;
  }
  .site-header .logo {
    position: absolute;
    top: 25px;
    left: 20px;
    width: 200px;
    height: 55px;
  }
  .site-header .menu-toggle {
    top: 13px;
  }
  .site-header .mail {
    display: block;
  }
  .site-header.sticky, .site-header.is-view {
    height: 60px;
  }
  .site-header.sticky .logo {
    top: 10px;
    width: 202px;
    height: 40px;
  }
  .site-header.sticky .menu-toggle {
    top: 6px;
  }
  .site-header.is-view .bg {
    background-color: #001a45;
    z-index: 4;
    box-shadow: none;
  }
  .site-header.is-view .logo {
    top: 8px;
    width: 158px;
    height: 44px;
  }
  .site-header.is-view .menu-toggle {
    top: 6px;
  }
  .site-header.is-view .c-hamburger span {
    background-color: transparent;
  }
  .site-header.is-view .c-hamburger span::before,
  .site-header.is-view .c-hamburger span::after {
    background: #fff;
  }

  .site-content {
    min-height: calc(100vh - 100px);
  }

  .header--sticky {
    padding-top: 100px;
  }

  .site-footer {
    font-weight: 300;
    letter-spacing: .05em;
    font-size: 12px;
    line-height: 24px;
  }
  .site-footer .container {
    padding: 15px 20px;
  }
  .site-footer .icon {
    width: 25px;
    height: 25px;
  }
  .site-footer p + p {
    margin-top: 0;
  }

  .index .site-header .logo {
    top: 25px;
    left: 20px;
  }

  .kv .bg {
    background-image: url(../images/kv-bg_s.jpg);
    background-position: center;
  }
  .kv .bg:before, .kv .bg:after {
    background-size: auto 100%;
  }
  .kv .bg:before {
    background-image: url(../images/kv-bg-top_s.png);
  }
  .kv .bg:after {
    background-image: url(../images/kv-bg-bottom_s.png);
  }
  .kv-slogan {
    background-image: url(../images/kv-slogan_s.png);
    width: 310px;
    height: 76px;
    top: calc(182px + 76px / 2);
    left: calc(50% - 310px / 2);
  }

  .page {
    margin-bottom: 50px;
  }
  .page-header {
    display: block;
    margin-bottom: 25px;
  }
  .page-header__heading {
    width: 100%;
    padding: 25px 20px 15px;
  }
  .page-header__image {
    width: 100%;
    height: 190px;
  }
  .page-content {
    padding: 0;
  }
  .page-content .container {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 100%;
  }
  .page-title {
    font-size: 26px;
    line-height: 1.3;
    text-align: left;
    padding-right: 0;
  }
  .page .en {
    font-size: 27px;
  }
  .page .en br {
    display: none;
  }

  .target .item:nth-child(2n) {
    padding-left: 0;
  }
  .target .item-1 .sub-text,
  .target .item-2 .sub-text,
  .target .item-3 .sub-text,
  .target .item-4 .sub-text {
    max-width: 100%;
  }

  .director .list {
    display: block;
    margin: 0 0 65px;
  }
  .director .item {
    width: 100%;
    margin: 0 auto 30px;
  }
}
@media (max-width: 480px) {
  body {
    background-image: url(../images/footer-bg_s.png);
  }
}
@media (max-width: 360px) {
  .site-footer .copyright {
    font-size: 12px;
  }
}
@media (max-height: 900px) {
  .kv .bg:before, .kv .bg:after {
    background-size: auto 100%;
  }
}
@media (orientation: landscape) and (max-width: 767px) and (max-height: 640px) {
  .kv .bg {
    background-position: center 40%;
  }
  .kv-slogan {
    top: 35%;
  }
}
@media (orientation: landscape) and (min-width: 768px) and (max-width: 1000px) {
  .kv .bg {
    background-position: center right;
    background-size: cover;
    background-image: url(../images/kv-bg.jpg);
  }
  .kv-slogan {
    top: 50%;
  }

  .site-footer .container {
    padding: 20px 32px;
  }
}
