@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);
.icon {
  width: 32px;
  height: 32px;
  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;
  overflow: hidden;
}
.icon-menu {
  background-image: url(../images/menu-trigger.svg);
}
.icon-arrow {
  width: 26px;
  height: 10px;
  background-image: url(../images/icon-arrow.svg);
}
.icon-arrow-next {
  width: 16px;
  height: 16px;
  background-image: url(../images/arrow-next.svg);
}
.icon-arrow-prev {
  width: 16px;
  height: 16px;
  background-image: url(../images/arrow-prev.svg);
}
.icon-double-arrow-next {
  width: 16px;
  height: 16px;
  background-image: url(../images/double-arrow-next.svg);
}
.icon-double-arrow-prev {
  width: 16px;
  height: 16px;
  background-image: url(../images/double-arrow-prev.svg);
}

.btn-row {
  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;
}
.btn-row .btn {
  margin: 0 20px;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  padding: 0;
  border: 0;
  -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;
  max-width: 200px;
  height: 50px;
  line-height: 50px;
  letter-spacing: .01em;
  text-align: center;
  border-radius: 0;
  font-weight: 400;
  margin: 0 auto;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
  min-width: 140px;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', 'å¾®è?æ­??é«?, 'Microsoft YaHei', Helvetica, sans-serif;
}
.btn span {
  position: relative;
}

.btn-primary {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
}
.btn-primary:hover, .btn-primary:active {
  color: #222;
  background-color: #fff;
  border-color: #222;
}

.btn-border {
  color: #000;
  border: 1px solid #000;
  background-color: #fff;
}
.btn-border:hover, .btn-border:active {
  color: #fff;
  border-color: #1a1a1a;
  background-color: #1a1a1a;
}

.btn-light {
  color: #222;
  border: 0;
  background-color: #fff;
}
.btn-light:hover, .btn-light:active {
  color: #fff;
  background-color: #222;
}

