@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/earlyaccess/notosanstc.css);
/* 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: 56px;
  line-height: 56px;
  border-radius: 0;
  font-size: 16px;
  letter-spacing: .1em;
  text-align: center;
  padding: 0;
  border: 0;
  width: 186px;
  color: #fff;
  font-weight: 500;
  display: block;
  margin: 0 auto;
  background: #26449a;
  background: linear-gradient(90deg, #26449a 0%, #009ba4 100%);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  overflow: hidden;
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn:hover:before, .btn:active:before {
  left: 150%;
}
.btn:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  transition: all 3s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  height: 100%;
  top: 0;
  left: -150%;
  opacity: .1;
}

.icon {
  width: 35px;
  height: 35px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  border-radius: 5px;
  position: relative;
}
.icon-facebook {
  background-image: url(../images/facebook.svg);
}
.icon-line {
  background-image: url(../images/line.svg);
}
.icon-play {
  background-image: url(../images/icon-play.png);
}

/*!
 * 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, -50px, 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(-5%, 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(5%, 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 {
  min-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: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
}

* {
  -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: #000;
  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;
  border-radius: 0;
  font-size: 18px;
  font-family: Arial, 'Noto Sans TC', '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;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.container {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 40px;
}

.text-block {
  display: inline-block;
}

.scroll--hidden {
  overflow: hidden;
}
.scroll--hidden .menu-mask {
  display: block;
}

.site-content {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 3;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.site-header .container {
  max-width: 100%;
}

.logo {
  position: absolute;
  top: 30px;
  left: 30px;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/logo.png);
  height: 46px;
  width: 110px;
}

.menu-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #26449a;
  background: linear-gradient(90deg, #26449a 0%, #009ba4 100%);
  z-index: 1;
  display: none;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  opacity: .9;
}

.menu-panel {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 50px;
  overflow: auto;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  max-height: 100%;
  /* with viewportHeight */
  display: none;
}
.menu-panel.is-toggle {
  display: block;
}
.menu-panel.is-toggle .menu-close {
  display: block;
}

.main-menu {
  display: block;
  max-width: 100%;
  padding-top: 75px;
}
.main-menu li {
  position: relative;
  padding: 0;
  -moz-animation: fadeInUp 0.3s both;
  -webkit-animation: fadeInUp 0.3s both;
  animation: fadeInUp 0.3s both;
}
.main-menu li:nth-child(1) {
  animation-delay: 0.05s;
}
.main-menu li:nth-child(2) {
  animation-delay: 0.1s;
}
.main-menu li:nth-child(3) {
  animation-delay: 0.15s;
}
.main-menu li:nth-child(4) {
  animation-delay: 0.2s;
}
.main-menu li:nth-child(5) {
  animation-delay: 0.25s;
}
.main-menu li:nth-child(6) {
  animation-delay: 0.3s;
}
.main-menu li:nth-child(7) {
  animation-delay: 0.35s;
}
.main-menu li:nth-child(8) {
  animation-delay: 0.4s;
}
.main-menu li:nth-child(9) {
  animation-delay: 0.45s;
}
.main-menu a {
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 50px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  max-width: 375px;
  margin: 0 auto;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.main-menu a:hover, .main-menu a:active, .main-menu a.mPS2id-highlight-first {
  color: #fff;
  opacity: .5;
}

.social-menu {
  padding: 25px 0;
  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-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  opacity: 0;
  -moz-animation: fadeInUp 0.3s both;
  -webkit-animation: fadeInUp 0.3s both;
  animation: fadeInUp 0.3s both;
  animation-delay: .5s;
}
.social-menu li {
  padding: 0 20px;
}
.social-menu a {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.social-menu a:hover, .social-menu a:active {
  opacity: .5;
}

.site-footer {
  width: 100%;
  position: relative;
  background-color: #fff;
  padding-top: 35px;
  padding-bottom: 35px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  text-align: center;
  color: #008dd7;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.menu-toggle {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/menu-toggle.png);
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}
.menu-toggle.active {
  display: none;
}

.menu-close {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../images/menu-close.png);
  overflow: hidden;
  display: none;
  z-index: 1;
}

.to-top {
  position: fixed;
  bottom: 20px;
  right: -60px;
  opacity: 0;
  background-color: #fff;
  border-radius: 50%;
  font-size: 20px;
  line-height: 60px;
  font-weight: 700;
  text-align: center;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  color: #292b62;
  border: 2px solid #292b62;
  overflow: hidden;
  display: none;
}
.to-top.animated {
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.to-top.fadeIn {
  right: 15px;
}
.to-top.is-hide {
  display: none;
}
.scroll-hide .to-top {
  z-index: 0;
  -moz-animation-duration: initial;
  -webkit-animation-duration: initial;
  animation-duration: initial;
}
.to-top.change-bottom {
  right: 15px;
}
.to-top:hover img, .to-top:active img {
  opacity: .6;
}

@-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: 66.6666%;
  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;
  }
}
.modal {
  font-size: 16px;
  color: #fff;
  line-height: 32px;
  background: rgba(38, 68, 154, 0.9);
  background: linear-gradient(90deg, rgba(38, 68, 154, 0.9) 0%, rgba(0, 155, 164, 0.9) 100%);
}
.modal-dialog {
  max-width: 920px;
  margin: 50px auto;
  width: calc(100% - 15px * 2);
}
.modal-content {
  border: 0;
  border-radius: 0;
  padding: 0;
  background-color: transparent;
  color: #fff;
}
.modal-body {
  padding: 0;
}
.modal-header {
  padding: 0;
  border: 0;
}
.modal-footer {
  padding: 0;
  border: 0;
}
.modal .modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border-radius: 0;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  background-size: contain;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/menu-close.png);
  opacity: 1;
}
.modal .modal-close:hover, .modal .modal-close:active {
  opacity: 1;
}

