@charset "UTF-8";
/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 直立螢幕 ===== */
/*  ===== 橫向螢幕 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== icomoon ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
/*  ===== 圖片相關 ===== */
/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes tabsChange {
  0% {
    transform: translate(30px);
    opacity: 0;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
@keyframes bgRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(30deg);
  }
}
@media (max-width: 991.98px) {
  @keyframes bgRotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(10deg);
    }
  }
}
@keyframes gooey {
  0% {
    d: path("M97.4998 0H702V1168C702 1168 521.5 1295.5 374 1111C294.081 1011.03 322.5 781 459.499 734.5C599.385 687.02 569.5 497.5 247.499 452C78.6154 428.136 0 309.5 0 180.5C0 51.5 97.4998 0 97.4998 0Z");
  }
  100% {
    d: path("M25.4998 0H630V1168C606.5 1185 481.499 1227 387.499 1137C238.555 994.394 374.999 831 387.499 734.5C406.476 588 320.999 541 175.499 452C29.9992 363 -0.000446551 235.777 0 159.5C0.00040102 91 13.1664 39.6667 25.4998 0Z");
    transform: translate(0, -10%);
  }
}
@keyframes gooey_s {
  0% {
    d: path("M0 712.631V0.630861C126 -8.86914 370.5 88.1293 370.5 345.631C370.5 642.452 123 713.131 0 712.631Z");
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5%, 3%);
  }
  100% {
    d: path("M0 719.765V7.76449C160.5 -37.9987 434.5 133.002 289.5 320.5C192.213 446.302 443.5 573.499 0 719.765Z");
    transform: translate(-3%, 1%);
  }
}
@keyframes titleBgRotate {
  0% {
    transform: translate(-53%, -44.66%) rotate(0);
  }
  100% {
    transform: translate(-53%, -44.66%) rotate(30deg);
  }
}
@keyframes titleBgRotate-mobile {
  0% {
    transform: translate(-51.24%, -50.13%) rotate(0);
  }
  100% {
    transform: translate(-51.24%, -50.13%) rotate(30deg);
  }
}
@keyframes logo-part-01 {
  0% {
    background-position: 100%;
  }
  40% {
    background-position: 0%;
  }
  100% {
    background-position: 0%;
  }
}
@keyframes logo-part-02 {
  0% {
    transform: translate(0, 15px);
    opacity: 0;
  }
  40% {
    transform: translate(0, 15px);
    opacity: 0;
  }
  75% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes logo-part-03 {
  0% {
    transform: translate(0, 15px);
    opacity: 0;
  }
  45% {
    transform: translate(0, 15px);
    opacity: 0;
  }
  80% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/**
 * * Allows you to use retina images at various pixel densities.
 * * Examples:
 * *
 * *   +retina(/images/mypic.jpg, 2);
 * *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 * *
 * * @param  {Value}  $path               The path to the file name minus extension.
 * * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * * @param  {Value}  $extras: null       Any other `background` values to be added.
 * */
.backdrop {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  display: none;
}
.backdrop.active {
  display: block;
}

.loader-wrap {
  background-color: #FAF7F4;
  transition: 0.8s 5s ease, opacity 0.5s 3s ease;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-wrap .logo-wrapper {
  width: 240px;
}
@media (max-width: 575.98px) {
  .loader-wrap .logo-wrapper {
    width: 180px;
  }
}
.loader-wrap .logo-wrapper .img-01 {
  -webkit-mask: url(../images/logo-part-01.svg) no-repeat center;
          mask: url(../images/logo-part-01.svg) no-repeat center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: linear-gradient(to right, #222, #222 50%, rgb(220, 220, 220) 50%, rgb(220, 220, 220));
  background-size: 200%;
  animation: logo-part-01 3s ease-in-out backwards;
  width: 240px;
  height: 21.7px;
}
@media (max-width: 575.98px) {
  .loader-wrap .logo-wrapper .img-01 {
    width: 180px;
    height: 16.3px;
  }
}
.loader-wrap .logo-wrapper .img-02 {
  animation: logo-part-02 3s ease-in-out backwards;
  margin-top: 10px;
  width: 240px;
}
@media (max-width: 575.98px) {
  .loader-wrap .logo-wrapper .img-02 {
    width: 180px;
  }
}
.loader-wrap .logo-wrapper .img-03 {
  animation: logo-part-03 3s ease-in-out backwards;
  margin-top: 6px;
  width: 240px;
}
@media (max-width: 575.98px) {
  .loader-wrap .logo-wrapper .img-03 {
    width: 180px;
  }
}
.loaded .loader-wrap {
  opacity: 0;
  z-index: -100;
}

.header-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  height: 100px;
  z-index: 100;
  transition: 0.3s ease;
  opacity: 0;
}

.header-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: transform 0.3s 0.1s ease-in-out, background-color 0s ease;
  z-index: 10000;
  pointer-events: none;
  padding: 20px 0;
  mix-blend-mode: difference;
}
.header-wrap .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 1199.98px) {
  .header-wrap .container {
    max-width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .header-wrap {
    padding: 12px 0;
    transition: 0.3s ease;
  }
}

.lang-list {
  pointer-events: auto;
}

.site-nav-toggle {
  text-decoration: none;
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-block;
  cursor: pointer;
  pointer-events: auto;
}
.site-nav-toggle:active, .site-nav-toggle:hover, .site-nav-toggle:visited, .site-nav-toggle:focus {
  text-decoration: none;
  outline: 0;
}
.site-nav-toggle:before, .site-nav-toggle:after {
  content: "";
  position: absolute;
  transform-origin: center center;
  left: 50%;
  top: 15px;
  transform: translate(-50%, 0);
  width: 44.4444%;
  height: 1.5px;
  background-color: #fff;
  transition: 0.3s ease;
}
.site-nav-toggle:after {
  top: 21px;
}

@media (min-width: 1200px) {
  .sub-nav-open .header-wrap {
    mix-blend-mode: unset;
    background-color: #fff;
  }
  .sub-nav-open .header__logo {
    mix-blend-mode: difference;
  }
  .sub-nav-open .lang-list {
    mix-blend-mode: difference;
  }
  .sub-nav-open .site-nav__main-ul {
    color: #222;
  }
}

@media (min-width: 1200px) {
  .nav-fixed .header-bg {
    opacity: 1;
  }
}
@media (max-width: 1199.98px) {
  .nav-fixed .header-wrap {
    mix-blend-mode: unset;
    background-color: #383737;
  }
}

.nav-hide .header-bg {
  opacity: 0;
}
.nav-hide:not(.site-nav-open) .header-wrap {
  transform: translateY(-100%);
}

@media (max-width: 1199.98px) {
  .site-nav-open .header-wrap {
    mix-blend-mode: unset;
    background-color: #222;
  }
  .site-nav-open .site-nav-toggle:before, .site-nav-open .site-nav-toggle:after {
    top: 50%;
  }
  .site-nav-open .site-nav-toggle:before {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .site-nav-open .site-nav-toggle:after {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .site-nav-open .site-nav-wrap {
    opacity: 1;
    z-index: 9999;
    pointer-events: auto;
    visibility: visible;
  }
}

.header__logo {
  position: relative;
  pointer-events: auto;
  mix-blend-mode: difference;
}
.header__logo img {
  transition: 0.3s ease;
  width: 132px;
}
@media (min-width: 1200px) {
  .header__logo img {
    width: 218px;
  }
}

.site-nav-wrap {
  pointer-events: auto;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .site-nav-wrap {
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
  }
}
.site-nav-wrap a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.site-nav-wrap a:active, .site-nav-wrap a:hover, .site-nav-wrap a:visited, .site-nav-wrap a:focus {
  text-decoration: none;
  outline: 0;
}
@media (max-width: 1199.98px) {
  .site-nav-wrap a:not(.active) {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media (min-width: 1200px) {
  .site-nav-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
  }
}
@media (max-width: 1199.98px) {
  .site-nav-wrap {
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #383737;
    width: 100%;
    height: calc(100vh - 57.3px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    z-index: -100;
    pointer-events: none;
    transition: 0.3s ease;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 100px;
    visibility: hidden;
  }
}

.site-nav__main {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 1199.98px) {
  .site-nav__main {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .site-nav__main-ul {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    margin: 0 -20px 0;
  }
  .site-nav__main-ul > li {
    position: relative;
    pointer-events: auto;
    padding: 0 20px;
  }
  .site-nav__main-ul > li > span:first-of-type a {
    line-height: 160%;
    letter-spacing: 0.03em;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
    position: relative;
    white-space: nowrap;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .site-nav__main-ul > li > span:first-of-type a:before {
    content: "";
    position: absolute;
    width: 75px;
    height: 75px;
    background-image: url("../images/nav-bg.svg");
    background-size: contain;
    background-position: center center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-90deg);
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
    mix-blend-mode: difference;
  }
}
@media (min-width: 1200px) and (hover: hover) {
  .site-nav__main-ul > li:hover > span:first-of-type a:before {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
  .site-nav__main-ul > li [class^=icon] {
    font-size: 1.17em;
    display: none;
  }
}
@media (min-width: 1200px) {
  .site-nav__main-ul > li.has-sub-nav:before {
    content: "";
    width: 100vw;
    z-index: -1;
    position: fixed;
    left: 0;
    top: 0;
    height: 110px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }
}
@media (min-width: 1200px) {
  .site-nav__main-ul > li:hover.has-sub-nav:before {
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav__main-ul > li:hover > .site-nav__sub {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0.1s;
  }
}
@media (max-width: 1199.98px) {
  .site-nav__main-ul {
    margin-bottom: 0;
  }
  .site-nav__main-ul > li {
    transition: 0.3s ease;
  }
  .site-nav__main-ul > li.active {
    background-color: #4A4A4A;
  }
}
@media (max-width: 1199.98px) and (hover: hover) {
  .site-nav__main-ul > li > span:first-of-type:hover {
    color: #fff;
  }
}
@media (max-width: 1199.98px) {
  .site-nav__main-ul > li:not(.has-sub-nav) [class^=icon] {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .site-nav__main-ul > li.has-sub-nav {
    position: relative;
  }
  .site-nav__main-ul > li.has-sub-nav > span:first-of-type a:not([href]) {
    cursor: auto;
  }
}
@media (max-width: 1199.98px) {
  .site-nav__main-ul > li > span:first-of-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 0 20px;
    transition: 0.3s ease;
  }
}
@media (max-width: 1199.98px) {
  .site-nav__main-ul > li > span:first-of-type a {
    padding: 10px 0;
    flex: 1 1 100%;
  }
  .site-nav__main-ul > li > span:first-of-type a:not([href]) ~ [class^=icon]:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
}
@media (max-width: 1199.98px) {
  .site-nav__main-ul > li > span:first-of-type [class^=icon] {
    font-size: 24px;
    padding: 10px;
    padding-right: 0;
    cursor: pointer;
  }
}
@media (min-width: 1200px) {
  .site-nav__sub {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    position: fixed;
    width: 100vw;
    height: auto;
    left: 0;
    top: 100px;
    transition: opacity 0.3s 0.05s ease;
    background-color: rgba(252, 252, 252, 0.9);
    color: #222;
  }
}
.site-nav__sub-ul {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199.98px) {
  .site-nav__sub-ul {
    width: 100%;
    display: none;
    position: relative;
    z-index: 1;
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .site-nav__sub-ul {
    max-width: 1140px;
    padding: 40px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 1400px) {
  .site-nav__sub-ul {
    max-width: 1320px;
  }
}
@media (min-width: 1620px) {
  .site-nav__sub-ul {
    max-width: 1400px;
  }
}
.site-nav__sub-ul > li {
  display: block;
}
@media (min-width: 1200px) {
  .site-nav__sub-ul > li {
    flex: 0 0 16.6666%;
    max-width: 16.6666%;
    margin-bottom: 20px;
  }
}
.site-nav__sub-ul > li a {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .site-nav__sub-ul > li a:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .site-nav__sub-ul > li .disable {
    cursor: default;
  }
  .site-nav__sub-ul > li .disable:hover {
    opacity: 1;
  }
}
.site-nav__sub-ul > li > a {
  margin-left: -24px;
  text-indent: 24px;
}
.site-nav__sub-ul > li > a:before {
  content: "\e90b";
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  line-height: 0;
  display: inline;
  vertical-align: middle;
}
.site-nav__sub-ul > li > ul {
  padding-left: 24px;
}

@media (min-width: 1200px) {
  .sub-nav-open .site-nav__main-ul > li > span:first-of-type a {
    -webkit-text-fill-color: unset;
  }
}

.lang-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 -18px 0;
  text-transform: uppercase;
}
.lang-list li {
  padding: 0 18px;
  position: relative;
}
.lang-list li:not(:first-of-type):before {
  content: "";
  width: 1px;
  height: 18px;
  background-color: #2C4735;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
@media (max-width: 1199.98px) {
  .lang-list li:not(:first-of-type):before {
    background-color: #fff;
  }
}
.lang-list a.active {
  position: relative;
  color: #383737;
}
.lang-list a.active:before {
  content: "";
  width: 28px;
  height: 28px;
  background-color: #fff;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1200px) {
  .lang-list {
    margin-left: 3.125vw;
  }
}
@media (max-width: 1199.98px) {
  .lang-list {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
}

.lang-list {
  display: none;
}

::-moz-selection {
  background-color: #2C4735;
  color: white;
  -webkit-text-fill-color: white;
}

::selection {
  background-color: #2C4735;
  color: white;
  -webkit-text-fill-color: white;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #FAF7F4;
  color: #222;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 400;
  line-height: 160%;
}
body.loading-out {
  opacity: 0;
}

@media (max-width: 767.98px) {
  ::root {
    font-size: 14px;
  }
}

.u-border {
  border: 0.5px solid orange;
}

.u-border * {
  border: 0.5px solid orange;
}

h1 {
  font-size: 2.875rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
  letter-spacing: 0.25rem;
}

span {
  font-size: 100%;
}

p, a, li, span {
  font-size: inherit;
}

b, strong {
  font-weight: bold;
}

.font-w-medium {
  font-weight: 500;
}

.font-s1 {
  font-size: 1.875rem;
  line-height: 160%;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .font-s1 {
    font-size: 20px;
  }
}

.font-s2 {
  font-size: 1.625rem;
  line-height: 160%;
  letter-spacing: 0.03em;
  margin-bottom: 0.7692307692rem;
}
@media (max-width: 575.98px) {
  .font-s2 {
    font-size: 18px;
  }
}

.font-s3 {
  font-size: 1.25rem;
  line-height: 160%;
  letter-spacing: 0.03em;
}
@media (max-width: 575.98px) {
  .font-s3 {
    font-size: 16px;
  }
}

.font-s4 {
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.03em;
}

.font-s5, .col-form-label, .btn-icon, .btn-default-main {
  font-size: 1rem;
  line-height: 160%;
  letter-spacing: 0.03em;
}

.font-s-body, .selectric-items li, .selectric .label, .form-control, .selectric {
  font-size: 1rem;
  line-height: 180%;
  letter-spacing: 0.03em;
}

.font-s-caption-1, .calendar .event-intro, .form-note, p.form-help {
  font-size: 0.875rem;
  line-height: 180%;
  letter-spacing: 0.03em;
}

.font-s-caption-2 {
  font-size: 0.75rem;
  line-height: 160%;
  letter-spacing: 0.03em;
}

.font-en-s1 {
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
}
@media (max-width: 575.98px) {
  .font-en-s1 {
    font-size: 26px;
  }
}

.link-default, .info-list a, footer a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.link-default:active, .info-list a:active, footer a:active, .link-default:hover, .info-list a:hover, footer a:hover, .link-default:visited, .info-list a:visited, footer a:visited, .link-default:focus, .info-list a:focus, footer a:focus {
  text-decoration: none;
  outline: 0;
}
.link-default:hover, .info-list a:hover, footer a:hover {
  color: inherit;
  opacity: 0.6;
}

.list-unstyled a {
  text-decoration: none;
}
.list-unstyled a:active, .list-unstyled a:hover, .list-unstyled a:visited, .list-unstyled a:focus {
  text-decoration: none;
  outline: 0;
}

[class^=btn]:not(.btn-wrap) {
  text-decoration: none;
  box-shadow: none;
  outline: 0;
  transition: 0.3s ease;
  cursor: pointer;
}
[class^=btn]:not(.btn-wrap):active, [class^=btn]:not(.btn-wrap):hover, [class^=btn]:not(.btn-wrap):visited, [class^=btn]:not(.btn-wrap):focus {
  text-decoration: none;
  outline: 0;
}

.form-group [class^=btn]:not(.btn-wrap) {
  display: block;
  width: 100%;
}

.btn-default-main {
  padding: 8px 10px;
  text-align: center;
  background-color: #2C4735;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  min-width: 150px;
  border: 0;
}
@media (hover: hover) {
  .btn-default-main:hover {
    background-color: rgba(44, 71, 53, 0.7);
    color: #fff;
  }
}
@media (hover: none) {
  .btn-default-main:hover {
    color: #fff;
  }
}
.btn-default-main:active {
  background-color: #243a2c;
}

.btn-icon {
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 200px;
  border: 1px solid #666;
  border-radius: 3px;
  background-color: transparent;
  color: #222;
}
.btn-icon [class^=icon] {
  flex: 0 0 auto;
  font-size: 1.5em;
}
@media (hover: hover) {
  .btn-icon:hover {
    background-color: #2c4735;
    color: #fff;
  }
}
@media (hover: none) {
  .btn-icon:hover {
    color: #222;
  }
}
.btn-icon:active {
  background-color: #243a2c;
}

.btn-back {
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-size: 1.5rem;
  line-height: 100%;
  text-decoration: none;
  text-transform: uppsercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  color: #222;
  transition: 0.3s ease;
}
.btn-back:active, .btn-back:hover, .btn-back:visited, .btn-back:focus {
  text-decoration: none;
  outline: 0;
}
.btn-back span {
  margin-left: 10px;
}
.btn-back [class^=icon] {
  transition: 0.3s ease;
  font-size: 1.66em;
}
.btn-back:hover {
  color: #2C4735;
}
@media (hover: hover) {
  .btn-back:hover [class^=icon] {
    transform: translateX(-10px);
  }
}

@media (min-width: 1620px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 2.5rem;
}
@media (max-width: 575.98px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 40px;
  }
}

[class^=col] {
  --bs-gutter-x: 2.5rem;
}
@media (max-width: 575.98px) {
  [class^=col] {
    --bs-gutter-x: 40px;
  }
}

.row {
  --bs-gutter-x: 2.5rem;
}
@media (max-width: 575.98px) {
  .row {
    --bs-gutter-x: 40px;
  }
}

.touch-show, .touch-hide {
  display: none;
}

@media (hover: none) {
  .touch-show {
    display: block;
  }
}
@media (hover: hover) {
  .touch-hide {
    display: block;
  }
}
.pagination {
  display: block;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 150px;
}
.pagination li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 2.8px;
}
@media (max-width: 575.98px) {
  .pagination li {
    padding: 0;
  }
}
.pagination [class^=icon] {
  font-size: 24px;
}
.pagination a {
  text-decoration: none;
  display: block;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-radius: 50%;
  transition: 0.3s ease;
  color: #222;
}
.pagination a:active, .pagination a:hover, .pagination a:visited, .pagination a:focus {
  text-decoration: none;
  outline: 0;
}
@media (max-width: 374.98px) {
  .pagination a {
    width: 20px;
    height: 20px;
  }
}
.pagination a:not(.active):hover {
  color: #2C4735;
  opacity: 0.6;
}
.pagination a.active {
  background-color: #2C4735;
  color: #fff;
}

.form-control.datepicker, .datepicker.selectric {
  background-color: #fff;
  cursor: pointer;
}

.form-control, .selectric {
  padding: 6px 30px 6px 10px;
  border-radius: 3px;
  border: 1px solid #aaa;
  transition: 0.3s ease;
  position: relative;
  outline: 0;
  background-color: #fff;
}
.form-control:focus, .selectric:focus {
  box-shadow: 0px 0px 10px 1px rgba(111, 123, 101, 0.25);
  border: 1px solid #222;
}
.form-control.form-help, .form-help.selectric {
  border: 1px solid #FC3D13;
  color: #FC3D13;
}
.form-control::-moz-placeholder, .selectric::-moz-placeholder {
  color: #aaa;
}
.form-control::placeholder, .selectric::placeholder {
  color: #aaa;
}
.form-control ~ [class^=icon], .selectric ~ [class^=icon] {
  position: absolute;
  font-size: 24px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.selectric {
  background-color: colors;
}
.selectric .label {
  height: auto;
  color: #222;
  margin: 0;
  font-size: 16px;
}
.selectric:after {
  content: "\e909";
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  font-size: 24px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.selectric .button {
  display: none;
}

.is-placeholder .selectric .label {
  color: #aaa;
}

.selectric-items {
  border: 0;
  margin-top: -15px;
  transition: 0.3s ease;
  display: block;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
.selectric-items li {
  color: #222;
  background-color: #fff;
  transition: 0.3s ease;
}
.selectric-items li:hover {
  background-color: #FAF7F4;
}
.selectric-items li.highlighted {
  background-color: #fff;
  color: #2C4735;
  font-weight: 500;
}

.selectric-open .selectric {
  border-color: #222;
}
.selectric-open .selectric-items {
  margin-top: 5px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

textarea {
  height: 150px;
  resize: none;
}

.form-group {
  margin-bottom: 35px;
  transition: margin 0.3s ease;
}
.form-group:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .form-group {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
  }
}

.form-note, p.form-help {
  color: #666;
  margin-bottom: -25px;
}
.form-note:before, p.form-help:before {
  content: "*";
}
.form-note.red, p.form-help.red {
  color: #FC3D13;
}

.form-note ~ p.form-help {
  margin-top: 25px;
}

p.form-help {
  color: #FC3D13;
}

.form-group.form-help .selectric {
  border-color: #FC3D13;
}

.col-form-field {
  position: relative;
}
@media (min-width: 768px) {
  .col-form-field {
    flex: 0 1 100%;
  }
}

.col-form-label {
  padding: 0;
}
.col-form-label span {
  mix-blend-mode: difference;
  color: #FAF7F4;
  background: #FAF7F4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.col-form-label span:after {
  content: "：";
}
.col-form-label.sty-required span:before {
  content: "*";
}
@media (min-width: 768px) {
  .col-form-label {
    flex: 0 0 153px;
    text-align: right;
    padding-top: 8px;
    padding-right: 6px;
  }
}
@media (max-width: 767.98px) {
  .col-form-label {
    margin-bottom: 6px;
  }
}

.input-clear-wrap {
  position: relative;
}

.show-clear ~ .input-clear {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.input-clear {
  opacity: 0;
  transition: 0.3s ease;
}

.air-datepicker {
  --adp-day-name-color: #2C4735;
  --adp-cell-background-color-selected: #2C4735;
  --adp-color-current-date: #2C4735;
  --adp-cell-background-color-selected-hover: #2C4735;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.air-datepicker-cell {
  transition: 0.3s ease;
}

.air-datepicker-cell.-current- {
  font-weight: bold;
}

.border-hr, .cooperation-list__item > div, .movie-list__item, .article-list__item > div:last-of-type {
  border-bottom: 1px solid #aaa;
}

.border-hr-top {
  border-top: 1px solid #aaa;
}

.article-system-wrap {
  margin-bottom: -80px;
}
@media (max-width: 991.98px) {
  .article-system-wrap {
    margin-bottom: -30px;
  }
}

.nas-article {
  font-weight: 400;
  font-size: 16px;
  padding: 0;
}
@media (max-width: 767.98px) {
  .nas-article {
    font-size: 15px;
  }
}
.nas-article h1:not([class]), .nas-article h2:not([class]), .nas-article h3:not([class]), .nas-article h4:not([class]), .nas-article h5:not([class]), .nas-article h6:not([class]) {
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.03em;
}
.nas-article h1:not([class]) {
  font-size: 1.75rem;
  margin-bottom: 0.7857142857rem;
}
.nas-article h2:not([class]) {
  font-size: 1.625rem;
  margin-bottom: 0.7692307692rem;
}
.nas-article h3:not([class]) {
  font-size: 20px;
  margin-bottom: 0.75rem;
}
.nas-article h4:not([class]), .nas-article h5:not([class]), .nas-article h6:not([class]) {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
.nas-article p {
  font-size: 1rem;
  line-height: 180%;
  letter-spacing: 0.03em;
  text-align: justify;
}
.nas-article p:not(:last-of-type) {
  margin-bottom: 0.625em;
}
.nas-article ul, .nas-article ol {
  -webkit-padding-start: 1.5em;
          padding-inline-start: 1.5em;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .nas-article ul, .nas-article ol {
    margin-bottom: 8px;
  }
}
.nas-article li {
  font-size: 1rem;
  line-height: 180%;
  letter-spacing: 0.03em;
}
.nas-article ul {
  padding-left: 1.5em;
}
.nas-article ul li {
  list-style-type: none;
  position: relative;
}
.nas-article ul li:before {
  content: "";
  position: absolute;
  left: -1em;
  top: 1em;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #222;
}
.nas-article table {
  border-collapse: inherit;
}
.nas-article tbody, .nas-article td, .nas-article tfoot, .nas-article th, .nas-article thead, .nas-article tr {
  border-width: inherit;
}

.nas-article {
  width: 100%;
  padding: 0;
}
.nas-article p, .nas-article img {
  display: block;
}
.nas-article p:last-of-type, .nas-article img:last-of-type {
  margin-bottom: 0;
}
.nas-article a {
  color: #2C4735;
  text-decoration: none;
  transition: 0.3s ease;
}
.nas-article a:active, .nas-article a:hover, .nas-article a:visited, .nas-article a:focus {
  text-decoration: none;
  outline: 0;
}
@media (hover: hover) {
  .nas-article a:hover {
    color: #2C4735;
    opacity: 0.7;
  }
}

.nsdi-article-system {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .nsdi-article-system {
    margin-bottom: 30px;
  }
}
.nsdi-article-system .row {
  flex: 1 1 auto;
}

.nas-image-wrapper {
  align-self: flex-start;
}

.nas-image-wrapper, .nas-article-wrapper {
  justify-content: flex-start;
}

@media (max-width: 991.98px) {
  .nas-image-wrapper ~ .nas-article-wrapper .nas-article {
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .nas-image-wrapper ~ .nas-article-wrapper .nas-article {
    margin-top: 12px;
  }
}

@media (max-width: 991.98px) {
  .nas-image-wrapper ~ .nas-image-wrapper {
    margin-top: 20px;
  }
}

.nsdi-article-system {
  overflow: visible;
}

[data-page=single-article-page] .nsdi-article-system, [data-page=multiple-article-page] .nsdi-article-system {
  overflow: auto;
}
[data-page=single-article-page] .nsdi-article-system .nas-wrapper, [data-page=multiple-article-page] .nsdi-article-system .nas-wrapper {
  overflow-x: hidden;
  overflow-y: hidden;
}
[data-page=single-article-page] .nsdi-article-system .nas-article, [data-page=multiple-article-page] .nsdi-article-system .nas-article {
  mix-blend-mode: difference;
  transform: translate3d(0, 0, 0);
  background: #222;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: invert(1);
}
[data-page=single-article-page] .nsdi-article-system .nas-article a, [data-page=multiple-article-page] .nsdi-article-system .nas-article a {
  mix-blend-mode: difference;
  transform: translate3d(0, 0, 0);
  background: #FAF7F4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: invert(1);
}
[data-page=single-article-page] .nsdi-article-system .nas-article a img, [data-page=multiple-article-page] .nsdi-article-system .nas-article a img {
  filter: invert(1);
}
@media (min-width: 992px) {
  [data-page=single-article-page] .nsdi-article-system#T4, [data-page=multiple-article-page] .nsdi-article-system#T4 {
    margin-bottom: 40px;
  }
}

[data-page=multiple-article-page] .pages-header {
  padding-bottom: 40px;
}
[data-page=multiple-article-page] .pages-header .pages-title {
  color: #222;
  margin: 20px 0 15px;
}
[data-page=multiple-article-page] .pages-header .date {
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-size: 1rem;
  line-height: 160%;
  letter-spacing: 0.03em;
  color: #666;
}
[data-page=multiple-article-page] .pages-header .tag {
  color: #2C4735;
  margin-bottom: 0;
}
[data-page=multiple-article-page] .pages-footer {
  margin-top: 80px;
  padding-top: 80px;
}

[data-page=form-page] .editor-section {
  padding-bottom: 60px;
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 992px) {
  [data-page=form-page] .article-system-wrap {
    margin-bottom: -40px;
  }
}
@media (min-width: 992px) {
  [data-page=form-page] .article-system-wrap .nsdi-article-system {
    margin-bottom: 40px;
  }
}
[data-page=form-page] .section-title {
  mix-blend-mode: difference;
  transform: translate3d(0, 0, 0);
  color: #FAF7F4;
  background: #FAF7F4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 1400px) {
  [data-page=form-page] .main-container {
    position: relative;
  }
  [data-page=form-page] .pages-header {
    margin-bottom: 0;
  }
  [data-page=form-page] .pages-header .pages-title {
    margin-bottom: -50vh;
  }
}

.index-title {
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-style: italic;
  font-weight: 400;
  font-size: 60px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (max-width: 575.98px) {
  .index-title {
    font-size: 40px;
  }
}

.index-title-cn {
  font-weight: 500;
  font-size: 26px;
  line-height: 160%;
  letter-spacing: 0.03em;
}
@media (max-width: 575.98px) {
  .index-title-cn {
    font-size: 18px;
  }
}

[data-page=home] .main-container {
  padding-bottom: 150px;
  overflow-x: hidden;
}
@media (max-width: 575.98px) {
  [data-page=home] .main-container {
    padding-bottom: 75px;
  }
}
[data-page=home] .kv-swiper {
  margin-top: 110px;
  width: 180%;
  margin-left: -40%;
  overflow: visible;
}
[data-page=home] .kv-swiper .swiper-slide {
  transform: scale(0.5);
  transition: 0.5s ease;
  position: relative;
}
[data-page=home] .kv-swiper .swiper-slide img.center {
  opacity: 0;
}
[data-page=home] .kv-swiper .swiper-slide-next {
  transform: scale(1);
}
[data-page=home] .kv-swiper .img-wrapper {
  width: 100%;
  position: relative;
  padding-top: 65.38%;
}
[data-page=home] .kv-swiper .img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: 0.5s ease;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
[data-page=home] .kv-swiper .img-wrapper img.aside {
  -webkit-clip-path: polygon(0 12%, 100% 0, 100% 88%, 0% 100%);
          clip-path: polygon(0 12%, 100% 0, 100% 88%, 0% 100%);
}
[data-page=home] .kv-swiper .img-wrapper img.center {
  -webkit-clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 88%);
          clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 88%);
}
[data-page=home] .kv-swiper .text-wrapper {
  color: #2C4735;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  opacity: 0;
  transition: 0.3s ease;
}
@media (max-width: 1199.98px) {
  [data-page=home] .kv-swiper .text-wrapper {
    bottom: -20px;
  }
}
@media (max-width: 767.98px) {
  [data-page=home] .kv-swiper .text-wrapper {
    bottom: -36px;
  }
}
[data-page=home] .kv-swiper .text-wrapper .number {
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0.03em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 575.98px) {
  [data-page=home] .kv-swiper .text-wrapper .number {
    font-size: 16px;
  }
}
[data-page=home] .kv-swiper .text-wrapper .number::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #2C4735;
}
[data-page=home] .kv-swiper .text-wrapper .title {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.03em;
  margin: 0;
}
@media (max-width: 575.98px) {
  [data-page=home] .kv-swiper .text-wrapper .title {
    font-size: 13px;
  }
}
[data-page=home] .kv-swiper .swiper-slide-next img.aside {
  opacity: 0;
}
[data-page=home] .kv-swiper .swiper-slide-next img.center {
  opacity: 1;
}
[data-page=home] .kv-swiper .swiper-slide-next .text-wrapper {
  opacity: 1;
}
[data-page=home] .kv-swiper .swiper-button-next::after, [data-page=home] .kv-swiper .swiper-button-prev::after {
  display: none;
}
[data-page=home] .kv-swiper .swiper-button-next, [data-page=home] .kv-swiper .swiper-button-prev {
  mix-blend-mode: difference;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  color: #fff;
}
[data-page=home] .kv-swiper .swiper-button-next .circle, [data-page=home] .kv-swiper .swiper-button-prev .circle {
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.3s ease;
}
@media (max-width: 767.98px) {
  [data-page=home] .kv-swiper .swiper-button-next .circle, [data-page=home] .kv-swiper .swiper-button-prev .circle {
    width: 40px;
    height: 40px;
  }
}
[data-page=home] .kv-swiper .swiper-button-next .text-block, [data-page=home] .kv-swiper .swiper-button-prev .text-block {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}
[data-page=home] .kv-swiper .swiper-button-next .icon-arrow_line_next, [data-page=home] .kv-swiper .swiper-button-next .icon-arrow_line_prev, [data-page=home] .kv-swiper .swiper-button-prev .icon-arrow_line_next, [data-page=home] .kv-swiper .swiper-button-prev .icon-arrow_line_prev {
  font-size: 40px;
}
@media (max-width: 767.98px) {
  [data-page=home] .kv-swiper .swiper-button-next .icon-arrow_line_next, [data-page=home] .kv-swiper .swiper-button-next .icon-arrow_line_prev, [data-page=home] .kv-swiper .swiper-button-prev .icon-arrow_line_next, [data-page=home] .kv-swiper .swiper-button-prev .icon-arrow_line_prev {
    font-size: 30px;
  }
}
[data-page=home] .kv-swiper .swiper-button-next .text, [data-page=home] .kv-swiper .swiper-button-prev .text {
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.03em;
  white-space: nowrap;
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  [data-page=home] .kv-swiper .swiper-button-next .text, [data-page=home] .kv-swiper .swiper-button-prev .text {
    font-size: 13px;
  }
}
[data-page=home] .kv-swiper .swiper-button-next {
  right: 25.5%;
}
@media (max-width: 1199.98px) {
  [data-page=home] .kv-swiper .swiper-button-next {
    right: 27%;
  }
}
@media (max-width: 767.98px) {
  [data-page=home] .kv-swiper .swiper-button-next {
    right: 29%;
  }
}
@media (max-width: 575.98px) {
  [data-page=home] .kv-swiper .swiper-button-next {
    right: 30%;
  }
}
[data-page=home] .kv-swiper .swiper-button-next .text-block {
  left: 40px;
}
@media (max-width: 767.98px) {
  [data-page=home] .kv-swiper .swiper-button-next .text-block {
    left: 25px;
  }
}
[data-page=home] .kv-swiper .swiper-button-next:hover .circle {
  transform: scale(0.766);
}
[data-page=home] .kv-swiper .swiper-button-next:hover .text-block {
  left: 50px;
}
@media (max-width: 767.98px) {
  [data-page=home] .kv-swiper .swiper-button-next:hover .text-block {
    left: 35px;
  }
}
[data-page=home] .kv-swiper .swiper-button-prev {
  left: 25.5%;
}
@media (max-width: 1199.98px) {
  [data-page=home] .kv-swiper .swiper-button-prev {
    right: 27%;
  }
}
@media (max-width: 767.98px) {
  [data-page=home] .kv-swiper .swiper-button-prev {
    right: 29%;
  }
}
@media (max-width: 575.98px) {
  [data-page=home] .kv-swiper .swiper-button-prev {
    right: 30%;
  }
}
[data-page=home] .kv-swiper .swiper-button-prev .text-block {
  right: 40px;
}
@media (max-width: 767.98px) {
  [data-page=home] .kv-swiper .swiper-button-prev .text-block {
    right: 25px;
  }
}
[data-page=home] .kv-swiper .swiper-button-prev:hover .circle {
  transform: scale(0.766);
}
[data-page=home] .kv-swiper .swiper-button-prev:hover .text-block {
  right: 50px;
}
@media (max-width: 767.98px) {
  [data-page=home] .kv-swiper .swiper-button-prev:hover .text-block {
    right: 35px;
  }
}
[data-page=home] .marquee {
  margin-top: 115px;
}
[data-page=home] .marquee .marquee-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 575.98px) {
  [data-page=home] .marquee .marquee-wrapper {
    gap: 30px;
  }
}
[data-page=home] .marquee .text {
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-style: italic;
  font-weight: 400;
  font-size: 84px;
  line-height: 100%;
  white-space: nowrap;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  [data-page=home] .marquee .text {
    font-size: 60px;
  }
}
@media (max-width: 575.98px) {
  [data-page=home] .marquee .text {
    font-size: 40px;
  }
}
[data-page=home] .marquee img {
  height: 120px;
  width: auto;
}
@media (max-width: 991.98px) {
  [data-page=home] .marquee img {
    height: 100px;
  }
}
@media (max-width: 991.98px) {
  [data-page=home] .marquee img {
    height: 70px;
  }
}
[data-page=home] .section-about .image-block {
  position: relative;
  margin-top: 150px;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-about .image-block {
    margin-top: 80px;
  }
}
[data-page=home] .section-about .image-block .img-wrapper {
  aspect-ratio: 1.5;
  transition: 2s ease;
}
[data-page=home] .section-about .image-block .img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
[data-page=home] .section-about .image-block .img-wrapper:nth-of-type(1) {
  width: 43%;
  margin: auto;
}
[data-page=home] .section-about .image-block .img-wrapper:nth-of-type(2) {
  width: 30.4%;
  position: absolute;
  top: 58.3%;
  left: 0;
}
[data-page=home] .section-about .image-block .img-wrapper:nth-of-type(3) {
  width: 29.9%;
  position: absolute;
  top: 82.3%;
  right: 0;
  z-index: -1;
}
[data-page=home] .section-about .image-block.in-view .img-wrapper:nth-of-type(1) {
  transform: scale(0.835);
}
[data-page=home] .section-about .image-block.in-view .img-wrapper:nth-of-type(2) {
  transform: scale(0.723);
  top: 43.42%;
  left: 14%;
}
[data-page=home] .section-about .image-block.in-view .img-wrapper:nth-of-type(3) {
  transform: scale(0.773);
  top: 56.112%;
  right: 14%;
}
[data-page=home] .section-about .index-title {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-about .index-title {
    margin-top: 40px;
  }
}
[data-page=home] .section-about .about-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 240%;
  text-align: center;
  letter-spacing: 0.03em;
  margin-top: 30px;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-about .about-content {
    font-size: 13px;
    margin: auto;
    margin-top: 20px;
    width: 85%;
  }
}
[data-page=home] .section-good-news {
  margin-top: 150px;
  display: flex;
}
@media (max-width: 991.98px) {
  [data-page=home] .section-good-news {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news {
    margin-top: 75px;
  }
}
[data-page=home] .section-good-news .title-arrow-block {
  margin-left: 14.58%;
}
@media (max-width: 991.98px) {
  [data-page=home] .section-good-news .title-arrow-block {
    display: flex;
    gap: 60px;
    align-items: end;
  }
}
[data-page=home] .section-good-news .title-arrow-block .index-title {
  margin-bottom: 30px;
}
[data-page=home] .section-good-news .title-arrow-block .index-title-cn {
  margin-bottom: 25px;
}
[data-page=home] .section-good-news .title-arrow-block .swiper-arrow-wrapper {
  display: flex;
  gap: 20px;
  font-size: 40px;
  color: #666;
}
@media (max-width: 991.98px) {
  [data-page=home] .section-good-news .title-arrow-block .swiper-arrow-wrapper {
    margin-bottom: 25px;
  }
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .title-arrow-block .swiper-arrow-wrapper {
    font-size: 30px;
  }
}
[data-page=home] .section-good-news .good-news-swiper {
  width: 67.2%;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 991.98px) {
  [data-page=home] .section-good-news .good-news-swiper {
    width: 85.42%;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .relative {
  position: relative;
  border-bottom: 1px solid #aaa;
  padding-bottom: 30px;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .relative {
    padding-bottom: 15px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .img-wrapper {
  position: relative;
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .arrow-wrapper {
  width: 125px;
  height: 83px;
  background: #2C4735;
  -webkit-clip-path: polygon(63% 0, 100% 27%, 63% 100%, 0 47%);
          clip-path: polygon(63% 0, 100% 27%, 63% 100%, 0 47%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(30%, -50%);
  transition: 0.3s ease;
  opacity: 0;
  z-index: 10;
}
@media (max-width: 1199.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .arrow-wrapper {
    width: 87.5px;
    height: 58.1px;
  }
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .arrow-wrapper {
    width: 62.5px;
    height: 41.5px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .arrow-wrapper .icon-arrow_line_next {
  font-size: 40px;
  color: #fff;
  padding-left: 10%;
}
@media (max-width: 1199.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .arrow-wrapper .icon-arrow_line_next {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .arrow-wrapper .icon-arrow_line_next {
    font-size: 20px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .date-block {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  line-height: 100%;
  letter-spacing: 0.03em;
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .date-block .date {
  font-weight: 700;
  font-size: 36px;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .date-block .date {
    font-size: 32px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .date-block .year {
  font-weight: 400;
  font-size: 12px;
  color: #666;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .date-block .year {
    font-size: 11px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .date-block .month {
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .date-block .month {
    font-size: 15px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .divided-line {
  width: 15px;
  border-bottom: 1px solid #222;
  margin: 25px 0;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .divided-line {
    margin: 20px 0;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .title {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.03em;
  color: #222;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .title {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .content {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.03em;
  color: #666;
  margin-bottom: 15px;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .content {
    font-size: 12px;
    margin-bottom: 7px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .tag {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.03em;
  color: #2C4735;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide .tag {
    font-size: 12px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide.type-01 {
  width: 42.1% !important;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide.type-01 {
    width: 60% !important;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide.type-01 .img-wrapper {
  aspect-ratio: 1.67;
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide.type-02 {
  width: 33.1% !important;
  margin-top: 60px;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide.type-02 {
    width: 47% !important;
    margin-top: 30px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide.type-02 .img-wrapper {
  aspect-ratio: 1.31;
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide.type-03 {
  width: 33.1% !important;
  margin-top: 30px;
}
@media (max-width: 575.98px) {
  [data-page=home] .section-good-news .good-news-swiper .swiper-slide.type-03 {
    width: 47% !important;
    margin-top: 15px;
  }
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide.type-03 .img-wrapper {
  aspect-ratio: 1.31;
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .relative:hover img {
  opacity: 0.7;
}
[data-page=home] .section-good-news .good-news-swiper .swiper-slide .relative:hover .arrow-wrapper {
  opacity: 1;
}

.gooey-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -2;
}
.gooey-bg svg {
  position: absolute;
}
.gooey-bg svg path {
  transition: 0.3s ease;
  fill: white;
}
.gooey-bg svg:nth-of-type(1) {
  right: 0;
  top: 0;
  width: 32%;
}
@media (max-width: 767.98px) {
  .gooey-bg svg:nth-of-type(1) {
    width: 53.33%;
  }
}
.gooey-bg svg:nth-of-type(1) path {
  animation: gooey infinite 10s ease-in-out alternate-reverse;
}
.gooey-bg svg:nth-of-type(2) {
  width: 19.5%;
  left: 0;
  bottom: 0;
  transform: translateY(30%);
}
@media (max-width: 767.98px) {
  .gooey-bg svg:nth-of-type(2) {
    width: 45%;
  }
}
.gooey-bg svg:nth-of-type(2) path {
  animation: gooey_s infinite 7s ease-in-out alternate-reverse;
}

.pages .main-container {
  padding-top: 22.6vh;
  padding-bottom: 15vh;
}
@media (max-width: 575.98px) {
  .pages .main-container {
    padding-top: 80px;
  }
}

.pages-header {
  margin-bottom: 60px;
  position: relative;
}
@media (min-width: 1200px) {
  .pages-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
  }
  .pages-header > div {
    flex: 0 1 100%;
  }
}

.pages-body {
  position: relative;
}

.pages-header-bg {
  position: absolute;
  width: 1208px;
  aspect-ratio: 1208/717;
  left: 0;
  top: 0;
  z-index: -1;
  transform: translate(-53%, -44.66%);
  animation: titleBgRotate infinite 8s ease-in-out alternate;
}
@media (max-width: 575.98px) {
  .pages-header-bg {
    width: 605px;
    transform: translate(-51.24%, -50.13%);
    animation: titleBgRotate-mobile infinite 8s ease-in-out alternate;
  }
}
.pages-header-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: relative;
  transform-origin: center center;
  transition: 0.3s ease;
}

[data-page=form-page] .pages-header-bg {
  left: 20px;
}
@media (min-width: 576px) {
  [data-page=form-page] .pages-header-bg {
    left: calc((100% - 540px + 40px) / 2);
  }
}
@media (min-width: 768px) {
  [data-page=form-page] .pages-header-bg {
    left: calc((100% - 720px + 40px) / 2);
  }
}
@media (min-width: 992px) {
  [data-page=form-page] .pages-header-bg {
    left: calc((100% - 960px + 40px) / 2);
  }
}
@media (min-width: 1200px) {
  [data-page=form-page] .pages-header-bg {
    left: calc((100% - 1140px + 40px) / 2);
  }
}
@media (min-width: 1400px) {
  [data-page=form-page] .pages-header-bg {
    left: calc((100% - 1320px + 40px) / 2);
  }
}
@media (min-width: 1620px) {
  [data-page=form-page] .pages-header-bg {
    left: calc((100% - 1400px + 40px) / 2);
  }
}

.pages-title {
  color: #fff;
  margin-bottom: 0;
  min-width: 300px;
}
.pages-title span {
  display: block;
}
.pages-title span:first-of-type {
  margin-bottom: 30px;
}
@media (max-width: 575.98px) {
  .pages-title span:first-of-type {
    margin-bottom: 10px;
  }
}

@media (max-width: 991.98px) {
  .aside-nav {
    margin-bottom: 30px;
    position: sticky;
    top: 15px;
    z-index: 1000;
  }
}
@media (min-width: 992px) {
  .aside-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .aside-nav ul li {
    max-width: 250px;
  }
}
.aside-nav a {
  display: block;
  padding: 10px 42px;
  transition: 0.3s ease;
  position: relative;
  white-space: nowrap;
  color: #222;
  color: #FAF7F4;
  mix-blend-mode: difference;
  transform: translate3d(0, 0, 0);
  white-space: normal;
  text-align: center;
  background: #FAF7F4;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.aside-nav a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2C4735;
  background-color: #FAF7F4;
  mix-blend-mode: difference;
  opacity: 0;
  transition: 0.3s ease;
}
.aside-nav a:hover {
  color: #222;
  color: #FAF7F4;
}
@media (hover: hover) {
  .aside-nav a:hover {
    opacity: 0.7;
  }
}
.aside-nav .active a:after {
  opacity: 1;
}

.hover-img-scale .img {
  overflow: hidden;
}
.hover-img-scale img {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .hover-img-scale:hover img {
    transform: scale(1.1);
  }
}

.hover-img-opacity img {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .hover-img-opacity:hover img {
    opacity: 0.7;
  }
}

.hover-img-arrow .img {
  position: relative;
}
.hover-img-arrow .img:after {
  content: "\e903";
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  width: 125px;
  aspect-ratio: 125/83;
  background-image: url("../images/arrow-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-size: 40px;
  line-height: 83px;
  padding-left: 55px;
  z-index: 1;
  right: -30px;
  top: 50%;
  transform: translate(-10px, -50%);
  transition: 0.3s ease;
  opacity: 0;
}
@media (max-width: 767.98px) {
  .hover-img-arrow .img:after {
    width: 100px;
    right: -15px;
    line-height: 66px;
    padding-left: 47px;
    font-size: 30px;
  }
}
@media (hover: hover) {
  .hover-img-arrow:hover .img:after {
    opacity: 1;
    transform: translate(0px, -50%);
  }
}

.section-title {
  margin-bottom: 40px;
}

.form-page-registration .pages-body {
  display: none;
}
.form-page-registration .air-datepicker .air-datepicker-cell:not(.-disabled-) {
  font-weight: 700;
}

.form-page-reservation .pages-body {
  display: none;
}

[data-page=article-list] .main-container {
  padding-bottom: 0;
}

.article-list {
  margin: 0 -10px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .article-list {
    margin: 0 -20px;
  }
}
@media (min-width: 992px) {
  .article-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-top: 40px;
  }
}
.article-list > div {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .article-list > div {
    padding: 0 20px;
    max-width: 100%;
    margin-bottom: 0;
  }
  .article-list > div:first-of-type {
    margin-top: -40px;
    grid-area: 1/1/3/3;
  }
  .article-list > div:nth-of-type(even) {
    margin-top: 40px;
  }
  .article-list > div:nth-of-type(4), .article-list > div:nth-of-type(5) {
    margin-bottom: 0;
  }
  .article-list > div:not(:first-of-type) .description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .article-list > div:first-of-type .article-list__item > div:last-of-type {
    padding-bottom: 64px;
  }
  .article-list > div:first-of-type .article-list__item .title {
    margin-bottom: 10px;
  }
  .article-list > div:first-of-type .article-list__item .description {
    margin-bottom: 15px;
  }
  .article-list > div:first-of-type .article-list__item .img {
    margin-bottom: 30px;
  }
  .article-list > div:first-of-type .article-list__item .date {
    margin-bottom: 25px;
    font-size: 12px;
    display: block;
    padding-top: 3px;
    padding-bottom: 25px;
    position: relative;
  }
  .article-list > div:first-of-type .article-list__item .date:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    background-color: #222;
    left: 0;
    bottom: 0;
  }
  .article-list > div:first-of-type .article-list__item .date span {
    display: block;
    margin-right: 0;
    line-height: 1;
  }
  .article-list > div:first-of-type .article-list__item .date span:not(:nth-of-type(2)) {
    color: #222;
  }
  .article-list > div:first-of-type .article-list__item .date > span:first-of-type {
    font-weight: 700;
    font-size: 3em;
    float: left;
    margin-right: 10px;
    margin-top: -3px;
  }
  .article-list > div:first-of-type .article-list__item .date > span:last-of-type {
    font-size: 1.5em;
  }
}
.article-list .img {
  width: 100%;
  aspect-ratio: 660/396;
  margin-bottom: 15px;
}
.article-list img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.article-list .title {
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
}
.article-list .description {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}
.article-list .tag {
  line-height: 180%;
  color: #2C4735;
}
.article-list .date {
  color: #666;
  margin-bottom: 10px;
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
.article-list .date span {
  margin-right: 4px;
}
.article-list .date span:first-of-type {
  order: 2;
}
.article-list .date span:nth-of-type(2) {
  order: 3;
}
.article-list__item {
  position: relative;
  height: 100%;
}
.article-list__item > div {
  width: 100%;
}
.article-list__item > div:last-of-type {
  padding-bottom: 15px;
}

.outbound-list {
  margin: 0 -10px -40px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .outbound-list {
    margin: 0 -20px -40px;
  }
}
.outbound-list > div {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .outbound-list > div {
    padding: 0 20px;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  .outbound-list > div {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.outbound-list__item {
  position: relative;
}
.outbound-list__item .img {
  width: 100%;
  background-color: #fff;
  margin-bottom: 15px;
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.05));
  position: relative;
  padding-top: 60%;
}
.outbound-list__item img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.outbound-list [class^=icon] {
  color: #666;
  margin-left: 10px;
  font-size: 24px;
}
.outbound-list .title {
  display: inline-flex;
}

.row-list__item {
  padding: 27px 0;
}
@media (max-width: 767.98px) {
  .row-list__item {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row-list__item > div {
    padding: 5px 0;
  }
}
@media (min-width: 768px) {
  .row-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .row-list__item > div {
    flex: 0 0 30%;
    max-width: 30%;
    padding: 0 3.125vw;
  }
  .row-list__item > div:nth-of-type(3) {
    flex: 0 1 100%;
    max-width: 100%;
    padding: 0 3.645vw;
  }
}
.row-list__item:nth-of-type(odd) {
  background-color: #FAF7F4;
}
.row-list__item > div:first-of-type > span:not(:last-of-type) {
  margin-right: 6px;
}

[data-page=movie-showings] .main-contaienr {
  overflow: hidden;
}
[data-page=movie-showings] .pages-header {
  margin-bottom: 90px;
}
@media (min-width: 576px) {
  [data-page=movie-showings] .pages-header {
    margin-bottom: 226px;
  }
}

@media (max-width: 991.98px) {
  .calendar-swiper {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.calendar {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 992px) {
  .calendar {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.calendar .is-today .calendar__head {
  position: relative;
  color: #fff;
}
.calendar .is-today .calendar__head:after {
  color: #222;
}
.calendar .is-today .calendar__head:before {
  content: "";
  width: 130px;
  aspect-ratio: 130/60;
  background-image: url("../images/today-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: -1;
}
@media (max-width: 1399.98px) {
  .calendar .is-today .calendar__head:before {
    width: 110px;
  }
}
@media (max-width: 767.98px) {
  .calendar .is-today .calendar__head:before {
    width: 90px;
    left: -10px;
  }
}
.calendar__head {
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  padding-bottom: 20px;
  position: relative;
}
@media (min-width: 992px) {
  .calendar__head {
    pointer-events: none;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 991.98px) {
  .calendar__head {
    padding-bottom: 15px;
    cursor: pointer;
  }
  .calendar__head:after {
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e914";
    font-size: 24px;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(0);
    transition: 0.3s ease;
  }
}
.calendar__head span:nth-of-type(1) {
  font-size: 40px;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-weight: 700;
}
@media (max-width: 1399.98px) {
  .calendar__head span:nth-of-type(1) {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .calendar__head span:nth-of-type(1) {
    font-size: 24px;
  }
}
.calendar__head span:nth-of-type(2) {
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.03em;
  margin-left: 10px;
  text-transform: uppercase;
}
@media (max-width: 1399.98px) {
  .calendar__head span:nth-of-type(2) {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .calendar__head span:nth-of-type(2) {
    font-size: 12px;
    margin-left: 5px;
  }
}
@media (max-width: 991.98px) {
  .calendar__body {
    display: none;
  }
}
.calendar__item {
  margin-bottom: 20px;
}
.calendar__item.not-current-month {
  opacity: 0.5;
}
@media (max-width: 991.98px) {
  .calendar__item {
    border-bottom: 1px solid #aaa;
  }
  .calendar__item.active .calendar__head:after {
    content: "\e915";
    transform: rotate(180deg);
  }
}
@media (min-width: 992px) {
  .calendar__item {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
    padding: 10px;
    border-right: 1px solid #aaa;
    margin-bottom: 40px;
    position: relative;
  }
  .calendar__item:after {
    content: "";
    position: absolute;
    width: calc(100% - 20px);
    height: 1px;
    background-color: #aaa;
    left: 10px;
    bottom: -20px;
  }
}
.calendar .event {
  position: relative;
  transition: 0.3s ease;
}
@media (min-width: 992px) {
  .calendar .event {
    padding: 5px 10px;
    border-radius: 3px;
  }
}
@media (min-width: 992px) and (hover: hover) {
  .calendar .event:hover {
    background-color: #fff;
    box-shadow: 0px 0px 10px 1px rgba(111, 123, 101, 0.25);
  }
}
@media (max-width: 991.98px) {
  .calendar .event {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #aaa;
    margin-bottom: 15px;
  }
}
.calendar .event-intro {
  padding-left: 10px;
  color: #666;
}
.calendar .event-intro > div:first-of-type span:not(:last-of-type) {
  margin-right: 5px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  margin-bottom: 60px;
  padding-top: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 991.98px) {
  .calendar-header {
    z-index: 2;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #aaa;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .calendar-header:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #FAF7F4;
    z-index: -1;
    opacity: 0;
    transition: 0.2s ease;
  }
  .calendar-header.sticky:before {
    opacity: 1;
  }
}

.calendar-title .month-en {
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-size: 3.75rem;
  letter-spacing: 0.03em;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-bottom: 0.1666666667rem;
}
@media (max-width: 575.98px) {
  .calendar-title .month-en {
    font-size: 40px;
  }
}

.calendar-swiper-nav {
  font-size: 40px;
  color: #666;
  transition: color 0.3s ease;
}
.calendar-swiper-nav:not(:last-of-type) {
  margin-right: 16px;
}
@media (max-width: 575.98px) {
  .calendar-swiper-nav {
    font-size: 30px;
  }
  .calendar-swiper-nav:not(:last-of-type) {
    margin-right: 11px;
  }
}
@media (hover: hover) {
  .calendar-swiper-nav:hover {
    color: #2C4735;
  }
}

.movie-news-header {
  margin-bottom: 60px;
  padding-bottom: 80px;
}
.movie-news-header .img {
  width: 100%;
  aspect-ratio: 777/437;
}
.movie-news-header img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.movie-news-header p:last-of-type {
  margin-bottom: 0;
}

.movie-list {
  margin: 0 -10px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
@media (min-width: 992px) {
  .movie-list {
    margin: 0 -20px;
  }
}
.movie-list > div {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .movie-list > div {
    padding: 0 20px;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  .movie-list > div {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 1400px) {
  .movie-list > div {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.movie-list__item {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.movie-list__item > div {
  width: 100%;
}
.movie-list__item > div:last-of-type {
  padding-bottom: 30px;
}
.movie-list__item .date {
  margin-top: 10px;
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-size: 0.875rem;
  line-height: 180%;
  letter-spacing: 0.03em;
  color: #666;
}
.movie-list__item .img {
  width: 100%;
  position: relative;
  padding-top: 100%;
}
.movie-list__item .img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.movie-list__item .info {
  padding: 15px 0 30px;
}
.movie-list__item .tag {
  color: #2C4735;
}
.movie-list__item .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}

[data-page=movie-news] .main-container {
  padding-bottom: 0;
}
[data-page=movie-news] .aside-nav {
  margin-bottom: 30px;
}
[data-page=movie-news] .aside-nav ul {
  display: block;
}
[data-page=movie-news] .aside-nav ul li {
  max-width: 100%;
}
@media (min-width: 992px) {
  [data-page=movie-news] .movie-news-header .article-system-wrap {
    margin-bottom: -30px;
  }
}

[data-page=movie-news-page] .main-container {
  padding-bottom: 60px;
}
[data-page=movie-news-page] .recommend-swiper {
  margin-right: -30px;
  padding-right: 30px;
}
@media (max-width: 575.98px) {
  [data-page=movie-news-page] .recommend-swiper {
    margin-right: -15px;
    padding-right: 15px;
  }
}
[data-page=movie-news-page] .recommend-swiper .title {
  font-size: 16px;
}
[data-page=movie-news-page] .recommend-swiper .tag {
  font-size: 14px;
}
[data-page=movie-news-page] .recommend-swiper .date {
  margin-top: 5px;
}
[data-page=movie-news-page] .recommend-swiper .info {
  padding: 10px 0;
}
[data-page=movie-news-page] .recommend-swiper .movie-list__item > div:last-of-type {
  padding-bottom: 20px;
}
[data-page=movie-news-page] .recommend-swiper .swiper-slide {
  height: auto;
}
[data-page=movie-news-page] section {
  padding: 60px 0;
}
[data-page=movie-news-page] .editor-section {
  padding-bottom: 120px;
}
[data-page=movie-news-page] .purchase-section {
  background-color: #fff;
}
@media (max-width: 1399.98px) {
  [data-page=movie-news-page] .purchase-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row;
    margin-bottom: 40px;
  }
  [data-page=movie-news-page] .purchase-section .section-header > div:last-of-type {
    flex-shrink: 0;
  }
  [data-page=movie-news-page] .purchase-section .section-header .section-title {
    margin-bottom: 0;
  }
}
[data-page=movie-news-page] .top-section {
  padding-bottom: 60px;
}
[data-page=movie-news-page] .top-section__header {
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  [data-page=movie-news-page] .top-section__header {
    margin-top: 40px;
  }
}
[data-page=movie-news-page] .top-section .date {
  color: #666;
  font-family: "Bodoni Moda", serif, "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  letter-spacing: 0.03em;
  line-height: 160%;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
[data-page=movie-news-page] .top-section .title {
  margin-bottom: 15px;
}
[data-page=movie-news-page] .top-section .tag {
  color: #2C4735;
  font-size: 0.875rem;
  line-height: 180%;
  letter-spacing: 0.03em;
}

.alert-message {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  background-color: rgba(34, 34, 34, 0.8);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s ease;
}
.alert-message.active {
  opacity: 1;
}
.alert-message > div:not(:last-of-type) {
  margin-bottom: 10px;
}
.alert-message [class^=icon] {
  font-size: 24px;
}

[data-page=cooperation-list] .pagination {
  margin-bottom: 0;
}

.cooperation-list {
  margin: 0 -10px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cooperation-list {
    margin: 0 -20px;
  }
}
@media (min-width: 1620px) {
  .cooperation-list {
    margin: 0 -51.5px;
  }
}
.cooperation-list > div {
  flex: 0 0 50%;
  max-width: 583px;
  padding: 0 10px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cooperation-list > div {
    padding: 0 20px;
    margin-bottom: 0px;
  }
  .cooperation-list > div:nth-of-type(even) {
    margin-top: 80px;
  }
}
@media (min-width: 1620px) {
  .cooperation-list > div {
    padding: 0 51.5px;
  }
}
.cooperation-list .img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
}
.cooperation-list img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.cooperation-list .title {
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
}
@media (max-width: 767.98px) {
  .cooperation-list .title {
    margin-bottom: 15px;
  }
}
.cooperation-list .description {
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-align: left;
}
.cooperation-list .tag {
  color: #2C4735;
}
@media (max-width: 767.98px) {
  .cooperation-list .tag {
    margin-top: 15px;
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .cooperation-list .tag {
    color: #fff;
    position: absolute;
    left: -30px;
    top: -96px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .cooperation-list .tag:before {
    content: "";
    position: relative;
    width: 136px;
    aspect-ratio: 136/123;
    background-image: url("../images/tag-bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transform-origin: center center;
    z-index: 0;
    transition: transform 0.3s ease;
  }
  .cooperation-list .tag span {
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: -8px;
  }
}
@media (min-width: 768px) {
  .cooperation-list .info {
    padding-left: 85px;
    position: relative;
  }
}
.cooperation-list__item {
  position: relative;
  height: 100%;
  padding-left: 30px;
}
@media (max-width: 991.98px) {
  .cooperation-list__item {
    padding-left: 0;
  }
  .cooperation-list__item > div {
    height: 100%;
  }
}
@media (hover: hover) {
  .cooperation-list__item:hover .tag:before {
    transform: rotate(30deg);
  }
}
.cooperation-list__item > div {
  width: 100%;
  padding-bottom: 40px;
}
@media (max-width: 767.98px) {
  .cooperation-list__item > div {
    padding-bottom: 20px;
  }
}

[data-page=visit] .info-list {
  margin-bottom: 20px;
}
[data-page=visit] .pages-header {
  margin-bottom: 90px;
}
@media (min-width: 576px) {
  [data-page=visit] .pages-header {
    margin-bottom: 22.6vh;
  }
}
@media (min-width: 1400px) {
  [data-page=visit] .pages-header {
    margin-bottom: 266px;
  }
}
[data-page=visit] .pages-body section {
  padding: 60px 0;
}
[data-page=visit] .pages-body section:first-of-type {
  padding-top: 0;
}
[data-page=visit] .pages-body section:last-of-type {
  padding-bottom: 0;
}
[data-page=visit] .pages-body section:not(:last-of-type) {
  position: relative;
}
[data-page=visit] .pages-body section:not(:last-of-type):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  width: calc(100% - 2.5rem);
  height: 1px;
  background-color: #aaa;
}
@media (max-width: 575.98px) {
  [data-page=visit] .pages-body section:not(:last-of-type):after {
    left: 20px;
    width: calc(100% - 40px);
  }
}
[data-page=visit] .location-item:not(:last-of-type) {
  margin-bottom: 40px;
}
[data-page=visit] .location-item__title {
  margin-bottom: 10px;
}
[data-page=visit] .traffic {
  padding-top: 10px;
}
[data-page=visit] .visit-section {
  position: relative;
}
@media (max-width: 1399.98px) {
  [data-page=visit] .visit-section {
    align-items: center;
  }
}
@media (min-width: 1400px) {
  [data-page=visit] .visit-section__img {
    position: absolute;
    bottom: 60px;
    right: 0;
  }
}
@media (max-width: 991.98px) {
  [data-page=visit] .visit-section__img {
    margin-bottom: 60px;
  }
}
@media (max-width: 575.98px) {
  [data-page=visit] .visit-section__img {
    margin-bottom: 40px;
  }
}
[data-page=visit] .visit-section .info-list a {
  background: #222;
  -webkit-background-clip: text;
}

@media (max-width: 991.98px) {
  .traffic-item {
    position: relative;
  }
  .traffic-item:not(:last-of-type) {
    margin-bottom: 60px;
  }
  .traffic-item:not(:last-of-type):after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #aaa;
    bottom: -30px;
    left: 0;
  }
}
@media (min-width: 992px) {
  .traffic-item {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
  }
  .traffic-item:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .traffic-item > div {
    flex: 0 1 100%;
  }
  .traffic-item > div:not(.no-shrink) {
    padding: 0 10px;
  }
  .traffic-item > div.no-shrink {
    flex: 0 0 160px;
  }
  .traffic-item > div.no-shrink-text {
    flex: 0 0 253px;
  }
}
@media (min-width: 992px) {
  .traffic-item__row {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
  }
  .traffic-item__row > div:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  .traffic-item__row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
  }
  .traffic-item__row > div:not(:last-of-type) {
    margin-right: 20px;
  }
  .traffic-item__row.no-shrink-text > div:not(:last-of-type) {
    margin-right: 5px;
  }
}
.traffic-item__col {
  flex: 0 1 100%;
}
@media (min-width: 992px) {
  .traffic-item__col {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: row;
  }
  .traffic-item__col > div {
    width: 100%;
  }
}
.traffic-item__col.s-col-5 {
  flex: 0 1 50%;
}
@media (max-width: 991.98px) {
  .traffic-item__col.align-items-start {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
  .traffic-item__col.align-items-start > div {
    width: 100%;
  }
  .traffic-item__col.align-items-start > div:nth-of-type(1) {
    flex: 0 1 100%;
  }
  .traffic-item__col.align-items-start > div:nth-of-type(2) {
    flex: 0 0 auto;
  }
}
.traffic-item__card {
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #aaa;
  padding: 14px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.traffic-item__card.s-main-color {
  background-color: #2C4735;
  color: #fff;
  border-color: #2C4735;
}
.traffic-item__card [class^=icon] {
  font-size: 40px;
  margin-bottom: 5px;
}
.traffic-item__card .icon-traffic8::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("../images/traffic8.svg");
  margin: auto;
}
.traffic-item__note {
  color: #666;
  padding-top: 5px;
}
@media (min-width: 992px) {
  .traffic-item__note {
    margin-top: -20px;
    margin-bottom: 20px;
    width: 160px;
  }
}
.traffic-item__info {
  color: #666;
  padding: 0px 10px 5px;
  position: relative;
}
.traffic-item__info:before, .traffic-item__info:after {
  content: "";
  position: absolute;
}
.traffic-item__info:before {
  background-color: #aaa;
}
.traffic-item__info:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #aaa;
}
@media (min-width: 992px) {
  .traffic-item__info {
    margin-bottom: 20px;
  }
  .traffic-item__info:before {
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
  }
  .traffic-item__info:after {
    right: -1px;
    bottom: -3px;
  }
}
@media (min-width: 1400px) {
  .traffic-item__info {
    margin-bottom: 35px;
  }
  .traffic-item__info.mb-tiny {
    margin-bottom: 20px;
    padding-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .traffic-item__info {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 10px;
    height: 100%;
  }
  .traffic-item__info:before, .traffic-item__info:after {
    bottom: 15px;
  }
  .traffic-item__info:before, .traffic-item__info:after {
    left: 50%;
  }
  .traffic-item__info:before {
    width: 1px;
    height: 40px;
  }
  .traffic-item__info:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 3px 0 3px;
    border-color: #aaa transparent transparent transparent;
    transform: translateX(-2.5px);
  }
}
.traffic-item__info-category {
  padding-bottom: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.traffic-item__info-category:before, .traffic-item__info-category:after {
  display: none;
}
@media (min-width: 992px) {
  .traffic-item__info-category {
    max-width: 252px;
    padding-left: 0;
  }
  .traffic-item__info-category > div {
    width: 100%;
  }
  .traffic-item__info-category .traffic-item__card {
    order: 1;
    margin-bottom: 5px;
  }
  .traffic-item__info-category > div:first-of-type {
    order: 2;
  }
  .traffic-item__info-category ~ .traffic-item__info {
    height: auto;
    padding-top: 15px;
  }
}
@media (max-width: 991.98px) {
  .traffic-item__info-category {
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
    height: auto;
  }
  .traffic-item__info-category ~ .traffic-item__info {
    height: auto;
  }
  .traffic-item__info-category > div {
    width: 100%;
  }
}
.traffic-item__info-category .traffic-item__card {
  height: auto;
  color: #222;
}
@media (max-width: 991.98px) {
  .traffic-item__info-category .traffic-item__card {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 10px;
  }
}

footer {
  color: #fff;
  position: relative;
  z-index: 0;
}
.footer-body {
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .footer-body {
    background-color: #222;
    padding: 50px 0;
  }
}
.footer-body a {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-body span {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-body__col {
  position: relative;
}
@media (min-width: 1200px) {
  .footer-body__col {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer-body__col:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    width: 100vw;
    height: 100%;
    background-color: #222;
  }
  .footer-body__col:nth-of-type(1):before {
    left: -40px;
  }
  .footer-body__col:nth-of-type(2) {
    padding-bottom: 71px;
  }
  .footer-body__col:nth-of-type(2):before {
    right: 40px;
  }
}
.footer-body .info-list {
  margin-top: 20px;
}

.footer-foot {
  position: relative;
  background-color: rgba(102, 102, 102, 0.3);
}
.footer-foot:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #222;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.footer-foot [class^=font] {
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-foot a {
  background: rgba(255, 255, 255, 0.5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}
.footer-foot .container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-foot .container > div {
  padding: 10px 0;
}
@media (min-width: 768px) {
  .footer-foot .container > div:first-of-type {
    margin-right: 20px;
    flex: 0 0 auto;
  }
}
@media (min-width: 1400px) {
  .footer-foot .container > div:first-of-type {
    margin-right: 40px;
  }
}
@media (min-width: 768px) {
  .footer-foot .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    padding-right: 118px;
  }
}

.info-list a {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.info-list > div {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
.info-list > div > span:first-of-type {
  flex: 0 0 auto;
}
.info-list > div > span:last-of-type {
  flex: 0 1 100%;
}

.footer__nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -7.5px -15px;
}
@media (max-width: 1199.98px) {
  .footer__nav ul {
    margin-bottom: 20px;
  }
}
.footer__nav li {
  padding: 0 7.5px;
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .footer__nav li {
    flex: 0 0 50%;
  }
}

.to-top-btn {
  background-color: #222;
}
@media (min-width: 768px) {
  .to-top-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
  }
}
@media (min-width: 1400px) {
  .to-top-btn {
    padding-right: 5.2vw;
  }
}

.to-top {
  background-color: #2C4735;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 40px;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .to-top {
    padding: 20px;
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .to-top {
    height: 100%;
    aspect-ratio: 1/1;
  }
}

.social-links ul {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  margin: 0 -7.5px;
}
.social-links li {
  padding: 0 7.5px;
}
.social-links a {
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
}
.social-links img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}/*# sourceMappingURL=style.css.map */