/*!
 * 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(-100%, 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, 100px, 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;
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  outline: 0;
  overflow: hidden;
  border: 1px solid #fff;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.5 Arial, 'Noto Sans TC', 'Microsoft JhengHei', 'å¾®è?æ­??é«?, 'Microsoft YaHei', Helvetica, sans-serif;
  min-width: 320px;
  overflow-x: hidden;
  color: #050505;
  image-rendering: -webkit-optimize-contrast;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  cursor: pointer;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  text-decoration: none;
}

#container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1380px;
  padding: 0 20px;
  height: 100%;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.scroll--hidden {
  overflow: hidden;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.in-view {
  opacity: 0;
}

p:last-child {
  margin-bottom: 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;
  border-radius: 0;
}
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;
}

.site-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
}
.site-header.sticky {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.site-header.sticky .container {
  height: 100px;
}
.site-header.sticky .logo {
  top: 10px;
  width: 262px;
  height: 80px;
}
.site-header.sticky .main-menu {
  top: 20px;
}
.site-header .container {
  max-width: 100%;
  height: 150px;
}
.site-header ul {
  list-style: none;
}
.site-header li {
  position: relative;
}
.site-header a {
  text-decoration: none;
}

.header-sticky {
  padding-top: 150px;
}

.logo {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 360px;
  height: 110px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/logo.png);
  font-size: 0;
}

.main-menu {
  position: absolute;
  top: 45px;
  right: 0;
  padding: 0 20px;
  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;
  z-index: 0;
  margin: 0;
}
.main-menu li {
  padding: 0 1em;
}
.main-menu a {
  position: relative;
  color: #050505;
  text-decoration: none;
  text-align: center;
  display: block;
  font-size: 20px;
  line-height: 60px;
  font-weight: 500;
  overflow: hidden;
  letter-spacing: .05em;
  text-indent: .05em;
}
.main-menu a:hover, .main-menu a.active {
  color: #c20f24;
}

.menu-trigger {
  position: fixed;
  top: 19px;
  right: 15px;
  cursor: pointer;
  display: none;
}
.menu-trigger .icon {
  width: 32px;
  height: 32px;
}
.menu-trigger.active .icon {
  background-image: url(../images/menu-close.svg);
}

@media (max-width: 1280px) {
  .main-menu li {
    padding: 0 .75em;
  }
}
@media (max-width: 1200px) {
  .site-header .container {
    height: 100px;
  }
  .site-header.sticky .logo {
    width: 242px;
    height: 74px;
    top: 13px;
    left: 20px;
  }
  .site-header .logo {
    width: 242px;
    height: 74px;
    top: 13px;
    left: 20px;
  }

  .header-sticky {
    padding-top: 100px;
  }

  .main-menu {
    top: 20px;
  }
  .main-menu li {
    padding: 0 .5em;
  }
  .main-menu a {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .site-header.sticky .container {
    height: 70px;
  }
  .site-header.sticky .logo {
    width: 150px;
    height: 46px;
    top: 12px;
    left: 15px;
  }
  .site-header.sticky .main-menu {
    top: 0;
  }
  .site-header.sticky .main-menu a {
    line-height: 1.5;
  }
  .site-header .logo {
    width: 150px;
    height: 46px;
    top: 12px;
    left: 15px;
  }
  .site-header .container {
    height: 70px;
  }

  .menu-trigger {
    display: block;
  }

  .menu-panel {
    display: none;
    background-color: #fff;
  }
  .menu-panel.is-toggle {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    max-height: calc(100vh - 70px);
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 1;
  }

  .main-menu {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    padding: 0;
  }
  .main-menu li {
    position: relative;
    margin: 0;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .main-menu li a {
    color: #050505;
    font-size: 18px;
    line-height: 1.5;
    padding: 15px;
  }
  .main-menu li a:hover, .main-menu li a:active, .main-menu li a.active {
    color: #c20f24;
  }

  .header-sticky {
    padding-top: 70px;
  }

  .logo {
    width: 150px;
    height: 46px;
    top: 12px;
    left: 15px;
  }
}
.site-content {
  min-height: calc(100vh - 150px);
  position: relative;
  z-index: 0;
  font-size: 18px;
}

.main {
  padding: 72px 0;
}

.label--01 {
  background-color: #c66427;
}
.label--02 {
  background-color: #c65b9f;
}
.label--03 {
  background-color: #853a72;
}
.label--04 {
  background-color: #192452;
}
.label--05 {
  background-color: #7ea274;
}
.label--06 {
  background-color:indianred;
}
.label--07 {
  background-color: goldenrod;
}
.label--08 {
  background-color: rosybrown;
}

.page-kv {
  position: relative;
}
.page-kv__image {
  position: relative;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right top;
  height: 300px;
  margin-left: 18.75%;
  overflow: hidden;
  background-image: url(../images/page-kv.jpg);
}
.page-kv__inner {
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 1;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-image: url(../images/page-kv-bg.png);
  width: 520px;
  height: 100%;
  padding: 65px 20px 60px 250px;
  white-space: nowrap;
}
.page-kv__inner:before {
  content: "";
  background-image: url(../images/page-kv-bg2.png);
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: calc(100% - 20%) bottom;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  opacity: .5;
}
.page-kv__main-text {
  font-size: 54px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 7px 15px rgba(0, 0, 0, 0.23);
  letter-spacing: .025em;
  z-index: 1;
  position: relative;
  margin: 0;
}

.page {
  position: relative;
  background-color: #fff;
}

.site-breadcrumb {
  padding: 10px 0;
}

.breadcrumb {
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .01em;
}

.breadcrumb-item + .breadcrumb-item::before {
  background-image: url(../images/breadcrumb-arrow.svg);
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  padding: 0;
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.pagination .icon-arrow-prev {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 10px 6px 0;
  border-color: transparent #050505 transparent transparent;
}
.pagination .icon-arrow-next {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #050505;
}
.pagination .page-link:hover .icon-arrow-prev {
  border-color: transparent #fff transparent transparent;
}
.pagination .page-link:hover .icon-arrow-next {
  border-color: transparent transparent transparent #fff;
}
.pagination .disabled {
  opacity: .5;
}

.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;
  }
}
@media (max-width: 1280px) {
  .main {
    padding: 20px 0;
  }

  .page-kv__image {
    height: 200px;
  }
  .page-kv__inner {
    width: 350px;
    top: 25px;
    padding: 40px 20px 40px 165px;
  }
  .page-kv__inner:before {
    background-size: auto 50%;
    background-position: calc(100% - 25%) bottom;
  }
  .page-kv__main-text {
    font-size: 33px;
  }
}
@media (max-width: 1024px) {
  .page-kv__inner {
    width: 280px;
    padding: 40px 20px 40px 105px;
  }
  .page-kv__inner:before {
    background-position: calc(100% - 30%) bottom;
  }
}
@media (max-width: 767px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .container {
    padding: 0 15px;
  }

  .page-kv__image {
    height: 150px;
    margin-left: 18.75%;
  }
  .page-kv__inner {
    width: 40%;
    padding: 30px 15px 30px 18%;
    top: 25px;
  }
  .page-kv__main-text {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .site-breadcrumb {
    padding: 5px 0;
    padding-left: 130px;
  }

  .breadcrumb {
    font-size: 14px;
    line-height: 24px;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    top: 1px;
  }

  .page-kv__image {
    height: 120px;
    margin-left: 18.75%;
  }
  .page-kv__inner {
    width: 185px;
    padding: 20px 10px 30px 65px;
    top: 25px;
  }
  .page-kv__inner:before {
    background-position: calc(100% - 35%) bottom;
  }
}
@media (max-width: 480px) {
  .page-kv__image {
    height: 90px;
    margin-left: 64px;
  }
  .page-kv__inner {
    width: 130px;
    padding: 15px 10px 30px 35px;
    top: 25px;
  }
  .page-kv__inner:before {
    background-position: calc(100% - 35%) bottom;
  }
  .page-kv__main-text {
    font-size: 20px;
  }
}
.site-footer {
  position: relative;
  background-color: #fff;
  color: #050505;
  padding: 40px 0;
  line-height: 1.5;
}
.site-footer .container {
  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;
}
.site-footer__logo {
  position: relative;
  width: 280px;
  height: 86px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/logo.png);
  font-size: 0;
}
.site-footer__info span {
  padding-left: 1em;
}
.site-footer p {
  margin-bottom: 0;
}
.site-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  display: block;
  background-image: url(../images/gd.jpg);
  background-size: cover;
  pointer-events: none;
}
.site-footer a {
  color: #050505;
  text-decoration: none;
}
.site-footer a:hover, .site-footer a:active {
  opacity: .8;
}
.site-footer span {
  display: inline-block;
}

.to-top {
  width: 60px;
  height: 60px;
  background-image: url(../images/totop.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  position: fixed;
  bottom: -100px;
  right: 20px;
  z-index: 1;
  -moz-transition: bottom 0.5s ease;
  -o-transition: bottom 0.5s ease;
  -webkit-transition: bottom 0.5s ease;
  transition: bottom 0.5s ease;
}
.to-top.is-view {
  bottom: 20px;
}
.to-top.change-bottom {
  position: absolute;
}

@media (max-width: 1200px) {
  .site-footer__logo {
    width: 242px;
    height: 74px;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding: 30px 0;
  }
  .site-footer__logo {
    width: 150px;
    height: 46px;
    margin: 0 auto 20px;
  }
  .site-footer__info span {
    display: inline-block;
  }
  .site-footer .container {
    display: block;
    text-align: center;
  }

  .to-top {
    width: 36px;
    height: 36px;
    right: 10px;
  }
  .to-top.change-bottom {
    bottom: 20px;
  }
}
@media (max-width: 414px) {
  .site-footer__info span {
    padding: 0;
    width: 100%;
  }
}
.kv {
  position: relative;
}
.kv .swiper-button-prev,
.kv .swiper-button-next {
  width: 44px;
  height: 64px;
  background-size: 20px 30px;
  background-color: #222;
  margin-top: -32px;
  display: none;
}
.kv .swiper-button-prev:hover,
.kv .swiper-button-next:hover {
  opacity: .8;
}
.kv .swiper-button-prev {
  background-image: url(../images/swiper-prev.svg);
  left: 0;
}
.kv .swiper-button-next {
  background-image: url(../images/swiper-next.svg);
  right: 0;
}
.kv .swiper-pagination {
  position: absolute;
  bottom: 75px;
  left: 5%;
  width: auto;
  margin-left: 10px;
  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;
}
.kv .swiper-pagination-bullet {
  margin: 0 4px;
  width: 10px;
  height: 10px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.25);
}
.kv .swiper-pagination-bullet-active {
  background-color: #fff;
}
.kv a {
  display: block;
}
.kv-bg {
  position: absolute;
  left: 0;
  top: 75px;
  width: 48.75%;
  height: calc(100% - 75px);
  background-color: #c20f24;
  background-image: url(../images/kv-bg.jpg);
  background-size: cover;
}
.kv-bg:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  display: block;
  background-image: url(../images/gd.jpg);
  background-size: cover;
  border-top: 1px solid #fff;
}
.kv .item {
  position: relative;
  padding: 0 0 75px;
}
.kv .image {
  margin-left: 18.75%;
  position: relative;
}
.kv .image img {
  width: 100%;
}
.kv .image:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  display: block;
  background: #222222;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: .5;
}
.kv .inner {
  position: absolute;
  bottom: 140px;
  left: 0;
  padding: 0 25% 0 5%;
}
.kv .main-text {
  margin-bottom: 20px;
  background-image: url(../images/kv-maintext.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.kv .main-text img {
  visibility: hidden;
}
.kv .sub-text {
  margin-bottom: 40px;
  background-image: url(../images/kv-subtext.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.kv .sub-text img {
  visibility: hidden;
}
.kv .text {
  border: 3px solid #fff;
  font-size: 36px;
  line-height: 70px;
  height: 70px;
  width: 200px;
  text-align: center;
  border-radius: 70px;
  color: #fff;
  margin-left: 10px;
}

.landing-section {
  position: relative;
  padding: 70px 0 85px;
  z-index: 0;
}
.landing-section .section-anchor {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.landing-section__header {
  position: relative;
  margin-bottom: 24px;
  font-size: 44px;
  line-height: 54px;
  padding-left: 28px;
}
.landing-section__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 54px;
  width: 10px;
}
.landing-section__action {
  position: absolute;
  top: 0;
  right: 20px;
  line-height: 54px;
}
.landing-section__action a:after {
  content: "";
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #050505;
  margin-left: 10px;
}
.landing-section .item {
  padding: 15px;
}
.landing-section .item:hover .image img {
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.1);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.1);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}
.landing-section .item .image {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.landing-section .item .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  width: 100%;
  z-index: 0;
}
.landing-section .item .image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  display: block;
  background: #222222;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: .4;
}
.landing-section a {
  text-decoration: none;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.landing-section .content {
  position: relative;
  padding: 20px 24px;
}
.landing-section .main-text {
  color: #050505;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .1em;
}
.landing-section .sub-text {
  color: #545454;
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 1.5;
  height: 3em;
  overflow: hidden;
}
.landing-section .date {
  color: #545454;
  font-size: 14px;
  margin-bottom: 8px;
}
.landing-section .label {
  position: absolute;
  bottom: 100%;
  right: 10px;
  width: 80px;
  line-height: 28px;
  height: 28px;
  border-radius: 28px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: -14px;
  letter-spacing: .1em;
}
.landing-section .landing-swiper-container {
  margin: 0 -15px;
}
.landing-section .swiper-button-prev,
.landing-section .swiper-button-next {
  width: 20px;
  height: 30px;
  background-size: 20px 30px;
  margin-top: -15px;
  display: none;
}
.landing-section .swiper-button-prev:hover,
.landing-section .swiper-button-next:hover {
  opacity: .8;
}
.landing-section .swiper-button-prev {
  background-image: url(../images/swiper-prev-black.svg);
  left: 0;
}
.landing-section .swiper-button-next {
  background-image: url(../images/swiper-next-black.svg);
  right: 0;
}
.landing-section .swiper-pagination {
  width: 100%;
  padding-top: 20px;
}
.landing-section .swiper-pagination-bullet {
  background-color: #d0d0d0;
  margin: 0 4px;
  border: 0;
}
.landing-section .swiper-pagination-bullet-active {
  background-color: #c20f24;
}

.landing-activity {
  padding-top: 60px;
  padding-bottom: 90px;
}
.landing-activity .content {
  background-color: #f8f8f8;
}
.landing-activity .landing-section__header:before {
  background-color: #c20f24;
}

.landing-lecture {
  position: relative;
  background-color: #f0ecec;
  background-image: url(../images/landing-lecture.png);
}
.landing-lecture .content {
  background-color: #fff;
}
.landing-lecture .landing-section__header:before {
  background-color: #c66428;
}

@media (max-width: 1200px) {
  .kv .swiper-pagination {
    bottom: 45px;
    left: 5%;
    margin-left: 5px;
  }
  .kv-bg {
    top: 45px;
    width: 50%;
    height: calc(100% - 45px);
  }
  .kv .item {
    padding: 0 0 45px;
  }
  .kv .image {
    margin-left: 17%;
  }
  .kv .inner {
    bottom: 90px;
    padding: 0 20% 0 5%;
  }
  .kv .main-text {
    margin-bottom: 8px;
    width: 90%;
  }
  .kv .sub-text {
    margin-bottom: 20px;
    width: 90%;
  }
  .kv .text {
    border: 2px solid #fff;
    font-size: 20px;
    line-height: 40px;
    height: 40px;
    width: 120px;
    border-radius: 40px;
    margin-left: 5px;
  }

  .landing-section__header {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 16px;
  }
  .landing-section__header:before {
    height: 44px;
  }
  .landing-section__action {
    line-height: 44px;
  }
  .landing-section .item {
    padding: 10px;
  }
  .landing-section .landing-swiper-container {
    margin: 0 -10px;
  }
}
@media (max-width: 767px) {
  .kv-bg {
    top: 20px;
    width: 60%;
    height: calc(100% - 20px);
  }
  .kv-bg:before {
    height: 6px;
  }
  .kv .item {
    padding: 0 0 30px;
  }
  .kv .image {
    margin-left: 17%;
  }
  .kv .image:before {
    height: 60%;
    opacity: .5;
  }
  .kv .inner {
    bottom: 45px;
  }
  .kv .main-text {
    margin-bottom: 0;
    width: 75%;
  }
  .kv .sub-text {
    margin-bottom: 8px;
    width: 75%;
  }
  .kv .text {
    border: 1px solid #fff;
    font-size: 12px;
    line-height: 28px;
    height: 28px;
    width: 70px;
    border-radius: 28px;
    margin-left: 4px;
  }
  .kv .swiper-pagination {
    bottom: 15px;
    left: 5%;
    margin-left: 4px;
  }
  .kv .swiper-pagination-bullet {
    margin: 0 3px;
    width: 6px;
    height: 6px;
  }
  .kv .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px;
  }

  .landing-section {
    position: relative;
    padding: 48px 0;
  }
  .landing-section .section-anchor {
    top: -70px;
  }
  .landing-section__header {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 32px;
    padding-left: 20px;
  }
  .landing-section__header:before {
    height: 32px;
    width: 8px;
  }
  .landing-section__action {
    right: 15px;
    line-height: 32px;
  }
  .landing-section__action a:after {
    border-width: 4px 0 4px 7px;
    margin-left: 5px;
    top: -2px;
  }
  .landing-section .label {
    width: 70px;
    line-height: 24px;
    height: 24px;
    border-radius: 24px;
    font-size: 12px;
    margin-bottom: -12px;
  }
  .landing-section .swiper-pagination {
    width: 100%;
    padding-top: 0;
  }
  .landing-section .swiper-pagination-bullet {
    margin: 0 3px;
    width: 6px;
    height: 6px;
  }

  .landing-activity {
    padding: 32px 0 48px;
  }
}
.about {
  padding: 72px 0;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  letter-spacing: .05em;
  color: #545454;
}
.about .section {
  margin-bottom: 72px;
  position: relative;
}
.about .section-anchor {
  position: absolute;
  top: -150px;
  left: 0;
}
.about .section-header {
  text-align: center;
  color: #c20f24;
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 44px;
  letter-spacing: .05em;
}
.about .list {
  margin: 0 -15px;
  margin-bottom: 40px;
  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;
}
.about .list .item {
  width: calc(100% / 2 - 15px * 2);
  padding: 20px 15px;
}
.about .list .item .image {
  width: 175px;
}
.about .list .item .content {
  width: calc(100% - 175px);
  padding-left: 24px;
}
.about .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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.about .item .image {
  width: 285px;
}
.about .item .content {
  width: calc(100% - 285px);
  padding-left: 40px;
}
.about .item .main-text {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .1em;
  color: #050505;
}
.about .item .sub-text {
  color: #545454;
  line-height: 2;
  font-size: 18px;
  letter-spacing: .05em;
  text-align: justify;
}

.about-menu {
  font-size: 20px;
  margin-bottom: 72px;
}
.about-menu ul {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-menu li {
  margin: 0 15px;
}
.about-menu a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
}
.about-menu a:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #050505;
  margin-right: 8px;
  top: -2px;
}

@media (max-width: 940px) {
  .about .list {
    margin-bottom: 32px;
    display: block;
  }
  .about .list .item {
    width: 100%;
    padding: 15px;
  }
  .about .list .item .image {
    width: 175px;
  }
  .about .list .item .content {
    width: calc(100% - 175px);
    padding-left: 24px;
  }
  .about .item .image {
    width: 175px;
  }
  .about .item .content {
    width: calc(100% - 175px);
    padding-left: 24px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 24px 0;
  }

  .about-menu {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .about-menu li {
    margin: 0 8px;
  }
  .about-menu a:before {
    border-width: 4px 0 4px 8px;
    margin-right: 5px;
    top: -2px;
  }
}
@media (max-width: 480px) {
  .about .section-anchor {
    top: -100px;
  }
  .about .section-header {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .about .list {
    display: block;
    margin: 0;
  }
  .about .list .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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }
  .about .list .item .image {
    width: 90px;
    margin-bottom: 0;
  }
  .about .list .item .content {
    width: calc(100% - 90px);
    padding-left: 16px;
  }
  .about .list .item .main-text {
    text-align: left;
    font-size: 18px;
    margin-bottom: 0;
  }
  .about .item {
    display: block;
  }
  .about .item .image {
    width: 160px;
    margin: 0 auto 24px;
  }
  .about .item .content {
    width: 100%;
    padding: 0;
  }
  .about .item .main-text {
    text-align: center;
  }

  .about-menu {
    margin: 0 auto 40px;
    max-width: 280px;
  }
  .about-menu li {
    width: 50%;
    margin: 0 0 15px;
  }
  .about-menu a {
    text-align: left;
  }
}
.news {
  padding: 72px 0;
}
.news .list {
  margin: 0 -15px;
  margin-bottom: 32px;
  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;
}
.news .top_tab {
    margin-bottom: 3rem; 
    padding:0;
    text-align: center;
}
.news .top_tab a{
    text-align: center; 
    width:49%; 
    padding:1rem 0px; 
    margin: 0;
    background:#F1E8E8;
    font-size: 1.5rem;
    display:inline-block;
    text-decoration:none;
}
.news .top_tab a.here{
    background:#BB2326;
    color:#fff;
}
.news .top_tab a:hover{
    background:#BB2326;
    color:#fff;
}

.news .list .item {
  width: calc(100% / 3 - 15px * 2);
  margin: 15px;
  background-color: #f8f8f8;
}
.news .list .item:hover .image img {
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.1);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.1);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}
.news .list .item .image {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.news .list .item .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  width: 100%;
  z-index: 0;
}
.news .list .item .image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  display: block;
  background: #222222;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: .4;
}
.news .list a {
  text-decoration: none;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.news .list .content {
  position: relative;
  padding: 20px 24px;
}
.news .list .main-text {
  color: #050505;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .1em;
}
.news .list .sub-text {
  color: #545454;
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 1.5;
  height: 3em;
  overflow: hidden;
}
.news .list .date {
  color: #545454;
  font-size: 14px;
  margin-bottom: 8px;
}
.news .list .label {
  position: absolute;
  bottom: 100%;
  right: 10px;
  width: 80px;
  line-height: 28px;
  height: 28px;
  border-radius: 28px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: -14px;
  letter-spacing: .1em;
}

@media (max-width: 1280px) {
  .news {
    padding: 20px 0;
  }
}
@media (max-width: 1200px) {
  .news .list {
    margin: 0 -10px;
  }
  .news .list .item {
    width: calc(100% / 3 - 10px * 2);
    margin: 10px;
  }
}
@media (max-width: 767px) {
  .news .list .item {
    width: calc(100% / 2 - 10px * 2);
    margin: 10px;
  }
  .news .list .label {
    width: 70px;
    line-height: 24px;
    height: 24px;
    border-radius: 24px;
    font-size: 12px;
    margin-bottom: -12px;
  }
}
@media (max-width: 480px) {
  .news .list {
    display: block;
    margin: 0 0 20px;
  }
  .news .list .item {
    width: 100%;
    margin: 0 0 20px;
  }
}
.event {
  padding: 72px 0;
}
.event .list {
  margin: 0 -15px;
  margin-bottom: 32px;
  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;
}
.event .top_tab {
    margin-bottom: 3rem; 
    padding:0;
    text-align: center;
}
.event .top_tab a{
    text-align: center; 
    width:49%; 
    padding:1rem 0px; 
    margin: 0;
    background:#F1E8E8;
    font-size: 1.5rem;
    display:inline-block;
    text-decoration:none;
}
.event .top_tab a.here{
    background:#BB2326;
    color:#fff;
}
.event .top_tab a:hover{
    background:#BB2326;
    color:#fff;
}
.event .list .item {
  width: calc(100% / 3 - 15px * 2);
  margin: 15px;
  background-color: #f8f8f8;
}
.event .list .item:hover .image img {
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.1);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.1);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}
.event .list .item .image {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.event .list .item .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  width: 100%;
  z-index: 0;
}
.event .list .item .image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  display: block;
  background: #222222;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: .4;
}
.event .list a {
  text-decoration: none;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.event .list .content {
  position: relative;
  padding: 20px 24px;
}
.event .list .main-text {
  color: #050505;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .1em;
}
.event .list .sub-text {
  color: #545454;
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 1.5;
  height: 3em;
  overflow: hidden;
}
.event .list .date {
  color: #545454;
  font-size: 14px;
  margin-bottom: 8px;
}
.event .list .label {
  position: absolute;
  bottom: 100%;
  right: 10px;
  width: 80px;
  line-height: 28px;
  height: 28px;
  border-radius: 28px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: -14px;
  letter-spacing: .1em;
}

@media (max-width: 1280px) {
  .event {
    padding: 20px 0;
  }
}
@media (max-width: 1200px) {
  .event .list {
    margin: 0 -10px;
  }
  .event .list .item {
    width: calc(100% / 3 - 10px * 2);
    margin: 10px;
  }
  .event .list .label {
    width: 70px;
    line-height: 24px;
    height: 24px;
    border-radius: 24px;
    font-size: 12px;
    margin-bottom: -12px;
  }
}
@media (max-width: 767px) {
  .event .list .item {
    width: calc(100% / 2 - 10px * 2);
    margin: 10px;
  }
}
@media (max-width: 480px) {
  .event .list {
    display: block;
    margin: 0 0 20px;
  }
  .event .list .item {
    width: 100%;
    margin: 0 0 20px;
  }
}
.member {
  padding: 72px 0;
}
.member .list {
  margin-bottom: 40px;
}
.member .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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  padding: 48px 0;
  border-bottom: 1px solid #d0d0d0;
}
.member .item .image {
  width: 285px;
}
.member .item .content {
  width: calc(100% - 285px);
  padding-left: 40px;
}
.member .item .main-text {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .1em;
}
.member .item .sub-text {
  color: #545454;
  line-height:1.2;
  margin-bottom: 24px;
  letter-spacing: .05em;
  text-align: justify;
}
.member .item .sub-text p {
  margin-top:0px;
  margin-bottom:0px;
}
.member .item .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;
}
.member .item .thumbs {
  width: 105px;
  height: 70px;
  position: relative;
  margin-right: 15px;
  background-color: #bbb;
  overflow: hidden;
}
.member .item .thumbs img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  width: 100%;
  z-index: 0;
}
.member .item .thumbs:hover img {
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.1);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.1);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}

.member-menu {
  font-size: 20px;
  margin-bottom: 32px;
}
.member-menu ul {
  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;
  list-style: none;
  padding: 0;
  margin: 0;
}
.member-menu li {
  margin: 0 15px;
  width: 100%;
  max-width: 136px;
}
.member-menu li .active {
  border: 0;
  color: #fff;
}
.member-menu li:nth-child(1) .active {
  background-color: #c66427;
}
.member-menu li:nth-child(2) .active {
  background-color: #c65b9f;
}
.member-menu li:nth-child(3) .active {
  background-color: #853a72;
}
.member-menu li:nth-child(4) .active {
  background-color: #192452;
}
.member-menu li:nth-child(5) .active {
  background-color: #7ea274;
}
.member-menu li:nth-child(6) .active {
  background-color: indianred;
}
.member-menu li:nth-child(7) .active {
  background-color: goldenrod;
}
.member-menu li:nth-child(8) .active {
  background-color: rosybrown;
}

.member-menu a {
  line-height: 48px;
  display: block;
  border-radius: 48px;
  border: 1px solid #888;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 767px) {
  .member {
    padding: 20px 0;
  }
  .member .list {
    margin-bottom: 32px;
  }
  .member .item {
    padding: 40px 0;
  }
  .member .item .image {
    width: 200px;
  }
  .member .item .content {
    width: calc(100% - 200px);
    padding-left: 24px;
  }

  .member-menu {
    font-size: 18px;
    margin: 0 -4px;
    margin-bottom: 8px;
  }
  .member-menu li {
    margin: 4px;
    width: calc(100% / 5 - 4px * 2);
  }
  .member-menu a {
    line-height: 40px;
    width: 100%;
    border-radius: 40px;
  }
}
@media (max-width: 480px) {
  .member .item {
    display: block;
    padding: 32px 0;
  }
  .member .item .image {
    width: 200px;
    margin: 0 auto 24px;
  }
  .member .item .content {
    width: 100%;
    padding: 0;
  }
  .member .item .main-text {
    text-align: center;
  }
  .member .item .thumbs {
    width: 90px;
    height: 60px;
    margin-right: 8px;
  }

  .member-menu {
    font-size: 14px;
    margin: 0 -2px;
  }
  .member-menu li {
    margin: 2px;
    width: calc(100% / 5 - 2px * 2);
  }
  .member-menu a {
    line-height: 32px;
    width: 100%;
    border-radius: 32px;
    font-weight: 500;
  }
}
.albums {
  padding: 72px 0;
}
.albums .list {
  margin: 0 -15px;
  margin-bottom: 32px;
  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;
}
.albums .list .item {
  width: calc(100% / 3 - 15px * 2);
  margin: 15px;
  background-color: #f8f8f8;
}
.albums .list .item:hover .image img {
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.1);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.1);
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.1);
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}
.albums .list .item .image {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.albums .list .item .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  width: 100%;
  z-index: 0;
}
.albums .list .item .image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  display: block;
  background: #222222;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: .4;
}
.albums .list a {
  text-decoration: none;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.albums .list .content {
  position: relative;
  padding: 20px 24px;
}
.albums .list .main-text {
  color: #050505;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .1em;
}
.albums .list .date {
  color: #545454;
  font-size: 14px;
  margin-bottom: 8px;
}

@media (max-width: 1280px) {
  .albums {
    padding: 20px 0;
  }
}
@media (max-width: 1200px) {
  .albums .list {
    margin: 0 -10px;
  }
  .albums .list .item {
    width: calc(100% / 3 - 10px * 2);
    margin: 10px;
  }
}
@media (max-width: 767px) {
  .albums .list .item {
    width: calc(100% / 2 - 10px * 2);
    margin: 10px;
  }
}
@media (max-width: 480px) {
  .albums .list {
    display: block;
    margin: 0 0 20px;
  }
  .albums .list .item {
    width: 100%;
    margin: 0 0 20px;
  }
}
.detail {
  padding: 72px 0;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
}
.detail__header {
  margin-bottom: 32px;
  position: relative;
  padding-right: 130px;
  min-height: 80px;
}
.detail__content {
  color: #545454;
  line-height: 2;
  letter-spacing: .05em;
  margin-bottom: 100px;
}
.detail__content a {
  color: #c20f24;
}
.detail__footer {
  text-align: center;
}
.detail .label {
  position: absolute;
  top: 2px;
  right: 0;
  width: 120px;
  line-height: 45px;
  height: 45px;
  border-radius: 45px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .1em;
}
.detail .main-text {
  color: #050505;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.detail .date {
  color: #545454;
  font-size: 20px;
}
.detail .image {
  margin: 0 auto 40px;
  display: block;
  width: 100%;
}
.detail .image img {
  width: 100%;
}
.detail p {
  text-align: justify;
}

.detail-albums .detail__header {
  padding-right: 0;
}
.detail-albums img {
  width: 100%;
}
.detail-albums .gallery-top {
  margin-bottom: 32px;
}
.detail-albums .gallery-thumbs-container {
  position: relative;
}
.detail-albums .gallery-thumbs {
  margin: 0 -15px;
}
.detail-albums .gallery-thumbs .swiper-slide-thumb-active .thumbs:before {
  opacity: 1;
}
.detail-albums .thumbs {
  margin: 0 15px;
  cursor: pointer;
  position: relative;
}
.detail-albums .thumbs:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 5px #c20f24 inset;
  display: block;
  opacity: 0;
}
.detail-albums .swiper-button-prev,
.detail-albums .swiper-button-next {
  width: 20px;
  height: 30px;
  background-size: 20px 30px;
  margin-top: -15px;
  opacity: 1;
}
.detail-albums .swiper-button-prev:hover,
.detail-albums .swiper-button-next:hover {
  opacity: .8;
}
.detail-albums .swiper-button-prev {
  background-image: url(../images/swiper-prev-black.svg);
  left: -40px;
}
.detail-albums .swiper-button-next {
  background-image: url(../images/swiper-next-black.svg);
  right: -40px;
}
.detail-albums .swiper-pagination {
  width: 100%;
  padding-top: 20px;
}
.detail-albums .swiper-pagination-bullet {
  background-color: #d0d0d0;
  margin: 0 4px;
  border: 0;
}
.detail-albums .swiper-pagination-bullet-active {
  background-color: #c20f24;
}

@media (max-width: 1280px) {
  .detail-albums .gallery-top .swiper-button-prev,
  .detail-albums .gallery-top .swiper-button-next {
    display: none;
  }
  .detail-albums .gallery-thumbs {
    margin: 0 -8px;
  }
  .detail-albums .thumbs {
    margin: 0 8px;
  }
  .detail-albums .gallery-thumbs-container {
    padding: 0 40px;
  }
  .detail-albums .swiper-button-prev {
    left: 0;
  }
  .detail-albums .swiper-button-next {
    right: 0;
  }
}
@media (max-width: 767px) {
  .detail {
    padding: 24px 0;
    max-width: 100%;
  }
  .detail__header {
    margin-bottom: 20px;
    padding-right: 0;
  }
  .detail__content {
    margin-bottom: 50px;
  }
  .detail__footer {
    margin-bottom: 32px;
  }
  .detail__footer .btn {
    font-size: 16px;
    min-width: 120px;
    height: 40px;
    line-height: 40px;
  }
  .detail .label {
    position: relative;
    top: 0;
    right: 0;
    width: 80px;
    line-height: 28px;
    height: 28px;
    border-radius: 28px;
    font-size: 14px;
    margin-left: 10px;
    display: inline-block;
  }
  .detail .main-text {
    font-size: 33px;
    margin-bottom: 8px;
  }
  .detail .date {
    font-size: 16px;
    display: inline-block;
    line-height: 28px;
  }
  .detail .image {
    margin: 0 auto 20px;
  }
}
@media (max-width: 640px) {
  .detail-albums .gallery-top {
    margin-bottom: 24px;
  }
  .detail-albums .gallery-thumbs-container {
    padding: 0 24px;
  }
  .detail-albums .gallery-thumbs {
    margin: 0 -8px;
  }
  .detail-albums .thumbs {
    margin: 0 8px;
  }
  .detail-albums .thumbs:before {
    box-shadow: 0 0 0 3px #c20f24 inset;
  }
  .detail-albums .swiper-button-prev,
  .detail-albums .swiper-button-next {
    width: 12px;
    height: 20px;
    background-size: 12px 20px;
    margin-top: -12px;
  }
}
.contact {
  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: 80px 0 160px;
  font-size: 18px;
  margin: 0 auto;
}
.contact .contact-info {
  width: 50%;
  padding-right: 50px;
}
.contact .contact-form {
  width: 50%;
}

.contact-info .map {
  border: 1px solid #999;
  margin-bottom: 32px;
}
.contact-info .post-iframe {
  padding-bottom: 70%;
}
.contact-info .info {
  line-height: 1.6;
}

.contact-form .block {
  color: #545454;
  border-bottom: 1px solid #999;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  text-align: justify;
}
.contact-form .form-group {
  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-bottom: 1em;
}
.contact-form .form-group label {
  text-align: right;
  width: 100px;
  padding-right: 15px;
  line-height: 50px;
  margin-bottom: 0;
}
.contact-form .form-group .form-control {
  width: calc(100% - 100px);
  font-size: 18px;
}
.contact-form .form-group .form-control::placeholder {
  font-size: 18px;
}
.contact-form .form-group textarea.form-control {
  padding: .75rem;
  line-height: 1.5;
  width: 100%;
}
.contact-form .message {
  padding-top: 10px;
  padding-left: 100px;
}
.contact-form .action {
  padding-left: 100px;
  padding-top: 20px;
}

@media (max-width: 1280px) {
  .contact {
    padding: 50px 0 100px;
  }
}
@media (max-width: 767px) {
  .contact {
    display: block;
    padding: 24px 0 48px;
    max-width: 500px;
  }
  .contact .contact-info {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .contact .contact-form {
    width: 100%;
  }

  .contact-info .map {
    margin-bottom: 24px;
  }

  .contact-form .form-group {
    display: block;
  }
  .contact-form .form-group label {
    text-align: left;
    width: 100%;
    padding-right: 0;
  }
  .contact-form .form-group .form-control {
    width: 100%;
  }
  .contact-form .message {
    padding-left: 0;
    padding-top: 1em;
  }
  .contact-form .action {
    padding-left: 0;
    text-align: center;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}

/*ccciatwµØ³Ð¹Î¶¤*/

#ccciatw {
	width:100%;
}
#ccciatw tbody tr td:first-child{
	vertical-align:top;
	width:320px;
}
#ccciatw tbody tr td:first-child img{
	width:100%;
	margin-bottom:2rem;
	border-radius:0.3rem;

}
#ccciatw tbody tr td:nth-child(even){
	padding-left:1.5rem;
	vertical-align:top;
}
@media (max-width:767px) {
	#ccciatw tbody tr td:first-child{
		vertical-align:top;
		width:250px;
	}
}