.index-modal .modal-dialog {
  max-width: 614px;
  margin: 50px auto;
  width: calc(100% - 15px * 2);
}

.s1-modal .group {
  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-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.s1-modal .content {
  padding-left: 30px;
}
.s1-modal .heading {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}
.s1-modal .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;
  padding-top: 20px;
}
.s1-modal .item {
  padding-right: 20px;
  max-width: 60%;
  margin-bottom: 15px;
}
.s1-modal img {
  display: block;
  max-width: 100%;
  margin-bottom: 5px;
}
.s1-modal p {
  margin-bottom: 20px;
}

.s1-modal-1 .modal-dialog {
  max-width: 900px;
}
.s1-modal-1 .image {
  width: 49%;
}
.s1-modal-1 .content {
  width: calc(100% - 49%);
}

.s1-modal-2 .modal-dialog {
  max-width: 1000px;
}
.s1-modal-2 .image {
  width: 54.2%;
}
.s1-modal-2 .content {
  width: calc(100% - 54.2%);
}

.s1-modal-3 .modal-dialog {
  max-width: 920px;
}
.s1-modal-3 .image {
  width: 49%;
}
.s1-modal-3 .content {
  width: calc(100% - 49%);
  padding-left: 30px;
}
.s1-modal-3 h4 {
  font-size: 20px;
}

.s2-modal .modal-dialog {
  max-width: 1200px;
}

.s5-modal .modal-dialog {
  max-width: 1200px;
}

.s6-modal .modal-dialog {
  max-width: 1110px;
}
.s6-modal .heading {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
}
.s6-modal p {
  margin-bottom: 35px;
}
.s6-modal h4 {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 10px;
  font-weight: 500;
}
.s6-modal .scroll-box {
  overflow-x: auto;
  width: 100%;
}
.s6-modal .table {
  min-width: 1000px;
}
.s6-modal .table td {
  color: #fff;
  border: 1px solid #fff;
  vertical-align: middle;
  padding: 10px 20px;
  line-height: 22px;
}
.s6-modal .highlight {
  color: #f8d559;
}
.s6-modal .video {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}
.s6-modal .video.is-play a {
  visibility: hidden;
  z-index: 0;
}
.s6-modal .video.is-play .post-iframe {
  opacity: 1;
}
.s6-modal .video .post-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
}
.s6-modal .video a {
  position: relative;
  display: block;
  z-index: 1;
}
.s6-modal .video a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .4;
  background-color: #000;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.s6-modal .video a:hover:before {
  opacity: .1;
}
.s6-modal .video .icon {
  position: absolute;
  width: 68px;
  height: 68px;
  left: 50%;
  top: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.s6-modal-1 .group {
  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-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0 -15px 40px;
}
.s6-modal-1 .item {
  width: calc(100% / 2 - 15px * 2);
  margin: 0 15px;
}
.s6-modal-1 p {
  max-width: 730px;
  margin: 0 auto 30px;
  text-align: center;
}

.s6-modal-2 .heading {
  margin-bottom: 40px;
}
.s6-modal-2 .group {
  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-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.s6-modal-2 .col-left {
  width: 350px;
}
.s6-modal-2 .col-right {
  width: calc(100% - 350px);
  padding-left: 30px;
}
.s6-modal-2 .image {
  margin-top: 30px;
}
.s6-modal-2 p {
  margin: 0 0 30px;
}
.s6-modal-2 .video {
  margin-bottom: 15px;
}

.s6-modal-3 .modal-dialog {
  max-width: 730px;
}
.s6-modal-3 .heading {
  margin-bottom: 40px;
}
.s6-modal-3 p {
  margin: 0 0 30px;
}

.s6-modal-4 .modal-dialog {
  max-width: 730px;
}
.s6-modal-4 .heading {
  margin-bottom: 60px;
}
.s6-modal-4 p {
  margin: 0 0 30px;
  text-align: justify;
}
.s6-modal-4 ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.s6-modal-4 ol li {
  position: relative;
  padding-bottom: 15px;
  text-align: justify;
}
.s6-modal-4 ol li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: -24px;
  width: 9px;
  height: 9px;
  background-color: #fff;
  display: block;
}
.s6-modal-4 .hd {
  font-size: 20px;
  line-height: 32px;
}
.s6-modal-4 h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
  font-weight: 500;
}

.s6-modal-5 .modal-dialog {
  max-width: 730px;
}
.s6-modal-5 .heading {
  margin-bottom: 40px;
}
.s6-modal-5 p {
  margin: 0 0 30px;
}

