@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

------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
 * 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, -100px, 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(-50px, 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(50px, 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, 50px, 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 9.2.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 17, 2023
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #666;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-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: flex;
  justify-content: 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%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper-pagination {
  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;
  margin: -3px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background-color: #000;
  box-shadow: 0;
  opacity: .5;
  margin: 3px;
}

.swiper-pagination-bullet-active {
  background-color: #000;
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 3px;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  width: 18px;
  height: 36px;
  margin-top: -18px;
  border-radius: 0;
  background-size: 18px auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
}
.swiper-button-prev:before, .swiper-button-prev:after,
.swiper-button-next:before,
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: .4 !important;
  filter: grayscale(1);
}
.swiper-button-prev:active,
.swiper-button-next:active {
  opacity: .8;
}
@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: .8;
  }
}

.swiper-button-prev {
  background-image: url(../images/swiper-prev.png);
  left: 15px;
}

.swiper-button-next {
  background-image: url(../images/swiper-next.png);
  right: 15px;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  text-align: center;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.btn.disabled {
  color: #565570;
  background: #353451;
  pointer-events: none;
}

.btn-primary {
  font-size: 15px;
  line-height: 44px;
  height: 44px;
  padding: 0;
  width: 100%;
  border-radius: 44px;
  background: #057895;
  display: block;
}
.btn-primary:active {
  background: #057895;
  filter: brightness(1.2);
}
@media (hover: hover) {
  .btn-primary:hover {
    background: #057895;
    filter: brightness(1.2);
  }
}

.btn-secondary {
  font-size: 15px;
  line-height: 44px;
  height: 44px;
  padding: 0;
  width: 100%;
  border-radius: 44px;
  background: #FF7D00;
  display: block;
}
.btn-secondary:active {
  background: #FF7D00;
  filter: brightness(1.2);
}
@media (hover: hover) {
  .btn-secondary:hover {
    background: #FF7D00;
    filter: brightness(1.2);
  }
}

.btn-dark {
  font-size: 15px;
  line-height: 44px;
  height: 44px;
  padding: 0;
  width: 100%;
  border-radius: 44px;
  background: #838e97;
  display: block;
}
.btn-dark:active {
  background: #838e97;
  filter: brightness(1.2);
}
@media (hover: hover) {
  .btn-dark:hover {
    background: #838e97;
    filter: brightness(1.2);
  }
}

.icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.icon-facebook {
  background-image: url(../images/icon-facebook.png);
}
.icon-rss {
  background-image: url(../images/icon-rss.png);
}
.icon-search {
  background-image: url(../images/icon-search.svg);
}

.form-control {
  padding: 8px 22px;
  font-size: 15px;
  line-height: 21px;
  height: 37px;
  letter-spacing: .22em;
  color: #6E4E0D;
  background-color: #FFF3F3;
  border: 0;
  border-radius: 10px;
  width: 100%;
  font-family: Arial, 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
.form-control::placeholder {
  color: #F8B99B;
  opacity: 1;
}
.form-control::focus {
  background-color: #FFF3F3;
}

.checkbox-item {
  position: relative;
  display: block;
}
.checkbox-item input {
  display: none;
}
.checkbox-item label {
  padding: 0 0 0 24px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  display: block;
  cursor: pointer;
}
.checkbox-item label:before {
  content: '';
  display: inline-block;
  background-color: #fff;
  border: 0;
  position: absolute;
  top: 2px;
  left: 0;
  box-sizing: border-box;
  border-radius: 0;
  width: 14px;
  height: 14px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  border-radius: 3px;
  border: 1px solid #6E4E0D;
}
.checkbox-item label:after {
  content: '';
  background-image: url(../images/check.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  border-radius: 0;
  width: 14px;
  height: 14px;
  background-color: transparent;
  box-sizing: border-box;
  top: 2px;
  left: 0;
  display: none;
  border-radius: 3px;
}
.checkbox-item input:checked + label:after {
  display: block;
}
.checkbox-item input + label {
  transition: .7s ease;
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: 38px;
  padding: 0 1.75em 0 .75em;
  font-weight: 400;
  line-height: 38px;
  color: #333;
  font-size: 15px;
  vertical-align: middle;
  background: #fff url(../images/select-arrow.png) right 0.75rem center/6px auto no-repeat;
  border: 1px solid #CED4DA;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
}
.form .form-control {
  border-radius: 10px;
}
.form .form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.form .form-section + .form-section {
  margin-top: 12px;
}
.form .form-label {
  font-weight: 500;
  text-transform: uppercase;
  width: 86px;
  font-size: 15px;
  line-height: 37px;
  letter-spacing: .12em;
  color: #6E4E0D;
  margin: 0;
}
.form .form-content {
  width: calc(100% - 86px);
}
.form .check-row {
  margin-top: 20px;
}
.form .check-row .checkbox-item label {
  font-size: 12px;
  line-height: 18px;
  color: #6E4E0D;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  color: #1D2129;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
  background-color: #fff;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: color, opacity, background-color 0.5s ease;
  -o-transition: color, opacity, background-color 0.5s ease;
  -webkit-transition: color, opacity, background-color 0.5s ease;
  transition: color, opacity, background-color 0.5s ease;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  -moz-outline-style: none;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 16px;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

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

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.in-view {
  opacity: 0;
}

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
}

.site-content {
  position: relative;
}

.scroll-hidden {
  overflow: hidden;
}

.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;
  }
}
.floating {
  animation-name: floating;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}

@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, 10px);
  }
  to {
    transform: translate(0, 0);
  }
}
.page-header {
  position: relative;
}
.page-content {
  position: relative;
  background-color: #FFFEE5;
  z-index: 1;
  padding-bottom: 100px;
}
.page-content .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  pointer-events: none;
  background-image: url(../images/page-content-bg.png);
  top: -48px;
  height: calc(100% + 48px);
}
.page-content .container {
  max-width: 1220px;
}
.page-box {
  position: relative;
  border-radius: 40px;
  box-shadow: 8px 6px 0 #EDEAA1;
  background-image: url(../images/page-box-bg.jpg);
  background-size: 100% auto;
  background-color: #fefdf9;
}

.page-breadcrumb {
  margin: 0 auto 30px;
  padding: 0;
}
.page-breadcrumb .breadcrumb {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.page-breadcrumb .breadcrumb-item {
  padding: 8px;
  padding-left: 0;
  font-size: 14px;
  line-height: 20px;
  display: inline;
  color: #000;
}
.page-breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/breadcrumb-arrow.svg);
  background-size: 12px 12px;
  padding: 0;
  margin: 4px 10px 0 0;
}
.page-breadcrumb .breadcrumb-item a {
  color: #000;
}
.page-breadcrumb .breadcrumb-item.active {
  color: #000;
}

