﻿@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

------------------------------------------------------------- */
/* -------------------------------------------------------------
  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 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */
/* 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: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  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-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.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-cube-shadow {
  transform-style: preserve-3d;
}

/* 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-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.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-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));
}

.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-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);
  }
}
/* Slide styles end */
.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-pause,
.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 svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.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: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';
}

/* Navigation font end */
: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 {
  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;
}

.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;
  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;
}

/* Zoom container styles start */
.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;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .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 {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.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 {
  pointer-events: auto;
  visibility: visible;
}

.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-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper.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;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.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: -6px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background-color: #9ACAE6;
  box-shadow: 0;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #3C82C0;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px;
}

.swiper-button-prev,
.swiper-button-pause,
.swiper-button-next {
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border-radius: 50%;
  background-size: 24px auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
  background-color: rgba(25, 70, 127, 0.6);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.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.svg);
  left: 0;
}

.swiper-button-next {
  background-image: url(../images/swiper-next.svg);
  right: 0;
}

.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;
  font-size: 1em;
}
.btn:focus {
  box-shadow: none;
}
.btn.disabled {
  color: #565570;
  background: #353451;
  pointer-events: none;
}

.btn.btn-sm{
  font-size: 0.875rem;
}

.btn-primary {
  font-size: 1.125em;
  line-height: 133.3333%;
  font-weight: 500;
  height: 48px;
  padding: 12px 20px;
  width: 100%;
  border-radius: 48px;
  background: #48473D;
  color: #fff;
  display: block;
}
.btn-primary:active, .btn-primary:focus {
  background: #006A61;
}
@media (hover: hover) {
  .btn-primary:hover {
    background: #006A61;
  }
}

.btn-secondary {
  font-size: 1.125em;
  line-height: 133.3333%;
  font-weight: 500;
  height: 48px;
  padding: 12px 20px;
  width: 100%;
  border-radius: 48px;
  background: #FF7D00;
  display: block;
}
.btn-secondary:active {
  background: #FF7D00;
}
@media (hover: hover) {
  .btn-secondary:hover {
    background: #FF7D00;
  }
}

.btn-dark {
    font-size: 0.938em;
    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);
  }
}

.btn-border {
  border-radius: var(--border-radius-rounded-full, 999px);
  border: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  color: var(--Color-NeutralVarient-40, #5F5F53);
  text-align: center;
  font-size: 1em;
  font-weight: 500;
  line-height: 112.5%;
  padding: 10px 18px;
}
.btn-border:active {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  filter: brightness(1.2);
}
@media (hover: hover) {
  .btn-border:hover {
    color: var(--Color-NeutralVarient-40, #5F5F53);
    filter: brightness(1.2);
  }
}

.icon {
  width: 18px;
  height: 18px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.icon-info {
  background-image: url(../images/icon-info.svg);
}
.icon-map {
  background-image: url(../images/icon-map.svg);
}
.icon-clear_day {
  background-image: url(../images/icon-clear_day.svg);
}
.icon-icon-cloud {
  background-image: url(../images/icon-clear_cloud.svg);
}
.icon-icon-rainy {
  background-image: url(../images/icon-clear_rainy.svg);
}
.icon-home {
  background-image: url(../images/icon-home.svg);
}
.icon-flowchart {
  background-image: url(../images/icon-flowchart.svg);
}
.icon-rss_feed {
  background-image: url(../images/icon-rss_feed.svg);
}
.icon-format_size {
  background-image: url(../images/icon-format_size.svg);
}
.icon-language {
  background-image: url(../images/icon-language.svg);
}
.icon-search {
  background-image: url(../images/icon-search.svg);
}
.icon-menu-1_1 {
  background-image: url(../images/icon-menu-1_1.svg);
}
.icon-menu-1_2 {
  background-image: url(../images/icon-menu-1_2.svg);
}
.icon-menu-1_3 {
  background-image: url(../images/icon-menu-1_3.svg);
}
.icon-menu-3_1 {
  background-image: url(../images/icon-menu-3_1.svg);
}
.icon-menu-3_2 {
  background-image: url(../images/icon-menu-3_2.svg);
}
.icon-menu-3_3 {
  background-image: url(../images/icon-menu-3_3.svg);
}
.icon-menu-3_4 {
  background-image: url(../images/icon-menu-3_4.svg);
}
.icon-menu-5_1 {
  background-image: url(../images/icon-menu-5_1.svg);
}
.icon-airplane {
  background-image: url(../images/icon-airplane.svg);
}
.icon-sticky-a {
  background-image: url(../images/icon-sticky-a.svg);
}
.icon-sticky-b {
  background-image: url(../images/icon-sticky-b.svg);
}
.icon-sticky-c {
  background-image: url(../images/icon-sticky-c.svg);
}
.icon-more {
  background-image: url(../images/icon-more.svg);
}
.icon-download {
  background-image: url(../images/icon-download.svg);
}
.icon-open-in-new {
  background-image: url(../images/open_in_new.svg);
}

/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/
.sm {
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
  -webkit-tap-highlight-color: transparent;
}

.sm, .sm ul, .sm li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  direction: ltr;
  text-align: left;
}

.sm-rtl, .sm-rtl ul, .sm-rtl li {
  direction: rtl;
  text-align: right;
}

.sm > li > h1, .sm > li > h2, .sm > li > h3, .sm > li > h4, .sm > li > h5, .sm > li > h6 {
  margin: 0;
  padding: 0;
}

.sm ul {
  display: none;
}

.sm li, .sm a {
  position: relative;
}

.sm a {
  display: block;
}

.sm a.disabled {
  cursor: default;
}

.sm::after {
  content: "";
  display: block;
  height: 0;
  font: 0px/0 serif;
  clear: both;
  overflow: hidden;
}

.sm *, .sm *::before, .sm *::after {
  box-sizing: inherit;
}

.sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active {
  padding: 20px;
  /* make room for the toggle button (sub indicator) */
  padding-right: 0;
  color: #000;
  font-size: 1.125em;
  font-weight: normal;
  line-height: 24px;
  text-decoration: none;
  transition: none;
  text-align: center;
}

.sm-simple a.current {
  color: #fff;
}

.sm-simple a.disabled {
  color: #cccccc;
}

.sm-simple a .sub-arrow {
  position: absolute;
  top: 50%;
  margin-top: -9px;
  left: auto;
  right: 4px;
  width: 18px;
  height: 18px;
  overflow: hidden;
  font: bold 14px/34px monospace !important;
  text-align: center;
  text-shadow: none;
}

.sm-simple a .sub-arrow::before {
  content: '';
  background-position: center;
  background-size: 100%;
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/sub-arrow.png);
}

.sm-simple a.highlighted .sub-arrow::before {
  content: '';
  background-position: center;
  background-size: 100%;
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/sub-arrow-white.png);
}

@media (min-width: 1024px) {
  /* Switch to desktop layout
  -----------------------------------------------
     These transform the menu tree from
     collapsible to desktop (navbar + dropdowns)
  -----------------------------------------------*/
  /* start... (it's not recommended editing these rules) */
  .sm-simple ul {
    position: absolute;
    width: 12em;
  }

  .sm-simple li {
    float: left;
  }

  .sm-simple.sm-rtl li {
    float: right;
  }

  .sm-simple ul li, .sm-simple.sm-rtl ul li, .sm-simple.sm-vertical li {
    float: none;
  }

  .sm-simple a {
    white-space: nowrap;
  }

  .sm-simple ul a, .sm-simple.sm-vertical a {
    white-space: normal;
  }

  .sm-simple .sm-nowrap > li > a, .sm-simple .sm-nowrap > li > :not(ul) a {
    white-space: nowrap;
  }

  /* ...end */
  .sm-simple {
    background: #fff;
    border-radius: 4px;
  }

  .sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
    padding: 12px 16px;
    color: #1D2129;
    line-height: 24px;
    font-weight: 500;
  }

  .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
    color: #006A61;
  }

  .sm-simple a.current {
    color: #fff;
  }

  .sm-simple a.disabled {
    color: #cccccc;
  }

  .sm-simple a .sub-arrow {
    top: 50%;
    margin-top: -8px;
    right: 20px;
    width: 8px;
    height: 16px;
    font: 14px/16px monospace !important;
    background: transparent;
    display: none;
  }

  .sm-simple a.highlighted .sub-arrow::before {
    content: '+';
  }

  .sm-simple > li {
    border-top: 0;
  }

  .sm-simple > li:first-child {
    border-left: 0;
  }

  .sm-simple ul {
    background: #fff;
  }

  .sm-simple ul a.has-submenu {
    padding-right: 20px;
  }

  .sm-simple ul a .sub-arrow {
    left: 8px;
    right: auto;
  }

  .sm-simple ul > li {
    border-left: 0;
  }

  .sm-simple ul > li:first-child {
    border-top: 0;
  }

  .sm-simple .scroll-up,
  .sm-simple .scroll-down {
    position: absolute;
    display: none;
    visibility: hidden;
    overflow: hidden;
    background: #fff;
    height: 20px;
  }

  .sm-simple .scroll-up-arrow,
  .sm-simple .scroll-down-arrow {
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 8px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #555555 transparent;
  }

  .sm-simple .scroll-down-arrow {
    top: 6px;
    border-style: solid dashed dashed dashed;
    border-color: #555555 transparent transparent transparent;
  }

  .sm-simple.sm-rtl a.has-submenu {
    padding-right: 20px;
    padding-left: 32px;
  }

  .sm-simple.sm-rtl a .sub-arrow {
    left: 20px;
    right: auto;
  }

  .sm-simple.sm-rtl.sm-vertical a.has-submenu {
    padding: 11px 20px;
  }

  .sm-simple.sm-rtl.sm-vertical a .sub-arrow {
    left: auto;
    right: 8px;
  }

  .sm-simple.sm-rtl > li:first-child {
    border-left: 1px solid #eeeeee;
  }

  .sm-simple.sm-rtl > li:last-child {
    border-left: 0;
  }

  .sm-simple.sm-rtl ul a.has-submenu {
    padding: 11px 20px;
  }

  .sm-simple.sm-rtl ul a .sub-arrow {
    left: auto;
    right: 8px;
  }

  .sm-simple.sm-vertical a .sub-arrow {
    left: 8px;
    right: auto;
  }

  .sm-simple.sm-vertical li {
    border-left: 0;
    border-top: 1px solid #eeeeee;
  }

  .sm-simple.sm-vertical > li:first-child {
    border-top: 0;
  }
}
/*# sourceMappingURL=sm-simple.css.map */
@media (max-width: 1023px) {
.sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active {
    padding: 10px 20px;
    font-size: 1.25em;
    line-height: 24px;
}

.sm-simple {
    font-size: 1.125em;
    line-height: 24px;
    color: #1D2129;
}
  .sm-simple .has-mega-menu .has-submenu {
    border-radius: 0;
  }
  .sm-simple .has-mega-menu .mega-menu {
    background-color: #fff;
    padding: 0;
    border-radius: 0;
  }
  .sm-simple .has-mega-menu .mega-menu > li {
    position: relative;
  }
  .sm-simple .has-mega-menu .mega-menu > li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 2px;
    width: 1px;
    height: 100%;
    background-color: #fff;
  }
.sm-simple .has-mega-menu .mega-menu a {
    color: #1D2129;
    font-size: 1.125em;
    line-height: 24px;
}
  .sm-simple .has-mega-menu ul ul {
    display: block;
    margin-left: 16px;
  }
  .sm-simple .has-mega-menu ul ul li {
    padding: 0;
  }
  .sm-simple .has-mega-menu ul ul a {
    padding: 4px 0;
    padding-left: 36px;
    border-radius: 5px;
  }
  .sm-simple .has-mega-menu ul ul a:active {
    background-color: #D4FFE7;
    color: #5B5B5B;
  }
}
@media (max-width: 1023px) and (hover: hover) {
  .sm-simple .has-mega-menu ul ul a:hover {
    background-color: #D4FFE7;
    color: #5B5B5B;
  }
}

html {
  min-width: 100%;
}

body {
  font: 16px/1.5 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  color: var(--Color-NeutralVarient-10, #1C1C14);
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
  background-color: var(--Color-NeutralVarient-99, #FEFCF5);
}

* {
  -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: #006A61;
    cursor: pointer;
    display: block;
}

:focus {
  outline: none;
}
@media (min-width: 1024px) {
  :focus {
    outline: 3px dashed #ffbf47 !important;
    outline-offset: -2px;
  }
}
.is-mobile :focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  color: #006A61;
  -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"] {
  border-radius: 0;
  font-size: 1em;
  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;
}

.cya-container {
  margin: 0 auto;
  max-width: 1200px;
  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;
  }
}
.form-control {
    padding: 14px 20px;
    font-size: 1em;
    height: 48px;
    line-height: 125%;
    color: #1C1C14;
    font-weight: 500;
    border: 1px solid #C9C7B9;
    background-color: #FEFCF5;
    border-radius: 48px !important;
    overflow: hidden;
}
.form-control:focus {
  box-shadow: none;
  border-color: #C9C7B9;
}
.form-control.is-invalid {
  background: none;
}