.section {
  position: relative;
  width: 100%;
  min-height: 800px;
  height: 100vh;
  font-size: 16px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.section .container {
  width: 100%;
  min-height: 800px;
}
.section .heading {
  text-align: center;
  font-size: 36px;
  line-height: 44px;
  font-weight: 500;
  color: #136e9f;
  margin: 0 auto;
  margin-bottom: 30px;
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.section .heading span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.section .content {
  opacity: 0;
}
.section img {
  display: block;
  margin: 0 auto;
}

.bg-1 {
  background-image: url(../images/bg-1.jpg);
}

.bg-2 {
  background-image: url(../images/bg-2.jpg);
}

.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  display: block;
}

.inview {
  opacity: 0;
}

.kv {
  position: relative;
  width: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/bg-1.jpg);
  min-height: 800px;
  height: 100vh;
  overflow: hidden;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.kv .container {
  padding: 0;
  width: 100%;
  width: calc(100% - 15px * 2);
  max-width: 1110px;
  height: 800px;
}
.kv .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation-duration: .8s;
  opacity: 0;
  pointer-events: none;
}
.kv .v-hide {
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  font-size: 0;
}
.kv .kv-left {
  margin-top: 160px;
  margin-left: 45px;
  width: 31%;
  max-width: 334px;
  z-index: 5;
  pointer-events: auto;
}
.kv .animated {
  opacity: 1;
}
.kv .animated.infinite {
  animation-duration: 5s;
}
.kv .bg {
  background-image: url(../images/kv-bg.png);
  height: 900px;
  top: -50px;
}
.kv .product {
  background-image: url(../images/kv-product.png);
}
.kv .brightness {
  animation: brightness 2.5s infinite alternate;
  -webkit-animation: brightness 2.5s infinite alternate;
}
.kv .light {
  background-image: url(../images/kv-light.png);
  animation-duration: 2s;
}
.kv .advantage-1 {
  background-image: url(../images/kv-advantage1.png);
}
.kv .advantage-2 {
  background-image: url(../images/kv-advantage2.png);
}
.kv .advantage-3 {
  background-image: url(../images/kv-advantage3.png);
}
.kv .kv-video {
  max-width: 277px;
  margin-bottom: 20px;
}
.kv .kv-video a {
  position: relative;
  display: block;
}
.kv .kv-video a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .4;
  background-color: #000;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.kv .kv-video a:hover:before {
  opacity: .1;
}
.kv .kv-video .icon {
  position: absolute;
  width: 68px;
  height: 68px;
  left: 50%;
  top: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.kv img {
  display: block;
}
.kv .main-text {
  margin-bottom: 10px;
}
.kv .sub-text {
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  color: #008dd7;
  margin-bottom: 20px;
}
.kv .btn {
  margin: 0;
}

@keyframes brightness {
  from,
    to {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }
  50% {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
  }
}
@-webkit-keyframes brightness {
  from,
    to {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
  }
  50% {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
  }
}
.mouse {
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 20px;
  height: 34px;
  margin-left: -10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/mouse-bg.png);
  z-index: 1;
}

.scroll {
  position: relative;
  width: 20px;
  height: 34px;
  display: block;
  overflow: hidden;
  cursor: default;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/mouse-dot.png);
  animation-name: floating;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}

@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, 5px);
  }
  to {
    transform: translate(0, 0);
  }
}
.g-text {
  color: #136e9f;
  background: -webkit-linear-gradient(0deg, #26449a, #009ba4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.s1 .container {
  padding: 0;
  width: 100%;
  width: calc(100% - 15px * 2);
  max-width: 1110px;
  height: 800px;
}
.s1 .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation-duration: .8s;
  opacity: 0;
  pointer-events: none;
}
.s1 .layer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: flash 2.5s infinite alternate;
  -webkit-animation: flash 2.5s infinite alternate;
}
.s1 .animated {
  opacity: 1;
}
.s1 .animated.infinite {
  animation-duration: 5s;
}
.s1 .product {
  background-image: url(../images/s1-product.png);
}
.s1 .line-1 {
  background-image: url(../images/s1-line1.png);
}
.s1 .line-1:before {
  background-image: url(../images/s1-line1-light.png);
}
.s1 .line-2 {
  background-image: url(../images/s1-line2.png);
}
.s1 .line-2:before {
  background-image: url(../images/s1-line2-light.png);
}
.s1 .line-3 {
  background-image: url(../images/s1-line3.png);
}
.s1 .line-3:before {
  background-image: url(../images/s1-line3-light.png);
}
.s1 .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-duration: .1s;
}
.s1 .item {
  position: absolute;
  width: 35%;
  max-width: 380px;
  padding-left: 75px;
  opacity: 0;
}
.s1 .image {
  position: absolute;
  top: 4px;
  left: 0;
  width: 53px;
}
.s1 .item-1 {
  top: 43.75%;
  left: 4.5%;
}
.s1 .item-2 {
  top: 23.125%;
  right: -1.8%;
}
.s1 .item-3 {
  top: 60%;
  right: 4%;
}
.s1 .main-text {
  font-size: 21px;
  line-height: 30px;
  font-weight: 500;
  display: inline-block;
}
.s1 .sub-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.s1 .btn {
  width: 120px;
  height: 42px;
  line-height: 42px;
  margin: 0;
  font-size: 16px;
}