@media (min-width: 1921px) {
  .page-content .bg {
    background-size: 100% auto;
  }
}
@media (max-width: 750px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .container {
    padding: 0 15px;
  }

  .page-breadcrumb {
    margin: 0 auto 20px;
  }
  .page-breadcrumb .breadcrumb-item {
    padding: 0 8px 0 0;
  }

  .page-content {
    padding-top: 15px;
    padding-bottom: 60px;
  }
  .page-content .bg {
    background-size: 750px auto;
    background-image: url(../images/page-content-bg_s.png);
    top: -24px;
    height: calc(100% + 24px);
  }
  .page-content .container {
    max-width: 100%;
  }
  .page-box {
    border-radius: 10px;
    box-shadow: 5px 5px 0 0 #EDEAA1;
    background-image: none;
    background-image: url(../images/page-box-bg_s.jpg);
    background-size: 100% auto;
    background-position: center top;
    background-color: #fefdf9;
  }
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.site-header .container {
  max-width: 100%;
}
.site-header .logo {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 286px;
  height: 81px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/logo.png);
  z-index: 2;
}
.site-header.sticky {
  background-color: transparent;
  height: inherit;
  position: absolute;
}
.site-header.sticky .logo {
  display: none;
}
@media (min-width: 1001px) {
  .site-header.sticky .site-menu {
    top: 0;
    right: 0;
    background-color: transparent;
    border-radius: none;
    padding: 0;
  }
  .site-header.sticky .site-menu .menu-toggle {
    display: block;
  }
  .site-header.sticky .site-menu.is-view .menu-panel {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    padding-top: 90px;
    padding-bottom: 65px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li {
    -moz-animation: fadeInUp 0.3s both;
    -webkit-animation: fadeInUp 0.3s both;
    animation: fadeInUp 0.3s both;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(5) {
    animation-delay: 0.5s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(6) {
    animation-delay: 0.6s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(7) {
    animation-delay: 0.7s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(8) {
    animation-delay: 0.8s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .main-menu li:nth-child(9) {
    animation-delay: 0.9s;
  }
  .site-header.sticky .site-menu.is-view .menu-panel .menu-close {
    display: block;
    -moz-animation: fadeInDown 0.3s both;
    -webkit-animation: fadeInDown 0.3s both;
    animation: fadeInDown 0.3s both;
  }
  .site-header.sticky .menu-panel {
    display: none;
    background-image: url(../images/menu-bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    background-color: #FFF5E9;
  }
  .site-header.sticky .main-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  .site-header.sticky .main-menu li {
    position: relative;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  .site-header.sticky .main-menu li + li {
    margin-top: 15px;
  }
  .site-header.sticky .main-menu a {
    font-size: 19px;
    line-height: 27px;
    width: auto;
    height: 53px;
    padding: 12px 20px;
    border-radius: 28px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.site-menu {
  position: absolute;
  top: 32px;
  right: 16px;
}
.site-menu .menu-close {
  display: none;
}
.site-menu .menu-toggle {
  display: none;
}

.main-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.main-menu li {
  position: relative;
  padding: 0 4px;
}
.main-menu a {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #B27534;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 28px;
  padding: 10px 14px;
  background-color: #fff;
  box-shadow: 3px 3px 0 0 #FDDEB9;
}
.main-menu a.highlight {
  color: #3AE2CF;
}
.main-menu a:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .main-menu a:hover {
    filter: brightness(1.05);
  }
}

.menu-toggle {
  position: fixed;
  top: 12px;
  right: 16px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 5;
  background-size: contain;
  background-image: url(../images/menu-toggle.png);
  display: none;
}
.menu-toggle:active {
  filter: brightness(1.1);
}

.menu-close {
  position: fixed;
  top: 12px;
  right: 16px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 12;
  background-size: contain;
  background-image: url(../images/menu-close.png);
  display: none;
}
.menu-close:active {
  filter: brightness(1.1);
}

@media (max-width: 1280px) and (min-width: 1001px) {
  .site-header .logo {
    left: 15px;
    width: 220px;
    height: 64px;
  }

  .site-menu {
    top: 26px;
    right: 16px;
  }

  .main-menu li {
    padding: 0 4px;
  }
  .main-menu a {
    font-size: 15px;
  }
}
@media (max-width: 1140px) and (min-width: 1001px) {
  .site-menu {
    right: 14px;
  }

  .main-menu li {
    padding: 0 2px;
  }
  .main-menu a {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 1000px) {
  .site-header .logo {
    top: 32px;
    left: 16px;
    width: 260px;
    height: 73px;
  }
  .site-header .logo-mobile-small {
    top: 15px;
    left: 15px;
    width: 224px;
    height: 64px;
  }
  .site-header.sticky {
    background-color: transparent;
    height: inherit;
    position: absolute;
  }
  .site-header.sticky .logo {
    display: none;
  }

  .site-menu {
    top: 0;
    right: 0;
    background-color: transparent;
    border-radius: none;
    padding: 0;
  }
  .site-menu .menu-toggle {
    display: block;
  }
  .site-menu.is-view .menu-panel {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    padding-top: 90px;
    padding-bottom: 65px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
  }
  .site-menu.is-view .menu-panel .main-menu li {
    -moz-animation: fadeInUp 0.3s both;
    -webkit-animation: fadeInUp 0.3s both;
    animation: fadeInUp 0.3s both;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(2) {
    animation-delay: 0.2s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(4) {
    animation-delay: 0.4s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(5) {
    animation-delay: 0.5s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(6) {
    animation-delay: 0.6s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(7) {
    animation-delay: 0.7s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(8) {
    animation-delay: 0.8s;
  }
  .site-menu.is-view .menu-panel .main-menu li:nth-child(9) {
    animation-delay: 0.9s;
  }
  .site-menu.is-view .menu-panel .menu-close {
    display: block;
    -moz-animation: fadeInDown 0.3s both;
    -webkit-animation: fadeInDown 0.3s both;
    animation: fadeInDown 0.3s both;
  }

  .menu-panel {
    display: none;
    background-image: url(../images/menu-bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 950px auto;
    background-color: #FFF5E9;
  }

  .main-menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  .main-menu li {
    position: relative;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  .main-menu li + li {
    margin-top: 15px;
  }
  .main-menu a {
    font-size: 19px;
    line-height: 27px;
    width: auto;
    height: 53px;
    padding: 12px 20px;
    border-radius: 28px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (max-width: 374px) {
  .site-header .logo {
    top: 8.533333333vw;
    left: 4.266666666vw;
    width: 66.666666666vw;
    height: 19.466666666vw;
  }
  .site-header .logo-mobile-small {
    top: 4vw;
    left: 4vw;
    width: 59.733333333vw;
    height: 17.066666666vw;
  }
}
.site-footer {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .1em;
  color: #fff;
  background-color: #000;
  text-align: center;
}
.site-footer a {
  color: #fff;
}
.site-footer__top {
  padding-top: 90px;
  padding-bottom: 45px;
}
.site-footer__bottom {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #515151;
  color: #787878;
}
.site-footer .footer-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 90px;
}
.site-footer .footer-logo li + li {
  margin-left: 32px;
}
.site-footer .footer-logo img {
  max-height: 62px;
}
.site-footer .menu {
  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;
  margin: 0 -32px;
}
.site-footer .menu li {
  margin: 0 32px;
}
.site-footer .menu a {
  color: #fff;
}
.site-footer .menu a:active {
  color: #F0EA3C;
}
@media (hover: hover) {
  .site-footer .menu a:hover {
    color: #F0EA3C;
  }
}

.side-sticky {
  position: fixed;
  bottom: 20px;
  right: -3px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 3;
}
.side-sticky.is-view .totop {
  display: block;
}
.side-sticky.change-bottom {
  position: absolute;
  bottom: 20px;
}
.side-sticky a {
  cursor: pointer;
  display: block;
}
.side-sticky a:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .side-sticky a:hover {
    filter: brightness(1.1);
  }
}
.side-sticky .cta {
  -moz-animation: pulse 1s infinite;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
}
.side-sticky .icon-cta {
  width: 61px;
  height: 190px;
  background-size: 100% auto;
  background-image: url(../images/btn-cta.png);
  box-shadow: 4px 4px 25px #FFF100;
  border-radius: 24px 0 0 24px;
}
.side-sticky .totop {
  width: 61px;
  margin: 15px auto 0;
  display: none;
}
.side-sticky .icon-top {
  width: 61px;
  height: 90px;
  background-size: 100% auto;
  background-image: url(../images/btn-top.png);
  border-radius: 24px 0 0 24px;
}

@media (max-width: 767px) {
  .site-footer .container {
    max-width: 375px;
    padding: 0 15px;
  }
  .site-footer__top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .site-footer__bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    letter-spacing: .05em;
  }
  .site-footer__bottom .container {
    padding: 0;
  }
  .site-footer__bottom span {
    display: inline-block;
  }
  .site-footer .footer-logo {
    display: block;
    max-width: 260px;
    margin: 0 auto 50px;
  }
  .site-footer .footer-logo li + li {
    margin: 20px 0 0;
  }
  .site-footer .footer-logo img {
    max-height: 65px;
    margin: 0 auto;
  }
  .site-footer .menu {
    margin: -4px -10px;
  }
  .site-footer .menu li {
    margin: 4px 10px;
  }

  .side-sticky {
    right: -2px;
  }
  .side-sticky .icon-cta {
    width: 48px;
    height: 150px;
    border-radius: 16px 0 0 16px;
  }
  .side-sticky .totop {
    width: 40px;
    margin: 10px auto 0;
  }
  .side-sticky .icon-top {
    width: 48px;
    height: 71px;
    border-radius: 16px 0 0 16px;
  }
}
.modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 1074px;
  margin: 0 auto;
}
.modal-content {
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .05em;
  color: #5E5E5E;
}
.modal .btn-close {
  width: 40px;
  height: 40px;
  padding: 0;
  background: url(../images/modal-close.png);
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}

.modal-backdrop {
  background-color: #000;
}

.modal-backdrop.show {
  opacity: .85;
}

.winner-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 491px;
}
.winner-modal .modal-content {
  background-color: transparent;
}
.winner-modal .inner {
  border-radius: 35px;
  overflow: hidden;
  position: relative;
}
.winner-modal .btn-close {
  width: 56px;
  height: 56px;
  background-size: 100% auto;
  top: -28px;
  right: -28px;
}
.winner-modal a {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.winner-modal a:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .winner-modal a:hover {
    filter: brightness(1.05);
  }
}

.signer-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 1074px;
  margin: 64px auto;
}
.signer-modal .modal-content {
  background-color: #fff;
  border-radius: 25px;
  padding: 28px 36px;
  overflow: hidden;
  position: relative;
  border: 4px solid #FFF100;
}
.signer-modal .grid {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.signer-modal .grid-left {
  width: 45.226130653%;
}
.signer-modal .grid-right {
  width: calc(100% - 45.226130653%);
  padding-left: 38px;
}
.signer-modal .image {
  border-radius: 15px;
  overflow: hidden;
}
.signer-modal .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.signer-modal .main-text {
  font-size: 28px;
  line-height: 40px;
  font-weight: 500;
  color: #2E2D2D;
  letter-spacing: .02em;
  margin-right: 12px;
}
.signer-modal .sub-text {
  font-size: 22px;
  line-height: 30px;
  color: #000;
  letter-spacing: .02em;
  margin-top: 6px;
  font-weight: 500;
  text-align: justify;
}
.signer-modal .time {
  background-color: #FFF100;
  width: 100%;
  min-height: 46px;
  color: #241614;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 10px 5px 10px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 4px 3px 0 0 #E5D61A;
  position: relative;
}
.signer-modal .time:before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 56px;
  background-image: url(../images/signer-modal-triangle.png);
  background-repeat: no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 17px;
}
.signer-modal .time .text-small {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}
.signer-modal .info {
  padding-bottom: 160px;
}
.signer-modal .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 212px;
}
.signer-modal .floating {
  animation-duration: 1s;
}

.product-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 1137px;
  margin: 64px auto;
}
.product-modal .modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 25px;
  padding: 28px 36px;
  overflow: hidden;
  position: relative;
  border: 4px solid #9BECE3;
}
.product-modal .modal-content:after {
  content: "";
  position: absolute;
  width: 186px;
  height: 144px;
  bottom: 0;
  right: 32px;
  background-image: url(../images/product-modal-bottom.png);
  background-size: 100% auto;
}
.product-modal .grid {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-modal .grid-left {
  width: 48.932219127%;
}
.product-modal .grid-right {
  width: calc(100% - 48.932219127%);
  padding-left: 40px;
  padding-bottom: 120px;
}
.product-modal .image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.product-modal .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.product-modal .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-modal .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: 30px;
  padding-right: 40px;
}
.product-modal .main-text {
  font-size: 28px;
  line-height: 40px;
  font-weight: 500;
  color: #2E2D2D;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.product-modal .main-text img {
  margin-top: 2px;
  width: 28px;
}
.product-modal .main-text span {
  display: inline-block;
}
.product-modal .main-text + .highlight {
  margin-top: 15px;
}
.product-modal .main-text .text-small {
  font-size: 22px;
}
.product-modal .highlight {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: #ED9228;
  letter-spacing: .05em;
  width: 100%;
}
.product-modal .heading {
  background-color: #9BECE3;
  width: auto;
  height: 46px;
  text-align: center;
  color: #241614;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 10px 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 4px 3px 0 0 #72D5CA;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.product-modal .heading:before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: calc(50% - 20px / 2);
  background-image: url(../images/product-modal-triangle.png);
  background-repeat: no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 17px;
}
.product-modal .info + .info {
  margin-top: 28px;
}
.product-modal .info .text-small {
  font-size: 15px;
  line-height: 21px;
}
.product-modal .info-brand {
  margin-bottom: 40px;
}
.product-modal .l-swiper {
  margin: -6px;
}
.product-modal .swiper-wrapper {
  margin-bottom: 14px;
}
.product-modal .swiper-slide {
  padding: 6px;
}
.product-modal .swiper-slide .image {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  opacity: 0;
}
.product-modal .swiper-slide-active .image {
  opacity: 1;
}
.product-modal .swiper-pagination {
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  bottom: 0;
}
.product-modal p + p {
  margin-top: 20px;
}
.product-modal .text-small {
  font-size: 12px;
  line-height: 18px;
}
.product-modal a,
.product-modal .link {
  color: #1989B9;
  text-decoration: underline;
}
.product-modal ol {
  list-style: decimal;
  padding-left: 1.25em;
}

.market-modal .modal-content:after {
  width: 253px;
  height: 121px;
  background-image: url(../images/market-modal-bottom.png);
}
.market-modal .grid-right {
  padding-bottom: 50px;
}

.fun-modal .modal-content:after {
  display: none;
}

.interactive-modal .modal-content:after {
  width: 212px;
  height: 127px;
  background-image: url(../images/interactive-modal-bottom.png);
}
.interactive-modal .grid-right {
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .modal .btn-close {
    right: 24px;
  }

  .winner-modal .modal-dialog {
    max-width: 344px;
  }
  .winner-modal .inner {
    border-radius: 30px;
  }
  .winner-modal .btn-close {
    width: 48px;
    height: 48px;
    background-size: 100% auto;
    top: -24px;
    right: 0;
  }

  .signer-modal .modal-dialog {
    max-width: 344px;
    margin: 20px auto;
  }
  .signer-modal .modal-content {
    padding: 68px 16px 60px;
  }
  .signer-modal .btn-close {
    width: 40px;
    height: 40px;
    background-size: 100% auto;
    top: 19px;
    right: 16px;
  }
  .signer-modal .grid {
    display: block;
  }
  .signer-modal .grid-left {
    width: 100%;
    margin-bottom: 15px;
  }
  .signer-modal .grid-right {
    width: 100%;
    padding-left: 0;
  }
  .signer-modal .group {
    margin-bottom: 15px;
  }
  .signer-modal .time {
    padding: 10px 15px;
    margin-bottom: 36px;
  }
  .signer-modal .time .text-small {
    display: block;
    text-indent: -.5em;
  }
  .signer-modal .info {
    padding-bottom: 0;
  }
  .signer-modal .bottom {
    display: none;
  }

  .product-modal .modal-dialog {
    max-width: 344px;
    margin: 20px auto;
  }
  .product-modal .modal-content {
    padding: 68px 15px;
  }
  .product-modal .modal-content:after {
    display: none;
  }
  .product-modal .btn-close {
    width: 40px;
    height: 40px;
    background-size: 100% auto;
    top: 19px;
    right: 16px;
  }
  .product-modal .grid {
    display: block;
  }
  .product-modal .grid-left {
    width: 100%;
    margin-bottom: 15px;
  }
  .product-modal .grid-right {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
  .product-modal .group {
    margin-bottom: 15px;
    padding-right: 0;
  }
  .product-modal .heading {
    margin-bottom: 36px;
  }
  .product-modal .info + .info {
    margin-top: 20px;
  }
  .product-modal .info-brand {
    margin-bottom: 0;
  }
  .product-modal .swiper-wrapper {
    margin-bottom: 6px;
  }
  .product-modal .swiper-pagination {
    margin: -2px;
  }
  .product-modal .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 2px;
  }
  .product-modal .swiper-button-prev,
  .product-modal .swiper-button-next {
    background-size: 9px auto;
  }
  .product-modal .swiper-button-prev {
    left: 10px;
  }
  .product-modal .swiper-button-next {
    right: 10px;
  }

  .market-modal .grid-right {
    padding-bottom: 0;
  }

  .interactive-modal .grid-right {
    padding-bottom: 0;
  }
}
/* index */
.l-section {
  position: relative;
  z-index: 0;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .1em;
  word-break: break-all;
  color: #0D0D0D;
}
.l-section .section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.l-section .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  pointer-events: none;
}
.l-section .container {
  max-width: 1280px;
}
.l-section ul {
  list-style: disc;
  padding-left: 1.75em;
}
.l-section ol {
  list-style: decimal;
  padding-left: 1.75em;
}

.l-kv {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.l-kv .container {
  max-width: 100%;
  padding: 0;
}
.l-kv img {
  width: 100%;
  display: block;
}
.l-kv .layer-1 {
  -moz-animation: fadeInLeft 0.5s both;
  -webkit-animation: fadeInLeft 0.5s both;
  animation: fadeInLeft 0.5s both;
  animation-delay: .25s;
}
.l-kv .layer-2 {
  -moz-animation: fadeInRight 0.5s both;
  -webkit-animation: fadeInRight 0.5s both;
  animation: fadeInRight 0.5s both;
  animation-delay: .5s;
}
.l-kv .layer-3 {
  -moz-animation: fadeInUp 0.8s both;
  -webkit-animation: fadeInUp 0.8s both;
  animation: fadeInUp 0.8s both;
  animation-delay: 1s;
}

.index-intro {
  background-color: #FFFEE5;
}
.index-intro .container {
  padding-top: 40px;
  padding-bottom: 105px;
  overflow: hidden;
}
.index-intro .bg {
  background-image: url(../images/index-intro-bg.png);
  top: -48px;
  height: calc(100% + 48px);
}
.index-intro .section-header {
  position: relative;
  margin-bottom: 16px;
  z-index: 1;
}
.index-intro .layer-top {
  position: absolute;
  top: 0;
  left: calc(50% - 1240px / 2);
  width: 100%;
}
.index-intro .floating {
  animation-duration: 1.2s;
}
.index-intro .title {
  margin: 0 auto;
}
.index-intro .box {
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
  background-image: url(../images/index-intro-box.png);
  max-width: 1146px;
  margin: 0 auto;
  padding: 36px 290px 40px;
  min-height: 472px;
  font-size: 25px;
  line-height: 35px;
  font-weight: 500;
  letter-spacing: .1em;
}
.index-intro .box .main-text {
  max-width: 267px;
  margin: 0 auto 16px;
}
.index-intro .box .inner {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}
.index-intro .box p + p {
  margin-top: 30px;
}
.index-intro .box .highlight {
  color: #DA5525;
}
.index-intro .unit {
  position: absolute;
}
.index-intro .unit-1 {
  top: 102px;
  left: 53px;
  max-width: 209px;
}
.index-intro .unit-2 {
  bottom: -15px;
  left: 15px;
  max-width: 228px;
}
.index-intro .unit-3 {
  top: 100px;
  right: 45px;
  max-width: 216px;
}
.index-intro .unit-4 {
  bottom: 22px;
  right: -8px;
  max-width: 261px;
}

.index-time {
  padding-top: 55px;
  padding-bottom: 50px;
  background-color: #9BECE3;
}
.index-time .bg {
  background-image: url(../images/index-time-bg.png);
  top: -48px;
  height: calc(100% + 48px);
}
.index-time .bg2 {
  background-image: url(../images/index-time-bg2.png);
  top: -24px;
}
.index-time .section-header {
  position: relative;
  margin-bottom: 30px;
}
.index-time .title {
  max-width: 423px;
  margin: 0 auto;
}
.index-time .layer-top {
  position: absolute;
  top: 0;
  left: calc(50% - 1240px / 2);
  width: 100%;
  max-width: 1240px;
}
.index-time .layer-bottom {
  position: absolute;
  bottom: 0;
  left: calc(50% - 1240px / 2);
  width: 100%;
  max-width: 1240px;
}
.index-time .floating {
  animation-duration: 1.2s;
}
.index-time .section-content {
  padding-bottom: 170px;
}
.index-time .main {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.index-signer {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #FFFEE5;
}
.index-signer .bg {
  background-image: url(../images/index-signer-bg.png);
  top: -48px;
  height: calc(100% + 48px);
}
.index-signer .section-header {
  position: relative;
  margin-bottom: 20px;
}
.index-signer .layer-top {
  position: absolute;
  top: 0;
  left: calc(50% - 1240px / 2);
  width: 100%;
  max-width: 1240px;
}
.index-signer .title {
  max-width: 1240px;
  margin: 0 auto;
}
.index-signer .section-content {
  max-width: 1108px;
  margin: 0 auto;
}
.index-signer .list {
  margin: 0 -14px;
  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;
}
.index-signer .item {
  margin: 0 14px;
  margin-top: 65px;
  max-width: calc(100% / 3 - 2px * 2);
  max-width: 336px;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.index-signer .item:nth-child(2) {
  max-width: 377px;
  margin-top: 0;
}
.index-signer .item .image {
  margin-bottom: 28px;
}
.index-signer .item .btn {
  min-height: 61px;
  max-width: 169px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
  padding: 15px 34px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: #9BECE3;
  box-shadow: 3px 3px 0 0 #72D5CA;
  border-radius: 18px;
}
.index-signer .item .icon-arrow {
  background-image: url(../images/index-signer-arrow.png);
  width: 30px;
  height: 30px;
  margin-left: 8px;
}
.index-signer .item:active {
  opacity: .8;
}
@media (hover: hover) {
  .index-signer .item:hover {
    opacity: .8;
  }
}

.l-section-group {
  position: relative;
  background-color: #FFF5BE;
}
.l-section-group .bg-group {
  background-image: url(../images/index-group-bg.png);
  top: -48px;
  height: calc(100% + 48px);
  background-size: 1920px auto;
}

.index-highlights {
  padding-top: 50px;
  padding-bottom: 204px;
}
.index-highlights .bg {
  display: none;
}
.index-highlights .section-header {
  position: relative;
  margin-bottom: 28px;
}
.index-highlights .action {
  position: absolute;
  top: -90px;
  right: 0;
}
.index-highlights .btn {
  min-height: 67px;
  max-width: 250px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
  padding: 18px 37px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: #FFF100;
  box-shadow: 3px 3px 0 0 #E5D61A;
  border-radius: 18px;
}
.index-highlights .btn .icon-arrow {
  background-image: url(../images/index-signer-arrow.png);
  width: 30px;
  height: 30px;
  margin-left: 8px;
}
.index-highlights .btn:active {
  opacity: .8;
}
@media (hover: hover) {
  .index-highlights .btn:hover {
    opacity: .8;
  }
}
.index-highlights .section-content {
  max-width: 1092px;
  margin: 0 auto;
}
.index-highlights .video {
  border: 6px solid #EDCA55;
  border-radius: 50px;
  overflow: hidden;
}
.index-highlights .post-iframe {
  padding-bottom: 56.25%;
}

.index-event {
  padding-top: 0;
  padding-bottom: 170px;
}
.index-event .bg {
  display: none;
}
.index-event .section-header {
  position: relative;
  margin-bottom: 32px;
}
.index-event .title {
  margin: 0 auto;
}
.index-event .section-content {
  max-width: 1220px;
  margin: 0 auto;
}
.index-event .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -28px -6px;
}
.index-event .item {
  width: calc(33.3333% - 6px * 2);
  margin: 28px 6px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  max-width: 395px;
  display: block;
  background-image: url(../images/index-event-item.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  padding-bottom: 32px;
  letter-spacing: .05em;
}
.index-event .item:active {
  filter: brightness(1.05);
}
@media (hover: hover) {
  .index-event .item:hover {
    filter: brightness(1.05);
  }
}
.index-event .item .image {
  margin-bottom: 16px;
}
.index-event .item .content {
  max-width: 395px;
  margin: 0 auto;
  text-align: center;
}
.index-event .item p {
  min-height: 60px;
  margin-bottom: 20px;
}
.index-event .item .btn {
  min-height: 61px;
  max-width: 188px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
  padding: 15px 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: #9BECE3;
  box-shadow: 3px 3px 0 0 #72D5CA;
  border-radius: 18px;
}
.index-event .item .btn .icon-arrow {
  background-image: url(../images/index-signer-arrow.png);
  width: 30px;
  height: 30px;
  margin-left: 8px;
}
.index-event .item .btn:active {
  opacity: .8;
}
@media (hover: hover) {
  .index-event .item .btn:hover {
    opacity: .8;
  }
}

.index-brand {
  padding-top: 75px;
  padding-bottom: 100px;
  background-color: #fff;
}
.index-brand .bg {
  background-image: url(../images/index-brand-bg.png);
  top: -48px;
  height: calc(100% + 48px);
}
.index-brand .section-content {
  max-width: 1072px;
  margin: 0 auto;
}
.index-brand .section-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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin: 0 -25px 60px;
}
.index-brand .section-group .brand-section {
  margin: 0 25px;
  width: calc(50% - 25px * 2);
}
.index-brand .brand-section__header {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-brand .brand-section__header:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #707070;
}
.index-brand .brand-section__header span {
  background-color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding-right: 20px;
}
.index-brand .brand-section__header img {
  max-height: 30px;
}
.index-brand .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -15px;
}
.index-brand .list + .list {
  margin-top: 15px;
}
.index-brand .item {
  margin: 15px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.index-brand .item:active {
  opacity: .8;
}
@media (hover: hover) {
  .index-brand .item:hover {
    opacity: .8;
  }
}
.index-brand .item img {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.index-brand .brand-a .list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.index-brand .brand-a .a-1 {
  max-width: 110px;
}
.index-brand .brand-a .a-2 {
  max-width: 192px;
}
.index-brand .brand-b .b-1 {
  max-width: 214px;
}
.index-brand .brand-c {
  margin-bottom: 60px;
}
.index-brand .brand-c .list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.index-brand .brand-c .item {
  margin: 15px;
  width: calc(100% / 6 - 15px * 2);
}
.index-brand .brand-c .item img {
  max-height: 60px;
}
.index-brand .brand-d .list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.index-brand .brand-d .item {
  margin: 15px;
  width: calc(100% / 6 - 15px * 2);
}
.index-brand .brand-d .item img {
  max-height: 60px;
}

@media (min-width: 1921px) {
  .l-section .bg {
    background-size: 100% auto;
  }

  .l-section-group .bg-group {
    background-size: 1920px auto;
  }
}
@media (max-width: 1023px) and (min-width: 751px) {
  .l-section .title {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1280px) and (min-width: 751px) {
  .index-intro .bg {
    background-size: 150vw auto;
  }
  .index-intro .layer-top {
    left: calc(50% - 96.875vw / 2);
    width: 96.875vw;
  }
  .index-intro .box {
    padding: 36px 10vw 40px;
    font-size: 1.953125vw;
  }
  .index-intro .unit-1 {
    left: 4.140625vw;
    max-width: 16.328125vw;
  }
  .index-intro .unit-2 {
    left: 1.171875vw;
    max-width: 17.8125vw;
  }
  .index-intro .unit-3 {
    right: 3.515625vw;
    max-width: 16.875vw;
  }
  .index-intro .unit-4 {
    right: -0.625vw;
    max-width: 20.390625vw;
  }

  .index-time .bg {
    background-size: 150vw auto;
  }
  .index-time .bg2 {
    background-size: 150vw auto;
  }
  .index-time .title {
    max-width: 33.046875vw;
  }
  .index-time .layer-top {
    left: calc(50% - 96.875vw / 2);
    max-width: 96.875vw;
  }
  .index-time .layer-bottom {
    left: calc(50% - 96.875vw / 2);
    max-width: 96.875vw;
  }
  .index-time .section-content {
    padding-bottom: 13.28125vw;
  }
  .index-time .main {
    max-width: 96.875vw;
  }

  .index-signer .bg {
    background-size: 150vw auto;
  }
  .index-signer .layer-top {
    left: calc(50% - 96.875vw / 2);
    max-width: 96.875vw;
  }
  .index-signer .title {
    max-width: 96.875vw;
  }
  .index-signer .item {
    max-width: 26.25vw;
  }
  .index-signer .item:nth-child(2) {
    max-width: 29.453125vw;
  }

  .l-section-group .bg-group {
    background-size: 150vw auto;
  }

  .index-highlights {
    padding-top: 3.90625vw;
    padding-bottom: 15.9375vw;
  }
  .index-highlights .section-content {
    max-width: 85.3125vw;
  }

  .index-event {
    padding-bottom: 13.28125vw;
  }
  .index-event .item {
    max-width: 30.859375vw;
    font-size: 1.56vw;
  }

  .index-brand .bg {
    background-size: 150vw auto;
  }
}
@media (max-width: 750px) {
  .l-section .section-anchor {
    top: 0;
  }
  .l-section .bg {
    background-size: 750px auto;
  }
  .l-section .container {
    max-width: 375px;
  }

  .l-kv .container {
    padding: 0;
    max-width: 100%;
  }

  .index-intro .container {
    overflow: hidden;
    max-width: 100%;
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .index-intro .bg {
    background-image: url(../images/index-intro-bg_s.png);
    background-size: 750px auto;
    top: -25px;
    height: calc(100% + 25px);
  }
  .index-intro .section-header {
    margin-bottom: 18px;
    z-index: 1;
  }
  .index-intro .layer-top {
    left: calc(50% - 360px / 2);
    width: 360px;
  }
  .index-intro .title {
    max-width: 360px;
  }
  .index-intro .box {
    left: calc(50% - 364px / 2);
    width: 364px;
    padding: 40px 0 20px;
    min-height: 468px;
    background-image: url(../images/index-intro-box_s.png);
    background-position: center top;
    background-size: 100% auto;
    font-size: 18px;
    letter-spacing: .005em;
    margin: 0;
  }
  .index-intro .box .main-text {
    max-width: 217px;
    margin: 0 auto 15px;
  }
  .index-intro .box .inner {
    max-width: 326px;
  }
  .index-intro .box .mobile-hide {
    display: none;
  }
  .index-intro .box p + p {
    margin-top: 24px;
  }
  .index-intro .unit-1 {
    display: none;
  }
  .index-intro .unit-2 {
    bottom: -48px;
    left: calc(50% - 160px);
    max-width: 119px;
  }
  .index-intro .unit-3 {
    display: none;
  }
  .index-intro .unit-4 {
    bottom: -33px;
    right: calc(50% - 160px);
    max-width: 176px;
  }

  .index-time {
    padding-top: 30px;
    padding-bottom: 65px;
  }
  .index-time .container {
    padding: 0;
  }
  .index-time .bg {
    background-image: url(../images/index-time-bg_s.png);
    top: -25px;
    height: calc(100% + 25px);
  }
  .index-time .bg2 {
    background-image: url(../images/index-time-bg2_s.png);
    top: -25px;
    height: calc(100% + 25px);
  }
  .index-time .section-header {
    margin-bottom: 40px;
  }
  .index-time .title {
    max-width: 351px;
    margin: 0 auto;
  }
  .index-time .layer-top {
    position: absolute;
    top: 0;
    left: calc(50% - 375px / 2);
    width: 100%;
    max-width: 375px;
  }
  .index-time .layer-bottom {
    position: absolute;
    bottom: 0;
    left: calc(50% - 375px / 2);
    width: 100%;
    max-width: 375px;
  }
  .index-time .floating {
    animation-duration: 1.2s;
  }
  .index-time .section-content {
    padding-bottom: 178px;
  }
  .index-time .main {
    max-width: 375px;
  }

  .index-signer {
    padding-top: 30px;
    padding-bottom: 65px;
  }
  .index-signer .bg {
    background-image: url(../images/index-signer-bg_s.png);
    top: -25px;
    height: calc(100% + 25px);
  }
  .index-signer .section-header {
    margin-bottom: 20px;
  }
  .index-signer .title {
    max-width: 325px;
  }
  .index-signer .layer-top {
    display: none;
  }
  .index-signer .section-content {
    max-width: 338px;
  }
  .index-signer .list {
    margin: 0;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .index-signer .item {
    margin: 0 auto;
    margin-top: 0;
    max-width: 282px;
  }
  .index-signer .item:nth-child(1) {
    order: 2;
    margin-bottom: 34px;
  }
  .index-signer .item:nth-child(2) {
    order: 1;
    margin-bottom: 34px;
    max-width: 338px;
  }
  .index-signer .item:nth-child(3) {
    order: 3;
  }
  .index-signer .item + .item {
    margin-top: 0;
  }
  .index-signer .item .image {
    margin-bottom: 20px;
  }

  .l-section-group .bg-group {
    background-image: url(../images/index-group-bg_s.png);
    top: -25px;
    height: calc(100% + 25px);
    background-size: 750px auto;
  }

  .index-highlights {
    padding-top: 20px;
    padding-bottom: 126px;
  }
  .index-highlights .section-header {
    margin-bottom: 20px;
  }
  .index-highlights .title {
    max-width: 250px;
    margin: 0 auto;
  }
  .index-highlights .action {
    position: relative;
    top: 0;
    margin: 0 auto;
  }
  .index-highlights .section-content {
    max-width: 345px;
  }
  .index-highlights .video {
    border: 3px solid #EDCA55;
    border-radius: 15px;
    margin-bottom: 24px;
  }

  .index-event {
    padding-top: 0;
    padding-bottom: 65px;
  }
  .index-event .bg-bottom {
    display: none;
  }
  .index-event .section-header {
    margin-bottom: 20px;
  }
  .index-event .title {
    max-width: 180px;
  }
  .index-event .section-content {
    max-width: 345px;
  }
  .index-event .list {
    display: block;
    margin: 0;
  }
  .index-event .item {
    width: 100%;
    margin: 0;
    font-size: 19px;
    letter-spacing: .019em;
  }
  .index-event .item + .item {
    margin-top: 20px;
  }
  .index-event .item .image {
    margin: 0 auto 16px;
    max-width: 92%;
  }
  .index-event .item .content {
    max-width: 345px;
  }

  .index-brand {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .index-brand .bg {
    background-image: url(../images/index-brand-bg_s.png);
    top: -30px;
    height: calc(100% + 30px);
  }
  .index-brand .section-content {
    max-width: 345px;
  }
  .index-brand .section-group {
    display: block;
    margin: 0;
    margin-bottom: 20px;
  }
  .index-brand .section-group .brand-section {
    margin: 0;
    width: 100%;
  }
  .index-brand .section-group .brand-a {
    margin-bottom: 20px;
  }
  .index-brand .list {
    margin: -15px -10px;
  }
  .index-brand .list + .list {
    margin-top: 15px;
  }
  .index-brand .item {
    margin: 15px 10px;
  }
  .index-brand .brand-a {
    margin-bottom: 20px;
  }
  .index-brand .brand-a .list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .index-brand .brand-a .a-1 {
    max-width: 78px;
  }
  .index-brand .brand-a .a-2 {
    max-width: 136px;
  }
  .index-brand .brand-b .list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .index-brand .brand-b .b-1 {
    max-width: 110px;
  }
  .index-brand .brand-c {
    margin-bottom: 20px;
  }
  .index-brand .brand-c .item {
    margin: 15px 10px;
    width: calc(100% / 3 - 10px * 2);
  }
  .index-brand .brand-c .item img {
    max-height: 40px;
  }
  .index-brand .brand-d .item {
    margin: 15px 10px;
    width: calc(100% / 3 - 10px * 2);
  }
  .index-brand .brand-d .item img {
    max-height: 40px;
  }
}
/* activity.html 購票去~GO！ */
.activity-a {
  padding: 72px 50px 56px;
  background-image: url(../images/activity-a.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.activity-a .section-header {
  margin-bottom: 28px;
}
.activity-a .title {
  max-width: 464px;
  margin: 0 auto;
}
.activity-a .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -13px;
}
.activity-a .item {
  width: calc(100% / 4 - 13px * 2);
  margin: 13px;
}
.activity-a .item .btn {
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.activity-a .item .btn:active {
  opacity: .8;
}
@media (hover: hover) {
  .activity-a .item .btn:hover {
    opacity: .8;
  }
}
.activity-a .action {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 20px 0;
  margin-top: 30px;
}
.activity-a .action .btn {
  background-color: #FFF100;
  border-radius: 38px;
  color: #241614;
  font-size: 24px;
  line-height: 75px;
  font-weight: 600;
  text-align: center;
  display: block;
  box-shadow: 0 7px 0 0 #E5D61A;
  margin-bottom: 7px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.activity-a .action .btn .icon-arrow {
  background-image: url(../images/index-signer-arrow.png);
  width: 30px;
  height: 30px;
  margin-left: 8px;
}
.activity-a .action .btn:active {
  opacity: .8;
}
@media (hover: hover) {
  .activity-a .action .btn:hover {
    opacity: .8;
  }
}
.activity-a .action .btn.disabled {
  filter: grayscale(1);
}

.activity-product {
  position: relative;
  padding: 0 50px 60px;
}
.activity-product .section-header {
  margin-bottom: 25px;
}
.activity-product .title img {
  max-height: 54px;
}
.activity-product .top-block {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .1em;
  margin-bottom: 30px;
  color: #4E4E4E;
}
.activity-product .top-text {
  font-size: 18px;
  font-weight: 600;
  color: #47A79C;
}
.activity-product .top-text + p {
  margin-top: 9px;
}
.activity-product .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -12px;
}
.activity-product .item {
  width: calc(100% / 4 - 12px * 2);
  margin: 12px;
  display: block;
}
.activity-product .item:active .image img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (hover: hover) {
  .activity-product .item:hover .image img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.activity-product .item .image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}
.activity-product .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.activity-product .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.activity-product .item .main-text {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  letter-spacing: .05em;
  color: #4E4E4E;
}
.activity-product .item .text-small {
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  color: #4E4E4E;
  margin-top: 8px;
  display: block;
}
.activity-product .highlight {
  color: #47A79C;
}

.activity-product-a2 .bottom {
  position: absolute;
  right: 16px;
  bottom: -110px;
  max-width: 310px;
  width: 28.703703703%;
}

.activity-product-a3 .highlight {
  color: #ED9228;
}

.activity-content-1 {
  position: relative;
  background-color: #9BECE3;
  padding-top: 36px;
  padding-bottom: 100px;
}
.activity-content-1 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  pointer-events: none;
  background-image: url(../images/activity-content-1-bg.png);
  top: -48px;
  height: calc(100% + 48px);
}
.activity-content-1 .page-box {
  position: relative;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .1em;
  color: #4E4E4E;
  font-weight: 500;
  border-radius: 40px;
  box-shadow: 8px 6px 0 #72D5CA;
  background-size: 100% auto;
  background-color: #fefdf9;
  padding: 40px 85px 50px;
}
.activity-content-1 .page-box + .page-box {
  margin-top: 40px;
}

.activity-b a {
  color: #4E4E4E;
  text-decoration: underline;
}
.activity-b .section-header {
  margin-bottom: 20px;
}
.activity-b .title {
  max-width: 464px;
}
.activity-b .list {
  padding-left: 2em;
}
.activity-b .highlight {
  color: #E35B27;
  font-weight: 600;
}
.activity-b .action {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 20px 0;
  margin-top: 30px;
}
.activity-b .action .btn {
  background-color: #FFF100;
  border-radius: 38px;
  color: #241614;
  font-size: 24px;
  line-height: 75px;
  font-weight: 600;
  text-align: center;
  display: block;
  box-shadow: 0 7px 0 0 #E5D61A;
  margin-bottom: 7px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.activity-b .action .btn .icon-arrow {
  background-image: url(../images/index-signer-arrow.png);
  width: 30px;
  height: 30px;
  margin-left: 8px;
}
.activity-b .action .btn:active {
  opacity: .8;
}
@media (hover: hover) {
  .activity-b .action .btn:hover {
    opacity: .8;
  }
}
.activity-b .action .btn.disabled {
  filter: grayscale(1);
}
.activity-b .bottom {
  position: absolute;
  right: 0;
  top: -80px;
  max-width: 230px;
  width: 22.772277227%;
}

.activity-c .section-header {
  margin-bottom: 20px;
}
.activity-c .title {
  max-width: 342px;
}
.activity-c .map {
  margin-bottom: 30px;
  border-radius: 25px;
  overflow: hidden;
}
.activity-c .map .post-iframe {
  padding-bottom: 320px;
}
.activity-c .info-header {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #241614;
}
.activity-c .info-header img {
  width: 50px;
  margin-right: 8px;
}
.activity-c .info + .info {
  border-top: 1px solid #707070;
  padding-top: 30px;
  margin-top: 30px;
}
.activity-c .list {
  padding-left: 0;
  list-style: none;
  color: #4E4E4E;
}
.activity-c .list li {
  position: relative;
  padding-left: 1.5em;
}
.activity-c .list li:before {
  content: "◆";
  position: absolute;
  top: 0;
  left: 0;
}

.activity-d .section-header {
  margin-bottom: 20px;
}
.activity-d .title {
  max-width: 342px;
}
.activity-d .heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #E35B27;
}
.activity-d .list {
  padding-left: 2em;
}
.activity-d .highlight {
  color: #ED9228;
}

.activity-content-2 {
  position: relative;
  background-color: #FFF5BE;
  padding-top: 36px;
  padding-bottom: 100px;
}
.activity-content-2 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  pointer-events: none;
  background-image: url(../images/activity-content-2-bg.png);
  top: -48px;
  height: calc(100% + 48px);
}
.activity-content-2 .bg:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-size: 1280px auto;
  background-repeat: no-repeat;
  pointer-events: none;
  background-image: url(../images/activity-content-3-bottom.png);
}
.activity-content-2 .page-box {
  position: relative;
  border-radius: 40px;
  box-shadow: 8px 6px 0 #EDEAA1;
  background-size: 100% auto;
  background-color: #fefdf9;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .1em;
  color: #4E4E4E;
  font-weight: 500;
  padding: 40px 23px 50px;
}

.activity-e .section-header {
  margin-bottom: 28px;
}
.activity-e .title {
  max-width: 342px;
  margin-left: 63px;
}
.activity-e .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -8px;
}
.activity-e .list .item {
  width: calc(100% / 4 - 8px * 2);
  margin: 8px;
}
.activity-e .info-header {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}
.activity-e .info + .info {
  border-top: 1px solid #707070;
  padding-top: 30px;
  margin-top: 30px;
}
.activity-e .list {
  padding-left: 0;
  list-style: none;
  color: #4E4E4E;
}
.activity-e .list li {
  position: relative;
  padding-left: 1.5em;
}
.activity-e .list li:before {
  content: "◆";
  position: absolute;
  top: 0;
  left: 0;
}

.activity-f .section-header {
  margin-bottom: 20px;
}
.activity-f .title {
  max-width: 464px;
}
.activity-f .info-header {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}
.activity-f .info + .info {
  border-top: 1px solid #707070;
  padding-top: 30px;
  margin-top: 30px;
}
.activity-f .list {
  padding-left: 0;
  list-style: none;
  color: #4E4E4E;
}
.activity-f .list li {
  position: relative;
  padding-left: 1.5em;
}
.activity-f .list li:before {
  content: "◆";
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 1921px) {
  .activity-content-1 .bg {
    background-size: 100% auto;
  }

  .activity-content-2 .bg {
    background-size: 100% auto;
  }
}
@media (max-width: 1023px) and (min-width: 751px) {
  .activity-e .section-content {
    max-width: 562px;
    margin: 0 auto;
  }
  .activity-e .title {
    margin-left: auto;
    margin-right: auto;
  }
  .activity-e .list .item {
    width: calc(100% / 2 - 8px * 2);
  }
}
@media (max-width: 750px) {
  .activity-a {
    padding: 38px 15px 38px;
    background-image: none;
  }
  .activity-a .section-header {
    margin-bottom: 28px;
  }
  .activity-a .title {
    max-width: 260px;
    margin: 0 auto;
  }
  .activity-a .list {
    display: block;
    margin: 0 auto;
    max-width: 232px;
  }
  .activity-a .item {
    width: 100%;
    margin: 0;
  }
  .activity-a .item + .item {
    margin-top: 20px;
  }
  .activity-a .action {
    padding: 15px 0;
    margin-top: 20px;
  }

  .activity-product {
    padding: 0 15px 40px;
  }
  .activity-product .section-header {
    margin-bottom: 15px;
  }
  .activity-product .title img {
    max-height: 42px;
    display: block;
    margin: 0 auto;
  }
  .activity-product .top-block {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: .1em;
    margin-bottom: 30px;
    color: #4E4E4E;
  }
  .activity-product .top-text + p {
    margin-top: 20px;
  }
  .activity-product .list {
    display: block;
    margin: 0 auto;
    max-width: 232px;
  }
  .activity-product .item {
    width: 100%;
    margin: 0;
  }
  .activity-product .item + .item {
    margin-top: 20px;
  }

  .activity-product-a2 .bottom {
    display: none;
  }

  .activity-content-1 {
    padding-top: 36px;
    padding-bottom: 100px;
  }
  .activity-content-1 .bg {
    background-size: 750px auto;
    background-image: url(../images/activity-content-1-bg_s.png);
    top: -24px;
    height: calc(100% + 24px);
  }
  .activity-content-1 .page-box {
    padding: 40px 15px;
  }
  .activity-content-1 .page-box + .page-box {
    margin-top: 40px;
  }

  .activity-b .section-header {
    margin-bottom: 20px;
  }
  .activity-b .title {
    max-width: 260px;
    display: block;
    margin: 0 auto;
  }
  .activity-b .action {
    padding: 15px 0;
    margin-top: 20px;
  }
  .activity-b .bottom {
    display: none;
  }

  .activity-c {
    padding: 0 15px 40px;
  }
  .activity-c .section-header {
    margin-bottom: 20px;
  }
  .activity-c .title {
    max-width: 195px;
    display: block;
    margin: 0 auto;
  }
  .activity-c .map {
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .activity-c .info-header {
    margin-bottom: 8px;
  }
  .activity-c .info + .info {
    padding-top: 16px;
    margin-top: 16px;
  }
  .activity-c .traffic {
    background: none;
    margin: 0;
    margin-top: 25px;
  }
  .activity-c .traffic .image {
    max-width: 313px;
  }
  .activity-c .traffic .unit {
    display: none;
  }

  .activity-d {
    padding: 0 15px 20px;
  }
  .activity-d .section-header {
    margin-bottom: 20px;
  }
  .activity-d .title {
    max-width: 195px;
    display: block;
    margin: 0 auto;
  }
  .activity-d .heading {
    margin-bottom: 8px;
  }

  .activity-content-2 {
    padding-top: 36px;
    padding-bottom: 60px;
  }
  .activity-content-2 .bg {
    background-size: 750px auto;
    background-image: url(../images/activity-content-2-bg_s.png);
    top: -24px;
    height: calc(100% + 24px);
  }
  .activity-content-2 .bg:before {
    background-size: 750px auto;
    background-image: url(../images/activity-content-3-bottom_s.png);
  }
  .activity-content-2 .page-box {
    padding: 40px 15px;
    box-shadow: 5px 5px 0 #EDEAA1;
  }

  .activity-e .section-header {
    margin-bottom: 20px;
  }
  .activity-e .title {
    max-width: 195px;
    display: block;
    margin: 0 auto;
  }
  .activity-e .info-header {
    margin-bottom: 8px;
  }
  .activity-e .info + .info {
    padding-top: 16px;
    margin-top: 16px;
  }
  .activity-e .list {
    display: block;
    margin: 0 auto;
    max-width: 270px;
  }
  .activity-e .list .item {
    width: 100%;
    margin: 0 auto;
  }
  .activity-e .list .item + .item {
    margin-top: 20px;
  }
}
/* performance.html FUN 舞台 */
.performance {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  padding: 58px 72px 24px;
}
.performance .grid-left {
  width: 47.058823529%;
  position: sticky;
  top: 0px;
}
.performance .grid-right {
  width: calc(100% - 47.058823529%);
  padding-left: 60px;
}
.performance .top-block {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: .1em;
  color: #000;
  margin-bottom: 35px;
  max-width: 490px;
}
.performance .top-block .title {
  margin-bottom: 25px;
  margin-top: -72px;
}
.performance .top-block .content {
  text-align: justify;
}
.performance .l-section {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: .05em;
  color: #5E5E5E;
  text-align: justify;
  max-width: 490px;
}
.performance .l-section + .l-section {
  margin-top: 48px;
}
.performance .l-section .image {
  max-width: 448px;
  margin: 0 auto 24px;
}
.performance .l-section .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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 10px;
}
.performance .l-section .main-text {
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-right: 6px;
  color: #2E2D2D;
}
.performance .l-section .sub-text {
  font-size: 24px;
  line-height: 35px;
  color: #000;
  letter-spacing: .05em;
  margin-top: 28px;
}
.performance .l-section .time {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: .05em;
  color: #241614;
  background-color: #FFF100;
  padding: 8px 15px;
  border-radius: 10px;
  margin-left: auto;
}

.performance-list .item {
  background-color: #FFF100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  border-radius: 10px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .05em;
  color: #000;
}
.performance-list .item a {
  color: #000;
}
.performance-list .item + .item {
  margin-top: 12px;
}
.performance-list .item-left {
  width: 175px;
  padding: 13px 0 13px 30px;
  font-weight: 600;
}
.performance-list .item-right {
  width: calc(100% - 175px);
  padding: 13px 10px 13px 20px;
}
.performance-list .bottom-text {
  font-size: 16px;
  font-weight: 500;
  color: #3AE2CF;
  margin-top: 10px;
}

@media (max-width: 750px) {
  .performance {
    display: block;
    padding: 40px 15px;
  }
  .performance .grid-left {
    width: 100%;
    position: relative;
    margin-bottom: 35px;
  }
  .performance .grid-right {
    width: 100%;
    padding-left: 0;
  }
  .performance .top-block {
    max-width: 322px;
    margin: 0 auto 20px;
  }
  .performance .top-block .title {
    max-width: 322px;
    margin: 0 auto 15px;
  }
  .performance .top-block .content {
    padding-left: 0;
    padding-right: 0;
    max-width: 314px;
    margin: 0 auto;
  }
  .performance .l-section {
    padding-left: 0;
    padding-right: 0;
    max-width: 314px;
    margin: 0 auto;
  }
  .performance .l-section + .l-section {
    margin-top: 40px;
  }
  .performance .l-section .image {
    max-width: 314px;
    margin: 0 auto 20px;
  }
  .performance .l-section .group {
    margin-bottom: 8px;
    -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;
  }
  .performance .l-section .time {
    text-align: center;
    margin: 0 auto;
    order: 1;
  }
  .performance .l-section .main-text {
    order: 2;
  }
  .performance .l-section .sub-text {
    order: 3;
  }

  .performance-list .item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
  .performance-list .item + .item {
    margin-top: 8px;
  }
  .performance-list .item-left {
    width: 146px;
    padding: 13px 0 13px 13px;
  }
  .performance-list .item-right {
    width: calc(100% - 146px);
    padding: 13px;
  }
}
/* market.html 美食&市集 */
.page-market .section-header {
  margin-bottom: 30px;
}
.page-market .section-header .top-text {
  margin-top: 16px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .1em;
  color: #000;
}
.page-market .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -12px;
}
.page-market .item {
  width: calc(100% / 3 - 12px * 2);
  margin: 12px;
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.page-market .item:active .image img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (hover: hover) {
  .page-market .item:hover .image img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.page-market .item .image {
  position: relative;
  overflow: hidden;
}
.page-market .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.page-market .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.page-market .item .content {
  padding: 24px 32px;
}
.page-market .item .main-text {
  font-size: 24px;
  line-height: 35px;
  font-weight: 500;
  letter-spacing: .05em;
  color: #4E4E4E;
  padding-bottom: 12px;
  border-bottom: 1px solid #C1C1C1;
  margin-bottom: 14px;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.page-market .item .main-text img {
  margin-top: 2px;
  width: 24px;
}
.page-market .item .sub-text {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: .05em;
  color: #4E4E4E;
  height: 75px;
  overflow: hidden;
  margin-bottom: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 75px;
}
.page-market .item .btn {
  color: #72D5CA;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: .006em;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  text-transform: uppercase;
}
.page-market .item .btn .icon-arrow {
  background-image: url(../images/icon-arrow.png);
  width: 21px;
  height: 21px;
  margin-left: 8px;
}
.page-market .page-box {
  padding: 52px 72px 60px;
}

.market-a .title {
  max-width: 403px;
}

.market-content-1 {
  position: relative;
  background-color: #9BECE3;
  padding-top: 36px;
  padding-bottom: 100px;
}
.market-content-1 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  pointer-events: none;
  background-image: url(../images/market-content-1-bg.png);
  top: -48px;
  height: calc(100% + 48px);
}
.market-content-1 .page-box {
  box-shadow: 8px 6px 0 #72D5CA;
}

.market-b .title {
  max-width: 472px;
}
.market-b .item .btn {
  color: #F9C02E;
}
.market-b .item .btn .icon-arrow {
  background-image: url(../images/icon-arrow2.png);
}
.market-b .bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44.691119691%;
  max-width: 463px;
}

@media (min-width: 1921px) {
  .market-content-1 .bg {
    background-size: 100% auto;
  }
}
@media (max-width: 1000px) and (min-width: 751px) {
  .page-market .item {
    width: calc(100% / 2 - 12px * 2);
  }
}
@media (max-width: 750px) {
  .page-market .section-header {
    margin-bottom: 20px;
  }
  .page-market .section-header .top-text {
    margin-top: 20px;
    text-align: center;
  }
  .page-market .list {
    display: block;
    margin: 0 auto;
    max-width: 314px;
  }
  .page-market .item {
    width: 100%;
    margin: 0;
  }
  .page-market .item + .item {
    margin-top: 15px;
  }
  .page-market .item .content {
    padding: 24px 25px;
  }
  .page-market .item .main-text {
    font-size: 22px;
    line-height: 32px;
  }
  .page-market .item .main-text img {
    width: 22px;
  }
  .page-market .item .sub-text {
    margin-bottom: 15px;
  }
  .page-market .item .btn {
    font-size: 14px;
    line-height: 20px;
  }
  .page-market .page-box {
    padding: 40px 15px 40px;
  }

  .market-a .title {
    max-width: 230px;
    margin: 0 auto;
  }

  .market-content-1 .bg {
    background-size: 750px auto;
    background-image: url(../images/market-content-1-bg_s.png);
    top: -24px;
    height: calc(100% + 24px);
  }
  .market-content-1 .page-box {
    box-shadow: 5px 5px 0 #72D5CA;
  }

  .market-b .title {
    max-width: 265px;
    margin: 0 auto;
  }
  .market-b .bottom {
    display: none;
  }
}
/* interactive.html 大獎等你抽 */
.page-interactive .section-header {
  margin-bottom: 30px;
}
.page-interactive .section-header .top-text {
  margin-top: 16px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .1em;
  color: #000;
}
.page-interactive .page-box {
  padding: 52px 72px 60px;
}

.interactive-a .title {
  max-width: 411px;
}
.interactive-a .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -12px;
}
.interactive-a .item {
  width: calc(100% / 3 - 12px * 2);
  margin: 12px;
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.interactive-a .item:active .image img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (hover: hover) {
  .interactive-a .item:hover .image img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.interactive-a .item .image {
  position: relative;
  overflow: hidden;
}
.interactive-a .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.interactive-a .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.interactive-a .item .content {
  padding: 24px 32px 30px;
  border-top: 1px solid #eee;
}
.interactive-a .item .main-text {
  font-size: 24px;
  line-height: 35px;
  font-weight: 500;
  letter-spacing: .05em;
  color: #4E4E4E;
}
.interactive-a .item .sub-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: .05em;
  color: #ED9228;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C1C1C1;
}
.interactive-a .item .btn {
  color: #72D5CA;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: .006em;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  text-transform: uppercase;
}
.interactive-a .item .btn .icon-arrow {
  background-image: url(../images/icon-arrow.png);
  width: 21px;
  height: 21px;
  margin-left: 8px;
}
.interactive-a .bottom-text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .05em;
  color: #241614;
  margin-top: 24px;
}

.interactive-content-1 {
  position: relative;
  background-color: #9BECE3;
  padding-top: 36px;
  padding-bottom: 100px;
}
.interactive-content-1 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  pointer-events: none;
  background-image: url(../images/interactive-content-1-bg.png);
  top: -48px;
  height: calc(100% + 48px);
}
.interactive-content-1 .page-box {
  box-shadow: 8px 6px 0 #72D5CA;
}

.interactive-b .title {
  max-width: 342px;
}
.interactive-b .section-content {
  position: relative;
}
.interactive-b .unit {
  position: absolute;
  pointer-events: none;
}
.interactive-b .unit-1 {
  bottom: 15px;
  right: 50px;
  max-width: 182px;
  width: 17.567567567%;
}
.interactive-b .unit-2 {
  bottom: 15px;
  right: 0;
  max-width: 364px;
  width: 35.135135135%;
}
.interactive-b .info {
  position: relative;
  border-bottom: 1px solid rgba(112, 112, 112, 0.5);
  padding-top: 20px;
  padding-bottom: 20px;
}
.interactive-b .info:first-child {
  padding-top: 0;
}
.interactive-b .info .main-text {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  letter-spacing: .05em;
  color: #4E4E4E;
  margin-bottom: 20px;
}
.interactive-b .l-table {
  width: 100%;
  max-width: 488px;
  border-radius: 25px;
  text-align: center;
  overflow: hidden;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: .05em;
}
.interactive-b .l-table th,
.interactive-b .l-table td {
  padding: 17px 10px;
}
.interactive-b .l-table th {
  background-color: #FFF100;
}
.interactive-b .l-table th:nth-child(1) {
  width: 27%;
}
.interactive-b .l-table th:nth-child(2) {
  width: 27%;
}
.interactive-b .l-table th:nth-child(3) {
  width: 46%;
}
.interactive-b .l-table tr:nth-child(2n - 1) td {
  background-color: #FFF9A0;
}
.interactive-b .l-table td {
  background-color: #FFFBBE;
}

@media (max-width: 1000px) and (min-width: 751px) {
  .interactive-a .item {
    width: calc(100% / 2 - 12px * 2);
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .interactive-b .unit {
    display: none;
  }
  .interactive-b .l-table {
    max-width: 100%;
  }
  .interactive-b .l-table th,
  .interactive-b .l-table td {
    padding: 17px 5px;
  }
}
@media (max-width: 750px) {
  .page-interactive .section-header {
    margin-bottom: 20px;
  }
  .page-interactive .section-header .top-text {
    margin-top: 20px;
    text-align: center;
  }
  .page-interactive .page-box {
    padding: 40px 15px 40px;
  }

  .interactive-a .title {
    max-width: 260px;
    margin: 0 auto;
  }
  .interactive-a .list {
    display: block;
    margin: 0 auto;
    max-width: 314px;
  }
  .interactive-a .item {
    width: 100%;
    margin: 0;
  }
  .interactive-a .item + .item {
    margin-top: 15px;
  }
  .interactive-a .item .content {
    padding: 24px 25px;
  }
  .interactive-a .item .sub-text {
    font-size: 18px;
    line-height: 26px;
  }
  .interactive-a .item .btn {
    font-size: 14px;
    line-height: 20px;
  }
  .interactive-a .bottom-text {
    margin-top: 15px;
    text-align: center;
  }

  .interactive-content-1 {
    padding-top: 36px;
    padding-bottom: 60px;
  }
  .interactive-content-1 .bg {
    background-size: 750px auto;
    background-image: url(../images/interactive-content-1-bg_s.png);
    top: -24px;
    height: calc(100% + 24px);
  }
  .interactive-content-1 .page-box {
    box-shadow: 5px 5px 0 #72D5CA;
  }

  .interactive-b .title {
    max-width: 195px;
    margin: 0 auto;
  }
  .interactive-b .unit {
    display: none;
  }
  .interactive-b .info .main-text {
    margin-bottom: 15px;
  }
  .interactive-b .l-table {
    font-size: 18px;
    line-height: 26px;
    max-width: 100%;
  }
  .interactive-b .l-table th,
  .interactive-b .l-table td {
    padding: 17px 5px;
  }
}
/* gifts.html 現場好康禮 */
.page-gifts .section-header {
  margin-bottom: 30px;
}
.page-gifts .section-header .top-text {
  margin-top: 16px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .1em;
  color: #000;
}
.page-gifts .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -12px;
}
.page-gifts .item {
  width: calc(100% / 3 - 12px * 2);
  margin: 12px;
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.page-gifts .item .image {
  position: relative;
  overflow: hidden;
}
.page-gifts .item .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.page-gifts .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.page-gifts .item .content {
  padding: 24px 20px;
  text-align: center;
}
.page-gifts .item .main-text {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: .05em;
  color: #241614;
  padding: 8px 16px;
  border-radius: 10px;
  background-color: #FFF100;
  margin: 0 auto 18px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.page-gifts .item .sub-text {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0;
  font-weight: 500;
  color: #4E4E4E;
  min-height: 140px;
  text-align: justify;
  margin-bottom: 20px;
}
.page-gifts .item .text {
  border-top: 1px solid #C1C1C1;
  padding-top: 16px;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: .05em;
  font-weight: 500;
  color: #ED9228;
}
.page-gifts .page-box {
  padding: 52px 60px 60px;
}

.gifts-a .title {
  max-width: 403px;
}
.gifts-a .item-2 .main-text {
  font-size: 23px;
}
.gifts-a .item-3 .sub-text {
  position: relative;
}
.gifts-a .item-3 .sub-text img {
  position: absolute;
  bottom: -14px;
  right: 0;
  max-width: 92px;
}

@media (max-width: 1000px) and (min-width: 751px) {
  .page-gifts .item {
    width: calc(100% / 2 - 12px * 2);
  }
}
@media (max-width: 750px) {
  .page-gifts .section-header {
    margin-bottom: 20px;
  }
  .page-gifts .section-header .top-text {
    margin-top: 20px;
    text-align: center;
  }
  .page-gifts .list {
    display: block;
    margin: 0 auto;
    max-width: 292px;
  }
  .page-gifts .item {
    width: 100%;
    margin: 0;
  }
  .page-gifts .item + .item {
    margin-top: 20px;
  }
  .page-gifts .item .content {
    padding: 28px 18px;
  }
  .page-gifts .item .main-text {
    font-size: 21px;
    line-height: 27px;
    letter-spacing: .05em;
  }
  .page-gifts .item .main-text img {
    width: 22px;
  }
  .page-gifts .item .sub-text {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 15px;
    min-height: inherit;
  }
  .page-gifts .item .text {
    padding-top: 14px;
    font-size: 17px;
    line-height: 25px;
  }
  .page-gifts .page-box {
    padding: 40px 15px 40px;
  }

  .gifts-a .title {
    max-width: 230px;
    margin: 0 auto;
  }
  .gifts-a .item-2 .main-text {
    padding: 8px 10px;
  }
  .gifts-a .item-3 .sub-text img {
    display: none;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