.form-select {
  padding: 14px 20px;
  font-size: 1em;
  line-height: 125%;
  font-weight: 500;
  color: #78776C;
  height: 48px;
  background-color: #FEFCF5;
  background-image: url(../images/icon-select_arrow.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 21px 21px;
  border: 1px solid #C9C7B9;
  border-radius: 48px !important;
}
.form-select:focus {
  box-shadow: none;
  border-color: #C9C7B9;
}

.form-check {
  position: relative;
  padding: 0;
  margin: 0;
}
.form-check .form-check-input {
  display: none;
}
.form-check .form-check-input:checked + .form-check-label:after {
  display: block;
}
.form-check .form-check-input + .form-check-label {
  transition: .7s ease;
}

.form-radio .form-check-label {
  position: relative;
  padding-left: 32px;
  font-size: 1.125em;
  line-height: 177.778%;
  cursor: pointer;
  display: block;
  color: var(--Color-Neutral-20, #2F3033);
}
.form-radio .form-check-label:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  background: #E3E2E5;
  border: 1px solid var(--Color-Neutral-80, #C7C6C9);
  border-radius: 50%;
  display: block;
  margin: 0;
  left: 0;
  top: .4em;
  box-shadow: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.form-radio .form-check-label:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  background-color: #006B62;
  border-radius: 50%;
  display: block;
  margin: 0;
  left: 0;
  top: .4em;
  border: 1px solid var(--Color-Neutral-80, #006B62);
  color: transparent;
  display: none;
  box-shadow: 0 0 0 2px #fff inset;
}

.form-checkbox {
  padding: 6px 0;
}
.form-checkbox + .form-checkbox {
  margin-top: 2px;
}
.form-checkbox .form-check-label {
  position: relative;
  padding-left: 28px;
  font-size: 1.125em;
  line-height: 177.778%;
  cursor: pointer;
  display: block;
  color: var(--Color-Neutral-20, #2F3033);
}
.form-checkbox .form-check-label:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: .5em;
  left: 0;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  border-radius: var(--border-radius-rounded, 4px);
  border: 1px solid var(--Color-Neutral-80, #C7C6C9);
  background: var(--Color-Neutral-90, #E3E2E5);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.form-checkbox .form-check-label:after {
  content: '';
  background-image: url(../images/icon-check-white.svg);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #006B62;
  border-radius: var(--border-radius-rounded, 4px);
  position: absolute;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  top: .5em;
  left: 0;
  display: none;
}

.page {
  position: relative;
}
.page .cya-container {
  max-width: 1200px;
}
.page-header {
  position: relative;
  background: var(--Color-Mori-Green-40, #006B62);
  padding-top: 120px;
  padding-bottom: 72px;
  min-height: 404px;
}
.page-header .bg {
  background-image: url(../images/page-header-bg.jpg);
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .225;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.page-header:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 96px;
  background-image: url(../images/page-header-bottom.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  z-index: 1;
}
.page-header .l-grid {
  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;
}
.page-content {
  position: relative;
  min-height: 560px;
}
.page-title {
  position: relative;
  color: #fff;
  text-shadow: 0px 8px 16px rgba(0, 0, 0, 0.14), 0px 0px 2px rgba(0, 0, 0, 0.12);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 3.75em;
  font-weight: 600;
  line-height: 133.333%;
  padding: 8px;
  margin-bottom: 26px;
}
.page-title:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 61px;
  aspect-ratio: 60 / 84;
  background-image: url(../images/page-title-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.page-title span {
  position: relative;
}

.breadcrumb-container .breadcrumb {
  margin: 0;
  line-height: 175%;
}
.breadcrumb-container .breadcrumb-item {
  line-height: 175%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #fff;
  padding-left: 0;
}
.breadcrumb-container .breadcrumb-item + .breadcrumb-item:before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/breadcrumb-arrow.svg);
  background-size: 16px auto;
  padding: 0;
  margin: 0 4px;
}
.breadcrumb-container .breadcrumb-item > a {
  color: #E3F4F0;
  padding: 6px 12px;
  display: block;
}
.breadcrumb-container .breadcrumb-item a {
  color: #E3F4F0;
}
.breadcrumb-container .breadcrumb-item > span {
  color: #E3F4F0;
  padding: 6px 12px;
  display: block;
}
.breadcrumb-container .breadcrumb-item.active {
  color: #E3F4F0;
}
.breadcrumb-container .icon-home {
  background-image: url(../images/icon-breadcrumb_home-white.svg);
  width: 22px;
  height: 22px;
}
.breadcrumb-container .dropdown .dropdown-toggle {
  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;
  padding: 8px 12px;
  border-radius: 8px;
}
.breadcrumb-container .dropdown .dropdown-toggle:after {
  margin-left: 4px;
  margin-right: -6px;
  width: 18px;
  height: 18px;
  border: 0;
  background-image: url(../images/dropdown-arrow.svg);
}
.breadcrumb-container .dropdown .dropdown-toggle[aria-expanded="true"] {
  background: rgba(0, 56, 50, 0.56);
}
.breadcrumb-container .dropdown-menu {
  padding: 6px 0;
  width: 171px;
  border-radius: 12px;
  background: #fff;
  border: 0;
  font-size: 1.125em;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.14), 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
}
.breadcrumb-container .dropdown-menu li + li {
  margin-top: 4px;
}
.breadcrumb-container .dropdown-menu .bottom-border {
  padding-bottom: 4px;
  border-bottom: 1px solid #C9C7B9;
}
.breadcrumb-container .dropdown-menu .top-border {
  border-top: 1px solid #C9C7B9;
  padding-top: 4px;
}
.breadcrumb-container .dropdown-menu .dropdown-item {
  padding: 8px;
  color: var(--Color-NeutralVarient-40, #5F5F53);
  font-weight: 400;
  line-height: 177.778%;
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin: 0 6px;
  width: calc(100% - 6px * 2);
  white-space: inherit;
}
.breadcrumb-container .dropdown-menu .dropdown-item span {
  width: calc(100% - 20px - 8px);
}
.breadcrumb-container .dropdown-menu .dropdown-item:after {
  content: "";
  margin-left: 8px;
  width: 20px;
  height: 20px;
  display: none;
  background-image: url(../images/dropdown-active.svg);
}
.breadcrumb-container .dropdown-menu .dropdown-item.active, .breadcrumb-container .dropdown-menu .dropdown-item:active {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  background-color: transparent;
}
.breadcrumb-container .dropdown-menu .dropdown-item.active:after, .breadcrumb-container .dropdown-menu .dropdown-item:active:after {
  display: block;
}
.breadcrumb-container .dropdown-menu .icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.breadcrumb-container .dropdown-menu .icon-info {
  background-image: url(../images/dropdown-info.svg);
}
.breadcrumb-container .dropdown-menu .icon-link {
  background-image: url(../images/dropdown-link.svg);
}
.breadcrumb-container .dropdown-menu .icon-share {
  background-image: url(../images/dropdown-share.svg);
}
.breadcrumb-container .dropdown-menu .icon-print {
  background-image: url(../images/dropdown-print.svg);
}
.breadcrumb-container .dropdown-menu .icon-notification {
  background-image: url(../images/dropdown-notification_add.svg);
}

.page-tool ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -4px;
}
.page-tool ul li {
  margin: 0 4px;
}
.page-tool .btn {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  padding: 11px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.page-tool .btn:active {
  filter: brightness(0.85);
}
@media (hover: hover) {
  .page-tool .btn:hover {
    filter: brightness(0.85);
  }
}
.page-tool .icon {
  width: 20px;
  height: 20px;
}
.page-tool .icon-print {
  background-image: url(../images/icon-print-white.svg);
}
.page-tool .icon-link {
  background-image: url(../images/icon-link-white.svg);
}
.page-tool .icon-share {
  background-image: url(../images/icon-share-white.svg);
}
.page-tool .icon-notification {
  background-image: url(../images/icon-notification-white.svg);
}

.pagination-container {
  padding: 12px 0;
}
.pagination-container .pagination {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -4px;
}
.pagination-container .page-item {
  margin: 4px;
}
.pagination-container .page-item:first-child .page-link {
  border-radius: 50%;
}
.pagination-container .page-item:last-child .page-link {
  border-radius: 50%;
}
.pagination-container .page-item.active > .page-link {
  color: #fff;
  background: var(--Color-Mori-Green-40, #006B62);
}
.pagination-container .page-item.disabled {
  pointer-events: none;
}
.pagination-container .page-item.disabled > .page-link {
  opacity: 0.38;
}
.pagination-container .page-link {
  text-align: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  padding: 6px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-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;
  color: #1C1C14;
  font-weight: 500;
  line-height: 125%;
  background: var(--Color-NeutralVarient-90, #E5E3D5);
}
.pagination-container .page-link:active {
  color: #006B62;
  background: #fff;
  box-shadow: 0 0 0 1px #006B62 inset;
}
@media (hover: hover) {
  .pagination-container .page-link:hover {
    color: #006B62;
    background: #fff;
    box-shadow: 0 0 0 1px #006B62 inset;
  }
}
.pagination-container .page-link--control {
  background-color: transparent;
}
.pagination-container .icon {
  width: 24px;
  height: 24px;
}
.pagination-container .icon-first_page {
  background-image: url(../images/icon-first_page.svg);
}
.pagination-container .icon-last_page {
  background-image: url(../images/icon-last_page.svg);
}
.pagination-container .icon-prev {
  background-image: url(../images/icon-prev.svg);
}
.pagination-container .icon-next {
  background-image: url(../images/icon-next.svg);
}

.tab-pane:focus {
  outline: none;
}
@media (min-width: 1024px) {
  .tab-pane:focus {
    outline: none !important;
  }
}

.post-page {
  padding-top: 56px;
  padding-bottom: 56px;
}
.post-page .section-header {
  margin-bottom: 24px;
}
.post-page .section-title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.post-page .section-title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: 0;
}
.post-page .section-title span {
  position: relative;
}
.post-page .last-updated {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
  margin-top: 12px;
}
.post-page .last-updated span + span {
  margin-left: 12px;
}
.post-page .section-content {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  line-height: 177.778%;
  margin-top: 24px;
  padding-bottom: 24px;
}
.post-page .nav-pills {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  margin-bottom: 24px;
}
.post-page .nav-pills .nav-link {
  border-radius: 0;
  color: #5F5F53;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 1em;
  line-height: 133.3333%;
  letter-spacing: 0.72px;
  border-bottom: 2px solid transparent;
}
.post-page .nav-pills .nav-link.active,
.post-page .nav-pills .show > .nav-link {
  color: #006A61;
  background-color: transparent;
  border-bottom: 2px solid #006A61;
}
.post-page .disc-list {
  list-style: disc;
  padding-left: 1.25em;
}
.post-page .decimal-list {
  list-style: decimal;
  padding-left: 1.25em;
}

.cya-menu {
    padding-top: 86px;
    padding-bottom: 156px;
}
.cya-menu .box {
  /*background: var(--Color-NeutralVarient-95, #F3F1E6);*/
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.cya-menu .box + .box {
  margin-top: 10px;
}
.cya-menu .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 36%;
  width: 222px;
  height: 117px;
  background-image: url(../images/index-g-leaf.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.cya-menu .box:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 118px;
  height: 212px;
  background-image: url(../images/index-g-leaf2.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.cya-menu .list {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  /*display: flex;*/
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 12px;
}
.cya-menu .list:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 165px;
  height: 143px;
  background-image: url(../images/index-g-leaf3.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.cya-menu .item {
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  position: relative;
  padding: 24px 32px;
  display: block;
  flex: 1;
}
.cya-menu .item:first-child:before {
  display: none;
}
.cya-menu .item:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 1px;
  height: calc(100% - 24px * 2);
  background-color: #C9C7B9;
  display: block;
}
.cya-menu .item .main-text {
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.5em;
  line-height: 150%;
  color: #1C1C14;
}
.cya-menu .item .sub-text {
  margin-top: 8px;
  font-weight: 400;
  font-size: .875em;
  line-height: 171.428571429%;
  color: #5F5F53;
}
.cya-menu .item .image {
  width: 48px;
  height: 48px;
  margin-bottom: 48px;
}
.cya-menu .item img {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
}
.cya-menu .item ul {
  list-style: disc;
  padding-left: 1.25em;
}
.cya-menu .item:active img {
  opacity: .8;
}
.cya-menu .item:active .main-text {
  opacity: .8;
}
.cya-menu .item:active .sub-text {
  opacity: .8;
}
@media (hover: hover) {
  .cya-menu .item:hover img {
    opacity: .8;
  }
  .cya-menu .item:hover .main-text {
    opacity: .8;
  }
  .cya-menu .item:hover .sub-text {
    opacity: .8;
  }
}
.cya-menu .item a {
  color: var(--Color-NeutralVarient-40, #5F5F53);
}
.cya-menu .item a:active {
  opacity: .8;
}
@media (hover: hover) {
  .cya-menu .item a:hover {
    opacity: .8;
  }
}

.cya-menu-b .item {
  width: calc(100% / 4);
  flex: none;
}
.cya-menu-b .item:active img {
  opacity: 1;
}
.cya-menu-b .item:active .main-text {
  opacity: 1;
}
.cya-menu-b .item:active .sub-text {
  opacity: 1;
}
@media (hover: hover) {
  .cya-menu-b .item:hover img {
    opacity: 1;
  }
  .cya-menu-b .item:hover .main-text {
    opacity: 1;
  }
  .cya-menu-b .item:hover .sub-text {
    opacity: 1;
  }
}

.cya-list_a {
  padding-bottom: 32px;
}
.cya-list_a .section-header {
  margin-bottom: 16px;
}
.cya-list_a .section-content {
  margin-top: 16px;
  padding-bottom: 0;
}
.cya-list_a .list {
  padding: 10px 23px;
}
.cya-list_a .item {
  padding: 20px;
  border-bottom: 1px solid var(--Nav-Border-Secondary, #E5E3D5);
  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;
  font-size: 1.25em;
  line-height: 120%;
  color: var(--Color-NeutralVarient-30, #48473D);
}
.cya-list_a .item:active, .cya-list_a .item:focus {
  color: #006A61;
}
@media (hover: hover) {
  .cya-list_a .item:hover {
    color: #006A61;
  }
}
.cya-list_a .item .image {
  width: 24px;
}
.cya-list_a .item .image + .text {
  width: calc(100% - 24px);
  padding-left: 6px;
}

@media (max-width: 767px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .page .cya-container {
    max-width: 100%;
  }
  .page-header {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .page-header:before {
    height: 72px;
    background-position: left top;
    background-size: auto 100%;
  }
  .page-header .l-grid {
    display: block;
  }
  .page-header .l-grid__right {
    margin-top: 16px;
  }

  .cya-menu {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .cya-menu .box:before {
    display: none;
  }
  .cya-menu .list {
    display: block;
  }
  .cya-menu .item {
    padding: 24px 40px 24px 32px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .cya-menu .item:before {
    display: none;
  }
  .cya-menu .item .image {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }
  .cya-menu .item .content {
    width: calc(100% - 40px);
    padding-left: 24px;
  }
}
:root {
  --mm-size: 100%;
  --mm-min-size: 240px;
  --mm-max-size: 100%;
  --mm-color-background: #FEFCF5;
}

.mm-slideout {
  z-index: auto;
}

.mm-wrapper--opened .mm-slideout {
  z-index: 0;
  pointer-events: none;
}

.mm-panel {
  background-color: #FEFCF5;
}
.mm-panel .mm-section-group {
  padding: 0 16px;
}
.mm-panel .mm-sub-menu li + li {
  margin-top: 4px;
}
.mm-panel .mm-sub-menu a {
  text-decoration: none;
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  font-weight: 500;
  line-height: 133.333%;
  letter-spacing: 0.72px;
  padding: 8px;
  position: relative;
  display: block;
  text-align: left;
}
.mm-panel .mm-sub-menu a:active {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  background-color: var(--Color-NeutralVarient-95, #F3F1E6);
  border-radius: 2px;
}
.mm-panel .mm-third-menu li + li {
  margin-top: 4px;
}
.mm-panel .mm-third-menu a {
  text-decoration: none;
  color: #5F5F53;
  font-size: 1em;
  font-weight: 500;
  line-height: 133.333%;
  letter-spacing: 0.72px;
  padding: 8px;
  padding-left: 16px;
  position: relative;
  display: block;
  text-align: left;
}
.mm-panel .mm-third-menu a:active {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  background-color: var(--Color-NeutralVarient-95, #F3F1E6);
  border-radius: 2px;
}
.mm-panel .mm-section {
  padding: 0 16px;
}
.mm-panel .mm-section + .mm-section {
  margin-top: 24px;
}
.mm-panel .mm-section__heading {
  color: var(--Color-NeutralVarient-30, #48473D);
  font-size: .875em;
  font-weight: 500;
  line-height: 171.429%;
  padding: 8px;
  border-bottom: 1px solid var(--Color-NeutralVarient-90, #E5E3D5);
  margin-bottom: 4px;
}
.mm-panel .mm-section__heading a {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  display: block;
  padding: 0;
  text-align: left;
}
.mm-panel .icon-menu a {
  padding: 24px 32px;
}
.mm-panel .icon-menu a:active {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  background-color: var(--Color-NeutralVarient-95, #F3F1E6);
  border-radius: 2px;
}
.mm-panel .icon-menu .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}
.mm-panel .icon-menu .main-text {
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.5em;
  line-height: 150%;
  color: #1C1C14;
}
.mm-panel .icon-menu .sub-text {
  margin-top: 8px;
  font-weight: 400;
  font-size: .875em;
  line-height: 171.428571429%;
}

.mm-navbar {
  background-color: #FEFCF5;
  border-bottom: 0;
  line-height: 56px;
}
.mm-navbar__title {
  color: #1C1C14 !important;
  font-size: 1.125em;
  font-weight: 500;
}

.mm-wrapper__blocker {
  display: none !important;
}

.mm-btn:active {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  background-color: var(--Color-NeutralVarient-95, #F3F1E6);
  border-radius: 2px;
}

.mm-btn--next::after {
  top: 16px;
  right: 8px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  border: 0;
  margin: 0;
  transform: none;
  background-image: url(../images/icon-chevron_right.svg);
}

.mm-btn--prev::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 40px;
  height: 40px;
  border: 0;
  margin: 0;
  transform: none;
  background-image: url(../images/mm-btn--prev.svg);
  inset-inline-start: 16px;
}

.mm-listitem {
  padding: 0 16px;
}
.mm-listitem:last-child:after {
  display: none;
}
.mm-listitem + .mm-listitem {
  margin-top: 4px;
}
.mm-listitem:after {
  inset-inline-start: 16px;
  inset-inline-end: 16px;
}
.mm-listitem__text {
  padding: 16px 32px 16px 8px;
  font-size: 1.125em;
  line-height: 133.33%;
}

#mm-1 .mm-navbar {
  display: none;
}

.mm-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: #FEFCF5;
  display: none;
  z-index: 11;
}
.mm-wrapper--opened .mm-header {
  display: block;
}
.mm-header .cya-logo {
  position: absolute;
  top: 8px;
  left: 16px;
  width: 121px;
  height: 40px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/cya-logo.png);
  z-index: 11;
}

.mm-search {
  margin-top: 72px;
  padding: 16px;
  width: 100%;
}
.mm-search .search-form {
  position: relative;
  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;
}
.mm-search .form-control {
  width: 100%;
  border: 0;
  height: 48px;
  line-height: 48px;
  padding-right: 48px;
  border-radius: 4px;
  border: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.mm-search .btn {
  position: absolute;
  top: 6px;
  right: 8px;
  padding: 9px;
  border-radius: var(--border-radius-rounded-full, 36px);
  background: var(--Color-NeutralVarient-30, #48473D);
  width: 36px;
  height: 36px;
}
.mm-search .btn .icon-search {
  background-image: url(../images/icon-search-white.svg);
}

.mm-footer {
  display: block;
  font-size: .875em;
  font-weight: 500;
  line-height: 171.429%;
  color: var(--Color-NeutralVarient-40, #5F5F53);
}
.mm-footer .weather-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 8px 16px;
}
.mm-footer .weather-info__main {
  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;
  width: 100%;
}
.mm-footer .weather-info__main span + span {
  padding-left: 3px;
}
.mm-footer .weather-info__day {
  padding-left: 0;
}
.mm-footer .weather-info__time {
  padding-left: 6px;
}
.mm-footer .header-links {
  padding: 8px 16px;
  color: #5F5F53;
}
.mm-footer .header-links .list {
  position: relative;
  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;
}
.mm-footer .header-links .list > li {
  position: relative;
  padding: 8px 12px;
}
.mm-footer .header-links .list > li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #E0DECD;
}
.mm-footer .header-links .list > li:last-child:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #E0DECD;
}
.mm-footer .header-links .sub-list {
  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;
  margin: 0 -6px;
}
.mm-footer .header-links .sub-list > li {
  position: relative;
  margin: 0 6px;
}
.mm-footer .header-links a {
  color: #5F5F53;
}
.mm-footer .header-links a:active {
  color: #006A61;
}
@media (hover: hover) {
  .mm-footer .header-links a:hover {
    color: #006A61;
  }
}
.mm-footer .language {
  position: absolute;
  top: 13px;
  right: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: var(--border-radius-rounded-full, 999px);
  border: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  line-height: 125%;
  padding: 10px 18px;
}
.mm-footer .language .icon + span {
  margin-left: 4px;
}
.mm-footer .collapse-item {
  position: relative;
}
.mm-footer .size-collapse {
  width: 100px;
  position: absolute;
  top: -32px;
  left: calc(50% - 100px / 2);
  z-index: 10;
}
.mm-footer .size-collapse .collapse-inner {
  position: relative;
  border-radius: 8px;
  padding: 4px;
  background: var(--Color-NeutralVarient-98, #FCF9ED);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.14), 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
}
.mm-footer .size-collapse .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0;
}
.mm-footer .size-collapse .list li {
  margin: 0;
  padding: 0;
}
.mm-footer .size-collapse .list li:before {
  display: none;
}
.mm-footer .size-collapse .list li + li {
  margin-left: 4px;
}
.mm-footer .size-collapse .list a {
  display: block;
  padding: 8px;
  text-align: center;
  color: #1C1C14;
  font-weight: 500;
  font-size: .75em;
  line-height: 133.3333%;
  border-radius: 4px;
}
.mm-footer .size-collapse .list .active {
  background: var(--Color-NeutralVarient-90, #E5E3D5);
}

.plus-header {
  padding-top: 110px;
}

.main-menu-bg {
  position: fixed;
  top: 110px;
  left: 0;
  width: 100vw;
  height: 100vw;
  background-color: rgba(28, 28, 20, 0.14);
  display: none;
  z-index: 9;
}

.main-menu-show .site-header {
  background: var(--Color-NeutralVarient-99, #FEFCF5);
}
.main-menu-show .site-header .cya-logo {
  top: 25px;
  width: 218px;
  height: 72px;
  background-image: url(../images/cya-logo.png);
}
.main-menu-show .main-menu-bg {
  display: block;
}
.main-menu-show .site-header--white .sm-simple a, .main-menu-show .site-header--white .sm-simple a:hover, .main-menu-show .site-header--white .sm-simple a:focus, .main-menu-show .site-header--white .sm-simple a:active, .main-menu-show .site-header--white .sm-simple a.highlighted {
  color: inherit;
}
.main-menu-show .site-header--white .icon-clear_day {
  background-image: url(../images/icon-clear_day.svg);
}
.main-menu-show .site-header--white .icon-icon-cloud {
  background-image: url(../images/icon-clear_cloud.svg);
}
.main-menu-show .site-header--white .icon-icon-rainy {
  background-image: url(../images/icon-clear_rainy.svg);
}
.main-menu-show .site-header--white .icon-home {
  background-image: url(../images/icon-home.svg);
}
.main-menu-show .site-header--white .icon-flowchart {
  background-image: url(../images/icon-flowchart.svg);
}
.main-menu-show .site-header--white .icon-rss_feed {
  background-image: url(../images/icon-rss_feed.svg);
}
.main-menu-show .site-header--white .icon-format_size {
  background-image: url(../images/icon-format_size.svg);
}
.main-menu-show .site-header--white .icon-language {
  background-image: url(../images/icon-language.svg);
}
.main-menu-show .site-header--white .icon-search {
  background-image: url(../images/icon-search.svg);
}
.main-menu-show .site-header--white .header-links {
  color: #5F5F53;
}
.main-menu-show .site-header--white .header-links .list > li:before {
  background-color: #5F5F53;
}
.main-menu-show .site-header--white .header-links a {
  color: #1D2129;
}
.main-menu-show .site-header--white .header-links a:active {
  color: #006A61;
}
@media (hover: hover) {
  .main-menu-show .site-header--white .header-links a:hover {
    color: #006A61;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.site-header.sticky {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.14);
  background-color: #FEFCF5;
}
.site-header.sticky .cya-logo {
  top: 25px;
  width: 218px;
  height: 72px;
  background-image: url(../images/cya-logo.png);
}
.site-header.search-sticky {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.14);
  background-color: #FEFCF5;
}
.site-header.search-sticky .cya-logo {
  top: 25px;
  width: 218px;
  height: 72px;
  background-image: url(../images/cya-logo.png);
}
.site-header .cya-container {
  height: 110px;
  max-width: 100%;
}
.site-header .cya-logo {
  position: absolute;
  top: 37px;
  left: 60px;
  width: 184px;
  height: 48px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/cya-logo-white.png);
  z-index: 11;
}
.site-header .header-links {
  position: absolute;
  top: 20px;
  right: 60px;
  color: #5F5F53;
  text-align: center;
  font-size: .875em;
  font-weight: 500;
  line-height: 128.571428571%;
}
.site-header .header-links .list {
  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;
  margin: 0 -12px;
}
.site-header .header-links .list > li {
  position: relative;
  margin: 0 12px;
  padding: 8px 0;
}
.site-header .header-links .list > li:before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 1px;
  height: 100%;
  background-color: #5F5F53;
}
.site-header .header-links .list > li:first-child:before {
  display: none;
}
.site-header .header-links .sub-list {
  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;
  margin: 0 -6px;
}
.site-header .header-links .sub-list > li {
  position: relative;
  margin: 0 6px;
}
.site-header .header-links a {
  color: #5F5F53;
  display:block;
}
.site-header .header-links a:active {
  color: #006A61;
}
@media (hover: hover) {
  .site-header .header-links a:hover {
    color: #006A61;
  }
}
.site-header .header-links .language {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-header .header-links .language .icon + span {
  margin-left: 4px;
}
.site-header .header-links .weather-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-header .header-links .weather-info__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-header .header-links .weather-info__main span + span {
  padding-left: 3px;
}
.site-header .header-links .weather-info__day {
  padding-left: 12px;
}
.site-header .header-links .weather-info__time {
  padding-left: 6px;
}
.site-header .header-search {
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  background: var(--Color-NeutralVarient-99, #FEFCF5);
  display: none;
  padding: 16px 0;
  min-height: 188px;
  z-index: 10;
  text-align: left;
  font-size: 1.14285714286em;
  line-height: 175%;
}
.site-header .header-search.is-view {
  display: block;
}
.site-header .header-search__close {
  position: absolute;
  top: 0;
  right: 20px;
  background-color: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
}
.site-header .header-search__close .icon-close {
  width: 44px;
  height: 44px;
  background-image: url(../images/icon-close.svg);
  display: block;
}
.site-header .header-search .cya-container {
  max-width: 760px;
  height: auto;
}
.site-header .header-search .title {
  color: var(--Color-Neutral-10, #1B1C1E);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.5em;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 20px;
  padding: 4px 0;
}
.site-header .header-search .search-box {
  width: 100%;
  margin-bottom: 16px;
}
.site-header .header-search .search-form {
  position: relative;
  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;
}
.site-header .header-search .form-control {
  width: 100%;
  border: 0;
  height: 48px;
  line-height: 48px;
  padding-right: 48px;
  border-radius: 4px;
  border: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.site-header .header-search .btn {
  position: absolute;
  top: 6px;
  right: 8px;
  padding: 9px;
  border-radius: var(--border-radius-rounded-full, 36px);
  background: var(--Color-NeutralVarient-30, #48473D);
  width: 36px;
  height: 36px;
}
.site-header .header-search .btn .icon-search {
  background-image: url(../images/icon-search-white.svg);
}
.site-header .header-search .keywords {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-header .header-search .keywords-header {
  width: 80px;
  padding: 2px 0;
}
.site-header .header-search .keywords-content {
  width: calc(100% - 80px);
  padding-left: 24px;
}
.site-header .header-search .keywords .tags {
  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;
  margin: -4px;
}
.site-header .header-search .keywords .tag {
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--Color-NeutralVarient-90, #E5E3D5);
  color: var(--Color-Neutral-30, #464749);
  text-align: center;
  font-size: .875em;
  font-weight: 500;
  line-height: 114.286%;
  margin: 4px;
}
.site-header .collapse-item {
  position: relative;
}
.site-header .size-collapse {
  width: 100px;
  position: absolute;
  top: 32px;
  left: calc(50% - 100px / 2);
  z-index: 10;
}
.site-header .size-collapse .collapse-inner {
  position: relative;
  border-radius: 8px;
  padding: 4px;
  background: var(--Color-NeutralVarient-98, #FCF9ED);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.14), 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
}
.site-header .size-collapse .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 0;
}
.site-header .size-collapse .list li {
  margin: 0;
  padding: 0;
}
.site-header .size-collapse .list li:before {
  display: none;
}
.site-header .size-collapse .list li + li {
  margin-left: 4px;
}
.site-header .size-collapse .list a {
  display: block;
  padding: 8px;
  text-align: center;
  color: #1C1C14;
  font-weight: 500;
  font-size: .75em;
  line-height: 133.3333%;
  border-radius: 4px;
}
.site-header .size-collapse .list .active {
  background: var(--Color-NeutralVarient-90, #E5E3D5);
}

.site-header--white .sm-simple a, .site-header--white .sm-simple a:hover, .site-header--white .sm-simple a:focus, .site-header--white .sm-simple a:active, .site-header--white .sm-simple a.highlighted {
  color: #fff;
}
.site-header--white .icon-clear_day {
  background-image: url(../images/icon-clear_day-white.svg);
}

.site-header--white .icon-icon-cloud {
  background-image: url(../images/icon-clear_cloud-white.svg);
}

.site-header--white .icon-icon-rainy {
  background-image: url(../images/icon-clear_rainy-white.svg);
}

.site-header--white .icon-home {
  background-image: url(../images/icon-home-white.svg);
}
.site-header--white .icon-flowchart {
  background-image: url(../images/icon-flowchart-white.svg);
}
.site-header--white .icon-rss_feed {
  background-image: url(../images/icon-rss_feed-white.svg);
}
.site-header--white .icon-format_size {
  background-image: url(../images/icon-format_size-white.svg);
}
.site-header--white .icon-language {
  background-image: url(../images/icon-language-white.svg);
}
.site-header--white .icon-search {
  background-image: url(../images/icon-search-white.svg);
}
.site-header--white.sticky .cya-logo {
  background-image: url(../images/cya-logo.png);
}
.site-header--white.sticky .sm-simple a, .site-header--white.sticky .sm-simple a:hover, .site-header--white.sticky .sm-simple a:focus, .site-header--white.sticky .sm-simple a:active, .site-header--white.sticky .sm-simple a.highlighted {
  color: inherit;
}
.site-header--white.sticky .icon-clear_day {
  background-image: url(../images/icon-clear_day.svg);
}
.site-header--white.sticky .icon-icon-cloud {
  background-image: url(../images/icon-clear_cloud.svg);
}
.site-header--white.sticky .icon-icon-rainy {
  background-image: url(../images/icon-clear_rainy.svg);
}
.site-header--white.sticky .icon-home {
  background-image: url(../images/icon-home.svg);
}
.site-header--white.sticky .icon-flowchart {
  background-image: url(../images/icon-flowchart.svg);
}
.site-header--white.sticky .icon-rss_feed {
  background-image: url(../images/icon-rss_feed.svg);
}
.site-header--white.sticky .icon-format_size {
  background-image: url(../images/icon-format_size.svg);
}
.site-header--white.sticky .icon-language {
  background-image: url(../images/icon-language.svg);
}
.site-header--white.sticky .icon-search {
  background-image: url(../images/icon-search.svg);
}
.site-header--white.sticky .header-links {
  color: #5F5F53;
}
.site-header--white.sticky .header-links .list > li:before {
  background-color: #5F5F53;
}
.site-header--white.sticky .header-links a {
  color: #1D2129;
}
.site-header--white.sticky .header-links a:active {
  color: #006A61;
}
@media (hover: hover) {
  .site-header--white.sticky .header-links a:hover {
    color: #006A61;
  }
}
.site-header--white.search-sticky .cya-logo {
  background-image: url(../images/cya-logo.png);
}
.site-header--white .cya-logo {
  background-image: url(../images/cya-logo-white.png);
}
.site-header--white .header-links {
  color: #E3F4F0;
}
.site-header--white .header-links .list > li:before {
  background-color: #E3F4F0;
}
.site-header--white .header-links a {
  color: #E3F4F0;
}
.site-header--white .header-links a:active {
  color: #E3F4F0;
}
@media (hover: hover) {
  .site-header--white .header-links a:hover {
    color: #E3F4F0;
  }
}
.site-header--white .size-collapse .list a {
  color: #1C1C14;
}
.site-header--white .size-collapse .list a:active {
  color: #1C1C14;
}
@media (hover: hover) {
  .site-header--white .size-collapse .list a:hover {
    color: #1C1C14;
  }
}

.festival--a {
  background-color: rgba(152, 31, 34, 0.95);
}

.festival--b {
  background-color: rgba(80, 109, 0, 0.95);
}

.festival--c {
  background-color: #003B48;
}

.festival--d {
  background-color: rgba(164, 38, 15, 0.95);
}

.festival--e {
  background-color: rgba(0, 90, 109, 0.95);
}

.site-menu {
  position: absolute;
  top: 54px;
  right: 60px;
}

.menu-toggle {
  display: none;
  position: fixed;
  top: 8px;
  right: 16px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  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.svg);
}
.menu-toggle:active {
  filter: brightness(1.1);
}

.menu-close {
  display: block;
  position: fixed;
  top: 8px;
  right: 16px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  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.svg);
}
.menu-close:active {
  filter: brightness(1.1);
}

@media (min-width: 1024px) {
  #main-menu {
    border: 0;
    box-shadow: none;
    position: static !important;
    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: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin: 0;
    background-color: transparent;
  }
  #main-menu > .has-mega-menu {
    position: static !important;
  }
  #main-menu > .has-mega-menu .scroll-up,
  #main-menu > .has-mega-menu .scroll-down {
    margin-left: 0 !important;
  }
  #main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #main-menu li {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    float: none;
  }
  #main-menu > li {
    margin: 0 2px;
    position: relative;
  }
  #main-menu > li > a {
    text-align: center;
  }
  #main-menu .mega-menu {
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-width: none !important;
    padding: 24px 60px 16px;
    border-radius: 0;
    box-shadow: none;
    position: fixed;
    top: 110px;
    left: 0;
    width: 100vw;
    height: calc(80vh - 110px);
    background: var(--Color-NeutralVarient-99, #FEFCF5);
    overflow: auto;
  }
  #main-menu .mega-menu:after {
    content: "";
    position: fixed;
    bottom: calc(20vh + 8px);
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, rgba(254, 252, 245, 0) 0%, #fefcf5 100%);
    pointer-events: none;
  }
  #main-menu .mega-menu ul {
    position: static;
    display: block;
    margin: 0;
    border: 0;
    padding: 0;
    width: auto;
    background: transparent;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  #main-menu .mega-menu .mega-sub-menu li + li {
    margin-top: 4px;
  }
  #main-menu .mega-menu .mega-sub-menu a {
    text-decoration: none;
    color: var(--Color-NeutralVarient-10, #1C1C14);
    font-size: 1.125em;
    font-weight: 500;
    line-height: 133.333%;
    letter-spacing: 0.72px;
    padding: 8px;
    position: relative;
    display: block;
    text-align: left;
  }
  #main-menu .mega-menu .mega-sub-menu a:active {
    color: var(--Color-NeutralVarient-10, #1C1C14);
    background-color: var(--Color-NeutralVarient-95, #F3F1E6);
    border-radius: 2px;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  #main-menu .mega-menu .mega-sub-menu a:hover {
    color: var(--Color-NeutralVarient-10, #1C1C14);
    background-color: var(--Color-NeutralVarient-95, #F3F1E6);
    border-radius: 2px;
  }
}
@media (min-width: 1024px) {
  #main-menu .mega-menu .mega-third-menu li + li {
    margin-top: 4px;
  }
  #main-menu .mega-menu .mega-third-menu a {
    text-decoration: none;
    color: #5F5F53;
    font-size: 1em;
    font-weight: 500;
    line-height: 133.333%;
    letter-spacing: 0.72px;
    padding: 8px;
    padding-left: 16px;
    position: relative;
    display: block;
    text-align: left;
  }
  #main-menu .mega-menu .mega-third-menu a:active {
    color: var(--Color-NeutralVarient-10, #1C1C14);
    background-color: var(--Color-NeutralVarient-95, #F3F1E6);
    border-radius: 2px;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  #main-menu .mega-menu .mega-third-menu a:hover {
    color: var(--Color-NeutralVarient-10, #1C1C14);
    background-color: var(--Color-NeutralVarient-95, #F3F1E6);
    border-radius: 2px;
  }
}
@media (min-width: 1024px) {
  #main-menu .mega-menu .icon-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;
    overflow: hidden;
  }
  #main-menu .mega-menu .icon-menu.grid--4 li {
    width: calc(100% / 4);
  }
  #main-menu .mega-menu .icon-menu li {
    width: calc(100% / 3);
    position: relative;
    overflow: visible;
  }
  #main-menu .mega-menu .icon-menu li:before {
    content: "";
    position: absolute;
    top: 24px;
    left: -1px;
    width: 1px;
    height: calc(100% - 24px * 2);
    background-color: #e5e3d5;
  }
  #main-menu .mega-menu .icon-menu a {
    padding: 24px 32px;
    border-radius: 2px;
  }
  #main-menu .mega-menu .icon-menu .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 48px;
  }
  #main-menu .mega-menu .icon-menu .main-text {
    font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
    font-weight: 600;
    font-size: 1.5em;
    line-height: 150%;
    color: #1C1C14;
  }
  #main-menu .mega-menu .icon-menu .sub-text {
    margin-top: 8px;
    font-weight: 400;
    font-size: .875em;
    line-height: 171.428571429%;
  }
  #main-menu .mega-menu .menu-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: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    margin: -16px -20px;
  }
  #main-menu .mega-menu .menu-section-group.grid--5 .menu-section {
    width: calc(100% / 5 - 20px * 2);
  }
  #main-menu .mega-menu .menu-section {
    width: calc(100% / 4 - 20px * 2);
    margin: 16px 20px;
    font-size: 1.125em;
  }
  #main-menu .mega-menu .menu-section__heading {
    color: var(--Color-NeutralVarient-30, #48473D);
    font-size: .875em;
    font-weight: 500;
    line-height: 171.429%;
    padding: 8px;
    border-bottom: 1px solid var(--Color-NeutralVarient-90, #E5E3D5);
    margin-bottom: 4px;
  }
  #main-menu .mega-menu .menu-section__heading a {
    color: var(--Color-NeutralVarient-10, #1C1C14);
    padding: 0;
    text-align: left;
    font-size: 1em;
    padding: 8px;
    margin: -8px;
    display: block;
  }
  #main-menu .mega-menu .menu-section__heading a:active {
    color: var(--Color-NeutralVarient-10, #1C1C14);
  }
}
@media (min-width: 1024px) and (hover: hover) {
  #main-menu .mega-menu .menu-section__heading a:hover {
    color: var(--Color-NeutralVarient-10, #1C1C14);
  }
}

@media (min-width: 1024px) {
  /* simple columns inside the mega menus */
}
@media (max-width: 1023px) {
  .plus-header {
    padding-top: 56px;
  }

  .site-header.sticky .cya-logo {
    top: 8px;
    left: 16px;
    width: 121px;
    height: 40px;
  }
  .site-header .cya-container {
    height: 56px;
    max-width: 100%;
  }
  .site-header .cya-logo {
    top: 8px;
    left: 16px;
    width: 121px;
    height: 40px;
  }
  .site-header .header-search {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 20px;
  }
  .site-header .header-search .search-box {
    width: 100%;
  }

  .site-header--white .cya-logo {
    background-image: url(../images/cya-logo-white.png);
  }
  .site-header--white .menu-toggle {
    background-image: url(../images/menu-toggle-white.svg);
  }
  .site-header--white .icon-clear_day {
    background-image: url(../images/icon-clear_day.svg);
  }
  .site-header--white .icon-icon-cloud {
    background-image: url(../images/icon-clear_cloud.svg);
  }
  .site-header--white .icon-icon-rainy {
    background-image: url(../images/icon-clear_rainy.svg);
  }
  .site-header--white .icon-home {
    background-image: url(../images/icon-home.svg);
  }
  .site-header--white .icon-flowchart {
    background-image: url(../images/icon-flowchart.svg);
  }
  .site-header--white .icon-rss_feed {
    background-image: url(../images/icon-rss_feed.svg);
  }
  .site-header--white .icon-format_size {
    background-image: url(../images/icon-format_size.svg);
  }
  .site-header--white .icon-language {
    background-image: url(../images/icon-language.svg);
  }
  .site-header--white .icon-search {
    background-image: url(../images/icon-search.svg);
  }
  .site-header--white.sticky .cya-logo {
    background-image: url(../images/cya-logo.png);
  }
  .site-header--white.sticky .menu-toggle {
    background-image: url(../images/menu-toggle.svg);
  }

  .menu-panel {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
@media (max-width: 767px) {
  .site-header .cya-logo {
    background-image: url(../images/cya-logo.png);
  }

  .site-header--white .cya-logo {
    background-image: url(../images/cya-logo-white.png);
  }
  .site-header--white .menu-toggle {
    background-image: url(../images/menu-toggle-white.svg);
  }
  .site-header--white.sticky .cya-logo {
    background-image: url(../images/cya-logo.png);
  }
  .site-header--white.sticky .menu-toggle {
    background-image: url(../images/menu-toggle.svg);
  }
}
.fat-footer {
  font-weight: 500;
  font-size: 1em;
  line-height: 175%;
  color: #5F5F53;
  background-color: #E5E3D5;
  padding: 48px 0px;
  background-image: url(../images/fat-footer-bg.svg);
  background-repeat: repeat-x;
  background-size: 1377px auto;
  background-position: center bottom 40px;
}
.fat-footer .cya-container {
  max-width: calc(100% - 40px * 2);
}
.fat-footer .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;
  margin: -12px;
}
.fat-footer .section {
  width: calc(100% / 6 - 12px * 2);
  margin: 12px;
}
.fat-footer .section-header {
  font-size: .875em;
  line-height: 171.428571429%;
}
.fat-footer .section-header a {
  color: #1C1C14;
}
.fat-footer a {
  color: #5F5F53;
  display: block;
  padding: 6px 8px;
}
.fat-footer a:active {
  color: #006A61;
}
@media (hover: hover) {
  .fat-footer a:hover {
    color: #006A61;
  }
}

.site-footer {
  position: relative;
  font-size: .875em;
  line-height: 171.429%;
  font-weight: 500;
  background-color: #006B62;
  color: #fff;
  padding: 40px 0px;
}
.site-footer .bg {
  background-image: url(../images/footer-bg.jpg);
  background-position: center top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .16;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.site-footer .cya-container {
  max-width: calc(100% - 40px * 2);
}
.site-footer .cya-logo {
  position: relative;
  width: 246px;
  height: 64px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/cya-logo-white.png);
  margin-bottom: 40px;
}
.site-footer .footer-a {
  padding: 0 8px;
}
.site-footer .footer-b {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-footer .footer-b .col-left {
  width: calc(100% - 200px);
  padding-top: 24px;
}
.site-footer .footer-b .col-right {
  width: 200px;
  padding-bottom: 8px;
}
.site-footer .footer-b .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;
}
.site-footer .footer-b .footer-menu li {
  padding: 6px 8px;
}
.site-footer .footer-b .footer-menu li + li {
  margin-left: 8px;
}
.site-footer .footer-b .footer-menu a {
  color: #fff;
}
.site-footer .footer-b .footer-menu a:active {
  filter: brightness(0.8);
}
@media (hover: hover) {
  .site-footer .footer-b .footer-menu a:hover {
    filter: brightness(0.8);
  }
}
.site-footer .footer-c {
  padding: 18px 8px 2px;
  border-top: 1.5px solid rgba(146, 211, 201, 0.38);
  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;
  margin-top: 16px;
}
.site-footer .footer-c .col-left {
  width: calc(100% - 114px);
}
.site-footer .footer-c .col-right {
  width: 114px;
}
.site-footer .footer-c .footer-mark {
  width: 114px;
}
.site-footer .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-footer .info + .info {
  margin-top: 2px;
}
.site-footer .info-header {
  width: 120px;
  font-weight: 500;
  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;
}
.site-footer .info-header span + span {
  margin-left: 4px;
}
.site-footer .info-content {
  width: calc(100% - 120px);
  padding-left: 4px;
  font-weight: 400;
  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;
}
.site-footer .info-content span + span {
  margin-left: 8px;
}
.site-footer .info a {
  display: inline-flex;
}
.site-footer .info .icon-info {
  width: 20px;
  height: 20px;
}
.site-footer .info .icon-map {
  width: 24px;
  height: 24px;
}
.site-footer .totop {
  width: 64px;
  height: 94px;
  border-radius: 64px;
  border: 1px solid #fff;
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
}
.site-footer .totop .icon-top {
  width: 64px;
  height: 94px;
  background-size: 100% auto;
  background-image: url(../images/icon-top.png);
}

.footer-marquee {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #005049;
    background-image: url(../images/footer-marquee.png);
    background-position: center center;
    background-repeat: repeat-x;
    /*animation: marquee 30s infinite linear;*/
    background-size: auto 100%;
}

@keyframes marquee {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1712px 0;
  }
}
.side-sticky {
  position: fixed;
  top: calc(100% - 48px - 20px);
  right: 16px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 9;
}
@media (min-width: 768px) {
  .side-sticky {
    top: 112px;
    right: 24px;
  }
  .side-sticky .sticky-collapse {
    top: 0;
    right: 56px;
  }
}
.side-sticky .collapse-item {
  position: relative;
}
.side-sticky .btn-primary {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 12px;
  background-color: #006A61;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  display: block;
}
.side-sticky .btn-primary:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .side-sticky .btn-primary:hover {
    filter: brightness(1.1);
  }
}
.side-sticky .icon-airplane {
  width: 24px;
  height: 24px;
}
.side-sticky .sticky-collapse {
  width: 88px;
  position: absolute;
  bottom: 0;
  right: 56px;
}
.side-sticky .collapse-inner {
  position: relative;
  border-radius: 8px;
  padding-top: 6px;
  padding-bottom: 6px;
  height: 281px;
  background-color: #FCF9ED;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.14);
}
.side-sticky .collapse-header {
  padding: 0 6px;
  border-bottom: 1px solid #E5E3D5;
  margin-bottom: 4px;
}
.side-sticky .collapse-content {
  padding: 0 6px;
}
.side-sticky .btn-collapse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding: 8px;
  color: #1C1C14;
  font-weight: 500;
  font-size: .75em;
  line-height: 133.3333%;
  width: 100%;
}
.side-sticky .btn-collapse .icon-collapse {
  width: 20px;
  height: 20px;
  background-image: url(../images/icon-sticky-collapse.svg);
}
.side-sticky .list li + li {
  margin-top: 4px;
}
.side-sticky .list a {
  display: block;
  padding: 8px;
  text-align: center;
  color: #1C1C14;
  font-weight: 500;
  font-size: .75em;
  line-height: 133.3333%;
}
.side-sticky .list .icon {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 8px;
}

@media (max-width: 767px) {
  .fat-footer {
    display: none;
  }

  .site-footer .cya-container {
    max-width: 100%;
    padding: 0 16px;
  }
  .site-footer .cya-logo {
    width: 215px;
    height: 56px;
  }
  .site-footer .footer-a {
    padding: 0;
  }
  .site-footer .footer-b {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 24px;
  }
  .site-footer .footer-b .col-left {
    width: 100%;
    padding-top: 0;
    order: 2;
    margin-top: 24px;
  }
  .site-footer .footer-b .col-right {
    width: 100%;
    padding-bottom: 0;
  }
  .site-footer .footer-b .footer-menu {
    margin: -4px;
  }
  .site-footer .footer-b .footer-menu li {
    margin: 4px;
  }
  .site-footer .footer-b .footer-menu li + li {
    margin-left: 4px;
  }
  .site-footer .footer-c {
    display: block;
  }
  .site-footer .footer-c .col-left {
    width: 100%;
  }
  .site-footer .footer-c .col-right {
    width: 100%;
    margin-top: 32px;
  }
  .site-footer .footer-c .footer-mark {
    width: 114px;
  }
  .site-footer .totop {
    width: 35px;
    height: 52px;
    border-radius: 35px;
    top: 0;
    right: 16px;
  }
  .site-footer .totop .icon-top {
    width: 35px;
    height: 52px;
  }
  .site-footer .info-content {
    display: block;
  }

  .footer-marquee {
    display: none;
  }
}
.modal:focus {
  outline: none;
}
@media (min-width: 1024px) {
  .modal:focus {
    outline: none !important;
  }
}
.modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 463px;
  margin: 0 auto;
}
.modal-content {
  position: relative;
  border-radius: var(--border-radius-rounded-xl, 12px);
  background: var(--Color-NeutralVarient-99, #FEFCF5);
  /* shadow-28 */
  box-shadow: 0px 14px 28.8px 0px rgba(0, 0, 0, 0.24), 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}
.modal .btn-close {
  width: 20px;
  height: 20px;
  padding: 0;
  background: url(../images/icon-close.svg);
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 10px;
  right: 10px;
}

.share-modal .modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid #E5E3D5;
}
.share-modal .modal-body {
  padding: 16px 0;
}
.share-modal .modal-footer {
  padding: 18px 24px;
  border-top: 1px solid #E5E3D5;
}
.share-modal .title {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.5em;
  font-weight: 600;
  line-height: 150%;
}
.share-modal .list {
  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;
  margin: 0 -4px;
  padding: 8px 16px;
}
.share-modal .item {
  padding: 16px 0;
  display: block;
  margin: 0 4px;
  width: calc(100% / 4 - 4px * 2);
  max-width: 96px;
  color: var(--Color-NeutralVarient-40, #5F5F53);
  text-align: center;
  font-size: .875em;
  line-height: 171.429%;
}
.share-modal .item .image {
  width: 48px;
  margin: 0 auto 16px;
}
.share-modal .btn {
  width: 72px;
  font-size: 1em;
  line-height: 125%;
  height: 40px;
  padding: 10px 20px;
  margin: 0;
}

/* index */
.index {
  position: relative;
}

.index-kv {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.index-kv .cya-container {
  padding: 0;
  padding-top: 138px;
  padding-bottom: 48px;
  max-width: 100%;
}
.index-kv img {
  width: 100%;
  display: block;
}
.index-kv .kv-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 172px;
  background-image: url(../images/kv-wave.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}
.index-kv .kv-bottom img {
  width: 100%;
}
.index-kv .kv-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 594px;
  height: 806px;
  background-image: url(../images/kv-left.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 2;
  padding: 60px;
  padding-top: 288px;
  color: #fff;
}
.index-kv .main-text {
  font-weight: 600;
  font-size: 3em;
  line-height: 133.3333%;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  margin-bottom: 40px;
}
.en-US .index-kv .main-text {
  font-size: 2.25em;
}
.index-kv .index-swiper {
  padding-left: 338px;
  overflow: visible;
}
.index-kv .swiper-slide {
  max-width: 498px;
  padding: 0 25px;
}
.index-kv .swiper-slide-active .image .mask {
  height: 0;
  transition-delay: .5s;
}
.index-kv .item {
  padding: 18px;
  border: 1px solid #e3e3d7;
  border-radius: 448px;
}
.index-kv .image {
  position: relative;
  border-radius: 410px;
  overflow: hidden;
}
.index-kv .image:before {
  content: "";
  padding-top: 140.487804878%;
  display: block;
}
.index-kv .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-kv .image .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #e5e3d5, #e5e3d5);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.index-kv .kv-alerts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), rgba(255, 255, 255, 0);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.index-kv .kv-alerts__inner {
  width: 100%;
}
.index-kv .kv-alerts__main-text {
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.25em;
  line-height: 1.5;
  letter-spacing: .02em;
}
.index-kv .kv-alerts__sub-text {
  font-size: 1em;
  line-height: 1.75;
  margin-top: 8px;
}

.index-kv .block {
  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;
}
.index-kv .block-left {
  width: 150px;
}
.index-kv .swiper-pagination {
  position: static;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  height: 48px;
  margin: 0;
  margin-left: 32px;
  font-weight: 400;
  font-size: 1.875em;
  line-height: 133.3333%;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.index-kv .swiper-pagination .swiper-pagination-current {
  font-size: 1.6em;
  line-height: 48px;
  margin-right: 6px;
}
.index-kv .swiper-pagination .swiper-pagination-total {
  margin-left: 6px;
  position: relative;
  top: 2px;
}
.index-kv .swiper-button-group {
  position: relative;
  width: 100%;
  height: 48px;
}
.index-kv .swiper-button-prev,
.index-kv .swiper-button-pause,
.index-kv .swiper-button-next {
    border: 1px solid #fff;
    background-color: transparent;
    box-shadow: none;
}

.index-kv .swiper-button-prev {
  background-image: url(../images/swiper-prev.svg);
  left: 0;
}

.index-kv .swiper-button-pause{
  background-image: url(../images/swiper-pause.svg);
  left: 50%;
  transform: translate(-50%, 0);
  border:none!important;
}

.index-kv .swiper-button-pause.playing {
   background-image: url('../images/swiper-play.svg');
}

.index-kv .swiper-button-next {
  background-image: url(../images/swiper-next.svg);
  right: 0;
}

.festival-kv .cya-container {
  padding-top: 110px;
  padding-bottom: 30px;
}
.festival-kv .kv-bottom {
  display: none;
}

.index-section {
  position: relative;
  z-index: 0;
}
.index-section .cya-container {
  max-width: 1200px;
}
.index-section .section-title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.index-section .section-title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: 0;
}
.index-section .section-title span {
  position: relative;
}
.index-section .nav-pills {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.index-section .nav-pills .nav-link {
  border-radius: 0;
  color: #5F5F53;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 133.3333%;
  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;
  border-bottom: 2px solid #C9C7B9;
}
.index-section .nav-pills .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.index-section .nav-pills .nav-link.active,
.index-section .nav-pills .show > .nav-link {
  color: #006A61;
  background-color: transparent;
  border-bottom: 2px solid #006A61;
}

.index-a {
  padding-top: 56px;
  padding-bottom: 32px;
}
.index-a .section-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-a .section-header {
  width: 272px;
}
.index-a .section-content {
  width: calc(100% - 272px);
  padding-left: 24px;
}
.index-a .list {
  border-top: 1px solid #C9C7B9;
  padding-top: 8px;
}
.index-a .item {
  display: block;
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 48px;
  border-bottom: 1px solid #C9C7B9;
}
.index-a .item .date {
  font-weight: 400;
  font-size: .75em;
  line-height: 166.6666%;
  margin-bottom: 2px;
}
.index-a .item .main-text {
  font-size: 1em;
  line-height: 175%;
  color: #313126;
  margin-bottom: 2px;
}
.index-a .item .tags {
  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: -4px;
}
.index-a .item .tag {
  padding: 8px 16px;
  border-radius: 8px;
  color: #464749;
  background-color: #FFE8C0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 4px;
  font-size: .875em;
  line-height: 114.2857%;
}
.index-a .item .icon-arrow {
  position: absolute;
  top: calc(50% - 40px / 2);
  right: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/index-a-arrow.svg);
}
.index-a .action {
  margin-top: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.index-a .action .btn {
  padding: 10px 18px;
  font-weight: 500;
  line-height: 125%;
  text-align: center;
  color: #5F5F53;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.index-a .action .btn .icon-arrow {
  background-image: url(../images/icon-arrow_circle_right.svg);
  margin-left: 6px;
}

.index-b {
  padding-top: 32px;
  padding-bottom: 40px;
}
.index-b .switch-mode {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px;
}
.index-b .switch-mode__header {
  margin-right: 10px;
  font-weight: 500;
}
.index-b .switch-mode .group {
  display: flex;
  align-items: center;
  border-radius: 40px;
  overflow: hidden;
  background-color: #F3F1E6;
}
.index-b .switch-mode .icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.index-b .switch-mode .icon-list {
  background-image: url(../images/icon-list.svg);
}
.index-b .switch-mode .icon-card {
  background-image: url(../images/icon-card.svg);
}
.index-b .switch-mode .btn {
  line-height: 40px;
  min-width: 92px;
  border-radius: 40px;
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.index-b .switch-mode .btn.active {
  background-color: #48473D;
  color: #fff;
}
.index-b .switch-mode .btn.active .icon-list {
  background-image: url(../images/icon-list-white.svg);
}
.index-b .switch-mode .btn.active .icon-card {
  background-image: url(../images/icon-card-white.svg);
}
.index-b .switch-card .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;
  margin-bottom: 8px;
}
.index-b .switch-card .l-card {
  width: calc(100% / 3 - 8px * 2);
  margin: 8px;
}
@media (max-width: 767px) {
  .index-b .switch-mode {
    display: none;
  }
}

.index-b .section-header {
  margin-bottom: 24px;
}
.index-b .nav-pills .icon-1 {
  background-image: url(../images/icon-flight_takeoff.svg);
}
.index-b .nav-pills .icon-2 {
  background-image: url(../images/icon-flight_land.svg);
}
.index-b .nav-pills .nav-link.active .icon-1,
.index-b .nav-pills .show > .nav-link .icon-1 {
  background-image: url(../images/icon-flight_takeoff-primary.svg);
}
.index-b .nav-pills .nav-link.active .icon-2,
.index-b .nav-pills .show > .nav-link .icon-2 {
  background-image: url(../images/icon-flight_land-primary.svg);
}
.index-b .tab-content {
  margin-top: -71px;
}
.index-b .form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 24px;
  padding-left: 448px;
}
.index-b .form-inner {
  width: 100%;
  max-width: 712px;
  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;
}
.index-b .form .form-select {
  width: calc(100% - 42.696629213% - 12px - 4.4444em);
  max-width: 304px;
  margin-right: 12px;
}
.index-b .form .form-control {
  width: calc(100% - 42.696629213% - 12px - 4.4444em);
  max-width: 304px;
  margin-right: 12px;
}
.index-b .form .btn {
  width: fit-content;
  /* padding: 0 8px; */
}
.index-b .table {
  font-size: 1.125em;
  line-height: 177.7777%;
  color: #313126;
}
.index-b .table th {
  background-color: #F3F1E6;
  padding: 8px 12px;
}
.index-b .table th:nth-child(1) {
  width: 25%;
}
.index-b .table th:nth-child(2) {
  width: 20%;
}
.index-b .table th:nth-child(3) {
  width: 20%;
}
.index-b .table th:nth-child(4) {
  width: 20%;
}
.index-b .table th:nth-child(5) {
  width: 15%;
}
.index-b .table td {
  padding: 18px 12px;
  border-bottom: 1px solid #C9C7B9;
  vertical-align: middle;
}
.index-b .table .d-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.index-b .table .d-flex img {
  width: 32px;
  margin-right: 8px;
}
.index-b .table .d-flex img + span {
  width: calc(100% - 32px);
}
.index-b .table .tag {
    padding: 8px 14px;
    border-radius: 8px;
    color: #464749;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 0.875rem;
    line-height: 125%;
}
.index-b .table .tag-a {
  background-color: #FFE8C0;
}
.index-b .table .tag-b {
  background-color: #CAEAD3;
}
.index-b .action {
  margin-top: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.index-b .action .btn {
  padding: 10px 18px;
  font-weight: 500;
  line-height: 125%;
  text-align: center;
  color: #5F5F53;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.index-b .action .btn .icon-arrow {
  background-image: url(../images/icon-arrow_circle_right.svg);
  margin-left: 6px;
}
.index-b .l-card {
  border-radius: var(--border-radius-rounded, 4px);
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  padding: 12px 16px;
  color: var(--Color-NeutralVarient-20, #313126);
}
.index-b .l-card + .l-card {
  margin-top: 8px;
}
.index-b .l-card__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.index-b .l-card__row + .l-card__row {
  border-top: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  padding-top: 12px;
  margin-top: 12px;
}
.index-b .l-card .d-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 50%;
}
.index-b .l-card .d-flex .image {
  width: 60px;
}
.index-b .l-card .d-flex .content {
  width: calc(100% - 60px);
  padding-left: 16px;
}
.index-b .l-card .text-1 {
  font-size: .875em;
  font-style: normal;
  font-weight: 400;
  line-height: 171.429%;
}
.index-b .l-card .text-2 {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 180%;
  margin-top: -4px;
}
.index-b .l-card .text-3 {
  text-align: right;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 177.778%;
  width: 50%;
  padding-left: 16px;
}
.index-b .l-card .text-4 {
  font-size: .875em;
  font-weight: 400;
  line-height: 171.429%;
}
.index-b .l-card .text-4 span + span {
  margin-left: 8px;
}
.index-b .l-card .tag {
  padding: 8px 14px;
  border-radius: 8px;
  color: #464749;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1em;
  font-weight: 500;
  line-height: 125%;
}
.index-b .l-card .tag-a {
  background-color: #FFE8C0;
}
.index-b .l-card .tag-b {
  background-color: #CAEAD3;
}

.index-c {
  padding-top: 56px;
  padding-bottom: 56px;
}
.index-c .section-header {
  margin-bottom: 24px;
}
.index-c .form-inner {
  width: 100%;
  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;
}
.index-c .form .form-select {
  width: calc(100% - 45.517241379% - 12px - 4.4444em);
  margin-right: 12px;
  max-width: 528px;
}
.index-c .form .form-control {
  width: calc(100% - 45.517241379% - 12px - 4.4444em);
  max-width: 528px;
  margin-right: 12px;
}
.index-c .form .btn {
  width: 4.4444em;
  padding: 0 8px;
}

.index-d {
    /*padding-top: 56px;*/
    padding-bottom: 104px;
}
.index-d .section-header {
  margin-bottom: 24px;
}
.index-d .top-text {
  color: var(--Color-NeutralVarient-20, #313126);
  font-size: 1.125em;
  font-weight: 400;
  line-height: 177.778%;
  margin-bottom: 24px;
}
.index-d .table {
  font-size: 1.125em;
  line-height: 177.7777%;
  color: #313126;
}
.index-d .table th {
  background-color: #F3F1E6;
  padding: 8px 12px;
  vertical-align: middle;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  border-left: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.index-d .table th:nth-child(1) {
  width: 24%;
}
.index-d .table th:nth-child(2) {
  width: 19%;
}
.index-d .table th:nth-child(3) {
  width: 19%;
}
.index-d .table th:nth-child(4) {
  width: 19%;
  white-space: nowrap;
}
.index-d .table th:nth-child(5) {
  width: 19%;
}
.index-d .table td {
  padding: 18px 12px;
  border-bottom: 1px solid #C9C7B9;
  vertical-align: middle;
}
.index-d .table .d-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.index-d .table .d-flex img {
  width: 32px;
  margin-right: 8px;
}
.index-d .table .d-flex img + span {
  width: calc(100% - 32px);
}
.index-d .table .tag {
  padding: 8px 14px;
  border-radius: 8px;
  color: #464749;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1em;
  line-height: 125%;
}
.index-d .table .tag-a {
  background-color: #FFE8C0;
}
.index-d .table .tag-b {
  background-color: #CAEAD3;
}
.index-d .l-card {
  border-radius: var(--border-radius-rounded, 4px);
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  padding: 12px 16px;
  color: var(--Color-NeutralVarient-20, #313126);
}
.index-d .l-card + .l-card {
  margin-top: 24px;
}
.index-d .l-card__row + .l-card__row {
  border-top: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  padding-top: 12px;
  margin-top: 12px;
}
.index-d .l-card .d-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.index-d .l-card .d-flex .image {
  width: 60px;
}
.index-d .l-card .d-flex .content {
  width: calc(100% - 60px);
  padding-left: 16px;
}
.index-d .l-card .text-1 {
  font-size: .875em;
  font-weight: 400;
  line-height: 171.429%;
}
.index-d .l-card .text-2 {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 180%;
  margin-top: -4px;
}
.index-d .l-card .text-3 {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 150%;
}
.index-d .l-card .text-4 {
  font-weight: 500;
  line-height: 175%;
  margin-top: 2px;
}
.index-d .l-card .block {
  width: 100%;
}
.index-d .l-card .block + .block {
  margin-top: 16px;
}
.index-d .l-card .block-header {
  color: var(--Color-NeutralVarient-20, #313126);
  line-height: 175%;
  margin-bottom: 4px;
}
.index-d .l-card .block-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 12px;
  border-radius: 4px;
  background: var(--Color-NeutralVarient-90, #E5E3D5);
}
.index-d .l-card .block-col {
  width: calc(50% - 2px * 2);
}
.index-d .l-card .block-col + .block-col {
  margin-left: 8px;
}

.index-e {
  padding-top: 48px;
  padding-bottom: 56px;
}
.index-e .section-header {
  margin-bottom: 32px;
}
.index-e .nav-pills .nav-link {
  padding: 10px 16px;
}
.index-e .tab-pane {
  position: relative;
  margin-top: -71px;
  padding-top: 71px;
}
.index-e .index-e-swiper {
  margin: 0 -8px;
}
.index-e .swiper-button-lock {
  display: block;
}
.index-e .swiper-slide {
  width: calc(100% / 3 - 8px * 2);
  margin: 0 8px;
}
.index-e .swiper-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  width: 1px;
  height: 100%;
  background-color: var(--NeutralBrown-80, #CEC4BD);
  display: none;
}
.index-e .swiper-slide-visible:before {
  display: block;
}
.index-e .item {
  padding: 16px;
  display: block;
}
.index-e .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.index-e .image:before {
  content: "";
  padding-top: 56.252002446%;
  display: block;
}
.index-e .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 343.33/193.13;
}
.index-e .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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-bottom: 12px;
}
.index-e .date {
  color: var(--Color-Mori-Green-40, #006B62);
  font-weight: 400;
  font-size: .75em;
  line-height: 166.6666%;
}
.index-e .main-text {
  color: var(--Color-NeutralVarient-20, #313126);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.25em;
  line-height: 150%;
  letter-spacing: 0.4px;
}
.index-e .tag {
  padding: 8px 16px;
  border-radius: 8px;
  color: #464749;
  background-color: #FFE8C0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: .875em;
  line-height: 114.2857%;
}
.index-e .tag-a {
  background-color: #FFE8C0;
}
.index-e .tag-b {
  background: var(--Color-NeutralVarient-90, #E5E3D5);
}
.index-e .top-block {
  position: absolute;
  top: 0;
  right: 0;
  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;
}
.index-e .swiper-button-group {
  position: relative;
  width: 88px;
  height: 40px;
  margin-right: 16px;
}
.index-e .swiper-button-prev,
.index-e .swiper-button-next {
  border: 1px solid var(--Color-Neutral-80, #C7C6C9);
  background-size: 18px auto;
  background-color: transparent;
  box-shadow: none;
  width: 40px;
  height: 40px;
  margin-top: -20px;
}
.index-e .swiper-button-prev {
  background-image: url(../images/swiper-prev-black.svg);
  left: 0;
}
.index-e .swiper-button-next {
  background-image: url(../images/swiper-next-black.svg);
  right: 0;
}

.index-f {
  padding-top: 56px;
  padding-bottom: 88px;
}
.index-f .section-header {
  margin-bottom: 24px;
}
.index-f .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;
  overflow: hidden;
}
.index-f .item {
  position: relative;
  padding: 20px 24px;
  width: calc(100% / 2);
  background-color: #F3F1E6;
  box-shadow: 0 0 0 1px #C9C7B9;
}
.index-f .item .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}
.index-f .item .icon-1 {
  background-image: url(../images/index-f-1.svg);
}
.index-f .item .icon-2 {
  background-image: url(../images/index-f-2.svg);
}
.index-f .item .icon-3 {
  background-image: url(../images/index-f-3.svg);
}
.index-f .item .icon-4 {
  background-image: url(../images/index-f-4.svg);
}
.index-f .item .main-text {
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.25em;
  line-height: 150%;
  letter-spacing: 2%;
  color: #1C1C14;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.index-f .item .mobile-show {
  display: none;
}
.index-f .item .icon-arrow {
  width: 40px;
  height: 40px;
  background-image: url(../images/index-a-arrow.svg);
  margin-bottom: 0;
}
.index-f .item:active {
  opacity: .8;
}
@media (hover: hover) {
  .index-f .item:hover {
    opacity: .8;
  }
}

.index-g {
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(0deg, rgba(0, 162, 148, 0.2), rgba(0, 162, 148, 0.2)), linear-gradient(180deg, rgba(0, 106, 97, 0) 20%, rgba(0, 106, 97, 0.3) 75.07%);
}
.index-g .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/index-g-bg.jpg);
  background-size: cover;
  background-position: center center;
  opacity: .04;
  mix-blend-mode: multiply;
}
.index-g .section-title {
  color: #00201C;
}
.index-g .section-title:before {
  background-image: url(../images/index-header-b.svg);
}
.index-g .section-header {
  margin-bottom: 32px;
  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;
}
.index-g .section-header .text {
  font-weight: 400;
  font-size: 1.125em;
  line-height: 177.7777%;
  padding-left: 56px;
}
.index-g .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.index-g .item {
  position: relative;
  padding: 24px 32px;
  width: calc(100% / 4);
}
.index-g .item:first-child:before {
  display: none;
}
.index-g .item:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 1px;
  height: calc(100% - 24px * 2);
  background-color: #5F5F53;
  display: block;
  opacity: .5;
}
.index-g .item .icon-1 {
  background-image: url(../images/index-g-1.svg);
}
.index-g .item .icon-2 {
  background-image: url(../images/index-g-2.svg);
}
.index-g .item .icon-3 {
  background-image: url(../images/index-g-3.svg);
}
.index-g .item .icon-4 {
  background-image: url(../images/index-g-4.svg);
}
.index-g .item .icon-5 {
  background-image: url(../images/index-g-5.svg);
}
.index-g .item .icon-6 {
  background-image: url(../images/index-g-6.svg);
}
.index-g .item .icon-7 {
  background-image: url(../images/index-g-7.svg);
}
.index-g .item .icon-8 {
  background-image: url(../images/index-g-8.svg);
}
.index-g .item .main-text {
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.5em;
  line-height: 150%;
  color: #1C1C14;
}
.index-g .item .sub-text {
  margin-top: 8px;
  font-weight: 400;
  font-size: .875em;
  line-height: 171.428571429%;
  color: #5F5F53;
}
.index-g .item:active {
  opacity: .8;
}
@media (hover: hover) {
  .index-g .item:hover {
    opacity: .8;
  }
}
.index-g .box {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.14);
  border-radius: 5px;
}
.index-g .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 36%;
  width: 222px;
  height: 117px;
  background-image: url(../images/index-g-leaf.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.index-g .box:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 118px;
  height: 212px;
  background-image: url(../images/index-g-leaf2.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.index-g .block-top {
  position: relative;
}
.index-g .block-top:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 165px;
  height: 143px;
  background-image: url(../images/index-g-leaf3.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.index-g .block-top .item {
  min-height: 228px;
}
.index-g .block-top .item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 48px;
}
.index-g .block-bottom {
  background-color: #006A61;
  border-radius: 0 0 5px 5px;
}
.index-g .block-bottom .item {
  min-height: 152px;
  color: #fff;
}
.index-g .block-bottom .item:before {
  background-color: #fff;
}
.index-g .block-bottom .item .icon {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
.index-g .block-bottom .item .icon + span {
  width: calc(100% - 32px - 12px);
}
.index-g .block-bottom .item .main-text {
  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;
  font-size: 1.25em;
  color: #fff;
}
.index-g .block-bottom .item .sub-text {
  font-size: 1em;
  margin-top: 16px;
  color: #E3F4F0;
}

.index-h {
  padding-top: 56px;
  padding-bottom: 56px;
}
.index-h .section-header {
  margin-bottom: 32px;
}
.index-h .map {
  position: relative;
  box-shadow: 0 0 0 5px rgba(206, 196, 189, 0.2);
  border-radius: 12px;
  overflow: hidden;
  height: 700px;
  background-color: #fff;
}

.index-i {
  padding-top: 56px;
  padding-bottom: 56px;
}
.index-i .section-header {
  margin-bottom: 32px;
}
.index-i .section-content {
  position: relative;
}
.index-i .index-i-swiper {
  margin: 0 -8px;
}
.index-i .swiper-button-lock {
  display: block;
}
.index-i .swiper-slide {
  width: calc(100% / 5 - 8px * 2);
  margin: 0 8px;
}
.index-i .item {
  display: block;
}
.index-i .image {
  position: relative;
  overflow: hidden;
}
.index-i .image:before {
  content: "";
  padding-top: 35%;
  display: block;
}
.index-i .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-i .action {
  position: absolute;
  top: -72px;
  right: 0;
}
@media (max-width: 960px) {
  .index-i .section-content {
    margin-left: -20px;
    width: calc(100% + 20px * 2);
  }
  .index-i .index-i-swiper {
    margin: 0 -8px;
    padding-left: 20px;
  }
  .index-i .action {
    position: relative;
    top: 0;
    margin-top: 32px;
    text-align: center;
    padding: 0 20px;
  }
  .index-i .action .btn {
    width: 100%;
  }
  .index-i .swiper-slide {
    width: calc(100% / 3 - 8px * 2);
    margin: 0 8px;
  }
}
@media (max-width: 480px) {
  .index-i .swiper-slide {
    width: calc(100% / 2 - 8px * 2);
    margin: 0 8px;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .index-kv .swiper-slide {
    max-width: 420px;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .festival-kv .cya-container {
    padding-top: 56px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .index-kv .cya-container {
    padding: 0;
    padding-top: 80px;
    padding-bottom: 317px;
  }
  .index-kv .kv-bottom {
    height: 80px;
    background-image: url(../images/kv-wave_s.png);
    background-size: 100% 100%;
  }
  .index-kv .kv-content {
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 317px;
    background-image: url(../images/kv-left_s.png);
    background-size: 100% 100%;
    padding: 32px 16px;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 100%);
  }
  .index-kv .main-text {
    font-size: 2.25em;
    margin-bottom: 16px;
  }
  .en-US .index-kv .main-text {
    font-size: 2em;
  }
  .index-kv .index-swiper {
    padding-left: 0;
  }
  .index-kv .swiper-slide {
    max-width: 100%;
  }
  .index-kv .item {
    border-radius: 278px;
    max-width: 278px;
    margin: 0 auto;
  }
  .index-kv .image {
    border-radius: 278px;
  }

  .festival-kv .cya-container {
    padding-top: 56px;
    padding-bottom: 0;
  }

  .index-a {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .index-a .section-grid {
    display: block;
  }
  .index-a .section-header {
    width: 100%;
    margin-bottom: 24px;
  }
  .index-a .section-content {
    width: 100%;
    padding-left: 0;
  }

  .index-b {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .index-b .tab-content {
    margin-top: 0;
  }
  .index-b .form {
    display: block;
    padding-left: 0;
  }
  .index-b .form-inner {
    max-width: 100%;
    display: block;
  }
  .index-b .form .form-select {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .index-b .form .form-control {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .index-b .form .btn {
    width: fit-content;
/*    padding: 0 8px;*/
  }

  .index-c {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .index-c .form {
    display: block;
    padding-left: 0;
  }
  .index-c .form-inner {
    max-width: 100%;
    display: block;
    margin-bottom:24px;
  }
  .index-c .form .form-select {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .index-c .form .form-control {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .index-c .form .btn {
    width: 4.4444em;
    padding: 0 8px;
  }

  .index-e .nav-pills {
    width: 100%;
    margin-bottom: 16px;
    overflow: auto;
    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;
    white-space: nowrap;
  }
  .index-e .tab-pane {
    margin-top: 0;
    padding-top: 0;
  }
  .index-e .tab-content > .active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .index-e .swiper-wrapper {
    display: block !important;
    transform: none !important;
    height: auto !important;
  }
  .index-e .index-e-swiper {
    margin: 0 -8px;
  }
  .index-e .swiper-slide {
    width: calc(100% - 8px * 2);
    margin: 0 8px;
  }
  .index-e .swiper-slide-visible:before {
    display: none;
  }
  .index-e .item {
    padding: 16px;
    display: block;
  }
  .index-e .top-block {
    position: static;
    top: 0;
    right: 0;
    order: 2;
    margin-top: 16px;
  }
  .index-e .swiper-button-group {
    display: none;
  }
  .index-e .btn-border {
    display: block;
    width: 100%;
  }

  .index-f .item .mobile-show {
    display: inline;
  }

  .index-g .section-header {
    margin-bottom: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .index-g .section-header .section-title {
    width: 187px;
  }
  .index-g .section-header .text {
    padding-left: 0;
    max-width: 169px;
    width: calc(100% - 187px);
  }
  .index-g .list {
    display: block;
  }
  .index-g .item {
    padding: 24px 40px 24px 32px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .index-g .item:before {
    display: none;
  }
  .index-g .item .content {
    width: calc(100% - 40px);
    padding-left: 24px;
  }
  .index-g .box:before {
    display: none;
  }
  .index-g .block-top .item {
    min-height: inherit;
  }
  .index-g .block-top .item .icon {
    margin-bottom: 0;
  }
  .index-g .block-bottom .item {
    min-height: inherit;
    display: block;
    padding: 24px 32px;
  }
}
.flight-timetable {
  position: relative;
}
.flight-timetable .cya-container {
  max-width: 1200px;
}
.flight-timetable .nav-pills {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.flight-timetable .nav-pills .nav-link {
  border-radius: 0;
  color: #5F5F53;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 133.3333%;
  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;
  border-bottom: 2px solid transparent;
}
.flight-timetable .nav-pills .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.flight-timetable .nav-pills .nav-link.active,
.flight-timetable .nav-pills .show > .nav-link {
  color: #006A61;
  background-color: transparent;
  border-bottom: 2px solid #006A61;
}

.flight-timetable {
  padding-top: 56px;
  padding-bottom: 56px;
}
.flight-timetable .nav-pills {
  margin-bottom: 16px;
}
.flight-timetable .nav-pills .icon-1 {
  background-image: url(../images/icon-flight_takeoff.svg);
}
.flight-timetable .nav-pills .icon-2 {
  background-image: url(../images/icon-flight_land.svg);
}
.flight-timetable .nav-pills .nav-link.active .icon-1,
.flight-timetable .nav-pills .show > .nav-link .icon-1 {
  background-image: url(../images/icon-flight_takeoff-primary.svg);
}
.flight-timetable .nav-pills .nav-link.active .icon-2,
.flight-timetable .nav-pills .show > .nav-link .icon-2 {
  background-image: url(../images/icon-flight_land-primary.svg);
}
.flight-timetable .plus-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.flight-timetable .plus-panel .filter-panel {
  width: 288px;
  padding-right: 48px;
}
.flight-timetable .plus-panel .main-content {
  width: calc(100% - 288px);
}
.flight-timetable .plus-panel .form-filter {
  display: none;
}
.flight-timetable .filter-panel__header {
  padding: 12px 0px;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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-bottom: 12px;
}
.flight-timetable .filter-panel__header .title {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 177.778%;
  margin: 0;
}
.flight-timetable .filter-section + .filter-section {
  margin-top: 12px;
}
.flight-timetable .filter-section__header {
  position: relative;
  padding: 12px 0px;
  padding-right: 32px;
  position: relative;
  color: var(--Color-NeutralVarient-20, #313126);
  font-size: 1.125em;
  font-weight: 500;
  line-height: 177.778%;
}
.flight-timetable .filter-section__header:before {
  content: "";
  position: absolute;
  top: calc(50% - 24px / 2);
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-add.svg);
}
.flight-timetable .filter-section__header[aria-expanded="ture"]:before {
  background-image: url(../images/icon-remove.svg);
}
.flight-timetable .sliders-range {
  margin-top: 14px;
  padding: 17px 0;
}
.flight-timetable .sliders-range .ui-widget.ui-widget-content {
  border: 0;
  height: 2px;
  background: var(--Color-NeutralVarient-80, #C9C7B9);
}
.flight-timetable .sliders-range .ui-slider-handle {
  border: 0;
  background: #006B62;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: -10px;
  margin-left: 0;
}
.flight-timetable .sliders-range .ui-slider-handle + .ui-slider-handle {
  margin-left: -20px;
}
.flight-timetable .sliders-range .ui-widget-header {
  border: 0;
  background: #006B62;
}
.flight-timetable .plus-icon {
  position: relative;
  margin-bottom: 12px;
}
.flight-timetable .plus-icon .form-control {
  background-color: #fff;
  border: 1px solid var(--Color-NeutralVarient-90, #E5E3D5);
  padding: 4px 20px;
  padding-left: 44px;
  height: 40px;
}
.flight-timetable .plus-icon .icon-calendar {
  position: absolute;
  top: calc(50% - 24px / 2);
  left: 16px;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-calendar_today.svg);
  pointer-events: none;
}
.flight-timetable .checkbox-list {
  padding-left: 12px;
}
.flight-timetable .form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
.flight-timetable .form .form-filter {
  width: 6.25em;
  margin-right: 12px;
  white-space: nowrap;
}
.flight-timetable .form .form-section {
  margin-right: 12px;
  width: calc(50% - 12px);
}
.flight-timetable .form .form-label {
  color: var(--Color-NeutralVarient-20, #313126);
  font-weight: 500;
  line-height: 175%;
  margin-bottom: 6px;
}
.flight-timetable .form .form-select {
  width: 100%;
  padding: 4px 20px;
  height: 40px;
  background-color: #fff;
  font-size: 1.125em;
}
.flight-timetable .form .btn-border {
  width: 6.25em;
  padding: 0 16px;
  height: 40px;
}
.flight-timetable .form .btn-primary {
  width: 7rem;
  padding: 0 8px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flight-timetable .top-block {
  padding: 12px 0;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  margin-bottom: 24px;
}
.flight-timetable .top-block .text {
  margin-top: 32px;
  color: var(--Color-NeutralVarient-30, #48473D);
  font-size: .875em;
  font-weight: 400;
  line-height: 171.429%;
}
.flight-timetable .top-block p + p {
  margin-top: 8px;
}
.flight-timetable .top-block .icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--Color-Mori-Green-40, #006B62);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 6px;
}
.flight-timetable .table {
  margin-bottom: 16px;
}
.flight-timetable .table th {
  padding: 6px 12px;
  color: var(--Color-NeutralVarient-40, #5F5F53);
  font-weight: 400;
  line-height: 175%;
}
.flight-timetable .table td {
  padding: 20px 12px;
  border-bottom: 1px solid #C9C7B9;
  vertical-align: middle;
  font-size: 1.125em;
  line-height: 177.7777%;
  color: #313126;
}
.flight-timetable .table .d-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.flight-timetable .table .d-flex img {
  width: 32px;
  margin-right: 8px;
}
.flight-timetable .table .d-flex img + span {
  width: calc(100% - 32px);
}
.flight-timetable .table .tag {
    padding: 8px 14px;
    border-radius: 8px;
    color: #464749;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 0.875rem;
    line-height: 125%;
}
.flight-timetable .table .tag-a {
  background-color: #FFE8C0;
}
.flight-timetable .table .tag-b {
  background-color: #CAEAD3;
}
.flight-timetable .table .icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--Color-Mori-Green-40, #006B62);
  display: block;
  margin: 0 auto;
}
.flight-timetable .table-1 th:nth-child(1) {
  width: 20%;
}
.flight-timetable .table-1 th:nth-child(2) {
  width: 10%;
}
.flight-timetable .table-1 th:nth-child(3) {
  width: 10%;
}
.flight-timetable .table-1 th:nth-child(4) {
  width: 10%;
}
.flight-timetable .table-1 th:nth-child(5) {
  width: 10%;
}
.flight-timetable .table-1 th:nth-child(6) {
  width: 10%;
}
.flight-timetable .table-1 th:nth-child(7) {
  width: 10%;
}
.flight-timetable .table-1 th:nth-child(8) {
    width: 15%;
}

.flight-timetable .table-2 th:nth-child(1) {
  width: 25%;
}
.flight-timetable .table-2 th:nth-child(2) {
  width: 13%;
}
.flight-timetable .table-2 th:nth-child(3) {
  width: 12%;
}
.flight-timetable .table-2 th:nth-child(4) {
  width: 7%;
  text-align: center;
}
.flight-timetable .table-2 th:nth-child(5) {
  width: 7%;
  text-align: center;
}
.flight-timetable .table-2 th:nth-child(6) {
  width: 7%;
  text-align: center;
}
.flight-timetable .table-2 th:nth-child(7) {
  width: 7%;
  text-align: center;
}
.flight-timetable .table-2 th:nth-child(8) {
  width: 7%;
  text-align: center;
}
.flight-timetable .table-2 th:nth-child(9) {
  width: 7%;
  text-align: center;
}
.flight-timetable .table-2 th:nth-child(10) {
  width: 7%;
  text-align: center;
}
.flight-timetable .table-2 th:nth-child(11) {
  width: 5%;
}
.flight-timetable .dropdown-toggle {
  width: 36px;
  height: 36px;
  padding: 9px;
}
.flight-timetable .dropdown-toggle:after {
  display: none;
}
.flight-timetable .dropdown-menu {
  padding: 6px 0;
  width: 171px;
  border-radius: 12px;
  background: #fff;
  border: 0;
  font-size: 1.125em;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.14), 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
}
.flight-timetable .dropdown-menu li + li {
  margin-top: 4px;
}
.flight-timetable .dropdown-menu .bottom-border {
  padding-bottom: 4px;
  border-bottom: 1px solid #C9C7B9;
}
.flight-timetable .dropdown-menu .top-border {
  border-top: 1px solid #C9C7B9;
  padding-top: 4px;
}
.flight-timetable .dropdown-menu .dropdown-item {
  padding: 8px;
  color: var(--Color-NeutralVarient-40, #5F5F53);
  font-weight: 400;
  line-height: 177.778%;
  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;
  margin: 0 6px;
  width: calc(100% - 6px * 2);
}
.flight-timetable .dropdown-menu .icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.flight-timetable .dropdown-menu .icon-info {
  background-image: url(../images/dropdown-info.svg);
}
.flight-timetable .dropdown-menu .icon-link {
  background-image: url(../images/dropdown-link.svg);
}
.flight-timetable .dropdown-menu .icon-share {
  background-image: url(../images/dropdown-share.svg);
}
.flight-timetable .dropdown-menu .icon-print {
  background-image: url(../images/dropdown-print.svg);
}
.flight-timetable .dropdown-menu .icon-notification {
  background-image: url(../images/dropdown-notification_add.svg);
}

.flight-timetable .switch-mode {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px;
}
.flight-timetable .switch-mode__header {
  margin-right: 10px;
  font-weight: 500;
}
.flight-timetable .switch-mode .group {
  display: flex;
  align-items: center;
  border-radius: 40px;
  overflow: hidden;
  background-color: #F3F1E6;
}
.flight-timetable .switch-mode .icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.flight-timetable .switch-mode .icon-list {
  background-image: url(../images/icon-list.svg);
}
.flight-timetable .switch-mode .icon-card {
  background-image: url(../images/icon-card.svg);
}
.flight-timetable .switch-mode .btn {
  line-height: 40px;
  min-width: 92px;
  border-radius: 40px;
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.flight-timetable .switch-mode .btn.active {
  background-color: #48473D;
  color: #fff;
}
.flight-timetable .switch-mode .btn.active .icon-list {
  background-image: url(../images/icon-list-white.svg);
}
.flight-timetable .switch-mode .btn.active .icon-card {
  background-image: url(../images/icon-card-white.svg);
}
.flight-timetable .switch-card .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;
  margin-bottom: 8px;
}
.flight-timetable .switch-card .l-card {
  width: calc(100% / 3 - 8px * 2);
  margin: 8px;
}
@media (max-width: 767px) {
  .flight-timetable .switch-mode {
    display: none;
  }
}

.flight-timetable .l-card {
  border-radius: var(--border-radius-rounded, 4px);
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  padding: 12px 16px;
  color: var(--Color-NeutralVarient-20, #313126);
}
.flight-timetable .l-card + .l-card {
  margin-top: 8px;
}
.flight-timetable .l-card__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.flight-timetable .l-card__row + .l-card__row {
  border-top: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  padding-top: 12px;
  margin-top: 12px;
}
.flight-timetable .l-card .d-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 50%;
}
.flight-timetable .l-card .d-flex .image {
  width: 60px;
}
.flight-timetable .l-card .d-flex .content {
  width: calc(100% - 60px);
  padding-left: 16px;
}
.flight-timetable .l-card .text-1 {
  font-size: .875em;
  font-style: normal;
  font-weight: 400;
  line-height: 171.429%;
}
.flight-timetable .l-card .text-2 {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 180%;
  margin-top: -4px;
}
.flight-timetable .l-card .text-3 {
  text-align: right;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 177.778%;
  width: 50%;
  padding-left: 16px;
}
.flight-timetable .l-card .text-4 {
  font-size: .875em;
  font-weight: 400;
  line-height: 171.429%;
  margin-right: auto;
}
.flight-timetable .l-card .text-4 span + span {
  margin-left: 8px;
}
.flight-timetable .l-card .group {
  margin-right: auto;
}
.flight-timetable .l-card .day-list {
  font-size: .875em;
  font-weight: 400;
  line-height: 171.429%;
  margin-right: auto;
  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;
}
.flight-timetable .l-card .day-list .day {
  width: calc(100% / 3);
  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;
}
.flight-timetable .l-card .day-list span + span {
  margin-left: 8px;
}
.flight-timetable .l-card .icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--Color-Mori-Green-40, #006B62);
  display: block;
}
.flight-timetable .l-card .tag {
  padding: 8px 14px;
  border-radius: 8px;
  color: #464749;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1em;
  font-weight: 500;
  line-height: 125%;
}
.flight-timetable .l-card .tag-a {
  background-color: #FFE8C0;
}
.flight-timetable .l-card .tag-b {
  background-color: #CAEAD3;
}

.flight-detail {
  position: relative;
}
.flight-detail .cya-container {
  max-width: 1200px;
}
.flight-detail .nav-pills {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.flight-detail .nav-pills .nav-link {
  border-radius: 0;
  color: #5F5F53;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 133.3333%;
  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;
  border-bottom: 2px solid transparent;
}
.flight-detail .nav-pills .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.flight-detail .nav-pills .nav-link.active,
.flight-detail .nav-pills .show > .nav-link {
  color: #006A61;
  background-color: transparent;
  border-bottom: 2px solid #006A61;
}

.fd-a {
  padding-bottom: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fd-a .section-header {
  width: 51.034482758%;
}
.fd-a .section-content {
  width: calc(100% - 51.034482758%);
}
.fd-a .d-flex {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  line-height: 177.778%;
  margin-bottom: 16px;
}
.fd-a .d-flex img {
  width: 32px;
  margin-right: 8px;
}
.fd-a .d-flex span {
  width: calc(100% - 32px - 8px);
}
.fd-a .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
}
.fd-a .group .text-lg {
  color: var(--Color-NeutralVarient-30, #48473D);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 3em;
  font-weight: 600;
  line-height: 133.333%;
  margin-top: -4px;
}
.fd-a .group .block + .block {
  margin-left: 12px;
}
.fd-a .group .block-center {
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-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;
}
.fd-a .top-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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-bottom: 8px;
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
}
.fd-a .top-block span + span {
  margin-left: 12px;
}
.fd-a .box {
  padding: 12px;
  border-radius: var(--border-radius-rounded, 4px);
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.fd-a .box .block {
  padding: 0 20px;
  flex: 1;
}
.fd-a .box .block + .block {
  border-left: 1px solid #C9C7B9;
}
.fd-a .box .hd {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  font-size: .875em;
  line-height: 171.429%;
  margin-bottom: 8px;
}
.fd-a .box .text {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  font-weight: 400;
  line-height: 177.778%;
}
.fd-a .tag {
  padding: 8px 14px;
  border-radius: 8px;
  color: #464749;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1em;
  line-height: 125%;
}
.fd-a .tag-a {
  background-color: #FFE8C0;
}
.fd-a .tag-b {
  background-color: #CAEAD3;
}
.fd-a .section-bottom {
  width: 100%;
  margin-top: 24px;
}
.fd-a .table {
  margin-bottom: 16px;
}
.fd-a .table th {
  padding: 8px 12px;
  color: var(--Color-NeutralVarient-40, #5F5F53);
  font-weight: 400;
  line-height: 175%;
  text-align: center;
  border-bottom: 1px solid #C9C7B9;
  width: calc(100% / 7);
}
.fd-a .table td {
  padding: 8px 12px;
  border-bottom: 1px solid #C9C7B9;
  vertical-align: middle;
  font-size: 1.125em;
  line-height: 177.7777%;
  color: #313126;
  height: 72px;
}
.fd-a .table .icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--Color-Mori-Green-40, #006B62);
  display: block;
  margin: 0 auto;
}

.fd-b {
    /*padding-top: 32px;
    padding-bottom: 32px;*/
}
.fd-b .section-header {
  margin-bottom: 16px;
}
.fd-b .section-title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.fd-b .section-title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: 0;
}
.fd-b .section-title span {
  position: relative;
}
.fd-b .nav-pills {
  margin-bottom: 16px;
}
.fd-b .nav-pills .icon-1 {
  background-image: url(../images/icon-fd-b_1_1.svg);
}
.fd-b .nav-pills .icon-2 {
  background-image: url(../images/icon-fd-b_2_1.svg);
}
.fd-b .nav-pills .nav-link.active .icon-1,
.fd-b .nav-pills .show > .nav-link .icon-1 {
  background-image: url(../images/icon-fd-b_1_2.svg);
}
.fd-b .nav-pills .nav-link.active .icon-2,
.fd-b .nav-pills .show > .nav-link .icon-2 {
  background-image: url(../images/icon-fd-b_2_2.svg);
}
.fd-b .step-list {
    /*padding: 32px 0;*/
}
.fd-b .step {
  padding: 8px 12px;
  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;
  position: relative;
}
.fd-b .step + .step {
  margin-top: 38px;
}
.fd-b .step + .step:before {
  content: "";
  position: absolute;
  left: 44px;
  bottom: calc(100% + 4px);
  width: 1px;
  height: 30px;
  opacity: 0.6;
  background: var(--Color-Mori-Green-40, #006B62);
}
.fd-b .step .image {
  /*padding: 8px;*/
  width: 64px;
  border-radius: 2px;
}
.fd-b .step .content {
  width: calc(100% - 64px);
  padding: 6px 0 6px 24px;
}
.fd-b .step .text-small {
  font-size: .875em;
  color: var(--Color-Mori-Green-40, #006B62);
  font-weight: 500;
  line-height: 171.429%;
}
.fd-b .step .text {
  color: #000;
  line-height: 175%;
}

.fd-b .step .sub-text {
  color: #5F5F53;
  line-height: 175%;
}

.fd-b .note {
  color: var(--Color-NeutralVarient-30, #48473D);
  margin-top: 16px;
}
.fd-b .note p + ul {
  margin-top: .5em;
}
.fd-b .note ul {
  list-style: disc;
  padding-left: 1.25em;
}

.fd-b .related {
  padding: 32px 0;
}
.fd-b .related-header {
  position: relative;
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.3333em;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-left: 20px;
}
.fd-b .related-header:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px / 2);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #C9C7B9;
  transform: rotate(45deg);
}
.fd-b .related .item {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background-color: #FEFCF5;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14), 0 0 2px rgba(0, 0, 0, 0.12);
  padding: 16px 20px;
}
.fd-b .related .item .image {
  width: 64px;
  padding: 8px;
  border-radius: 2px;
  background-color: #F3F1E6;
}
.fd-b .related .item .content {
  width: calc(100% - 64px);
  padding-left: 32px;
}
.fd-b .related .item .main-text {
  font-size: 1em;
  font-weight: 500;
  color: #1C1C14;
}
.fd-b .related .item .sub-text {
  font-size: .8888em;
  font-weight: 400;
  color: #5F5F53;
  margin-top: 8px;
}
.fd-b .note-header {
  padding: 24px 8px;
  padding-right: 48px;
  position: relative;
  min-height: 78px;
  border-bottom: 1px solid #C9C7B9;
  display: block;
  margin-bottom: 0;
}
.fd-b .note-header .icon-arrow {
  position: absolute;
  top: calc(50% - 16px / 2);
  right: 16px;
  width: 16px;
  height: 16px;
  background-image: url(../images/travelers-faqs-arrow.svg);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.fd-b .note-header[aria-expanded="true"] .icon-arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fd-b .note-content {
  position: relative;
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  line-height: 177.778%;
  margin: 0;
  padding: 0;
}
.fd-b .note-inner {
  padding: 32px 8px;
  border-bottom: 1px solid #C9C7B9;
}
.fd-b .note .main-text {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.3333em;
  font-weight: 600;
  line-height: 1;
}

.fd-b .baggage {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.fd-b .baggage-header {
  margin-right: 10px;
}
.fd-b .baggage .group {
  display: flex;
  align-items: center;
}
.fd-b .baggage .btn {
  line-height: 36px;
  border-radius: 8px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #C7C6C9;
}
.fd-b .baggage .btn + .btn {
  margin-left: 8px;
}
.fd-b .baggage .btn.active {
  background-color: #006B62;
  border-color: #006B62;
  color: #fff;
}

.fd-c {
  /*padding-top: 32px;
  padding-bottom: 32px;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fd-c .section-header {
  width: 240px;
}
.fd-c .section-title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.fd-c .section-title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: 0;
}
.fd-c .section-title span {
  position: relative;
}
.fd-c .section-title br + span {
  padding-left: .5em;
}
.fd-c .section-content {
  width: calc(100% - 240px);
}
.fd-c .l-grid {
  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;
}
.fd-c .l-grid__left {
  width: calc(100% - 252px);
  padding: 0 40px;
}
.fd-c .l-grid__right {
  width: 252px;
}
.fd-c .d-flex {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  line-height: 177.778%;
  margin-bottom: 16px;
  font-weight: 500;
}
.fd-c .d-flex img {
  width: 32px;
  margin-right: 8px;
}
.fd-c .d-flex span {
  width: calc(100% - 32px - 8px);
}
.fd-c .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  font-size: .875em;
  line-height: 171.429%;
  color: var(--Color-NeutralVarient-30, #48473D);
  word-wrap: break-word;
}
.fd-c .info-header {
  width: 128px;
  font-weight: 500;
  color: var(--Color-NeutralVarient-10, #1C1C14);
}
.fd-c .info-content {
  width: calc(100% - 96px);
  text-align: right;
}
.fd-c .image {
  border-radius: var(--border-radius-rounded-lg, 8px);
  border: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  overflow: hidden;
}
.fd-c .image img {
  width: 100%;
  aspect-ratio: 3/2;
}

.SF2-bottom {
  display: block;
}
.SF2-bottom .section-header {
  width: 100%;
  margin-bottom: 40px;
}
.SF2-bottom .section-title br {
  display: none;
}
.SF2-bottom .section-title span {
  padding-left: 0;
}
.SF2-bottom .section-content {
  width: 100%;
}
.SF2-bottom .l-grid {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.SF2-bottom .l-grid__left {
  width: calc(100% - 252px);
  padding: 0 0 0 40px;
}
.SF2-bottom .l-grid__right {
  width: 252px;
}

.existing-service-routes .section-title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.existing-service-routes .section-title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: 0;
}
.existing-service-routes .section-title span {
  position: relative;
}
.existing-service-routes .last-updated {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
  margin-bottom: 8px;
}
.existing-service-routes .last-updated span + span {
  margin-left: 12px;
}
.existing-service-routes .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
  padding: 32px 0;
}
.existing-service-routes .list .item {
  margin: 0 12px;
  width: calc(100% / 2 - 12px * 2);
}
.existing-service-routes .d-flex {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  line-height: 177.778%;
  margin-bottom: 16px;
}
.existing-service-routes .d-flex img {
  width: 32px;
  margin-right: 8px;
}
.existing-service-routes .d-flex span {
  width: calc(100% - 32px - 8px);
}
.existing-service-routes .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
}
.existing-service-routes .group .text-lg {
  color: var(--Color-NeutralVarient-30, #48473D);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 3em;
  font-weight: 600;
  line-height: 133.333%;
  margin-top: -4px;
}
.existing-service-routes .group .block + .block {
  margin-left: 12px;
}
.existing-service-routes .group .block-center {
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-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;
}
.existing-service-routes .image {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  margin: 32px 0;
}

@media (max-width: 960px) {
  .existing-service-routes .list {
    display: block;
    margin: 0;
  }

  .existing-service-routes .list .item {
    margin: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .flight-timetable .plus-panel {
    display: block;
  }
  .flight-timetable .plus-panel .filter-panel {
    width: 100%;
    padding-right: 0;
  }
  .flight-timetable .plus-panel .main-content {
    width: 100%;
  }
  .flight-timetable .form {
    display: block;
  }
  .flight-timetable .form .form-filter {
    width: 6.25em;
    margin-right: 0;
    margin-bottom: 12px;
    margin-left: auto;
  }
  .flight-timetable .form .form-section {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }

  .fd-a {
    display: block;
  }
  .fd-a .section-header {
    width: 100%;
    margin-bottom: 16px;
  }
  .fd-a .section-content {
    width: 100%;
  }
  .fd-a .group .text-lg {
    font-size: 2em;
  }
  .fd-a .group .block-center {
    width: 8em;
    height: 42px;
  }
  .fd-a .box {
    display: block;
  }
  .fd-a .box .block {
    padding: 0;
    width: 100%;
  }
  .fd-a .box .block + .block {
    border-left: 0;
    border-top: 1px solid #C9C7B9;
    margin-top: 12px;
    padding-top: 12px;
  }

  .fd-c {
    display: block;
  }
  .fd-c .section-header {
    width: 100%;
    margin-bottom: 16px;
  }
  .fd-c .section-title br {
    display: none;
  }
  .fd-c .section-title br + span {
    padding-left: 0;
  }
  .fd-c .section-content {
    width: 100%;
  }
  .fd-c .l-grid {
    display: block;
  }
  .fd-c .l-grid__left {
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
  }
  .fd-c .l-grid__right {
    width: 100%;
  }

  .SF2-bottom {
    display: block;
  }
  .SF2-bottom .section-header {
    width: 100%;
    margin-bottom: 40px;
  }
  .SF2-bottom .section-title br {
    display: none;
  }
  .SF2-bottom .section-title span {
    padding-left: 0;
  }
  .SF2-bottom .section-content {
    width: 100%;
  }
  .SF2-bottom .l-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .SF2-bottom .l-grid__left {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    order: 2;
  }
  .SF2-bottom .l-grid__right {
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
  }

  .existing-service-routes .list {
    display: block;
    margin: 0;
  }
  .existing-service-routes .list .item {
    margin: 0;
    width: 100%;
  }
  .existing-service-routes .list .item + .item {
    margin-top: 24px;
  }
  .existing-service-routes .group .text-lg {
    font-size: 2em;
  }
  .existing-service-routes .group .block-center {
    width: 8em;
    height: 42px;
  }
}
@media (max-width: 480px) {
  .fd-a .top-block {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .fd-a .top-block p {
    width: 100%;
    order: 2;
  }
  .fd-a .top-block .btn-border {
    margin-left: auto;
    margin-bottom: 12px;
  }
}
.announcement {
  padding-top: 56px;
  padding-bottom: 56px;
}
.announcement .nav-pills {
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.announcement .nav-pills .nav-link {
  border-radius: 0;
  color: #5F5F53;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 133.3333%;
  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;
  border-bottom: 2px solid #C9C7B9;
}
.announcement .nav-pills .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.announcement .nav-pills .nav-link.active,
.announcement .nav-pills .show > .nav-link {
  color: #006A61;
  background-color: transparent;
  border-bottom: 2px solid #006A61;
}
.announcement .tab-pane {
  position: relative;
  margin-top: -78px;
  padding-top: 78px;
}
.announcement .section-header {
  margin-bottom: 16px;
}
.announcement .section-title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.announcement .section-title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: 0;
}
.announcement .section-title span {
  position: relative;
}
.announcement .last-updated {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
  margin-bottom: 32px;
}
.announcement .last-updated span + span {
  margin-left: 12px;
}
.announcement .top-block {
  position: absolute;
  top: 0;
  right: 0;
  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;
}
.announcement .swiper-button-group {
  position: relative;
  width: 88px;
  height: 40px;
  margin-right: 16px;
}
.announcement .swiper-button-prev,
.announcement .swiper-button-next {
  border: 1px solid var(--Color-Neutral-80, #C7C6C9);
  background-size: 18px auto;
  background-color: transparent;
  box-shadow: none;
  width: 40px;
  height: 40px;
  margin-top: -20px;
}
.announcement .swiper-button-prev {
  background-image: url(../images/swiper-prev-black.svg);
  left: 0;
}
.announcement .swiper-button-next {
  background-image: url(../images/swiper-next-black.svg);
  right: 0;
}
.announcement .list {
  position: relative;
}
.announcement .list-grid {
  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: -16px -8px;
  overflow: hidden;
}
.announcement .list-grid .item {
  width: calc(100% / 3 - 8px * 2);
  margin: 16px 8px;
  padding: 16px;
  display: block;
}
.announcement .list-grid .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  width: 1px;
  height: 100%;
  background-color: var(--NeutralBrown-80, #CEC4BD);
}
.announcement .list-grid .image {
  margin-bottom: 12px;
}
.announcement .list-row .item {
  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;
}
.announcement .list-row .item + .item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--NeutralBrown-80, #CEC4BD);
}
.announcement .list-row .image {
  width: 240px;
}
.announcement .list-row .content {
  width: calc(100% - 240px);
  padding-left: 16px;
}
.announcement .item {
  position: relative;
}
.announcement .image {
  position: relative;
  overflow: hidden;
}
.announcement .image:before {
  content: "";
  padding-top: 56.252002446%;
  display: block;
}
.announcement .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 343.33/193.13;
}
.announcement .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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-bottom: 12px;
}
.announcement .date {
  color: var(--Color-Mori-Green-40, #006B62);
  font-weight: 400;
  font-size: .75em;
  line-height: 166.6666%;
}
.announcement .main-text {
  color: var(--Color-NeutralVarient-20, #313126);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.25em;
  line-height: 150%;
  letter-spacing: 0.4px;
}
.announcement .tag {
  padding: 8px 16px;
  border-radius: 8px;
  color: #464749;
  background-color: #FFE8C0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: .875em;
  line-height: 114.2857%;
}
.announcement .tag-a {
  background-color: #FFE8C0;
}
.announcement .tag-b {
  background: var(--Color-NeutralVarient-90, #E5E3D5);
}
.announcement .pagination-container {
  margin-top: 32px;
}

.cya-article {
    margin: 0 auto;
    padding-bottom: 56px;
    /*max-width: 960px;*/
    max-width: 1010px;
}
.cya-article .form {
  display: flex;
  margin-bottom: 16px;
}
    .cya-article .form .form-section {
        margin-right: 8px;
        /*width: calc(100% - 5em - 8px);*/
        width: 60%;
    }
.cya-article .form .form-control {
  padding: 10px 20px;
  height: 48px;
  font-size: 1em;
}
.cya-article .form .action {
  width: 5em;
}
.cya-article .form .btn-primary {
  width: 100%;
  padding: 0 8px;
  height: 48px;
  font-size: 1em;
}

.cya-article .section-header {
  padding-top: 32px;
  padding-bottom: 32px;
}
.cya-article .section-header .date {
  /* color: var(--Color-Mori-Green-40, #006B62);
  font-size: 1.125em;
  font-weight: 500;
  line-height: 177.778%; */
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
  margin-top: 12px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cya-article .section-header .date span {
  margin-right: 8px;
}
.cya-article .section-header .title {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.875em;
  font-weight: 600;
  line-height: 146.667%;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  position: relative;
  padding: 4px;
}
.cya-article .section-header .title:after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0px;
    width: 49px;
    height: 68px;
    background-image: url(../images/cya-wing.svg);
    z-index: 0;
}
.cya-article .section-header .title span {
    position: relative;
    z-index: 1;
}
.cya-article .section-content {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  line-height: 177.778%;
  padding-bottom: 32px;
}
.cya-article .nav-pills {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  margin-bottom: 24px;
}
.cya-article .nav-pills .nav-link {
  border-radius: 0;
  color: #5F5F53;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 1em;
  line-height: 133.3333%;
  letter-spacing: 0.72px;
  border-bottom: 2px solid transparent;
}
.cya-article .nav-pills .nav-link.active,
.cya-article .nav-pills .show > .nav-link {
  color: #006A61;
  background-color: transparent;
  border-bottom: 2px solid #006A61;
}
.cya-article .disc-list {
  list-style: disc;
  padding-left: 1.25em;
}
.cya-article .decimal-list {
  list-style: decimal;
  padding-left: 1.25em;
}

.page-control {
  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-top: 40px;
  margin-left: -10px;
  margin-right: -10px;
}
.page-control .btn {
  max-width: 160px;
  margin: 0 10px;
}

.article-swiper {
  margin: 32px 0;
}
.article-swiper img {
  width: 100%;
}
.article-swiper .text {
  background: var(--Color-NeutralVarient-90, #E5E3D5);
  padding: 8px;
  color: var(--Color-NeutralVarient-10, #1C1C14);
}
.article-swiper .swiper-button-prev,
.article-swiper .swiper-button-next {
  background-color: #fff;
  box-shadow: none;
  width: 42px;
  height: 42px;
  padding: 9px;
}
.article-swiper .swiper-button-prev {
  background-image: url(../images/article-swiper-prev.svg);
  left: 8px;
}
.article-swiper .swiper-button-next {
  background-image: url(../images/article-swiper-next.svg);
  right: 8px;
}

.related-archives + .related-link {
  margin-top: 40px;
}
.related-archives__header {
  margin-bottom: 40px;
}
.related-archives__header .title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.related-archives__header .title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: -1;
}
.related-archives .item {
  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;
  padding: 12px 8px;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.related-archives .item-left {
  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;
  width: calc(100% - 160px);
  padding-right: 12px;
}
.related-archives .item-right {
  width: 160px;
  display: flex;
  justify-content: flex-end;
}
/*.related-archives .item .image {
  width: 40px;
}
.related-archives .item .image + .text {
  width: calc(100% - 40px);
  padding-left: 17px;
}*/
.related-archives .item a {
/*  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: var(--Color-NeutralVarient-40, #5F5F53);
/*  text-align: center;
  font-weight: 500;
  line-height: 125%;
  padding: 10px 18px;
  white-space: nowrap;*/
}
/*.related-archives .item a span {
  width: calc(100% - 8px - 18px);
}*/
.related-archives .file {
  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;
}
.related-archives .file a {
  padding: 0 4px;
  display: block;
}
.related-archives .file img {
  width: 32px;
}
.related-archives .item .icon-download {
  margin-right: 8px;
}
.related-archives .item .icon-open-in-new {
  margin-right: 8px;
}
.related-archives .plus-updated .item-left {
  width: calc(100% - 240px);
  padding-right: 12px;
}
.related-archives .plus-updated .item-right {
  width: 260px;
  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;
  justify-content: flex-end;
}
.related-archives .plus-updated .updated-date {
    font-size: 0.875em;
    margin-left: 8px;
    color: var(--Color-NeutralVarient-40, #5F5F53);
    text-align: right;
}

.related-link + .related-archives {
  margin-top: 40px;
}
.related-link__header {
  margin-bottom: 40px;
}
.related-link__header .title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.related-link__header .title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: -1;
}
.related-link .item {
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.related-link .item a {
  display: block;
  color: var(--Color-NeutralVarient-10, #1C1C14);
  line-height: 125%;
  padding: 12px 8px;
}
.related-link .item a:active {
  color: var(--Color-Mori-Green-40, #006B62);
}
@media (hover: hover) {
  .related-link .item a:hover {
    color: var(--Color-Mori-Green-40, #006B62);
  }
}

@media (max-width: 767px) {
  .announcement .nav-pills {
    width: 100%;
    margin-bottom: 16px;
    overflow: auto;
    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;
    white-space: nowrap;
  }
  .announcement .tab-pane {
    margin-top: 0;
    padding-top: 0;
  }
  .announcement .top-block {
    display: none;
  }
  .announcement .list-grid {
    margin: 0;
  }
  .announcement .list-grid .item {
    margin: 0;
    width: 100%;
  }
  .announcement .list-grid .item:before {
    display: none;
  }
  .announcement .list-row .image {
    width: 90px;
  }
  .announcement .list-row .content {
    width: calc(100% - 90px);
  }
  .related-archives .item-left {
    width: calc(100% - 120px);
  }
  .related-archives .item-right {
    width: 120px;
  }

  .related-archives .plus-updated {
    display: block;
  }
  .related-archives .plus-updated .item-left {
    width: 100%;
    padding-right: 0;
  }
  .related-archives .plus-updated .item-right {
    width: 100%;
    padding-left: 0;
    margin-top: 16px;
  }
}
.appointment p + p {
  margin-top: 1.125em;
}
.appointment .form-checkbox {
  margin: 24px 0;
}
.appointment .scroll-box {
    background-color: #fff;
    border: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
    overflow: auto;
    height: 216px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}
.appointment .form-checkbox .main-text {
  font-size: 1.125em;
  line-height: 177.778%;
  color: var(--Color-Neutral-20, #2F3033);
}
.appointment .form-checkbox .sub-text {
  color: var(--Color-Neutral-40, #5E5E61);
  line-height: 175%;
}
.appointment .action {
  margin: 16px 0;
}
.appointment .btn-primary {
  width: 115px;
  background: var(--Color-Mori-Green-40, #006B62);
  margin: 0 auto;
}
.appointment .related-archives {
  margin-top: 64px;
}

.appointment-form {
  padding-top: 56px;
  padding-bottom: 32px;
  max-width: 840px;
  margin: 0 auto;
}
.appointment-form .section-header {
  padding: 24px;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.appointment-form .section-content {
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  padding: 24px 0;
  line-height: 177.778%;
  color: var(--Color-NeutralVarient-10, #1C1C14);
}
.appointment-form .section-content a {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  text-decoration: underline;
}
.appointment-form .section-content a:active, .appointment-form .section-content a:focus {
  color: #006A61;
  text-decoration: none;
}
@media (hover: hover) {
  .appointment-form .section-content a:hover {
    color: #006A61;
    text-decoration: none;
  }
}
.appointment-form .step-list {
  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;
  margin: 0 -16px;
}
.appointment-form .step-item {
  position: relative;
  padding: 0 8px;
  margin: 0 16px;
  text-align: center;
}
.appointment-form .step-item + .step-item:before {
  content: "";
  position: absolute;
  top: 22px;
  left: -32px;
  height: 2px;
  width: 32px;
  background: var(--Color-NeutralVarient-90, #E5E3D5);
}
.appointment-form .step-item.active .image {
  background: var(--Color-Mori-Green-40, #006B62);
  box-shadow: 0 0 0 1px #FEFCF5 inset, 0 0 0 3px #006B62;
}
.appointment-form .step-item.active .icon-step1 {
  background-image: url(../images/step-info_i-white.svg);
}
.appointment-form .step-item.active .icon-step2 {
  background-image: url(../images/step-id_card-white.svg);
}
.appointment-form .step-item.active .icon-step3 {
  background-image: url(../images/step-article-white.svg);
}
.appointment-form .step-item.active .icon-step4 {
  background-image: url(../images/step-check-white.svg);
}
.appointment-form .step-item .image {
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 50%;
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  margin: 0 auto 8px;
}
.appointment-form .step-item .text {
  color: var(--Color-NeutralVarient-20, #313126);
  font-weight: 500;
  line-height: 175%;
}
.appointment-form .step-item .icon {
  width: 28px;
  height: 28px;
}
.appointment-form .step-item .icon-step1 {
  background-image: url(../images/step-info_i.svg);
}
.appointment-form .step-item .icon-step2 {
  background-image: url(../images/step-id_card.svg);
}
.appointment-form .step-item .icon-step3 {
  background-image: url(../images/step-article.svg);
}
.appointment-form .step-item .icon-step4 {
  background-image: url(../images/step-check.svg);
}
.appointment-form .action {
  margin: 16px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.appointment-form .action .btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  font-size: 1.125em;
  line-height: 133.3333%;
  text-align: center;
}
.appointment-form .action .btn-border {
  min-width: 80px;
}
.appointment-form .action .btn-primary {
  width: auto;
  min-width: 77px;
  margin-left: 8px;
}
.appointment-form .l-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.appointment-form .l-grid + .l-grid {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.appointment-form .l-grid__left {
  width: 240px;
}
.appointment-form .l-grid__right {
  width: calc(100% - 240px);
  padding-left: 24px;
}
.appointment-form .l-grid .title {
  color: var(--Color-NeutralVarient-20, #313126);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.5em;
  font-weight: 600;
  line-height: 150%;
}
.appointment-form .form-section + .form-section {
  margin-top: 24px;
}
.appointment-form .form-label {
  color: var(--Color-NeutralVarient-20, #313126);
  font-weight: 500;
  line-height: 175%;
  margin-bottom: 6px;
}
.appointment-form .form-control {
  background: var(--White, #FFF);
  height: 40px;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 1.125em;
}
.appointment-form .form-select {
  height: 40px;
  padding: 4px 20px;
  font-size: 1.125em;
  background-color: var(--White, #FFF);
  background-image: url(../images/select-arrow_down.svg);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px 24px;
}
.appointment-form .required {
  color: var(--Color-Red-40, #BA1A1A);
  font-weight: 500;
}
.appointment-form .plus-icon {
  position: relative;
}
.appointment-form .plus-icon .form-control {
  background-color: #fff;
  border: 1px solid var(--Color-NeutralVarient-90, #E5E3D5);
  padding: 10px 20px;
  padding-left: 44px;
  height: 40px;
}
.appointment-form .plus-icon .icon-calendar {
  position: absolute;
  top: calc(50% - 24px / 2);
  left: 16px;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-calendar_today.svg);
  pointer-events: none;
}
.appointment-form .text-small {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  font-size: .875em;
  line-height: 171.429%;
}
.appointment-form .other {
  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;
  margin-top: 12px;
}
.appointment-form .other .form-check {
  width: 80px;
  margin-right: 8px;
}
.appointment-form .other .form-control {
  width: calc(100% - 80px - 8px);
}
.appointment-form .upload {
  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;
}
.appointment-form .upload .form-control {
  width: calc(100% - 72px - 8px);
  margin-right: 8px;
  line-height: 150%;
  padding: 6px 12px;
}
.appointment-form .upload .btn {
  width: 72px;
  padding: 10px 18px;
  font-size: 1em;
  line-height: 125%;
  height: 40px;
}
.appointment-form .SMS-verification {
  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;
}
.appointment-form .SMS-verification .form-control {
  width: calc(100% - 116px - 8px);
  margin-right: 8px;
}
.appointment-form .SMS-verification .btn {
  width: 116px;
  padding: 10px 18px;
  font-size: 1em;
  line-height: 125%;
  height: 40px;
}
.appointment-form.step1 .section-content {
  font-size: 1.125em;
  line-height: 177.778%;
}
.appointment-form.step1 .section-content p {
  margin-bottom: 1.125em;
}
.appointment-form.step1 .section-content .indent-1 {
  text-indent: -2em;
  padding-left: 2em;
  margin-bottom: 0;
}
.appointment-form.step2 .section-content {
  padding: 32px 0;
}
.appointment-form.step3 .section-content {
  padding: 32px 0;
}
.appointment-form.step3 .text-small {
  margin-top: 6px;
}
.appointment-form.director-step1 .single-page {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 720px;
  margin: 0 auto;
}
.appointment-form.director-step1 .single-page .section-header {
  padding: 0;
  border-bottom: 0;
}
.appointment-form.director-step1 .single-page .section-content {
  font-size: 1em;
  border-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.appointment-form.director-step1 .single-page p {
  font-size: 1.125em;
}
.appointment-form.director-step1 .single-page p + p {
  margin-top: 1.125em;
}
.appointment-form.director-step1 .form-checkbox {
  margin-top: 24px;
}
.appointment-form.director-step1 .form-checkbox .main-text {
  font-size: 1.125em;
  line-height: 177.778%;
  color: var(--Color-Neutral-20, #2F3033);
}
.appointment-form.director-step1 .form-checkbox .sub-text {
  color: var(--Color-Neutral-40, #5E5E61);
  line-height: 175%;
}

.appointment-complete {
  max-width: 840px;
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 48px;
}
.appointment-complete .section-header {
  margin-bottom: 32px;
}
.appointment-complete .section-header p {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
  margin-top: 12px;
}
.appointment-complete .section-content {
  font-size: 1em;
  line-height: 177.778%;
  margin-top: 0;
  padding-bottom: 0;
}
.appointment-complete .block {
  padding: 16px 0;
}
.appointment-complete .block .main-text {
  color: var(--Color-NeutralVarient-20, #313126);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.5em;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 12px;
}
.appointment-complete .contact-info .main-text {
  margin-bottom: 0;
}
.appointment-complete .contact-info .sub-text {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
  margin-bottom: 12px;
}
.appointment-complete .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  font-size: .875em;
  line-height: 171.429%;
  color: var(--Color-NeutralVarient-30, #48473D);
  word-wrap: break-word;
}
.appointment-complete .info-header {
  width: 96px;
  font-weight: 500;
  color: var(--Color-NeutralVarient-10, #1C1C14);
}
.appointment-complete .info-content {
    width: calc(100% - 96px);
    text-align: left;
}
.appointment-complete .action {
  margin: 16px 0;
  text-align: center;
}
.appointment-complete .btn-border {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  font-size: 1.125em;
  line-height: 133.333%;
  text-align: center;
  min-width: 115px;
  padding: 12px 20px;
}

.director-mailbox .section-header {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.director-mailbox ol {
  list-style: decimal;
  padding-left: 1.25em;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.director-mailbox .action {
  margin: 16px 0;
}
.director-mailbox .scroll-box {
  background-color: #fff;
  border: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  overflow: auto;
  height: 316px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}
.director-mailbox .btn-primary {
  width: 115px;
  background: var(--Color-Mori-Green-40, #006B62);
  margin: 0 auto;
}
.director-mailbox .process-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.director-mailbox .process-item {
  position: relative;
  padding: 0 8px;
  margin: 10px 16px;
  text-align: center;
}
.director-mailbox .process-item + .process-item:before {
  content: "";
  position: absolute;
  top: 20px;
  left: -36px;
  height: 36px;
  width: 36px;
  background-image: url(../images/director-mailbox-arrow.svg);
  background-repeat: no-repeat;
}
.director-mailbox .process-item .image {
  width: 52px;
  margin: 0 auto 8px;
}
.director-mailbox .process-item .text {
  color: var(--Color-NeutralVarient-20, #313126);
  font-weight: 500;
  line-height: 175%;
}

.cyc-incentives {
  font-size: .8888em;
  line-height: 1.75;
}
.cyc-incentives .nav-pills {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  margin-bottom: 24px;
}
.cyc-incentives .nav-pills .nav-link {
  border-radius: 0;
  color: #5F5F53;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 133.3333%;
  letter-spacing: 0.72px;
  border-bottom: 2px solid transparent;
}
.cyc-incentives .nav-pills .nav-link.active,
.cyc-incentives .nav-pills .show > .nav-link {
  color: #006A61;
  background-color: transparent;
  border-bottom: 2px solid #006A61;
}
.cyc-incentives .heading {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
}
.cyc-incentives .section + .section {
  margin-top: 32px;
}
.cyc-incentives .list {
  display: flex;
  flex-wrap: wrap;
  margin: -16px;
}
.cyc-incentives .list-b .item {
  width: calc(100% / 3 - 16px * 2);
}
.cyc-incentives .item {
  width: calc(100% / 2 - 16px * 2);
  margin: 16px;
  position: relative;
  border: 1px solid #C9C7B9;
  border-radius: 4px;
  padding: 16px 20px;
  color: #1C1C14;
}
.cyc-incentives .item .image {
  width: 64px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.cyc-incentives .item .main-text {
  font-size: 1.125em;
  font-weight: 500;
}

.cya-organization .title {
  position: relative;
  color: #1C1C14;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.3333em;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-left: 20px;
}
.cya-organization .title:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px / 2);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #C9C7B9;
  transform: rotate(45deg);
}
.cya-organization .section-top {
  margin-bottom: 48px;
}
.cya-organization .section-top .list {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
  margin-bottom: 0;
}
.cya-organization .section-top .item {
  display: flex;
  align-items: center;
  margin: 8px;
}
.cya-organization .section-top .item .color-box {
  width: 8px;
  height: 8px;
  margin-right: 8px;
}
.cya-organization .section-top .item .color-1 {
  background-color: #006B62;
}
.cya-organization .section-top .item .color-2 {
  background-color: #397F9A;
}
.cya-organization .section-top .item .color-3 {
  background-color: #E9C16F;
}
.cya-organization .section-top ul {
  list-style: disc;
  padding-left: 1.25em;
  font-size: .875em;
  color: #5F5F53;
}
.cya-organization .section-main {
  margin: 32px 0;
}
.cya-organization .section-main .organization {
  background-image: url(../images/organization-bg.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% 172px;
}
.cya-organization .section-main .organization .l-first {
  position: relative;
  z-index: 3;
}
.cya-organization .section-main .organization .l-second {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
  margin-top: 72px;
  z-index: 2;
}
.cya-organization .section-main .organization .l-second .l-col {
  width: calc(100% / 5 - 8px * 2);
  margin: 0 8px;
}
.cya-organization .section-main .organization .l-third {
  margin-top: 32px;
}
.cya-organization .section-main .item {
  position: relative;
  background-color: #F3F1E6;
  border-radius: 12px;
  padding: 16px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #1C1C14;
}
.cya-organization .section-main .item .image {
  width: 64px;
  height: 64px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.cya-organization .section-main .item .image img {
  width: 100%;
}
.cya-organization .section-main .item .main-text {
  font-weight: 500;
  line-height: 1.7777;
}
.cya-organization .section-main .item .sub-text {
  color: #5F5F53;
  font-size: .7777em;
  font-weight: 400;
  line-height: 171.429%;
}
.cya-organization .section-main .item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #C9C7B9;
  position: absolute;
}
.cya-organization .section-main .item .dot-top {
  top: calc(50% - 10px / 2);
  left: calc(100% - 10px / 2);
}
.cya-organization .section-main .item .dot-right {
  top: calc(50% - 10px / 2);
  left: calc(100% - 10px / 2);
}
.cya-organization .section-main .item .dot-left {
  top: calc(50% - 10px / 2);
  right: calc(100% - 10px / 2);
}
.cya-organization .section-main .item .dot-top {
  top: calc(0% - 10px / 2);
  left: calc(50% - 10px / 2);
}
.cya-organization .section-main .item .dot-bottom {
  top: calc(100% - 10px / 2);
  left: calc(50% - 10px / 2);
}
.cya-organization .section-main .item .line {
  position: absolute;
  bottom: calc(100% - 10px / 2);
  left: calc(50% - 10px / 2);
}
.cya-organization .section-main .item-a {
  max-width: 256px;
  margin: 0 auto;
}
@media (max-width: 940px) {
  .cya-organization .section-main .organization {
    background-image: none;
    position: relative;
  }
  .cya-organization .section-main .organization:before {
    content: "";
    position: absolute;
    left: 51px;
    top: 0;
    width: 2px;
    height: calc(100% - 150px);
    background-color: #C9C7B9;
  }
  .cya-organization .section-main .organization .l-second {
    display: block;
    margin: 0;
    margin-top: 16px;
    padding-left: 96px;
  }
  .cya-organization .section-main .organization .l-second .l-col {
    width: 100%;
    margin: 0;
  }
  .cya-organization .section-main .organization .l-second .l-col + .l-col {
    margin-top: 16px;
  }
  .cya-organization .section-main .organization .l-third {
    margin-top: 16px;
    padding-left: 96px;
  }
  .cya-organization .section-main .item {
    border-radius: 4px;
    flex-direction: row;
  }
  .cya-organization .section-main .item .image {
    margin-bottom: 0;
  }
  .cya-organization .section-main .item .content {
    width: calc(100% - 64px);
    padding-left: 20px;
  }
  .cya-organization .section-main .item .dot-top {
    top: calc(50% - 10px / 2);
    left: calc(100% - 10px / 2);
  }
  .cya-organization .section-main .item .dot-right {
    top: calc(50% - 10px / 2);
    left: calc(100% - 10px / 2);
  }
  .cya-organization .section-main .item .dot-left {
    top: calc(50% - 10px / 2);
    right: calc(100% - 10px / 2);
  }
  .cya-organization .section-main .item .dot-top {
    left: inherit;
    top: calc(50% - 10px / 2);
    right: calc(100% - 10px / 2);
  }
  .cya-organization .section-main .item .dot-top:before {
    content: "";
    position: absolute;
    top: -109px;
    left: -45px;
    width: 56px;
    height: 120px;
    background-image: url(../images/organization-line_s.svg);
    background-position: left bottom;
  }
  .cya-organization .section-main .item .dot-bottom {
    top: calc(100% - 10px / 2);
    left: calc(52px - 10px / 2);
  }
  .cya-organization .section-main .item-a {
    max-width: 100%;
    min-height: inherit;
  }
  .cya-organization .section-main .item-b2 {
    z-index: 3;
  }
  .cya-organization .section-main .item-b2-1:after {
    content: "";
    position: absolute;
    left: -45px;
    top: -32px;
    bottom: 100px;
    width: 2px;
    height: 50%;
    background-color: #C9C7B9;
  }
}
@media (max-width: 480px) {
  .cya-organization .section-main .organization .l-second .item {
    display: block;
  }
  .cya-organization .section-main .organization .l-second .item .image {
    margin-bottom: 20px;
  }
  .cya-organization .section-main .organization .l-second .item .content {
    width: 100%;
    padding-left: 0;
  }
  .cya-organization .section-main .item-b2-1 {
    display: block;
  }
  .cya-organization .section-main .item-b2-1 .image {
    margin-bottom: 20px;
  }
  .cya-organization .section-main .item-b2-1 .content {
    width: 100%;
    padding-left: 0;
  }
}
.cya-organization .section-bottom {
  margin-top: 40px;
}
.cya-organization .section-bottom .item {
  display: flex;
}
.cya-organization .section-bottom .item + .item {
  margin-top: 8px;
}
.cya-organization .section-bottom .item .image {
  width: 28px;
  margin-top: 4px;
}
.cya-organization .section-bottom .item .image img {
  width: 100%;
}
.cya-organization .section-bottom .item .content {
  width: calc(100% - 28px);
  padding-left: 16px;
}
.cya-organization .section-bottom .item .main-text {
  font-weight: 500;
  line-height: 1.7777;
}
.cya-organization .section-bottom .item .sub-text {
  color: #5F5F53;
  font-weight: 400;
  line-height: 177.778%;
}

@media (max-width: 767px) {
  .appointment-form .step-item .text {
    font-size: .75em;
  }
  .appointment-form .l-grid {
    display: block;
  }
  .appointment-form .l-grid__left {
    width: 100%;
    margin-bottom: 20px;
  }
  .appointment-form .l-grid__right {
    width: 100%;
    padding-left: 0;
  }

  .director-mailbox .process-item {
    width: calc(33.3333% - 16px * 2);
  }
  .director-mailbox .process-item + .process-item:nth-child(4):before {
    opacity: 0;
  }
  .page-title {
    font-size: 2.5rem;
  }
  .page-title:before {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .director-mailbox .process-item {
    width: calc(50% - 16px * 2);
  }
  .director-mailbox .process-item + .process-item br {
    display: none;
  }
  .director-mailbox .process-item + .process-item:nth-child(3):before {
    opacity: 0;
  }
  .director-mailbox .process-item + .process-item:nth-child(4):before {
    opacity: 1;
  }
  .director-mailbox .process-item + .process-item:nth-child(5):before {
    opacity: 0;
  }
}
.API-1-1 {
  margin-top: 56px;
  font-size: .8888em;
}
.API-1-1 .title {
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.25em;
  line-height: 146.6666%;
  color: var(--Color-NeutralVarient-25, #393B41);
  line-height: 150%;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}
.API-1-1 .table {
  margin-bottom: 32px;
}
.API-1-1 .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #c9c7b9;
}
.API-1-1 .table th {
  padding: 8px 12px;
  color: var(--Color-NeutralVarient-40, #5F5F53);
  font-weight: 500;
  font-size: .875em;
  line-height: 175%;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.API-1-1 .table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  vertical-align: middle;
  line-height: 175%;
  color: #5F5F53;
  height: 72px;
}
.API-1-1 .cya-info {
  padding-top: 56px;
  padding-bottom: 86px;
}

.cya-info .box {
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.cya-info .box + .box {
  margin-top: 10px;
}
.cya-info .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 36%;
  width: 222px;
  height: 117px;
  background-image: url(../images/index-g-leaf.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.cya-info .box:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 118px;
  height: 212px;
  background-image: url(../images/index-g-leaf2.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.cya-info .list {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.cya-info .list:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 165px;
  height: 143px;
  background-image: url(../images/index-g-leaf3.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.cya-info .item {
  position: relative;
  padding: 24px 32px;
  display: block;
  flex: 1;
}
.cya-info .item:first-child:before {
  display: none;
}
.cya-info .item:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 1px;
  height: calc(100% - 24px * 2);
  background-color: #C9C7B9;
  display: block;
}
.cya-info .item .main-text {
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.25em;
  line-height: 150%;
  color: #1C1C14;
}
.cya-info .item .sub-text {
  margin-top: 12px;
  font-weight: 400;
  font-size: .875em;
  line-height: 171.428571429%;
  color: #5F5F53;
}
.cya-info .item img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  aspect-ratio: 1/1;
}

.RL-1 {
  font-size: .8888em;
}
.RL-1 .box {
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.RL-1 .box + .box {
  margin-top: 16px;
}
.RL-1 .list {
  position: relative;
  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;
}
.RL-1 .item {
  position: relative;
  padding: 24px 32px;
  width: calc(100% / 4);
  display: block;
}
.RL-1 .item:active img, .RL-1 .item:focus img {
  opacity: .8;
}
.RL-1 .item:active .main-text, .RL-1 .item:focus .main-text {
  opacity: .8;
}
@media (hover: hover) {
  .RL-1 .item:hover img {
    opacity: .8;
  }
  .RL-1 .item:hover .main-text {
    opacity: .8;
  }
}
.RL-1 .item:first-child:before {
  display: none;
}
.RL-1 .item:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 1px;
  height: calc(100% - 24px * 2);
  background-color: #C9C7B9;
  display: block;
}
.RL-1 .item .image {
  margin-bottom: 12px;
  max-width: 180px;
}
.RL-1 .item .image img {
  width: 100%;
  aspect-ratio: 45/14;
}
.RL-1 .item .main-text {
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.25em;
  line-height: 150%;
  color: #1C1C14;
}

.travelers-faqs {
  padding-top: 32px;
  padding-bottom: 86px;
}
.travelers-faqs .form {
  display: flex;
  margin-bottom: 16px;
}
.travelers-faqs .form .form-section {
  margin-right: 8px;
  width: calc(100% - 5em - 8px);
}
.travelers-faqs .form .form-control {
  padding: 10px 20px;
  height: 48px;
  font-size: 1.125em;
}
.travelers-faqs .form .action {
  width: 5em;
}
.travelers-faqs .form .btn-primary {
  width: 100%;
/*  padding: 0 8px;*/
  height: 48px;
}
.travelers-faqs .section-header {
  margin-bottom: 40px;
}
.travelers-faqs .last-updated {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
}
.travelers-faqs .last-updated span + span {
  margin-left: 12px;
}
.travelers-faqs .type-filter {
  margin-bottom: 40px;
}
.travelers-faqs .type-filter .title {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.25em;
  font-weight: 600;
  line-height: 150%;
  padding: 8px 0;
  margin-bottom: 20px;
}
.travelers-faqs .nav-pills {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
.travelers-faqs .nav-link {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-weight: 500;
  line-height: 175%;
  padding: 16px 20px;
  border: 0;
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  border-radius: 4px;
  box-shadow: 0 0 0 1px #C9C7B9 inset;
  width: calc(100% / 5 - 8px * 2);
  margin: 0 8px;
  text-align: left;
}
.travelers-faqs .nav-link span {
  display: block;
}
.travelers-faqs .nav-link.active {
  background: #E3F4F0;
  box-shadow: 0 0 0 3px #00A295 inset;
  color: var(--Color-NeutralVarient-10, #1C1C14);
}
.travelers-faqs .nav-link.active .icon {
  background-color: #4D9E94;
}
.travelers-faqs .nav-link.active .icon-1 {
  background-image: url(../images/travelers-faqs-1-white.svg);
}
.travelers-faqs .nav-link.active .icon-2 {
  background-image: url(../images/travelers-faqs-2-white.svg);
}
.travelers-faqs .nav-link.active .icon-3 {
  background-image: url(../images/travelers-faqs-3-white.svg);
}
.travelers-faqs .nav-link.active .icon-4 {
  background-image: url(../images/travelers-faqs-4-white.svg);
}
.travelers-faqs .nav-link.active .icon-5 {
  background-image: url(../images/travelers-faqs-5-white.svg);
}
.travelers-faqs .nav-link .icon {
  width: 64px;
  height: 64px;
  background-color: #E5E3D5;
  border-radius: 2px;
  margin-bottom: 16px;
}
.travelers-faqs .nav-link .icon-1 {
  background-image: url(../images/travelers-faqs-1.svg);
}
.travelers-faqs .nav-link .icon-2 {
  background-image: url(../images/travelers-faqs-2.svg);
}
.travelers-faqs .nav-link .icon-3 {
  background-image: url(../images/travelers-faqs-3.svg);
}
.travelers-faqs .nav-link .icon-4 {
  background-image: url(../images/travelers-faqs-4.svg);
}
.travelers-faqs .nav-link .icon-5 {
  background-image: url(../images/travelers-faqs-5.svg);
}
.travelers-faqs .faq-list .title {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.5em;
  font-weight: 600;
  line-height: 150%;
  padding: 24px 0;
}
.travelers-faqs .faq-item__header {
  padding: 24px 56px;
  position: relative;
  min-height: 84px;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  display: block;
}
.travelers-faqs .faq-item__header .icon-faq {
  position: absolute;
  top: 26px;
  left: 8px;
  width: 32px;
  height: 32px;
  background-image: url(../images/travelers-faqs-icon.svg);
}
.travelers-faqs .faq-item__header .icon-arrow {
  position: absolute;
  top: calc(50% - 16px / 2);
  right: 16px;
  width: 16px;
  height: 16px;
  background-image: url(../images/travelers-faqs-arrow.svg);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.travelers-faqs .faq-item__header[aria-expanded="true"] .icon-arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.travelers-faqs .faq-item__content {
  position: relative;
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  line-height: 177.778%;
}
.travelers-faqs .faq-item__inner {
  padding: 32px 26px;
  padding-left: 56px;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.travelers-faqs .faq-item .main-text {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.5em;
  font-weight: 600;
  line-height: 150%;
}

.dictionary .form {
  display: flex;
  align-items: flex-end;
  margin: 0 -8px;
  margin-bottom: 20px;
}
.dictionary .form-section {
  width: calc(50% - 8px * 2 - 4.4444em / 2);
  margin: 0 8px;
}
.dictionary .form-label {
  font-weight: 700;
  font-size: .8888em;
}
.dictionary .form-select {
  width: 100%;
  padding: 4px 20px;
  height: 40px;
  background-color: #fff;
}
.dictionary .form-control {
  background-color: #fff;
  padding: 10px 20px;
  height: 40px;
}
.dictionary .action {
  width: 4.4444em;
  margin: 0 8px;
}
.dictionary .btn-primary {
  width: 100%;
  padding: 0 8px;
  height: 40px;
  font-size: .8888em;
}
.dictionary .section-header {
  padding: 24px 8px;
  padding-right: 24px;
  position: relative;
  min-height: 84px;
  border-bottom: 1px solid #C9C7B9;
  display: block;
  margin-bottom: 0;
}
.dictionary .section-header .icon-arrow {
  position: absolute;
  top: calc(50% - 16px / 2);
  right: 16px;
  width: 16px;
  height: 16px;
  background-image: url(../images/travelers-faqs-arrow.svg);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.dictionary .section-header[aria-expanded="true"] .icon-arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.dictionary .section-content {
  position: relative;
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  line-height: 177.778%;
  margin: 0;
  padding: 0;
}
.dictionary .section-inner {
  padding: 12px 26px 12px 56px;
  border-bottom: 1px solid #C9C7B9;
}
.dictionary .section .main-text {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.3333em;
  font-weight: 600;
  line-height: 150%;
}
.dictionary .sub-section + .sub-section {
  margin-top: 32px;
}
.dictionary .sub-section__header {
  padding: 12px 16px;
  font-weight: 700;
  color: #1C1C14;
}
.dictionary .sub-section-content {
  position: relative;
}
.dictionary .item {
  display: flex;
  padding: 12px 16px;
  border-top: 1px solid #E5E3D5;
  color: #5F5F53;
  font-weight: 500;
  line-height: 1.7777;
}
.dictionary .item:nth-child(2n - 1) {
  background-color: #FCF9ED;
}
.dictionary .item .block:nth-child(1) {
  width: 180px;
  margin-right: 8px;
}
.dictionary .item .block:nth-child(2) {
  width: calc(100% - 180px - 8px);
}
@media (max-width: 767px) {
  .dictionary .form {
    display: block;
    margin: 0;
    margin-bottom: 20px;
  }
  .dictionary .form-section {
    width: 100%;
    margin: 0;
  }
  .dictionary .form-section + .form-section {
    margin-top: 16px;
  }
  .dictionary .action {
    width: 100%;
    margin: 0;
    margin-top: 16px;
  }
  .dictionary .section-inner {
    padding: 12px 0;
  }
  .dictionary .item {
    font-size: .8888em;
    line-height: 1.5;
  }
  .dictionary .item .block:nth-child(1) {
    width: 150px;
  }
  .dictionary .item .block:nth-child(2) {
    width: calc(100% - 150px - 8px);
  }
}

.cya-traffic {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
  font-size: .8888em;
}
.cya-traffic__side {
  width: 248px;
}
.cya-traffic__side .menu {
  list-style: none;
}
.cya-traffic__side .menu li + li {
  margin-top: 8px;
}
.cya-traffic__side .menu a {
  padding: 12px;
  display: block;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  font-size: 1.125em;
  font-weight: 500;
  line-height: 133.333%;
  letter-spacing: 0.72px;
  color: var(--Color-NeutralVarient-40, #5F5F53);
}
.cya-traffic__side .menu a.active {
  color: var(--Color-Mori-Green-40, #006B62);
  border-bottom: 2px solid var(--Color-Mori-Green-40, #006B62);
}
.cya-traffic__content {
  width: calc(100% - 248px);
  padding-left: 35px;
  font-size: 1.125em;
  line-height: 177.778%;
}
.cya-traffic__content .title {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.3333em;
  font-weight: 600;
  line-height: 150%;
}
.cya-traffic .disc-list {
  list-style: disc;
  padding-left: 1.25em;
}

.taxi-service .title {
  font-size: 1.1111em;
}
.taxi-service .table {
  text-align: center;
  color: var(--Color-NeutralVarient-40, #5F5F53);
}
.taxi-service .table th {
  padding: 8px 12px;
  color: var(--Color-NeutralVarient-40, #5F5F53);
  font-weight: 400;
  line-height: 175%;
  font-weight: 600;
  vertical-align: middle;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.taxi-service .table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  vertical-align: middle;
  font-size: .8888em;
  line-height: 177.7777%;
  color: #313126;
  height: 72px;
}

.PS-a .title {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.3333em;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 12px;
}
.PS-a .box {
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.PS-a .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 36%;
  width: 222px;
  height: 117px;
  background-image: url(../images/index-g-leaf.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.PS-a .box:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 118px;
  height: 212px;
  background-image: url(../images/index-g-leaf2.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.PS-a .box-inner {
  position: relative;
}
.PS-a .box-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 165px;
  height: 143px;
  background-image: url(../images/index-g-leaf3.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.PS-a .l-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 36px 0;
}
.PS-a .l-grid__left {
  width: 50%;
  padding: 24px 32px;
}
.PS-a .l-grid__right {
  position: relative;
  width: 50%;
  padding: 24px 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.PS-a .l-grid__right:before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 1px;
  height: calc(100% - 24px * 2);
  background-color: #C9C7B9;
  display: block;
}
.PS-a .image {
  position: relative;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.PS-a .image .text {
  background: rgba(0, 78, 93, 0.7);
  padding: 14px 35px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
}
.PS-a .swiper-pagination {
  position: relative;
  bottom: 0;
  margin: 16px 0 0;
}
.PS-a .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .PS-a .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
.PS-a .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(217, 217, 217, 0.5);
  margin: 0 8px;
}
.PS-a .swiper-pagination-bullet-active {
  background-color: #fff;
}

.PS-b .box {
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  margin-bottom: 24px;
}
.PS-b .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 36%;
  width: 222px;
  height: 117px;
  background-image: url(../images/index-g-leaf.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.PS-b .box:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 118px;
  height: 212px;
  background-image: url(../images/index-g-leaf2.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.PS-b .box-inner {
  position: relative;
  padding: 36px 0;
}
.PS-b .box-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 165px;
  height: 143px;
  background-image: url(../images/index-g-leaf3.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.PS-b .gallery-swiper {
  padding: 24px 32px;
}
.PS-b .gallery-swiper .swiper-slide {
  max-width: 456px;
  padding: 0 14px;
}
.PS-b .gallery-swiper img {
  width: 100%;
  aspect-ratio: 455.60/338.00;
}
.PS-b .title {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.3333em;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 12px;
}
.PS-b .image {
  position: relative;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.PS-b .image .text {
  background: rgba(0, 78, 93, 0.7);
  padding: 14px 35px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
}
.PS-b .swiper-pagination {
  position: relative;
  bottom: 0;
  margin: 16px 0 0;
}
.PS-b .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .PS-b .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
.PS-b .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0, 78, 93, 0.7);
  margin: 0 8px;
}
.PS-b .swiper-pagination-bullet-active {
  background-color: #fff;
}
.PS-b a {
  text-decoration: underline;
  color: var(--Color-NeutralVarient-10, #1C1C14);
}

.PS-c .title {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 2em;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 40px;
}
.PS-c .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.PS-c .group .block {
  position: relative;
  width: 50%;
  padding: 0 24px;
}
.PS-c .group .block:first-child:before {
  display: none;
}
.PS-c .group .block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #C9C7B9;
  display: block;
}

.cyc-alerts {
  position: relative;
  width: calc(100% - 20px * 2);
  max-width: 1160px;
  margin: 32px auto;
  background-color: #F3F1E6;
  border-radius: 4px;
}
.cyc-alerts__header {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 44px 8px 12px;
}
.cyc-alerts__header .icon {
  width: 24px;
  height: 24px;
}
.cyc-alerts__header .icon-info {
  background-image: url(../images/icon-alerts-info.svg);
  margin-right: 8px;
}
.cyc-alerts__header .icon-arrow {
  background-image: url(../images/icon-alerts-arrow.svg);
  transition: ease 0.5s;
}
.cyc-alerts__header .col-left {
  color: #A73923;
  display: flex;
  align-items: center;
  margin-right: 8px;
  width: 116px;
  font-weight: 500;
  line-height: 1.75;
}
.cyc-alerts__header .col-right {
  width: calc(100% - 116px - 8px);
}
.cyc-alerts__header .btn {
  position: absolute;
  top: calc(50% - 24px / 2);
  right: 12px;
  width: 24px;
  height: 24px;
}
.cyc-alerts__header .item {
  color: #48473D;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 3.5em;
  overflow: hidden;
}
.cyc-alerts__header .item:active {
  color: rgba(72, 71, 61, 0.8);
}
@media (hover: hover) {
  .cyc-alerts__header .item:hover {
    color: rgba(72, 71, 61, 0.8);
  }
}
.cyc-alerts__header .swiper-wrapper {
  height: 3.5em !important;
}
.cyc-alerts__header .main-text {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.75;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3.5em;
  width: 100%;
}
.cyc-alerts__content {
  position: relative;
}
.cyc-alerts__content .item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 12px;
  color: #48473D;
}
.cyc-alerts__content .item:active {
  color: rgba(72, 71, 61, 0.8);
}
@media (hover: hover) {
  .cyc-alerts__content .item:hover {
    color: rgba(72, 71, 61, 0.8);
  }
}
.cyc-alerts__content .item:nth-child(2n - 1) {
  background-color: rgba(0, 0, 0, 0.08);
}
.cyc-alerts__content .item .category {
  color: #1C1C14;
  margin-right: 8px;
  width: 72px;
  font-weight: 500;
  line-height: 1.75;
}
.cyc-alerts__content .item .main-text {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.75;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 5.25em;
  width: calc(100% - 72px - 8px);
}
.cyc-alerts.is-toggle .cyc-alerts__header .col-right {
  display: none;
}
.cyc-alerts.is-toggle .cyc-alerts__header .icon-arrow {
  background-image: url(../images/icon-alerts-arrow.svg);
  transform: rotate(180deg);
}

.cya-sticky-alerts-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vw;
  background-color: rgba(0, 0, 0, 0.12);
  z-index: 999;
}

.cya-sticky-alerts {
  position: fixed;
  left: 32px;
  bottom: 32px;
  width: calc(100% - 16px * 2);
  max-width: 448px;
  background-color: #FEFCF5;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24), 0 0 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.cya-sticky-alerts--center {
  bottom: calc(50% - 234px / 2);
  left: calc(50% - 448px / 2);
}
.cya-sticky-alerts__inner {
  padding: 12px 16px;
}
.cya-sticky-alerts__close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 44px;
  height: 44px;
  z-index: 2;
  border-radius: 50%;
}
.cya-sticky-alerts__close .icon-close {
  width: 44px;
  height: 44px;
  background-image: url(../images/cya-sticky-alerts-close.svg);
  background-size: 44px auto;
  background-position: center;
  background-repeat: no-repeat;
}
.cya-sticky-alerts__close:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 36px / 2);
  left: calc(50% - 36px / 2);
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  opacity: 0;
}
.cya-sticky-alerts__close:active:before {
  opacity: 1;
}
@media (hover: hover) {
  .cya-sticky-alerts__close:hover:before {
    opacity: 1;
  }
}
.cya-sticky-alerts__header {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 8px;
}
.cya-sticky-alerts__header .icon {
  width: 32px;
  height: 32px;
}
.cya-sticky-alerts__header .icon-info {
  background-image: url(../images/cya-sticky-alerts.svg);
  margin-right: 12px;
}
.cya-sticky-alerts__header .main-text {
  color: #48473D;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.25em;
  font-weight: 600;
  line-height: 150%;
}
.cya-sticky-alerts__content {
  position: relative;
}
.cya-sticky-alerts__content .item {
  color: #48473D;
  width: 100%;
  height: 7em;
  overflow: hidden;
  font-size: 1em;
  line-height: 1.75;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-height: 7em;
  text-align: justify;
}
.cya-sticky-alerts__content .item:active {
  color: rgba(72, 71, 61, 0.8);
}
@media (hover: hover) {
  .cya-sticky-alerts__content .item:hover {
    color: rgba(72, 71, 61, 0.8);
  }
}
.cya-sticky-alerts .cya-alerts-swiper {
  padding-left: 44px;
}
.cya-sticky-alerts .swiper-control {
  position: relative;
  padding: 0 44px;
  width: 145px;
  margin: 16px auto 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -22px;
}
.cya-sticky-alerts .swiper-pagination {
  position: static;
  color: #48473D;
  font-size: .75em;
}
.cya-sticky-alerts .swiper-pagination .swiper-pagination-current {
  margin-right: 8px;
}
.cya-sticky-alerts .swiper-pagination .swiper-pagination-current:before {
  content: "0";
  display: inline;
}
.cya-sticky-alerts .swiper-pagination .swiper-pagination-total {
  margin-left: 8px;
}
.cya-sticky-alerts .swiper-pagination .swiper-pagination-total:before {
  content: "0";
  display: inline;
}
.cya-sticky-alerts .swiper-button-prev,
.cya-sticky-alerts .swiper-button-next {
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  background-size: 18px auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
  background-color: transparent;
  box-shadow: none;
}
.cya-sticky-alerts .swiper-button-prev:before,
.cya-sticky-alerts .swiper-button-next:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 36px / 2);
  left: calc(50% - 36px / 2);
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  opacity: 0;
}
.cya-sticky-alerts .swiper-button-prev:after,
.cya-sticky-alerts .swiper-button-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 44px auto;
  background-position: center;
  background-repeat: no-repeat;
}
.cya-sticky-alerts .swiper-button-prev:active:before,
.cya-sticky-alerts .swiper-button-next:active:before {
  opacity: 1;
}
@media (hover: hover) {
  .cya-sticky-alerts .swiper-button-prev:hover:before,
  .cya-sticky-alerts .swiper-button-next:hover:before {
    opacity: 1;
  }
}
.cya-sticky-alerts .swiper-button-prev:after {
  background-image: url(../images/swiper-prev-black2.svg);
}
.cya-sticky-alerts .swiper-button-next:after {
  background-image: url(../images/swiper-next-black2.svg);
}
@media (max-width: 767px) {
  .cya-sticky-alerts {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 16px * 2);
  }
  .cya-sticky-alerts--center {
    bottom: calc(50% - 234px / 2);
    left: calc(50% - 448px / 2);
  }
}
@media (max-width: 480px) {
  .cya-sticky-alerts--center {
    bottom: calc(50% - 234px / 2);
    left: 16px;
    width: calc(100% - 16px * 2);
  }
}

.cyc-sitemap {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}
.cyc-sitemap .sitemap-section {
  width: calc(50% - 20px * 2);
  margin: 20px;
}
.cyc-sitemap .sitemap-section a {
  display: block;
}
.cyc-sitemap .sitemap-section a:active {
  color: #006A61;
}
@media (hover: hover) {
  .cyc-sitemap .sitemap-section a:hover {
    color: #006A61;
  }
}
.cyc-sitemap .sitemap-section__header {
  padding: 12px 8px;
  position: relative;
  border-bottom: 1px solid #C9C7B9;
  display: block;
  margin-bottom: 0;
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.3333em;
  font-weight: 700;
  line-height: 150%;
}
.cyc-sitemap .sitemap-section__header a {
  color: #1C1C14;
}
.cyc-sitemap .sitemap-section__content {
  position: relative;
  color: var(--Color-NeutralVarient-10, #1C1C14);
  line-height: 177.778%;
  margin: 0;
}
.cyc-sitemap .sitemap-section__content ul {
  background-color: #FEFCF5;
}
.cyc-sitemap .sitemap-section__content ul li {
  border-top: 1px solid #E5E3D5;
}
.cyc-sitemap .sitemap-section__content ul li:first-child {
  border-top: 0;
}
.cyc-sitemap .sitemap-section__content ul li:nth-child(2n - 1) {
  background-color: #FCF9ED;
}
.cyc-sitemap .sitemap-section__content ul ul {
  border-top: 1px solid #E5E3D5;
  background-color: #FEFCF5;
}
.cyc-sitemap .sitemap-section__content ul ul li:nth-child(2n - 1) {
  background-color: #f9f7ef;
}
.cyc-sitemap .sitemap-section__content ul ul a {
  padding-left: 32px;
}
.cyc-sitemap .sitemap-section__content a {
  color: #5F5F53;
  line-height: 1.7777;
  padding: 12px 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .cyc-sitemap {
    margin: 0;
  }
  .cyc-sitemap .sitemap-section {
    width: 100%;
    margin: 0;
  }
  .cyc-sitemap .sitemap-section + .sitemap-section {
    margin-top: 20px;
  }
}

.cya-download {
  padding-top: 32px;
  padding-bottom: 86px;
}
.cya-download .form {
  display: flex;
  margin-bottom: 16px;
}
.cya-download .form .form-section {
  margin-right: 8px;
  width: calc(100% - 5em - 8px);
}
.cya-download .form .form-control {
  padding: 10px 20px;
  height: 48px;
  font-size: 1.125em;
}
.cya-download .form .action {
  width: 5em;
}
.cya-download .form .btn-primary {
  width: 100%;
  padding: 0 8px;
  height: 48px;
}
.cya-download .section-header {
  margin-bottom: 24px;
}
.cya-download .section-title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.cya-download .section-title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: 0;
}
.cya-download .section-title span {
  position: relative;
}
.cya-download .last-updated {
  color: var(--Color-NeutralVarient-40, #5F5F53);
  line-height: 175%;
}
.cya-download .last-updated span + span {
  margin-left: 12px;
}
.cya-download .type-filter {
  margin-bottom: 16px;
}
.cya-download .type-filter .title {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: .875em;
  font-weight: 500;
  line-height: 150%;
  padding: 8px 0;
}
.cya-download .nav-pills {
  display: flex;
  flex-wrap: wrap;
  margin: -6px;
}
.cya-download .nav-link {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-weight: 500;
  line-height: 150%;
  padding: 6px 14px;
  border: 0;
  background: #E5E3D5;
  color: #464749;
  border-radius: 8px;
  margin: 6px;
  display: flex;
  align-items: center;
}
.cya-download .nav-link .icon-check {
  width: 20px;
  height: 20px;
  display: none;
  margin-left: -6px;
  margin-right: 8px;
  background-image: url(../images/cya-download-check.svg);
}
.cya-download .nav-link.active {
  background: #006B62;
  color: #fff;
}
.cya-download .nav-link.active .icon {
  display: block;
}
.cya-download .switch-mode {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 8px;
}
.cya-download .switch-mode__header {
  margin-right: 10px;
  font-weight: 500;
  color: #5F5F53;
}
.cya-download .switch-mode .group {
  display: flex;
  align-items: center;
  border-radius: 40px;
  overflow: hidden;
  background-color: #F3F1E6;
}
.cya-download .switch-mode .icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.cya-download .switch-mode .icon-list {
  background-image: url(../images/icon-list.svg);
}
.cya-download .switch-mode .icon-card {
  background-image: url(../images/icon-card.svg);
}
.cya-download .switch-mode .btn {
  line-height: 40px;
  min-width: 92px;
  border-radius: 40px;
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cya-download .switch-mode .btn.active {
  background-color: #48473D;
  color: #fff;
}
.cya-download .switch-mode .btn.active .icon-list {
  background-image: url(../images/icon-list-white.svg);
}
.cya-download .switch-mode .btn.active .icon-card {
  background-image: url(../images/icon-card-white.svg);
}
.cya-download .switch-card .list {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
  margin-bottom: 8px;
}
.cya-download .switch-card .l-card {
  width: calc(100% / 3 - 8px * 2);
  margin: 8px;
}
.cya-download .list .item {
  position: relative;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #C9C7B9;
  line-height: 1.75;
}
.cya-download .list .item .image {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}
.cya-download .list .item .content {
  width: calc(100% - 32px - 12px);
  position: relative;
  padding-right: 104px;
}
.cya-download .list .item .date {
  color: #5F5F53;
}
.cya-download .list .item .main-text {
  color: #1C1C14;
  font-weight: 500;
}
.cya-download .list .item .action {
  position: absolute;
  top: calc(50% - 40px / 2);
  right: 0;
}
.cya-download .list .item .btn-border {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #C9C7B9;
  color: #5F5F53;
  font-weight: 500;
}
.cya-download .list .item .btn-border:after {
  display: none;
}
.cya-download .list .item .btn-border .icon-arrow {
  width: 18px;
  height: 18px;
  background-image: url(../images/cya-download-arrow_down.svg);
  margin-left: 8px;
}
.cya-download .list .item .btn-border.show {
  background-color: #eae8e1;
}
.cya-download .list .item .btn-border:hover {
  filter: none;
}
.cya-download .list .item .dropdown-menu {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14), 0 0 2px rgba(0, 0, 0, 0.12);
  padding: 6px;
  border-radius: 12px;
  border: 0;
  min-width: 172px;
}
.cya-download .list .item .dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 1.125em;
  color: #5F5F53;
}
.cya-download .list .item .dropdown-item:active {
  background-color: #EEECDD;
}
.cya-download .list .item .dropdown-item:hover {
  background-color: #EEECDD;
}
.cya-download .list .item .dropdown-item + .dropdown-item {
  margin-top: 6px;
}
.cya-download .list .item .dropdown-item img {
  width: 20px;
  margin-left: auto;
}
.cya-download .list-card {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.cya-download .list-card .item {
  width: calc(100% / 3 - 8px * 2);
  margin: 8px;
  padding: 24px 32px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 0;
  background-color: #F3F1E6;
  min-height: 256px;
  border-radius: 4px;
}
.cya-download .list-card .item .image {
  width: 48px;
  height: 48px;
  margin: 0 0 48px;
}
.cya-download .list-card .item .content {
  width: 100%;
  padding: 0 0 52px;
}
.cya-download .list-card .item .date {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cya-download .list-card .item .main-text {
  color: #1C1C14;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.25em;
  font-weight: 600;
  line-height: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3em;
}
.cya-download .list-card .item .action {
  top: inherit;
  right: inherit;
  bottom: 0;
  left: 0;
}
.cya-download .pagination-container {
  margin-top: 32px;
}
@media (max-width: 1023px) {
  .cya-download .list-card .item {
    width: calc(100% / 2 - 8px * 2);
  }
}
@media (max-width: 640px) {
  .cya-download .list-card .item {
    width: calc(100% - 8px * 2);
  }
}

.cya-facilities .box {
  background: var(--Color-NeutralVarient-95, #F3F1E6);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  padding: 32px;
  min-height: 200px;
}
.cya-facilities .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 36%;
  width: 222px;
  height: 117px;
  background-image: url(../images/index-g-leaf.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.cya-facilities .box:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 118px;
  height: 212px;
  background-image: url(../images/index-g-leaf2.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.cya-facilities .box-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 165px;
  height: 143px;
  background-image: url(../images/index-g-leaf3.svg);
  background-repeat: no-repeat;
  display: block;
  pointer-events: none;
}
.cya-facilities .title {
  position: relative;
  color: #1C1C14;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.3333em;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
  padding-left: 20px;
}
.cya-facilities .title:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px / 2);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #C9C7B9;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .cya-facilities .box {
    padding: 16px;
  }
}

.cya-facilities-a .block-a {
  position: relative;
  margin-bottom: 40px;
  padding: 32px;
  border-radius: 4px;
  background: #FEFCF5;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
  z-index: 1;
}
.cya-facilities-a .block-a .title {
  margin-bottom: 56px;
}
.cya-facilities-a .block-a .grid {
  display: flex;
}
.cya-facilities-a .block-a .grid-left {
  width: calc(100% - 318px);
}
.cya-facilities-a .block-a .grid-right {
  width: 318px;
  padding-left: 40px;
}
.cya-facilities-a .block-a .grid-right .image {
  position: relative;
  width: 278px;
  height: 406px;
  aspect-ratio: 258/386;
  position: relative;
  overflow: hidden;
  border-radius: 2000px;
  border: 10px solid transparent;
  background: #FFF;
  box-shadow: 0 0 0 1px rgba(201, 199, 185, 0.38);
}
.cya-facilities-a .block-a .grid-right .image:before {
  content: "";
  padding-top: 149.612403101%;
  display: block;
}
.cya-facilities-a .block-a .grid-right .image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cya-facilities-a .block-a .info-group {
  margin-bottom: 16px;
}
.cya-facilities-a .block-a .info {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
}
.cya-facilities-a .block-a .info + .info {
  border-top: 1px solid #C9C7B9;
}
.cya-facilities-a .block-a .info-header {
  width: 120px;
  display: flex;
  align-items: center;
  color: #1C1C14;
  font-weight: 500;
  line-height: 175%;
}
.cya-facilities-a .block-a .info-header img {
  margin-right: 8px;
}
.cya-facilities-a .block-a .info-content {
  width: calc(100% - 120px);
  padding-left: 16px;
  line-height: 177.778%;
  color: #48473D;
  font-weight: 500;
}
.cya-facilities-a .block-a .info .text-small {
  color: #48473D;
  font-size: .8888em;
  font-weight: 400;
  line-height: 175%;
}
.cya-facilities-a .block-a .note {
  display: flex;
  align-items: center;
  background-color: #EEECDD;
  border: 1px solid #C9C7B9;
  padding: 12px;
  font-size: .8888em;
  line-height: 150%;
}
.cya-facilities-a .block-a .note img {
  margin-right: 8px;
}
.cya-facilities-a .block-b .list {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.cya-facilities-a .block-b .list .item {
  width: calc(50% - 8px * 2);
  margin: 8px;
  position: relative;
  color: #1C1C14;
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 4px;
  background: #FEFCF5;
}
.cya-facilities-a .block-b .list .item .image {
  width: 64px;
  padding: 8px;
  border-radius: 2px;
  background: #397F9A;
}
.cya-facilities-a .block-b .list .item .content {
  width: calc(100% - 64px);
  padding-left: 20px;
}
.cya-facilities-a .block-b .list .item .main-text {
  font-size: 1em;
  font-weight: 500;
  line-height: 177.778%;
}
.cya-facilities-a .block-b .list .item .sub-text {
  font-size: .8888em;
  font-weight: 400;
  line-height: 175%;
  margin-top: 8px;
  color: #5F5F53;
}
@media (max-width: 767px) {
  .cya-facilities-a .block-a {
    padding: 16px;
  }
  .cya-facilities-a .block-a .title {
    margin-bottom: 24px;
  }
  .cya-facilities-a .block-a .grid {
    display: block;
  }
  .cya-facilities-a .block-a .grid-left {
    width: 100%;
    margin-bottom: 24px;
  }
  .cya-facilities-a .block-a .grid-right {
    width: 100%;
    padding-left: 0;
  }
  .cya-facilities-a .block-a .grid-right .image {
    margin: 0 auto;
  }
  .cya-facilities-a .block-b .list .item {
    width: calc(100% - 8px * 2);
  }
}

.cya-facilities-b .block-a {
  position: relative;
  z-index: 1;
}
.cya-facilities-b .block-a .list {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.cya-facilities-b .block-a .list .item {
  width: calc(50% - 8px * 2);
  margin: 8px;
  position: relative;
  color: #1C1C14;
  display: flex;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 4px;
  background: #FEFCF5;
}
@media (max-width: 767px) {
  .cya-facilities-b .block-a .list .item {
    width: calc(100% - 8px * 2);
  }
}
.cya-facilities-b .block-a .list .item .image {
  width: 64px;
  padding: 8px;
  border-radius: 2px;
  background: #397F9A;
}
.cya-facilities-b .block-a .list .item .content {
  width: calc(100% - 64px);
  padding-left: 20px;
}
.cya-facilities-b .block-a .list .item .main-text {
  font-size: 1em;
  font-weight: 500;
  line-height: 177.778%;
}
.cya-facilities-b .block-a .list .item .sub-text {
  font-size: .8888em;
  font-weight: 400;
  line-height: 175%;
  margin-top: 8px;
  color: #5F5F53;
}

.cya-facilities-c .block-a {
  position: relative;
  z-index: 1;
}
.cya-facilities-c .block-a .map {
  position: relative;
  border-radius: 4px;
  border: 1px solid #C9C7B9;
  background: #fff;
  overflow: hidden;
  margin-bottom: 24px;
}
.cya-facilities-c .block-a .list {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.cya-facilities-c .block-a .item {
  width: calc(50% - 8px * 2);
  margin: 8px;
  position: relative;
  color: #1C1C14;
  background: #FEFCF5;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
@media (max-width: 767px) {
  .cya-facilities-c .block-a .item {
    width: calc(100% - 8px * 2);
  }
}
.cya-facilities-c .block-a .item .image {
  position: relative;
}
.cya-facilities-c .block-a .item .image:before {
  content: "";
  padding-top: 56.296296296%;
  display: block;
}
.cya-facilities-c .block-a .item .image:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 48px;
  background: linear-gradient(180deg, rgba(254, 252, 245, 0) 0%, #fefcf5 90%);
}
.cya-facilities-c .block-a .item .image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cya-facilities-c .block-a .item .content {
  padding: 16px 20px;
  border-radius: 4px;
}
.cya-facilities-c .block-a .item .main-text {
  font-size: 1em;
  font-weight: 500;
  line-height: 177.778%;
  margin-bottom: 8px;
}
.cya-facilities-c .block-a .info {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
}
.cya-facilities-c .block-a .info + .info {
  border-top: 1px solid #C9C7B9;
}
.cya-facilities-c .block-a .info-header {
  width: 120px;
  display: flex;
  align-items: center;
  color: #1C1C14;
  font-weight: 500;
  line-height: 175%;
}
.cya-facilities-c .block-a .info-header img {
  margin-right: 8px;
}
.cya-facilities-c .block-a .info-content {
  width: calc(100% - 120px);
  padding-left: 16px;
  line-height: 177.778%;
  color: #48473D;
  font-weight: 500;
}
.cya-facilities-c .block-a .info .text-small {
  color: #48473D;
  font-size: .8888em;
  font-weight: 400;
  line-height: 175%;
}

.cya-facilities-d .block-a {
  position: relative;
  z-index: 1;
}
.cya-facilities-d .block-a .title {
  margin-bottom: 8px;
}
.cya-facilities-d .block-a .top-text {
  margin-bottom: 24px;
  color: #5F5F53;
  font-size: .8888em;
  font-weight: 400;
  line-height: 175%;
}
.cya-facilities-d .block-a .list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: -8px;
}
.cya-facilities-d .block-a .item {
  width: calc(50% - 8px * 2);
  margin: 8px;
  position: relative;
  color: #1C1C14;
  background: #FEFCF5;
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
@media (max-width: 767px) {
  .cya-facilities-d .block-a .item {
    width: calc(100% - 8px * 2);
  }
}
.cya-facilities-d .block-a .item .image {
  position: relative;
}
.cya-facilities-d .block-a .item .image:before {
  content: "";
  padding-top: 56.296296296%;
  display: block;
}
.cya-facilities-d .block-a .item .image:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 48px;
  background: linear-gradient(180deg, rgba(254, 252, 245, 0) 0%, #fefcf5 90%);
}
.cya-facilities-d .block-a .item .image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cya-facilities-d .block-a .item .content {
  padding: 16px;
}
.cya-facilities-d .block-a .item .main-text {
  font-size: 1em;
  font-weight: 500;
  line-height: 177.778%;
  margin-bottom: 8px;
}
.cya-facilities-d .block-a .item .tags {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
  margin-top: 4px;
}
.cya-facilities-d .block-a .item .tag {
  padding: 8px 16px;
  border-radius: 8px;
  color: #464749;
  background-color: #E5E3D5;
  display: inline-flex;
  margin: 4px;
  font-size: .7777em;
  line-height: 114.2857%;
  font-weight: 500;
}
.cya-facilities-d .block-a .collapse-item__header {
  position: relative;
  padding: 0 80px 0 0;
  display: block;
}
.cya-facilities-d .block-a .collapse-item__header .main-text {
  color: #1C1C14;
  font-size: 1.1111em;
  font-weight: 500;
  line-height: 150%;
}
.cya-facilities-d .block-a .collapse-item__header .icon-arrow {
  position: absolute;
  top: calc(50% - 48px / 2);
  right: 0;
  width: 48px;
  height: 48px;
  background-image: url(../images/cya-facilities-arrow.svg);
  transition: ease 0.5s;
  border-radius: 50%;
  padding: 12px;
}
.cya-facilities-d .block-a .collapse-item__header[aria-expanded="true"] .icon-arrow {
  background-image: url(../images/cya-facilities-arrow2.svg);
}
.cya-facilities-d .block-a .collapse-item__content {
  position: relative;
  color: #1C1C14;
  font-size: .8888em;
  line-height: 175%;
}
.cya-facilities-d .block-a .collapse-item__inner {
  margin-top: 16px;
  padding-top: 16px;
  display: block;
  position: relative;
}
.cya-facilities-d .block-a .collapse-item__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #C9C7B9;
}
.cya-facilities-d .block-a .info {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
}
.cya-facilities-d .block-a .info + .info {
  border-top: 1px solid #C9C7B9;
}
.cya-facilities-d .block-a .info-header {
  width: 120px;
  display: flex;
  align-items: center;
  color: #1C1C14;
  font-weight: 500;
  line-height: 175%;
}
.cya-facilities-d .block-a .info-header img {
  margin-right: 8px;
}
.cya-facilities-d .block-a .info-content {
  width: calc(100% - 120px);
  padding-left: 16px;
  line-height: 177.778%;
  color: #48473D;
  font-weight: 500;
}

.cya-transportation {
  position: relative;
  z-index: 0;
}
.cya-transportation .popover {
  max-width: 320px;
  font-size: 1em;
  background-color: transparent;
  border: 0;
  border-radius: none;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
}
.cya-transportation .popover .popover-arrow {
  display: none;
}
.cya-transportation .popover-body {
  padding: 0;
}
.cya-transportation .block-a {
  padding: 0 0 32px;
  border-bottom: 1px solid #C9C7B9;
}
.cya-transportation .block-a .note {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  background-color: #EEECDD;
  border: 1px solid #C9C7B9;
  padding: 12px;
  font-size: .8888em;
  line-height: 150%;
}
.cya-transportation .block-a .note img {
  margin-right: 8px;
}
.cya-transportation .block-a .map {
  position: relative;
  border-radius: 4px;
  border: 1px solid #C9C7B9;
}
.cya-transportation .block-a .map > img {
  border-radius: 4px;
}
.cya-transportation .block-a .item {
  position: absolute;
  z-index: 1;
}
.cya-transportation .block-a .item:active, .cya-transportation .block-a .item:focus {
  z-index: 2;
}
@media (hover: hover) {
  .cya-transportation .block-a .item:hover {
    z-index: 2;
  }
}
.cya-transportation .block-a .btn {
  display: flex;
  align-items: center;
}
.cya-transportation .block-a .btn:active, .cya-transportation .block-a .btn:focus {
  transform: scale(1.1);
}
@media (hover: hover) {
  .cya-transportation .block-a .btn:hover {
    transform: scale(1.1);
  }
}
.cya-transportation .block-a .btn .image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FFF;
  background: #006783;
  box-shadow: 0 2.13px 4.26px 0 rgba(0, 0, 0, 0.14), 0 0 2.13px 0 rgba(0, 0, 0, 0.12);
  padding: 4px;
}
.cya-transportation .block-a .btn .image img {
  width: 100%;
}
.cya-transportation .block-a .btn .main-text {
  color: #313126;
  text-shadow: 0 0 4px #FBF9F2;
  filter: drop-shadow(0 0 4px #FBF9F2);
  font-size: 1em;
  font-weight: 500;
  line-height: 150%;
  padding-left: 5px;
}
.cya-transportation .block-a .item-1 {
  top: 52.1%;
  left: 55.4%;
}
.cya-transportation .block-a .item-2 {
  top: 53.9%;
  left: 52.4%;
}
.cya-transportation .block-a .item-2 .btn {
  display: block;
}
.cya-transportation .block-a .item-2 .main-text {
  padding-left: 0;
}
.cya-transportation .block-a .item-3 {
  top: 57.2%;
  left: 27.3%;
}
.cya-transportation .block-a .item-4 {
  top: 91.6%;
  right: 71%;
}
.cya-transportation .block-a .item-4 .btn {
  flex-direction: row-reverse;
  text-align: right;
}
.cya-transportation .block-a .item-4 .main-text {
  padding-right: 5px;
}
.cya-transportation .block-a .item-5 {
  top: 54.5%;
  right: 78.3%;
}
.cya-transportation .block-a .item-5 .btn {
  flex-direction: row-reverse;
  text-align: right;
}
.cya-transportation .block-a .item-5 .main-text {
  padding-right: 5px;
}
.cya-transportation .block-a .item-6 {
  top: 58.4%;
  left: 20.2%;
}
.cya-transportation .block-a .item-6 .btn {
  display: block;
}
.cya-transportation .block-a .item-6 .image {
  margin: 0 auto;
}
.cya-transportation .block-a .item-6 .main-text {
  padding-left: 0;
  text-align: center;
}
.cya-transportation .block-a .item-7 {
  top: 91.2%;
  left: 30.2%;
}
.cya-transportation .block-a .item-8 {
  top: 43.6%;
  left: 57.6%;
}
.cya-transportation .block-a .item-9 {
  top: 36.2%;
  left: 32%;
}
.cya-transportation .block-a .item-9 .btn {
  display: block;
}
.cya-transportation .block-a .item-9 .image {
  margin: 0 auto;
}
.cya-transportation .block-a .item-9 .main-text {
  padding-left: 0;
  text-align: center;
}
.cya-transportation .block-a .item-10 {
  top: 4.2%;
  left: 68.2%;
}
.cya-transportation .block-a .item-10 .btn {
  display: block;
}
.cya-transportation .block-a .item-10 .image {
  margin: 0 auto;
}
.cya-transportation .block-a .item-10 .main-text {
  padding-left: 0;
  text-align: center;
  margin-top: 4px;
}
.cya-transportation .block-a .item-11 {
  top: 49.3%;
  left: 21.6%;
}
.cya-transportation .block-a .item-11 .btn {
  flex-direction: column-reverse;
}
.cya-transportation .block-a .item-11 .main-text {
  padding-left: 0;
  text-align: center;
}
.cya-transportation .block-a .item-11 .image {
  width: 72px;
  height: 72px;
  padding: 8px;
}
.cya-transportation .block-a .item-12 {
  top: 59.3%;
  left: 46.2%;
}
.cya-transportation .block-a .item-12 .btn {
  display: block;
}
.cya-transportation .block-a .item-12 .image {
  width: 72px;
  height: 72px;
  padding: 8px;
  margin: 0 auto;
}
.cya-transportation .block-a .item-12 .main-text {
  padding-left: 0;
  text-align: center;
}
.cya-transportation .block-a .item-13 {
  top: 57.6%;
  right: 2%;
}
.cya-transportation .block-a .item-13 .btn {
  flex-direction: row-reverse;
  text-align: right;
}
.cya-transportation .block-a .item-13 .image {
  width: 72px;
  height: 72px;
  padding: 8px;
}
.cya-transportation .block-a .item-13 .main-text {
  padding-right: 5px;
}
.cya-transportation .block-a .l-card {
  width: 320px;
  padding: 16px 20px;
  border-radius: 4px;
  background: #F3F1E6;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
}
.cya-transportation .block-a .l-card .info-group {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: #E5E3D5;
  padding: 4px 8px;
}
.cya-transportation .block-a .l-card .info-group:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 1px;
  height: calc(100% - 8px * 2);
  background-color: #C9C7B9;
}
.cya-transportation .block-a .l-card .text {
  position: relative;
  padding-left: 24px;
}
.cya-transportation .block-a .l-card .text:before {
  content: "";
  position: absolute;
  top: calc(50% - 7px / 2);
  left: 4px;
  width: 7px;
  height: 7px;
  background: #C9C7B9;
  border-radius: 50%;
  z-index: 2;
}
.cya-transportation .block-a .l-card .text-1 {
  color: #5F5F53;
  font-size: .7777em;
  font-weight: 400;
  line-height: 171.429%;
}
.cya-transportation .block-a .l-card .text-2 {
  color: #1C1C14;
  font-weight: 500;
  line-height: 177.778%;
  margin-top: 4px;
}
.cya-transportation .block-a .l-card .text-2:before {
  background: #5F5F53;
}
.cya-transportation .block-a .l-card .text-2:after {
  content: "";
  position: absolute;
  bottom: calc(50% - 7px / 2);
  left: 7px;
  width: 1px;
  height: 100%;
  background: #C9C7B9;
}
.cya-transportation .block-a .l-card .info {
  margin: 0;
  width: 50%;
}
.cya-transportation .block-a .l-card .info:nth-child(1) {
  padding-right: 12px;
}
.cya-transportation .block-a .l-card .info:nth-child(2) {
  padding-left: 12px;
}
.cya-transportation .block-a .l-card .main-text {
  font-size: .6666em;
  color: #5F5F53;
  font-weight: 400;
  line-height: 166.667%;
}
.cya-transportation .block-a .l-card .sub-text {
  font-size: .8888em;
  color: #1C1C14;
  font-weight: 500;
  line-height: 175%;
}
.cya-transportation .block-a .group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cya-transportation .block-a .group .image {
  width: 64px;
  height: 64px;
  border-radius: 2px;
  background-color: #397F9A;
  padding: 8px;
}
.cya-transportation .block-a .group .image img {
  width: 100%;
}
.cya-transportation .block-a .group .content {
  width: calc(100% - 64px);
  padding-left: 20px;
}
.cya-transportation .block-b {
  display: flex;
  padding: 32px 0;
}
.cya-transportation .block-b .section-header {
  width: 240px;
  padding: 8px;
}
.cya-transportation .block-b .section-content {
  width: calc(100% - 240px);
  padding-left: 40px;
  margin-top: 0;
  padding-bottom: 0;
}
.cya-transportation .block-b .block-b-top {
  position: relative;
  overflow: hidden;
  padding: 16px 200px 16px 20px;
  border-radius: 4px;
  background: linear-gradient(91deg, rgba(225, 111, 85, 0) 47.67%, rgba(236, 169, 73, 0.2) 79.58%), var(--Color-NeutralVarient-95, #F3F1E6);
  margin-bottom: 16px;
}
.cya-transportation .block-b .block-b-top:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 193px;
  height: 150px;
  background-image: url(../images/cya-transportation-b2.png);
  background-size: 100% auto;
}
.cya-transportation .block-b .block-b-top .group {
  display: flex;
}
.cya-transportation .block-b .block-b-top .image {
  width: 56px;
}
.cya-transportation .block-b .block-b-top .content {
  width: calc(100% - 56px);
  padding-left: 20px;
}
.cya-transportation .block-b .block-b-top .main-text {
  color: #1C1C14;
  font-weight: 500;
  line-height: 177.778%;
}
.cya-transportation .block-b .block-b-top .sub-text {
  color: #5F5F53;
  font-size: .7777em;
  font-weight: 500;
  line-height: 171.429%;
}
.cya-transportation .block-b .block-b-top .action {
  display: flex;
  margin: -4px;
  margin-top: 16px;
}
.cya-transportation .block-b .block-b-top .btn {
  border-radius: 40px;
  border: 1px solid #C9C7B9;
  color: #5F5F53;
  text-align: center;
  font-size: .8888em;
  font-weight: 500;
  line-height: 125%;
  padding: 8px 18px;
  margin: 4px;
}
.cya-transportation .block-b .block-b-top .btn:active, .cya-transportation .block-b .block-b-top .btn:focus {
  color: #fff;
  background: #48473D;
  border-color: #48473D;
}
@media (hover: hover) {
  .cya-transportation .block-b .block-b-top .btn:hover {
    color: #fff;
    background: #48473D;
    border-color: #48473D;
  }
}
.cya-transportation .block-b .info {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
  font-size: .7777em;
  line-height: 171.429%;
  color: var(--Color-NeutralVarient-30, #48473D);
  word-wrap: break-word;
}
.cya-transportation .block-b .info-header {
  width: 96px;
  font-weight: 500;
  color: var(--Color-NeutralVarient-10, #1C1C14);
}
.cya-transportation .block-b .info-content {
  width: calc(100% - 96px);
  text-align: right;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .cya-transportation .block-a .btn .image {
    width: 5.215123859vw;
    height: 5.215123859vw;
  }
  .cya-transportation .block-a .btn .main-text {
    font-size: 1.7578125vw;
  }
  .cya-transportation .block-a .item-1 {
    top: 49.6%;
    left: 57.4%;
  }
  .cya-transportation .block-a .item-2 {
    top: 54.9%;
    left: 55%;
  }
  .cya-transportation .block-a .item-3 {
    top: 57.2%;
    left: 28.3%;
  }
  .cya-transportation .block-a .item-6 {
    top: 59.4%;
    left: 20.7%;
  }
}
@media (max-width: 767px) {
  .cya-transportation .block-a .btn .main-text {
    display: none;
  }
  .cya-transportation .block-a .btn .image {
    width: 5.215123859vw;
    height: 5.215123859vw;
  }
  .cya-transportation .block-a .item-1 {
    top: 51.1%;
    left: 57.4%;
  }
  .cya-transportation .block-a .item-2 {
    top: 54.9%;
    left: 52%;
  }
  .cya-transportation .block-a .item-3 {
    top: 57.2%;
    left: 27.3%;
  }
  .cya-transportation .block-a .item-4 {
    top: 91.6%;
    right: 71%;
  }
  .cya-transportation .block-a .item-5 {
    top: 54.5%;
    right: 78.3%;
  }
  .cya-transportation .block-a .item-6 {
    top: 58.4%;
    left: 20.2%;
  }
  .cya-transportation .block-a .item-7 {
    top: 91.2%;
    left: 30.2%;
  }
  .cya-transportation .block-a .item-8 {
    top: 43.6%;
    left: 57.6%;
  }
  .cya-transportation .block-a .item-9 {
    top: 36.2%;
    left: 32%;
  }
  .cya-transportation .block-a .item-10 {
    top: 4.2%;
    left: 68.2%;
  }
  .cya-transportation .block-a .item-11 {
    top: 49.3%;
    left: 21.6%;
  }
  .cya-transportation .block-a .item-12 {
    top: 59.3%;
    left: 46.2%;
  }
  .cya-transportation .block-a .item-13 {
    top: 57.6%;
    right: 2%;
  }
  .cya-transportation .block-b {
    display: block;
  }
  .cya-transportation .block-b .section-header {
    width: 100%;
    margin-bottom: 16px;
  }
  .cya-transportation .block-b .section-header br {
    display: none;
  }
  .cya-transportation .block-b .section-content {
    width: 100%;
    padding-left: 0;
  }
  .cya-transportation .block-b .block-b-top {
    padding: 16px 20px;
  }
  .cya-transportation .block-b .block-b-top:before {
    opacity: .5;
  }
  .cya-transportation .block-b .block-b-top .action {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .cya-transportation .block-a .btn .main-text {
    display: none;
  }
  .cya-transportation .block-a .btn .image {
    width: 6.25vw;
    height: 6.25vw;
  }
}

.cya-login {
  padding-top: 56px;
  padding-bottom: 56px;
  max-width: 512px;
  margin: 0 auto;
}
.cya-login .section-header {
  margin-bottom: 24px;
}
.cya-login .section-title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.cya-login .section-title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: 0;
}
.cya-login .section-title span {
  position: relative;
}
.cya-login .section-content {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  font-size: 1.125em;
  line-height: 177.778%;
  margin-top: 24px;
  padding-bottom: 24px;
}
.cya-login .form .form-section + .form-section {
  margin-top: 24px;
}
.cya-login .form .form-label {
  color: #313126;
  font-weight: 500;
  line-height: 175%;
  margin-bottom: 6px;
}
.cya-login .form .form-control {
  padding: 4px 20px;
  height: 40px;
  line-height: 1.5;
  font-size: 1em;
}
.cya-login .form .verification-code {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 16px;
}
.cya-login .form .verification-code .image {
  border-radius: 2px;
  border: 1px solid #C9C7B9;
  width: 96px;
  margin-right: 4px;
}
.cya-login .form .verification-code .content {
  width: calc(100% - 96px - 4px);
  display: flex;
  flex-wrap: wrap;
  margin-top: -4px;
}
.cya-login .form .verification-code .btn {
  display: flex;
  align-items: center;
  margin: 4px;
  border: 1px solid #C9C7B9;
}
.cya-login .form .verification-code .btn .icon {
  margin-right: 8px;
}
.cya-login .form .icon-reset {
  background-image: url(../images/icon-reset.svg);
}
.cya-login .form .icon-playSound {
  background-image: url(../images/icon-playSound.svg);
}
.cya-login .form .action {
  margin-top: 48px;
}
.cya-login .form .btn-primary {
  width: 100%;
  padding: 0 8px;
  height: 48px;
  font-size: 1em;
  display: block;
}

.cya-form_a {
  padding-top: 56px;
  padding-bottom: 56px;
  max-width: 688px;
  margin: 0 auto;
}
.cya-form_a .section-header {
  margin-bottom: 24px;
}
.cya-form_a .section-title {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.875em;
  line-height: 146.6666%;
  padding: 8px;
}
.cya-form_a .section-title:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: 0;
}
.cya-form_a .section-title span {
  position: relative;
}
.cya-form_a .section-content {
  color: var(--Color-NeutralVarient-10, #1C1C14);
  line-height: 177.778%;
  margin-top: 24px;
  padding-bottom: 24px;
}
.cya-form_a .top-text {
  margin-bottom: 24px;
}
.cya-form_a .form .form-section-group {
  display: flex;
  margin: -12px;
  margin-bottom: 12px;
}
.cya-form_a .form .form-section-group .form-section {
  margin: 12px;
  width: calc(280px - 12px * 2);
}
.cya-form_a .form .form-section-group .form-section + .form-section {
  margin-top: 12px;
  width: calc(100% - 280px - 12px * 2);
}
@media (max-width: 640px) {
  .cya-form_a .form .form-section-group {
    display: block;
    margin: 0 0 24px;
  }
  .cya-form_a .form .form-section-group .form-section {
    width: 100%;
    margin: 0;
  }
  .cya-form_a .form .form-section-group .form-section + .form-section {
    width: 100%;
    margin-top: 24px;
  }
}
.cya-form_a .form .form-section + .form-section {
  margin-top: 24px;
}
.cya-form_a .form .form-label {
  color: #313126;
  font-weight: 500;
  line-height: 175%;
  margin-bottom: 6px;
}
.cya-form_a .form .form-select {
  padding: 4px 20px;
  height: 40px;
  line-height: 1.5;
  font-size: 1em;
}
.cya-form_a .form .form-control {
  padding: 4px 20px;
  height: 40px;
  line-height: 1.5;
  font-size: 1em;
}
.cya-form_a .form .verification-code {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 16px;
}
.cya-form_a .form .verification-code .image {
  border-radius: 2px;
  border: 1px solid #C9C7B9;
  width: 96px;
  margin-right: 4px;
}
.cya-form_a .form .verification-code .content {
  width: calc(100% - 96px - 4px);
  display: flex;
  flex-wrap: wrap;
  margin-top: -4px;
}
.cya-form_a .form .verification-code .btn {
  display: flex;
  align-items: center;
  margin: 4px;
  border: 1px solid #C9C7B9;
}
.cya-form_a .form .verification-code .btn .icon {
  margin-right: 8px;
}
.cya-form_a .form .icon-reset {
  background-image: url(../images/icon-reset.svg);
}
.cya-form_a .form .icon-playSound {
  background-image: url(../images/icon-playSound.svg);
}
.cya-form_a .form .action {
  margin-top: 48px;
}
.cya-form_a .form .btn-primary {
  width: 100%;
  /* padding: 0 8px; */
  height: 48px;
  font-size: 1em;
  display: block;
}
.cya-form_a .results {
  border-top: 1px solid #C9C7B9;
  margin-top: 48px;
  padding-top: 56px;
}
.cya-form_a .results-header {
  position: relative;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-weight: 600;
  font-size: 1.6666em;
  line-height: 146.6666%;
  padding: 8px;
  margin-bottom: 24px;
}
.cya-form_a .results-header:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 49px;
  height: 68px;
  background-image: url(../images/cya-wing.svg);
  z-index: 0;
}
.cya-form_a .results-header span {
  position: relative;
}
.cya-form_a .info-group {
  margin-top: 40px;
}
.cya-form_a .info {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  font-size: .875em;
}
.cya-form_a .info + .info {
  border-top: 1px solid #C9C7B9;
}
.cya-form_a .info-header {
  width: 80px;
  display: flex;
  align-items: center;
  color: #1C1C14;
  font-weight: 500;
  line-height: 175%;
}
.cya-form_a .info-content {
  width: calc(100% - 80px);
  padding-left: 16px;
  line-height: 177.778%;
  color: #48473D;
}

.cya-rss .title {
  position: relative;
  color: #1C1C14;
  font-family: 'Noto Serif TC', 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  font-size: 1.3333em;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  padding-left: 20px;
}
.cya-rss .title:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px / 2);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #C9C7B9;
  transform: rotate(45deg);
}
.cya-rss ol {
  list-style: decimal;
  padding-left: 1.25em;
}
.cya-rss .list {
  margin: 20px 0;
}
.cya-rss .list a {
  display: flex;
  align-items: center;
  color: #1C1C14;
  padding: 12px 8px;
  border-bottom: 1px solid var(--Color-NeutralVarient-80, #C9C7B9);
}
.cya-rss .list a img {
  margin-right: 8px;
}

@media (max-width: 767px) {
  .API-1-1 .table thead {
    display: none;
  }
  .API-1-1 .table td {
    display: block;
    position: relative;
  }
  .API-1-1 .table td {
    height: inherit;
    min-height: 48px;
    padding-left: 120px;
  }
  .API-1-1 .table td:before {
    content: attr(data-title);
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 500;
    width: 120px;
    padding: 8px 12px;
  }

  .cya-info .box:before {
    display: none;
  }
  .cya-info .list {
    display: block;
  }
  .cya-info .item {
    padding: 24px 40px 24px 32px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .cya-info .item:before {
    display: none;
  }
  .cya-info .item .content {
    width: calc(100% - 40px);
    padding-left: 24px;
  }

  .RL-1 .item {
    width: calc(100% / 2);
  }
  .RL-1 .item:nth-child(3):before {
    display: none;
  }

  .travelers-faqs .type-filter .title {
    margin-bottom: 12px;
  }
  .travelers-faqs .nav-pills {
    margin: -8px;
  }
  .travelers-faqs .nav-link {
    padding: 8px;
    width: calc(100% / 2 - 8px * 2);
    margin: 8px;
    display: flex;
    align-items: center;
  }
  .travelers-faqs .nav-link .icon {
    width: 48px;
    height: 48px;
    margin: 0 20px 0 0;
  }
  .travelers-faqs .nav-link span {
    display: inline;
  }

  /* .dictionary .item {
    width: calc(100% - 10px * 2);
  } */

  .cya-traffic {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
  .cya-traffic__side {
    width: 100%;
    order: 2;
  }
  .cya-traffic__content {
    width: 100%;
    padding-left: 0;
    margin-bottom: 40px;
    order: 1;
  }

  .PS-a .box:before {
    display: none;
  }
  .PS-a .l-grid {
    display: block;
    padding: 16px 0;
  }
  .PS-a .l-grid__left {
    width: 100%;
  }
  .PS-a .l-grid__right {
    width: 100%;
  }
  .PS-a .l-grid__right:before {
    display: none;
  }

  .PS-b .box:before {
    display: none;
  }

  .PS-c .title {
    margin-bottom: 20px;
  }
  .PS-c .group {
    display: block;
  }
  .PS-c .group .block {
    width: 100%;
    padding: 0;
  }
  .PS-c .group .block + .block {
    margin-top: 40px;
  }
  .PS-c .group .block:before {
    display: none;
  }

  .cyc-incentives .list {
    display: block;
    margin: 0;
  }
  .cyc-incentives .list-b .item {
    width: 100%;
  }
  .cyc-incentives .item {
    width: 100%;
    margin: 0;
  }
  .cyc-incentives .item + .item {
    margin-top: 8px;
  }
}
@media (max-width: 480px) {
  .RL-1 .list {
    display: block;
  }
  .RL-1 .item {
    width: 100%;
  }
  .RL-1 .item:before {
    display: none;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}


/******無障礙 start******/

/* 初始：螢幕閱讀器可讀，視覺上隱藏 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

/* 聚焦時顯示在頁面上方（左上角） */
a.sr-only:focus {
    position: fixed; /* 固定在畫面上方 */
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: #000;
    color: #fff;
    clip: auto;
    overflow: visible;
    z-index: 10000;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    border-radius: 4px;
}

.acc-key a:focus {
    outline: 3px dashed #E60000 !important;
    outline-offset: -3px;
}

*:focus {
    outline: 3px dashed #E60000 !important;
    outline-offset: -3px;
}

input[type=text]:focus {
    background: #ffe8e8 !important;
}

.rwd_abgne_marquee a:focus {
    outline: 3px dashed #FFFF00 !important;
    outline-offset: -3px;
}

*:focus-visible {
    outline: none;
}

.header .acc-key {
    position: fixed; /* 固定在畫面上，而非 header 裡 */
    top: 10px; /* 距離視窗上方 */
    left: 13px; /* 距離視窗左側 */
    z-index: 9999; /* 確保浮在最上層 */
    background: #000; /* 背景色，方便辨識 */
    color: #fff; /* 字體顏色 */
    padding: 6px 10px; /* 增加可點擊區域 */
    text-decoration: none; /* 移除底線 */
}

.crumb .acc-key {
    position: absolute;
    left: 13px;
    z-index: 99;
    width: auto;
    border-right: none;
}

.footer .acc-key {
    position: absolute;
    left: 13px;
    z-index: 99;
}

.page .acc-key {
    display: block;
    width: 12px;
}

/******無障礙 END******/