.s2 .container {
  padding: 0;
  width: 100%;
  width: calc(100% - 15px * 2);
  max-width: 1110px;
  height: 800px;
}
.s2 .heading {
  position: absolute;
  top: 9.5%;
  width: 100%;
}
.s2 .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation-duration: .8s;
  opacity: 0;
  pointer-events: none;
}
.s2 .layer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: flash 2.5s infinite alternate;
  -webkit-animation: flash 2.5s infinite alternate;
}
.s2 .animated {
  opacity: 1;
}
.s2 .animated.infinite {
  animation-duration: 5s;
}
.s2 .product {
  background-image: url(../images/s2-product.png);
}
.s2 .line-1 {
  background-image: url(../images/s2-line1.png);
}
.s2 .line-1:before {
  background-image: url(../images/s2-line1-light.png);
}
.s2 .line-2 {
  background-image: url(../images/s2-line2.png);
}
.s2 .line-2:before {
  background-image: url(../images/s2-line2-light.png);
}
.s2 .line-3 {
  background-image: url(../images/s2-line3.png);
}
.s2 .line-3:before {
  background-image: url(../images/s2-line3-light.png);
}
.s2 .line-4 {
  background-image: url(../images/s2-line4.png);
}
.s2 .line-4:before {
  background-image: url(../images/s2-line4-light.png);
}
.s2 .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-duration: .1s;
}
.s2 .item {
  position: absolute;
  opacity: 0;
}
.s2 .item-1 {
  top: 26.25%;
  left: 12.35%;
}
.s2 .item-2 {
  top: 64.375%;
  left: 12.35%;
}
.s2 .item-3 {
  top: 30%;
  right: 17%;
}
.s2 .item-4 {
  top: 55.25%;
  right: 3.6%;
}
.s2 .btn {
  width: auto;
  height: 42px;
  line-height: 42px;
  margin: 0;
  font-size: 16px;
  box-shadow: 0 0 16px rgba(1, 153, 164, 0.11);
  padding: 0 15px;
}
.s2 .icon {
  background-image: url(../images/s2-play.png);
  width: 22px;
  height: 22px;
  margin-left: 8px;
  margin-top: -4px;
}

.s3 .container {
  padding: 90px 15px;
  max-width: 750px;
}
.s3 .heading {
  margin-bottom: 65px;
}
.s3 .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: 0;
}
.s3 .image {
  background-color: #ffe9eb;
  box-shadow: 0 0 16px rgba(1, 153, 164, 0.11);
  width: 167px;
  height: 167px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}
.s3 .item {
  width: calc(100% / 3);
  margin: 0 0 15px;
  text-align: center;
}
.s3 .main-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  display: inline-block;
}
.s3 .sub-text {
  font-size: 16px;
  font-weight: 500;
  color: #666;
}
.s3 .g-text {
  color: #136e9f;
  background: -webkit-linear-gradient(45deg, #26449a, #009ba4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.s4 {
  height: auto;
}
.s4 .container {
  padding: 90px 15px;
  width: calc(100% - 15px * 2);
  max-width: 1140px;
}
.s4 .heading {
  margin-bottom: 30px;
}
.s4 .top-text {
  text-align: center;
  font-size: 21px;
  line-height: 30px;
  font-weight: 500;
  color: #666;
  margin-bottom: 20px;
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.s4 .top-text .col {
  width: 50%;
}
.s4 .block {
  position: relative;
  padding: 0;
  width: 100%;
  height: 440px;
  margin-bottom: 40px;
}
.s4 .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation-duration: .8s;
  opacity: 0;
  pointer-events: none;
}
.s4 .layer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: flash 2.5s infinite alternate;
  -webkit-animation: flash 2.5s infinite alternate;
}
.s4 .animated {
  opacity: 1;
}
.s4 .animated.infinite {
  animation-duration: 5s;
}
.s4 .product {
  background-image: url(../images/s4-product.png);
}
.s4 .line-1 {
  background-image: url(../images/s4-line1.png);
}
.s4 .line-1:before {
  background-image: url(../images/s4-line1-light.png);
}
.s4 .line-2 {
  background-image: url(../images/s4-line2.png);
}
.s4 .line-2:before {
  background-image: url(../images/s4-line2-light.png);
}
.s4 .line-3 {
  background-image: url(../images/s4-line3.png);
}
.s4 .line-3:before {
  background-image: url(../images/s4-line3-light.png);
}
.s4 .line-4 {
  background-image: url(../images/s4-line4.png);
}
.s4 .line-4:before {
  background-image: url(../images/s4-line4-light.png);
}
.s4 .line-5 {
  background-image: url(../images/s4-line5.png);
}
.s4 .line-5:before {
  background-image: url(../images/s4-line5-light.png);
}
.s4 .item {
  position: absolute;
  width: 35%;
  max-width: 380px;
  padding-left: 80px;
  opacity: 0;
}
.s4 .image {
  position: absolute;
  top: 4px;
  left: 0;
  width: 60px;
}
.s4 .image img {
  max-width: 60px;
}
.s4 .item-1 {
  top: 5.5%;
  left: 0;
  max-width: 375px;
}
.s4 .item-2 {
  top: 43%;
  left: 0;
  max-width: 350px;
}
.s4 .item-3 {
  top: 80%;
  left: 0;
  max-width: 375px;
}
.s4 .item-4 {
  top: 5.5%;
  right: 5%;
  max-width: 320px;
}
.s4 .item-4 .image .main-text {
  white-space: nowrap;
  font-size: 15px;
}
.s4 .item-4 .main-text {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 10px;
}
.s4 .item-4 .sub-text {
  color: #666;
  font-size: 13px;
  line-height: 17px;
}
.s4 .item-5 {
  top: 65.5%;
  right: 0;
  padding: 65px 0 0;
  max-width: 370px;
}
.s4 .item-5 .main-text {
  margin-right: 15px;
  white-space: nowrap;
  font-size: 15px;
}
.s4 .item-5 .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.s4 .item-5 .image img {
  margin: 0 15px 0 0;
}
.s4 .main-text {
  font-size: 21px;
  line-height: 30px;
  font-weight: 500;
  display: inline-block;
}
.s4 .sub-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.s4 .video {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}
.s4 .video.is-play a {
  visibility: hidden;
  z-index: 0;
}
.s4 .video.is-play .post-iframe {
  opacity: 1;
}
.s4 .video .post-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
}
.s4 .video a {
  position: relative;
  display: block;
  z-index: 1;
}
.s4 .video a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .4;
  background-color: #000;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.s4 .video a:hover:before {
  opacity: .1;
}
.s4 .video .icon {
  position: absolute;
  width: 68px;
  height: 68px;
  left: 50%;
  top: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.s5 .container {
  padding: 0;
  width: 100%;
  width: calc(100% - 15px * 2);
  max-width: 1110px;
  height: 800px;
}
.s5 .heading {
  position: absolute;
  top: 9.5%;
  width: 100%;
}
.s5 .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation-duration: .8s;
  opacity: 0;
  pointer-events: none;
}
.s5 .layer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  animation: flash 2.5s infinite alternate;
  -webkit-animation: flash 2.5s infinite alternate;
}
.s5 .animated {
  opacity: 1;
}
.s5 .animated.infinite {
  animation-duration: 5s;
}
.s5 .product {
  background-image: url(../images/s5-product.png);
}
.s5 .line-1 {
  background-image: url(../images/s5-line1.png);
}
.s5 .line-1:before {
  background-image: url(../images/s5-line1-light.png);
}
.s5 .line-2 {
  background-image: url(../images/s5-line2.png);
}
.s5 .line-2:before {
  background-image: url(../images/s5-line2-light.png);
}
.s5 .line-3 {
  background-image: url(../images/s5-line3.png);
}
.s5 .line-3:before {
  background-image: url(../images/s5-line3-light.png);
}
.s5 .line-4 {
  background-image: url(../images/s5-line4.png);
}
.s5 .line-4:before {
  background-image: url(../images/s5-line4-light.png);
}
.s5 .line-5 {
  background-image: url(../images/s5-line5.png);
}
.s5 .line-5:before {
  background-image: url(../images/s5-line5-light.png);
}
.s5 .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-duration: .1s;
}
.s5 .item {
  position: absolute;
  opacity: 0;
}
.s5 .item-1 {
  top: 21.25%;
  left: 38.6%;
}
.s5 .item-2 {
  top: 38.125%;
  left: 1.5%;
}
.s5 .item-3 {
  top: 77%;
  left: -2.5%;
}
.s5 .item-4 {
  top: 83.375%;
  left: 36%;
}
.s5 .item-5 {
  top: 30.625%;
  right: 3.6%;
}
.s5 .btn {
  width: auto;
  height: 42px;
  line-height: 42px;
  margin: 0;
  font-size: 16px;
  box-shadow: 0 0 16px rgba(1, 153, 164, 0.11);
  padding: 0 15px;
}
.s5 .icon {
  background-image: url(../images/s2-play.png);
  width: 22px;
  height: 22px;
  margin-left: 8px;
  margin-top: -4px;
}

/*--pc購物按鈕--*/

.s5-modal-1, .s5-modal-2, .s5-modal-3, .s5-modal-4, .s5-modal-5, .lg-view .container {
  display:contents;
}
.s5-modal-1 .lg-view .container .m1btn1 {
  top: 28%;
  left: 46%;
}
.s5-modal-1 .lg-view .container .m1btn2 {
  top: 79%;
  left: 46%;
}
.s5-modal-2 .lg-view .container .m2btn {
  top: 68%;
  left: 47%;
}

.s5-modal-3 .lg-view .container .m3btn {
  top: 72%;
  left: 43.5%;
}
.s5-modal-4 .lg-view .container .m4btn {
  top: 75.5%;
  left: 50.6%;
}

.s5-modal-5 .lg-view .container .m5btn1 {
  top: 11%;
  left: 54.5%;
}
.s5-modal-5 .lg-view .container .m5btn2 {
  top: 23.8%;
  left: 54.5%;
}
.lg-view .container .btn {
  display: block;
  width: 120px;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  box-shadow: 0 0 16px rgba(1, 153, 164, 0.11);
  padding: 0 15px;
  z-index: 999;
  position: absolute;
}

.lg-view .icon {
  background-image: url(../images/s2-play.png);
  width: 22px;
  height: 22px;
  margin-left: 8px;
  margin-top: -4px;
}

/*--pc購物按鈕end--*/


.s6 .container {
  padding: 90px 15px;
  max-width: 850px;
}
.s6 .heading {
  margin-bottom: 35px;
}
.s6 .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -9px -15px;
}
.s6 .image {
  background-color: #ffe9eb;
  width: 100%;
  height: 167px;
  border-radius: 0;
  overflow: hidden;
  margin: 0 auto 10px;
}
.s6 .image img {
  max-width: 167px;
}
.s6 .item {
  width: calc(100% / 3 - 15px * 2);
  margin: 9px 15px;
  text-align: center;
  border: 1px solid #009ba4;
  min-height: 240px;
}
.s6 .main-text {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  display: inline-block;
}
.s6 .text-block {
  display: block;
}
.s6 .g-text {
  color: #136e9f;
  background: -webkit-linear-gradient(45deg, #26449a, #009ba4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.s7 .container {
  padding: 90px 15px;
  max-width: 1010px;
}
.s7 .heading {
  margin-bottom: 85px;
}
.s7 .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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: -15px;
}
.s7 .item {
  width: calc(100% / 4 - 15px * 2);
  margin: 15px;
  text-align: center;
}
.s7 .image {
  background-color: #ffe9eb;
  box-shadow: 0 0 16px rgba(1, 153, 164, 0.11);
  width: 167px;
  height: 167px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
}
.s7 .main-text {
  font-size: 21px;
  line-height: 35px;
  font-weight: 500;
  display: inline-block;
}
.s7 .text-block {
  display: block;
}
.s7 .btn {
  width: 125px;
  height: 40px;
  line-height: 40px;
  margin-top: 15px;
  font-size: 15px;
}

.s8 .container {
  padding: 90px 15px;
  max-width: 950px;
}
.s8 .top-text {
  margin-bottom: 20px;
  text-align: center;
  line-height: 32px;
}
.s8 .top-text span {
  display: inline-block;
}
.s8 .card {
  background-color: #fff;
  box-shadow: 0 0 16px rgba(1, 153, 164, 0.11);
  margin-bottom: 15px;
}
.s8 .card .hd {
  color: #008dd7;
  position: absolute;
  top: 15px;
  left: 35px;
  font-family: 'Century Gothic', arial;
  font-size: 21px;
  line-height: 30px;
  font-weight: 700;
  width: 30px;
  text-align: right;
}
.s8 .card-header {
  position: relative;
  padding: 15px 90px;
  line-height: 30px;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(1, 153, 164, 0.11);
}
.s8 .card-body {
  position: relative;
  font-size: 16px;
  line-height: 32px;
  color: #666;
  padding: 25px 90px;
}
.s8 .card-body .hd {
  top: 25px;
  line-height: 32px;
}
.s8 [aria-expanded="false"] .g-text {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: unset;
  color: #666;
}
.s8 [aria-expanded="false"] .icon-arrow {
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.s8 .icon-arrow {
  position: absolute;
  top: 20px;
  right: 45px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/chevron-down-solid.svg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.s9 .container {
  padding: 90px 15px;
  max-width: 1140px;
}
.s9 a {
  position: relative;
  display: block;
}
.s9 a:hover .image:before {
  opacity: .1;
}
.s9 .image {
  position: relative;
  margin-bottom: 15px;
}
.s9 .image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .4;
  background-color: #000;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.s9 .image .icon {
  position: absolute;
  width: 68px;
  height: 68px;
  left: 50%;
  top: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.s9 .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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: -15px;
}
.s9 .item {
  width: calc(100% / 3 - 15px * 2);
  margin: 15px;
}
.s9 .main-text {
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
}

@media (max-width: 750px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .logo {
    top: 15px;
    left: 15px;
    height: 35px;
    width: 83px;
  }

  .menu-toggle {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background-size: 28px;
  }

  .menu-close {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background-size: 28px;
  }

  .menu-panel {
    padding: 25px;
  }

  .main-menu {
    padding-top: 50px;
  }

  .site-footer {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
  }

  .modal-dialog {
    max-width: 345px;
    margin: 0 auto;
  }
  .modal-content {
    margin-top: 90px;
    margin-bottom: 90px;
  }
  .modal .modal-close {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background-size: 28px;
  }

  .index-modal .modal-dialog {
    max-width: 375px;
  }

  .video-modal .modal-dialog {
    max-width: 345px;
  }
  .video-modal .modal-content {
    padding: 0;
  }

  .s1-modal .group {
    display: block;
  }
  .s1-modal .content {
    padding-left: 0;
  }
  .s1-modal .image {
    margin-bottom: 20px;
  }

  .s1-modal-1 .modal-dialog {
    max-width: 375px;
  }
  .s1-modal-1 .image {
    width: 100%;
  }
  .s1-modal-1 .content {
    width: 100%;
  }

  .s1-modal-2 .modal-dialog {
    max-width: 375px;
  }
  .s1-modal-2 .image {
    width: 100%;
  }
  .s1-modal-2 .content {
    width: 100%;
  }
  .s1-modal-2 .list {
    margin: 0 -10px;
  }
  .s1-modal-2 .item {
    width: 50%;
    padding: 0 10px;
  }

  .s1-modal-3 .modal-dialog {
    max-width: 375px;
  }
  .s1-modal-3 .image {
    width: 100%;
  }
  .s1-modal-3 .content {
    width: 100%;
  }

  .s2-modal .modal-dialog {
    max-width: 375px;
  }

  .s5-modal .modal-dialog {
    max-width: 375px;
  }
  .s5-modal .scroll-box {
    overflow-x: auto;
    width: 100%;
  }
  .s5-modal .scroll-box img {
    width: 635px;
    max-width: 635px;
  }

  .s6-modal .modal-dialog {
    max-width: 375px;
  }
  .s6-modal .heading {
    text-align: left;
  }
  .s6-modal .scroll-box {
    overflow-x: auto;
    width: 100%;
  }
  .s6-modal .highlight {
    color: #f8d559;
  }
  .s6-modal .video {
    width: 278px;
    max-width: 278px;
    margin: 0;
  }

  .s6-modal-1 .group {
    display: block;
    margin: 0 0 20px;
  }
  .s6-modal-1 .item {
    width: 100%;
    margin: 0 0 20px;
  }
  .s6-modal-1 p {
    max-width: 100%;
    text-align: left;
  }

  .s6-modal-2 .group {
    display: block;
  }
  .s6-modal-2 .col-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .s6-modal-2 .col-right {
    width: 100%;
    padding-left: 0;
  }
  .s6-modal-2 .video {
    width: 278px;
    max-width: 278px;
    margin-bottom: 15px;
  }
  .s6-modal-2 .image {
    max-width: 250px;
    margin-top: 20px;
  }

  .s6-modal-3 .modal-dialog {
    max-width: 375px;
  }

  .s6-modal-4 .modal-dialog {
    max-width: 375px;
  }

  .s6-modal-5 .modal-dialog {
    max-width: 375px;
  }

  .container {
    padding: 0 15px;
  }

  .section {
    min-height: inherit;
    height: auto;
  }
  .section .container {
    width: 100%;
    max-width: 375px;
    padding: 30px 15px;
    height: auto;
    min-height: inherit;
  }

  .bg-1 {
    background-image: url(../images/bg-1_s.jpg);
  }

  .bg-2 {
    background-image: url(../images/bg-2_s.jpg);
  }

  .kv {
    background-image: url(../images/bg-1_s.jpg);
    height: 922px;
  }
  .kv .container {
    padding: 0;
    width: 100%;
    max-width: 375px;
    height: 922px;
    transform: none !important;
  }
  .kv .kv-left {
    margin-top: 85px;
    margin-left: 0;
    width: 100%;
    padding: 0 15px;
    max-width: 100%;
  }
  .kv .bg {
    background-image: url(../images/kv-bg_s.png);
    height: 100%;
    top: 0;
  }
  .kv .product {
    background-image: url(../images/kv-product_s.png);
  }
  .kv .p-light {
    animation: productLight 2.5s infinite alternate;
    -webkit-animation: productLight 2.5s infinite alternate;
  }
  .kv .light {
    background-image: url(../images/kv-light_s.png);
  }
  .kv .advantage-1,
  .kv .advantage-2,
  .kv .advantage-3,
  .kv .btn {
    display: none !important;
  }
  .kv .kv-video {
    width: 277px;
    margin-bottom: 0;
    position: absolute;
    top: calc(740px - 85px - 5px);
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .kv .sub-text {
    padding: 0 5px;
  }
  .kv .m-fixed {
    transform: none !important;
  }

  .mouse {
    display: none !important;
  }

  .s1 .layer {
    display: none;
  }
  .s1 .content {
    position: relative;
    animation-duration: .8s;
  }
  .s1 .item {
    position: relative;
    width: 100%;
    padding-left: 75px;
    opacity: 1;
    margin: 0 auto 25px;
  }
  .s1 .item-1 {
    top: 0;
    left: 0;
  }
  .s1 .item-2 {
    top: 0;
    right: 0;
  }
  .s1 .item-3 {
    top: 0;
    right: 0;
  }

  .s2 .container {
    padding-bottom: 40px;
  }
  .s2 .heading {
    position: relative;
    top: 0;
  }
  .s2 .layer {
    display: none;
  }
  .s2 .content {
    position: relative;
    animation-duration: .8s;
  }
  .s2 .item {
    position: relative;
    opacity: 1;
  }
  .s2 .item-1 {
    top: 0;
    left: 0;
  }
  .s2 .item-2 {
    top: 0;
    left: 0;
  }
  .s2 .item-3 {
    top: 0;
    right: 0;
  }
  .s2 .item-4 {
    top: 0;
    right: 0;
  }
  .s2 .btn {
    width: 100%;
    height: 42px;
    line-height: 42px;
    margin: 0 0 15px;
    padding: 0;
    text-align: left;
  }
  .s2 .btn span {
    width: 100%;
    padding: 0 45px 0 15px;
    display: block;
  }
  .s2 .icon {
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    right: 15px;
    top: 10px;
  }
  .s2 .sm-view {
    margin-bottom: 25px;
  }

  .s3 .container {
    padding-left: 0;
    padding-right: 0;
  }
  .s3 .heading {
    margin-bottom: 35px;
  }
  .s3 .list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
  .s3 .image {
    width: 159px;
    height: 159px;
    margin: 0 auto 10px;
  }
  .s3 .item {
    width: calc(100% / 2);
    margin: 0 0 20px;
  }

  .s4 .container {
    padding-bottom: 50px;
  }
  .s4 .top-text {
    display: block;
    text-align: left;
    font-size: 15px;
  }
  .s4 .top-text .col {
    width: 100%;
  }
  .s4 .block {
    height: auto;
    margin-bottom: 35px;
  }
  .s4 .layer {
    display: none;
  }
  .s4 .item {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-left: 80px;
    opacity: 1;
    margin-bottom: 20px;
  }
  .s4 .item .g-text {
    color: #136e9f;
    background: -webkit-linear-gradient(45deg, #26449a, #009ba4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .s4 .item-1 {
    top: 0;
    left: 0;
    max-width: 100%;
  }
  .s4 .item-1 .bottom-text {
    color: #666;
    font-size: 13px;
    line-height: 17px;
    max-width: 240px;
  }
  .s4 .item-2 {
    top: 0;
    left: 0;
    max-width: 100%;
  }
  .s4 .item-3 {
    top: 0;
    left: 0;
    max-width: 100%;
  }
  .s4 .video {
    max-width: 277px;
  }

  .s5:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/s5-product-1_s.png);
    background-size: auto 600px;
    background-repeat: no-repeat;
    background-position: center top;
    display: block;
  }
  .s5 .container {
    padding-bottom: 40px;
  }
  .s5 .heading {
    position: relative;
    top: 0;
    margin-bottom: 0;
  }
  .s5 .layer {
    display: none;
  }
  .s5 .content {
    position: relative;
    animation-duration: .8s;
  }
  .s5 .item {
    position: relative;
    opacity: 1;
  }
  .s5 .item-1 {
    top: 0;
    left: 0;
  }
  .s5 .item-2 {
    top: 0;
    left: 0;
  }
  .s5 .item-3 {
    top: 0;
    left: 0;
  }
  .s5 .item-4 {
    top: 0;
    left: 0;
  }
  .s5 .item-5 {
    top: 0;
    right: 0;
  }
  .s5 .btn {
    width: 100%;
    height: 42px;
    line-height: 42px;
    margin: 0 0 15px;
    padding: 0;
    text-align: left;
  }
  .s5 .btn span {
    width: 100%;
    padding: 0 45px 0 15px;
    display: block;
  }
  .s5 .icon {
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    right: 15px;
    top: 10px;
  }
  .s5 .sm-view {
    margin-bottom: 25px;
  }
  .s5 .s5-product-1 {
    padding-top: 118%;
    margin-bottom: 0;
  }

/*--mobile購物按鈕--*/

.s5-modal-1, .s5-modal-2, .s5-modal-3, .s5-modal-4, .s5-modal-5, .sm-view .container {
  display:contents;
}
.s5-modal-1 .sm-view .m1btn1 {
  top: 47%;
}
.s5-modal-1 .sm-view .m1btn2 {
  top: 99%;
}
.s5-modal-2 .sm-view .m2btn {
  top: 97%;
}

.s5-modal-3 .sm-view .m3btn {
  top: 100%;
}
.s5-modal-4 .sm-view .m4btn {
  top: 100%;
}

.s5-modal-5 .sm-view .m5btn1 {
  top: 32.8%;
}
.s5-modal-5 .sm-view .m5btn2 {
  top: 44.3%;
}

.sm-view .btn {
    width: 100%;
    height: 42px;
    line-height: 42px;
    margin: 0 0 15px;
    padding: 0;
    text-align: left;
	z-index: 999;
    position: absolute;
	background: #009b4a;
	background: linear-gradient(90deg, #009ba4 0%, #26449a 100% );
  }
	
.sm-view .btn span {
    width: 100%;
    padding: 0 45px 0 15px;
    display: block;
  }
.sm-view .icon {
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    right: 15px;
    top: 10px;
	width: 22px;
    height: 22px;
	background-image: url(../images/s2-play.png);
  }
	
/*.btn {
  background: #26449a;
  background: linear-gradient(90deg, #26449a 100%, #009ba4 0%);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  overflow: hidden;
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn:hover:before, .btn:active:before {
  left: 150%;
}
.btn:before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  transition: all 3s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  height: 100%;
  top: 0;
  left: -150%;
  opacity: .1;
}*/

/*--mobile購物按鈕end--*/

  .s6 .container {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
  }
  .s6 .heading {
    margin-bottom: 20px;
  }
  .s6 .list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    margin: -15px;
  }
  .s6 .image {
    width: 100%;
    height: 104px;
  }
  .s6 .image img {
    max-width: 104px;
  }
  .s6 .item {
    width: calc(100% / 2 - 15px * 2);
    margin: 15px;
    min-height: 173px;
  }
  .s6 .item:nth-child(2) span,
  .s6 .item:nth-child(2) .text-block {
    display: inline !important;
  }
  .s6 .main-text {
    font-size: 16px;
    line-height: 25px;
  }

  .s7 .heading {
    margin-bottom: 30px;
  }
  .s7 .container {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 35px;
  }
  .s7 .list {
    margin: 0;
  }
  .s7 .item {
    width: calc(100% / 2);
    margin: 0 0 15px;
  }
  .s7 .image {
    width: 159px;
    height: 159px;
  }
  .s7 .main-text {
    font-size: 16px;
    line-height: 26px;
  }

  .s8 .container {
    padding-bottom: 60px;
  }
  .s8 .top-text {
    margin-bottom: 20px;
    text-align: center;
    line-height: 32px;
  }
  .s8 .top-text span {
    display: inline-block;
  }
  .s8 .card {
    background-color: #fff;
    box-shadow: 0 0 16px rgba(1, 153, 164, 0.11);
    margin-bottom: 15px;
  }
  .s8 .card .hd {
    top: 15px;
    left: 15px;
    width: 30px;
    text-align: left;
  }
  .s8 .card-header {
    padding: 15px 55px;
  }
  .s8 .card-body {
    position: relative;
    font-size: 16px;
    line-height: 27px;
    color: #008dd7;
    padding: 15px 30px 15px 55px;
  }
  .s8 .card-body .hd {
    top: 16px;
    line-height: 27px;
  }
  .s8 .icon-arrow {
    top: 20px;
    right: 15px;
  }

  .s9 .container {
    padding-bottom: 35px;
  }
  .s9 .heading {
    margin-bottom: 15px;
  }
  .s9 .list {
    display: block;
    margin: 0 auto;
    max-width: 277px;
    width: 100%;
  }
  .s9 .item {
    width: 100%;
    margin: 0 0 20px;
    text-align: center;
  }
  .s9 .image {
    margin-bottom: 10px;
  }
}
@media (max-width: 360px) {
  .kv .sub-text {
    font-size: 4vw;
  }

  .s3 .image {
    width: 150px;
    height: 150px;
  }
}
