@charset "UTF-8";
/**
 * * 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.
 * */
/**
 * * 往上適應
 * * 引用方式: +media-up($breakpoint-value)
 * */
/**
 * * 往上適應
 * * 引用方式: +media-up-num(自訂數值)
 * */
/**
 * * 往下適應
 * * 引用方式: +media-down($breakpoint-value)
 * */
/**
 * * 往下適應
 * * 引用方式: +media-up-num(自訂數值)
 * */
/**
 * * 範圍內適應
 * * 引用方式: +media-between($lower-breakpoint, $upper-breakpoint)
 * */
/**
 * * 引用方式: +lh(15,22) 前面放 line-height 的 px 值, 後面放 font-size 的 px 值（計算）
 * */
/**
 * * 引用方式: +ls(15,22) 前面放 letter-spacing 的 px 值, 後面放 font-size 的 px 值（計算）
 * */
/*  ===== firefox font weight bold 統一設定為 normal (firefox 在小字為粗體的時候會過粗) ===== */
/**
 * * 引用方式: +gradient(180deg,#fff,4%,#eee,92%)
 * */
/**
 * * margin
 * * 引用方式: +mb(15,22) 前面放 margin 的 px 值, 後面放 font-size 的 px 值
 * */
/**
 * * padding
 * * 引用方式: +pb(15,22) 前面放 padding 的 px 值, 後面放 font-size 的 px 值
 * */
.container {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1400px) {
  .container {
    max-width: 100%;
    padding-right: 12.5vw;
    padding-left: 12.5vw;
  }
}

.row {
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 576px) {
  .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.row > * {
  padding-right: 10px;
  padding-left: 10px;
}
@media (min-width: 576px) {
  .row > * {
    padding-right: 20px;
    padding-left: 20px;
  }
}

*:focus, *:active, *:visited,
*::before:focus,
*::before:active,
*::before:visited,
*::after:focus,
*::after:active,
*::after:visited {
  outline: none !important;
  box-shadow: none !important;
}

html.is-hidden {
  overflow: hidden;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

body {
  color: #5E5E5E;
  line-height: 150%;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.8px;
  background-color: #F2F2F2;
  overflow-x: hidden;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body::-webkit-scrollbar-track {
  background-color: transparent;
}
body::-webkit-scrollbar-thumb {
  background-color: transparent;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
body::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
body.is-hidden {
  overflow: hidden;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #5E5E5E;
  text-decoration: none;
  transition: all ease 400ms;
}
a:hover {
  color: #5E5E5E;
}
a:active, a:hover, a:visited, a:focus {
  text-decoration: none;
  outline: 0;
  transition: all ease 400ms;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  outline: 0;
  cursor: pointer;
  transition: all ease 400ms;
}
button:active, button:hover, button:visited, button:focus {
  outline: 0;
  transition: all ease 400ms;
}

ul, ol {
  padding: 0;
  margin-bottom: 0;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 0;
}

p, label {
  margin-bottom: 0;
}

input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: transparent;
  border: none;
  outline: 0;
}
input:active, input:hover, input:visited, input:focus, select:active, select:hover, select:visited, select:focus, textarea:active, textarea:hover, textarea:visited, textarea:focus {
  outline: 0;
}

input[type=submit], [type=date], [type=checkbox] {
  cursor: pointer;
  transition: all ease 400ms;
}

::-moz-placeholder {
  color: #F2F2F2;
}

::placeholder {
  color: #F2F2F2;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

.u-link-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.u-pointer {
  cursor: pointer;
}

.u-img-cover {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.u-img-contain {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.u-bg-cover {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.u-flex-1 {
  flex: 1;
}

@media (hover: hover) {
  .u-hover-opacity:hover {
    opacity: 0.5;
    transition: all linear 300ms;
  }
}

.u-fw-bold {
  font-weight: bold;
}

.u-fw-normal {
  font-weight: normal;
}

.u-fr {
  font-size: 1.5rem;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 35px;
  height: 69px;
  transition: all ease 400ms;
}
@media (min-width: 768px) {
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    width: 64px;
    height: 98px;
  }
}
@media (min-width: 1620px) {
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    width: 74px;
    height: 108px;
  }
}
.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
  background-color: #52ACCB;
  transition: all ease 400ms;
}
.swiper .swiper-button-next:focus, .swiper .swiper-button-next:focus-visible,
.swiper .swiper-button-prev:focus,
.swiper .swiper-button-prev:focus-visible {
  outline: none;
  border: none;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  content: "";
  width: 15px;
  height: 49px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images/icon/icon-arrow-swiper-left.svg");
}
@media (min-width: 768px) {
  .swiper .swiper-button-next::after,
  .swiper .swiper-button-prev::after {
    width: 25px;
    height: 59px;
  }
}
@media (min-width: 1620px) {
  .swiper .swiper-button-next::after,
  .swiper .swiper-button-prev::after {
    width: 34px;
    height: 68px;
  }
}
.swiper .swiper-button-prev {
  left: 0;
}
.swiper .swiper-button-next {
  right: 0;
}
.swiper .swiper-button-next::after {
  transform: rotate(180deg);
}
.swiper .swiper-pagination {
  cursor: pointer;
  bottom: 20px;
}
.swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid #FEFEFE;
  opacity: 1;
  margin: 0 3px !important;
}
@media (min-width: 768px) {
  .swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}
.swiper .swiper-pagination-bullet:focus, .swiper .swiper-pagination-bullet:focus-visible {
  outline: none;
  border: none;
}
.swiper .swiper-pagination-bullet-active {
  background-color: #FEFEFE;
}

[class^=icon-] {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: all ease 400ms;
}
[class^=icon-]::before {
  font-size: 1.5rem;
}

.modal-dialog {
  width: 100%;
  max-width: calc(100% - 40px);
  height: 100%;
  margin: 20px auto;
  pointer-events: initial;
}
@media (min-width: 576px) {
  .modal-dialog {
    margin: 0 auto;
  }
}
@media (min-width: 1620px) {
  .modal-dialog {
    max-width: calc(100% - 20.5729166667vw);
  }
}

.modal-content {
  border-radius: 10px;
  border: 1px solid rgba(82, 172, 203, 0.4);
  background-color: #F2F2F2;
  box-shadow: 0px 4px 20px 0px rgba(84, 65, 55, 0.2);
}

.modal-header {
  border: none;
}

.modal-body {
  position: relative;
}

.btn-close {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 10px;
  right: 10px;
  background: none;
  opacity: 1;
  padding: 0;
  z-index: 1055;
}
@media (min-width: 768px) {
  .btn-close {
    width: 24px;
    height: 24px;
    top: 18px;
    right: 16px;
  }
}
@media (min-width: 992px) {
  .btn-close {
    width: 32px;
    height: 32px;
    top: 32px;
    right: 32px;
  }
}
.btn-close:focus {
  box-shadow: none;
}
.btn-close [class^=icon-] {
  width: 100%;
  height: 100%;
}
.btn-close [class^=icon-]::before {
  color: #52ACCB;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .btn-close [class^=icon-]::before {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .btn-close [class^=icon-]::before {
    font-size: 2rem;
  }
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button:not(.collapsed) {
  color: currentColor;
  box-shadow: none;
  background-color: transparent;
}
.accordion-button:not(.collapsed) .c-btn.c-btn-primary {
  background-color: #52ACCB;
}
.accordion-button:not(.collapsed) .c-btn.c-btn-primary [class^=icon-] {
  transform: rotate(180deg);
}

.accordion-button {
  background-color: transparent;
  padding: 0;
}
@media (hover: hover) {
  .accordion-button:hover .c-btn.c-btn-primary {
    background-color: #52ACCB;
  }
}
.accordion-button::after {
  display: none;
}

.accordion-body {
  border-radius: 0;
  color: #5E5E5E;
  padding: 24px 27px 21px 27px;
}
@media (min-width: 992px) {
  .accordion-body {
    border-bottom: 1px solid rgba(82, 172, 203, 0.4);
    padding: 0 99px 63px 99px;
  }
}
.accordion-body ul, .accordion-body ol {
  line-height: 150%;
  padding-left: 1.5rem;
}
.accordion-body ul {
  list-style: initial;
}
.accordion-body ul li {
  margin-bottom: 4px;
}
.accordion-body ol {
  list-style: auto;
}

.accordion-item {
  background-color: transparent;
  border-bottom: 1px solid #F2F2F2;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .accordion-item {
    margin-bottom: 0;
  }
}
.accordion-item:first-child .accordion-button {
  border-top: 1px solid #F2F2F2;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-item:last-child .accordion-button {
  border-bottom: 1px solid #F2F2F2;
}

.spinner {
  display: flex;
  justify-content: center;
  margin: 16px 0;
  opacity: 0;
  transition: all ease 400ms;
}
.spinner.is-active {
  opacity: 1;
  transition: all ease 400ms;
}

.spinner-border {
  border: 0.25em solid #ABABAB;
  border-right-color: transparent;
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .c-pagination {
    margin-top: 80px;
  }
}
.c-pagination [class^=icon-]::before {
  color: #52ACCB;
}
.c-pagination__list {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.c-pagination__list__item {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  border: 1px solid #52ACCB;
  overflow: hidden;
  transition: all ease 400ms;
}
.c-pagination__list__item.is-active {
  background-color: #52ACCB;
}
.c-pagination__list__item.is-active .item__link {
  color: #FEFEFE;
}
@media (hover: hover) {
  .c-pagination__list__item:hover {
    background-color: rgba(82, 172, 203, 0.4);
    border-color: transparent;
    transition: all ease 400ms;
  }
  .c-pagination__list__item:hover .item__link {
    color: #5E5E5E;
  }
}
.c-pagination__list__item .item__link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.65px;
  color: #52ACCB;
}

.c-btn {
  width: 100%;
  max-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 10px;
  font-size: 0.875rem;
  letter-spacing: 0.7px;
  line-height: 160%;
  padding: 15px 10px 15px 20px;
  transition: all ease 400ms;
}
.c-btn:hover {
  transition: all ease 400ms;
}
.c-btn:hover > * {
  transition: all ease 400ms;
}
.c-btn > * {
  transition: all ease 400ms;
}
.c-btn.c-btn-primary {
  background-color: #5E5E5E;
  color: #FEFEFE;
}
@media (hover: hover) {
  .c-btn.c-btn-primary:hover {
    background-color: #52ACCB;
  }
}
.c-btn.c-btn-primary [class^=icon-]::before {
  color: #FEFEFE;
}
.c-btn.c-btn-white {
  background-color: #FEFEFE;
  color: #52ACCB;
}
@media (hover: hover) {
  .c-btn.c-btn-white:hover {
    background-color: #52ACCB;
    color: #FEFEFE;
  }
  .c-btn.c-btn-white:hover [class^=icon-]::before {
    color: #FEFEFE;
  }
}
.c-btn.c-btn-white [class^=icon-]::before {
  color: #52ACCB;
}
.c-btn.c-btn-transparent {
  background-color: transparent;
  color: #FEFEFE;
}
@media (hover: hover) {
  .c-btn.c-btn-transparent:hover {
    background-color: #52ACCB;
    color: #FEFEFE;
  }
  .c-btn.c-btn-transparent:hover [class^=icon-]::before {
    color: #FEFEFE;
  }
}
.c-btn.c-btn-transparent [class^=icon-]::before {
  color: #FEFEFE;
}
@media (hover: hover) {
  .c-btn.c-btn-hover-right:hover .c-btn-text {
    transform: translateX(10px);
  }
  .c-btn.c-btn-hover-right:hover [class^=icon-] {
    transform: translateX(5px);
  }
}
@media (hover: hover) {
  .c-btn.c-btn-hover-left:hover > * {
    transform: translateX(-5px);
  }
}

.m-news {
  position: relative;
}
.m-news__list {
  display: flex;
  flex-direction: column;
}
.m-news__list__item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  color: #5E5E5E;
  border-bottom: 1px solid rgba(82, 172, 203, 0.4);
  padding: 20px 0;
  transition: all ease 400ms;
}
@media (min-width: 992px) {
  .m-news__list__item {
    border-bottom: none;
    padding: 56px 0;
  }
}
@media (hover: hover) {
  .m-news__list__item:hover {
    background-color: #52ACCB;
    color: #FEFEFE;
    transition: all ease 400ms;
  }
}
.m-news__list__item .item__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 992px) {
  .m-news__list__item .item__content {
    flex-direction: row;
    gap: 120px;
  }
}
.m-news__list__item .item__content__date {
  display: flex;
  flex-shrink: 0;
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  font-weight: 500;
}
@media (min-width: 992px) {
  .m-news__list__item .item__content__date {
    font-size: 1.275rem;
    letter-spacing: 1.02px;
    line-height: 160%;
  }
}
.m-news__list__item .item__content__text {
  font-size: 0.95625rem;
  letter-spacing: 0.765px;
  line-height: 150%;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}
@media (min-width: 992px) {
  .m-news__list__item .item__content__text {
    font-size: 1.275rem;
    letter-spacing: 1.02px;
    line-height: 160%;
  }
}

.l-nav {
  width: 100%;
  background-color: #4C4C4C;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 8px 0;
  z-index: 1040;
  transition: all ease 400ms;
}
@media (min-width: 1200px) {
  .l-nav {
    padding: 30px 0;
  }
}
.l-nav.is-active .l-nav__menu {
  opacity: 1;
  pointer-events: auto;
  transition: all ease 400ms;
}
.l-nav.is-active .l-nav__ham__open {
  opacity: 0;
  pointer-events: none;
}
.l-nav.is-active .l-nav__ham__close {
  opacity: 1;
  pointer-events: auto;
}
.l-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.l-nav__logo {
  width: 147px;
  height: 26px;
  position: relative;
  flex-shrink: 0;
  color: #FEFEFE;
  font-size: 1rem;
  letter-spacing: 0.8px;
  font-weight: 500;
  line-height: 160%;
  white-space: nowrap;
  transition: all ease 400ms;
}
@media (min-width: 1200px) {
  .l-nav__logo {
    width: 202px;
    height: 35px;
    font-size: 1.375rem;
    letter-spacing: 1.1px;
  }
}
.l-nav__menu {
  width: calc(100% - 20px);
  height: calc(100vh - 32px - (var(--nav-h, 0)));
  height: calc(var(--vh, 1vh) * 100 - 32px - (var(--nav-h, 0)));
  background-color: #4C4C4C;
  z-index: 1045;
  position: absolute;
  top: 100%;
  left: 50%;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 4px 20px 0px rgba(84, 65, 55, 0.2);
  transform: translateX(-50%);
  border-top: 1px solid #ABABAB;
  opacity: 0;
  pointer-events: none;
  padding: 60px 0;
  transition: all ease 400ms;
}
@media (min-width: 1200px) {
  .l-nav__menu {
    position: static;
    background-color: transparent;
    width: auto;
    height: auto;
    top: auto;
    left: auto;
    border-radius: 0;
    box-shadow: none;
    border-top: none;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    padding: 0;
  }
}
.l-nav__menu__list {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-nav__menu__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.l-nav__menu__list::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.l-nav__menu__list::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
.l-nav__menu__list::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
@media (min-width: 1200px) {
  .l-nav__menu__list {
    flex-direction: row;
    gap: 35px;
  }
}
.l-nav__menu__list .list__link {
  display: block;
  color: #FEFEFE;
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .l-nav__menu__list .list__link {
    font-size: 1.375rem;
    line-height: 160%;
  }
}
@media (hover: hover) {
  .l-nav__menu__list .list__link:hover {
    color: #52ACCB;
  }
  .l-nav__menu__list .list__link:hover > * {
    transform: translateY(100%);
    transition: all ease 400ms;
  }
}
.l-nav__menu__list .list__link.is-active {
  color: #52ACCB;
}
.l-nav__menu__list .list__link > * {
  position: relative;
  display: block;
  transition: all ease 400ms;
}
.l-nav__menu__list .list__link > *::before {
  content: attr(data-text);
  position: absolute;
  top: -100%;
  left: 0;
  color: #52ACCB;
}
.l-nav__ham {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .l-nav__ham {
    display: none;
  }
}
.l-nav__ham img {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.l-nav__ham > * {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all ease 400ms;
}
.l-nav__ham__close {
  opacity: 0;
  pointer-events: none;
}

.l-footer {
  background-color: #52ACCB;
  padding: 58px 0;
}
@media (min-width: 1400px) {
  .l-footer {
    padding: 69px 0 52px 0;
  }
}
.l-footer__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-footer__wrap__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  color: #FEFEFE;
  padding: 0 25px;
}
@media (min-width: 992px) {
  .l-footer__wrap__list {
    flex-direction: row;
    gap: 60px;
    padding: 0;
  }
}
@media (min-width: 1400px) {
  .l-footer__wrap__list {
    gap: 90px;
  }
}
.l-footer__wrap__list .list__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 992px) {
  .l-footer__wrap__list .list__item {
    width: auto;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .l-footer__wrap__list .list__item.max-width {
    max-width: 480px;
  }
}
.l-footer__wrap__list .list__item__title {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  line-height: 125%;
}
@media (min-width: 992px) {
  .l-footer__wrap__list .list__item__title {
    font-size: 0.8125rem;
    letter-spacing: 0.65px;
  }
}
.l-footer__wrap__list .list__item__text {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
}
@media (max-width: 991.98px) {
  .l-footer__wrap__list .list__item__text.pc {
    display: none;
  }
}
@media (min-width: 992px) {
  .l-footer__wrap__list .list__item__text.md {
    display: none;
  }
}
.l-footer__wrap__list .list__item__logo {
  display: flex;
  align-items: center;
}
.l-footer__wrap__list .list__item__content {
  width: auto;
  display: inline-flex;
}
.l-footer__wrap__list .list__item__content img {
  width: auto;
  height: 38px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
@media (min-width: 992px) {
  .l-footer__wrap__list .list__item__content img {
    height: 46px;
  }
}
.l-footer__wrap__list .list__item__content > * {
  display: inline-block;
  margin-right: 26px;
}
@media (min-width: 992px) {
  .l-footer__wrap__list .list__item__content > * {
    margin-right: 54px;
  }
}
.l-footer__wrap__list .list__item__content > *:last-child {
  margin-right: 0;
}
.l-footer .content-text {
  color: #FEFEFE;
  text-align: center;
  margin-top: 30px;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  line-height: 125%;
}
@media (min-width: 992px) {
  .l-footer .content-text {
    font-size: 0.8125rem;
    letter-spacing: 0.65px;
    margin-top: 40px;
  }
}

.l-loading {
  background-color: #FEFEFE;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  transition: all ease 400ms;
}
.l-loading.is-hidden {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: all ease 400ms;
}

.l-wrap {
  padding-top: 20px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .l-wrap {
    padding-top: 100px;
    padding-bottom: 150px;
  }
}

.l-editor .nsdi-article-system {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .l-editor .nsdi-article-system {
    margin-bottom: 40px;
  }
}
.l-editor .nsdi-article-system .row {
  align-items: center;
}
.l-editor #T6 .nas-image-wrapper:first-child {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .l-editor #T6 .nas-image-wrapper:first-child {
    margin-bottom: 0;
  }
}
.l-editor .nas-article {
  color: #5E5E5E;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .l-editor .nas-article {
    margin-top: 0;
  }
}
.l-editor .nas-article * {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
}
.l-editor .nas-article h1, .l-editor .nas-article h2, .l-editor .nas-article h3, .l-editor .nas-article h4, .l-editor .nas-article h5, .l-editor .nas-article h6 {
  font-weight: 700;
  line-height: 160%;
}
.l-editor .nas-article h2 {
  font-size: 1.9125rem;
  letter-spacing: 1.53px;
  line-height: 150%;
  font-family: "Noto Serif TC", sans-serif;
}
.l-editor .nas-article h3 {
  font-size: 1.275rem;
  letter-spacing: 1.02px;
  line-height: 160%;
}
.l-editor .nas-article h4 {
  font-size: 0.95625rem;
  letter-spacing: 0.765px;
  line-height: 150%;
  line-height: 180%;
}
.l-editor .nas-article h5 {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
}
.l-editor .nas-article h6 {
  font-size: 0.875rem;
  letter-spacing: 0.7px;
  line-height: 160%;
}
.l-editor .nas-article p {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
}
.l-editor .nas-article a {
  color: #52ACCB;
}
.l-editor .nas-article img {
  width: 100%;
}
.l-editor .nas-article ul, .l-editor .nas-article ol {
  padding-left: 1.5rem;
}
.l-editor .nas-article ul {
  list-style: initial;
}
.l-editor .nas-article ul ul {
  list-style-type: revert;
}
.l-editor .nas-article ul ul ul {
  list-style-type: square;
}
.l-editor .nas-article ol {
  list-style: auto;
}
@media (min-width: 992px) {
  .l-editor .l-wrap {
    padding-top: 120px;
    padding-bottom: 192px;
  }
}
.l-editor__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #52ACCB;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .l-editor__heading {
    gap: 12px;
    margin-bottom: 100px;
  }
}
.l-editor__heading__title {
  font-size: 1.275rem;
  letter-spacing: 1.02px;
  line-height: 150%;
  font-weight: 700;
  font-family: "Noto Serif TC", sans-serif;
}
@media (min-width: 768px) {
  .l-editor__heading__title {
    font-size: 1.9125rem;
    letter-spacing: 1.53px;
    line-height: 150%;
  }
}
.l-editor__heading__date {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
}
.l-editor__back {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .l-editor__back {
    margin-top: 80px;
  }
}

@media (min-width: 1200px) {
  [data-page=index] .l-nav {
    background: #52ACCB;
    padding: 12px 0;
  }
}
@media (min-width: 1200px) {
  [data-page=index] .l-nav__menu {
    display: none;
  }
}
[data-page=index] .kv {
  background-color: #2A2A2A;
}
@media (max-width: 767.98px) {
  [data-page=index] .kv .container {
    max-width: 100%;
    padding: 0;
  }
}
[data-page=index] .menu {
  border-bottom: 1px solid #ABABAB;
  display: none;
}
@media (min-width: 1200px) {
  [data-page=index] .menu {
    display: block;
  }
}
[data-page=index] .menu .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1620px) {
  [data-page=index] .menu .container {
    padding-left: calc(12.5vw - 3.3333333333vw);
    padding-right: calc(12.5vw - 3.3333333333vw);
  }
}
[data-page=index] .menu__link {
  width: 14.2857142857%;
  font-size: 1.275rem;
  letter-spacing: 1.02px;
  line-height: 160%;
  font-weight: 500;
  color: #5E5E5E;
  text-align: center;
  border-right: 1px solid #ABABAB;
  display: block;
  padding: 51px 0;
}
[data-page=index] .menu__link:last-child {
  border-right: none;
}
@media (hover: hover) {
  [data-page=index] .menu__link:hover {
    color: #52ACCB;
  }
  [data-page=index] .menu__link:hover .menu__link__text > * {
    transform: translateY(100%);
    transition: all ease 400ms;
  }
}
[data-page=index] .menu__link__text {
  overflow: hidden;
}
[data-page=index] .menu__link__text > * {
  position: relative;
  display: block;
  transition: all ease 400ms;
}
[data-page=index] .menu__link__text > *::before {
  content: attr(data-text);
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  color: #52ACCB;
  white-space: nowrap;
}
[data-page=index] .news {
  padding-bottom: 60px;
}
@media (min-width: 1200px) {
  [data-page=index] .news {
    padding-bottom: 111px;
  }
}
[data-page=index] .news .m-news {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  [data-page=index] .news .m-news {
    margin-bottom: 80px;
  }
}
[data-page=index] .news__btn {
  display: flex;
  justify-content: center;
}

[data-page=news] .l-wrap {
  padding-top: 80px;
}
@media (max-width: 991.98px) {
  [data-page=news] .l-wrap {
    padding-top: 0;
  }
}

@media (max-width: 991.98px) {
  [data-page=touring] .l-wrap {
    padding-top: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  [data-page=touring] .l-wrap {
    padding-top: 60px;
  }
}
[data-page=touring] .touring__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 0.95625rem;
  letter-spacing: 0.765px;
  line-height: 150%;
  font-weight: 500;
  padding: 4px 26px 4px 17px;
}
@media (min-width: 992px) {
  [data-page=touring] .touring__grid {
    font-size: 1.275rem;
    letter-spacing: 1.02px;
    line-height: 160%;
    padding: 51px 0;
    flex-direction: row;
    align-items: center;
  }
}
[data-page=touring] .touring__grid__item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-bottom: 14px;
}
@media (min-width: 992px) {
  [data-page=touring] .touring__grid__item {
    padding: 10px 20px;
    margin-bottom: 0;
  }
}
[data-page=touring] .touring__grid__item:last-child {
  margin-bottom: 0;
}
[data-page=touring] .touring__grid__item:nth-child(1) {
  justify-content: center;
}
@media (min-width: 992px) {
  [data-page=touring] .touring__grid__item:nth-child(1) {
    width: 7%;
  }
}
@media (min-width: 992px) {
  [data-page=touring] .touring__grid__item:nth-child(2) {
    width: 17%;
  }
}
@media (min-width: 992px) {
  [data-page=touring] .touring__grid__item:nth-child(3) {
    width: 28%;
  }
}
@media (min-width: 992px) {
  [data-page=touring] .touring__grid__item:nth-child(4) {
    width: 30%;
  }
}
@media (min-width: 992px) {
  [data-page=touring] .touring__grid__item:nth-child(5) {
    width: 18%;
  }
}
[data-page=touring] .touring__grid__item img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
[data-page=touring] .touring__grid__item .c-btn {
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  [data-page=touring] .touring__grid__item .c-btn {
    font-weight: normal;
    max-width: 127px;
    padding: 11px 10px 11px 20px;
  }
}
[data-page=touring] .touring__grid__item .item__time {
  flex-shrink: 0;
}
[data-page=touring] .touring__grid__item .item__tag {
  font-size: 0.875rem;
  letter-spacing: 0.7px;
  line-height: 150%;
  background-color: rgba(82, 172, 203, 0.4);
  color: #52ACCB;
  border-radius: 10px;
  padding: 5px 10px;
}
@media (min-width: 992px) {
  [data-page=touring] .touring__grid__item .item__tag {
    font-size: 1rem;
    letter-spacing: 0.8px;
    line-height: 150%;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 1920px) {
  [data-page=touring] .touring__grid__item .item__tag {
    margin-left: 59px;
  }
}
[data-page=touring] .touring__grid__item .item__address {
  text-decoration: underline;
}
[data-page=touring] .touring__grid__item--num {
  color: #5E5E5E;
  font-size: 0.875rem;
  letter-spacing: 0.7px;
  line-height: 150%;
  padding: 1px 6px;
}
@media (min-width: 992px) {
  [data-page=touring] .touring__grid__item--num {
    font-size: 1.275rem;
    letter-spacing: 1.02px;
    line-height: 160%;
    font-weight: 900;
    padding: 0;
  }
}
[data-page=touring] .touring__grid__group {
  display: flex;
  gap: 4px;
}
[data-page=touring] .touring__grid__group .group__col {
  display: flex;
  gap: 4px;
  margin-bottom: 5px;
}
[data-page=touring] .touring__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #707572;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  white-space: nowrap;
  padding: 20px 16px 14px 12px;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  [data-page=touring] .touring__head {
    gap: 0;
    color: #52ACCB;
    font-size: 1rem;
    letter-spacing: 0.8px;
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  [data-page=touring] .touring__head {
    flex-direction: row;
  }
}
[data-page=touring] .touring__head::after {
  content: "";
  width: calc(100% - 24px);
  height: 1px;
  background-color: rgba(82, 172, 203, 0.4);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  [data-page=touring] .touring__head::after {
    display: none;
  }
}
[data-page=touring] .accordion-body a {
  text-decoration: underline;
}

[data-page=actor] .actor__card {
  background-color: #FEFEFE;
  border-radius: 10px;
  position: relative;
  padding-top: 130.2173913043%;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 12px;
  z-index: 1;
}
@media (min-width: 576px) {
  [data-page=actor] .actor__card {
    margin-bottom: 24px;
  }
}
@media (min-width: 992px) {
  [data-page=actor] .actor__card {
    margin-bottom: 80px;
  }
}
[data-page=actor] .actor__card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  border: 3px solid #52ACCB;
  z-index: 99;
  opacity: 0;
  transition: all ease 400ms;
}
@media (hover: hover) {
  [data-page=actor] .actor__card:hover::before {
    opacity: 1;
    transition: all ease 400ms;
  }
  [data-page=actor] .actor__card:hover .c-btn.c-btn-transparent {
    background-color: #52ACCB;
    color: #FEFEFE;
  }
  [data-page=actor] .actor__card:hover .c-btn.c-btn-transparent .c-btn-text {
    transform: translateX(10px);
  }
  [data-page=actor] .actor__card:hover .c-btn.c-btn-transparent [class^=icon-] {
    transform: translateX(5px);
  }
  [data-page=actor] .actor__card:hover .c-btn.c-btn-transparent [class^=icon-]::before {
    color: #FEFEFE;
  }
}
[data-page=actor] .actor__card .card__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -o-object-position: top left;
     object-position: top left;
}
[data-page=actor] .actor__card .card__img--front {
  opacity: 0;
  z-index: 10;
  transition: all ease 400ms;
}
[data-page=actor] .actor__card .card__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #FEFEFE;
  padding: 64px 20px 20px 20px;
  z-index: 20;
}
@media (min-width: 1620px) {
  [data-page=actor] .actor__card .card__info {
    padding: 74px 44px 30px 44px;
  }
}
[data-page=actor] .actor__card .card__info::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 100%);
  opacity: 0.8;
  z-index: -1;
  transition: all ease 400ms;
}
[data-page=actor] .actor__card .card__info .c-btn.c-btn-transparent {
  max-width: 141px;
}
[data-page=actor] .actor__card .card__info__name {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  transition: all ease 400ms;
}
[data-page=actor] .actor__card .card__info__name .name__title {
  font-size: 0.95625rem;
  letter-spacing: 0.765px;
  line-height: 160%;
  font-weight: 900;
}
@media (min-width: 992px) {
  [data-page=actor] .actor__card .card__info__name .name__title {
    font-size: 1.275rem;
    letter-spacing: 1.02px;
    line-height: 160%;
  }
}
[data-page=actor] .actor__card .card__info__name .name__text {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  line-height: 180%;
}
@media (min-width: 992px) {
  [data-page=actor] .actor__card .card__info__name .name__text {
    font-size: 0.95625rem;
    letter-spacing: 0.765px;
    line-height: 160%;
  }
}
[data-page=actor] .actor__modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
[data-page=actor] .actor__modal::-webkit-scrollbar-track {
  background-color: transparent;
}
[data-page=actor] .actor__modal::-webkit-scrollbar-thumb {
  background-color: transparent;
}
[data-page=actor] .actor__modal::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
[data-page=actor] .actor__modal::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
[data-page=actor] .actor__modal .modal-dialog {
  overflow: hidden;
}
@media (max-width: 991.98px) {
  [data-page=actor] .actor__modal .modal-dialog {
    height: auto;
    margin: 30px auto;
  }
}
@media (max-width: 575.98px) {
  [data-page=actor] .actor__modal .modal-dialog {
    margin: 16px auto;
  }
}
[data-page=actor] .actor__modal .modal-body {
  width: 100%;
  height: auto;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  [data-page=actor] .actor__modal .modal-body {
    padding: 42px 40px;
  }
}
@media (min-width: 992px) {
  [data-page=actor] .actor__modal .modal-body {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 1400px) {
  [data-page=actor] .actor__modal .modal-body {
    padding: 84px 80px;
  }
}
@media (min-width: 1620px) {
  [data-page=actor] .actor__modal .modal-body {
    gap: 5.625vw;
  }
}
[data-page=actor] .actor__modal .swiper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  overflow: initial;
  background-color: #F2F2F2;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  [data-page=actor] .actor__modal .swiper {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  [data-page=actor] .actor__modal .swiper {
    width: 35%;
    margin: 0;
  }
}
@media (hover: hover) {
  [data-page=actor] .actor__modal .swiper:hover .swiper-button-disabled {
    opacity: 0.35;
  }
}
[data-page=actor] .actor__modal__img {
  position: relative;
  overflow: hidden;
  padding-top: 154.1095890411%;
}
[data-page=actor] .actor__modal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-object-position: top;
     object-position: top;
}
[data-page=actor] .actor__modal__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  [data-page=actor] .actor__modal__info {
    width: 65%;
    gap: 60px;
  }
}
[data-page=actor] .actor__modal__info .info__heading {
  display: flex;
  flex-direction: column;
  color: #52ACCB;
}
@media (min-width: 768px) {
  [data-page=actor] .actor__modal__info .info__heading {
    gap: 15px;
  }
}
[data-page=actor] .actor__modal__info .info__heading__title {
  font-size: 1.275rem;
  letter-spacing: 1.02px;
  line-height: 160%;
  font-weight: 700;
  font-family: "Noto Serif TC", sans-serif;
}
@media (min-width: 768px) {
  [data-page=actor] .actor__modal__info .info__heading__title {
    font-size: 1.9125rem;
    letter-spacing: 1.53px;
    line-height: 150%;
  }
}
[data-page=actor] .actor__modal__info .info__heading__text {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  line-height: 180%;
}
@media (min-width: 768px) {
  [data-page=actor] .actor__modal__info .info__heading__text {
    font-size: 0.95625rem;
    letter-spacing: 0.765px;
    line-height: 160%;
  }
}
[data-page=actor] .actor__modal__info .info__body {
  display: flex;
  flex-direction: column;
}
[data-page=actor] .actor__modal__info .info__body__title {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  font-weight: 900;
}
@media (min-width: 768px) {
  [data-page=actor] .actor__modal__info .info__body__title {
    font-size: 0.95625rem;
    letter-spacing: 0.765px;
    line-height: 150%;
  }
}
[data-page=actor] .actor__modal__info .info__body__text {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  line-height: 180%;
}
@media (min-width: 768px) {
  [data-page=actor] .actor__modal__info .info__body__text {
    font-size: 0.95625rem;
    letter-spacing: 0.765px;
    line-height: 160%;
  }
}

[data-page=synopsis] .synopsis__row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 992px) {
  [data-page=synopsis] .synopsis__row {
    flex-direction: row;
  }
}
@media (min-width: 1400px) {
  [data-page=synopsis] .synopsis__row {
    gap: 7.8125vw;
  }
}
[data-page=synopsis] .synopsis__row__start {
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  line-height: 180%;
  text-align: justify;
}
@media (min-width: 992px) {
  [data-page=synopsis] .synopsis__row__start {
    font-size: 0.95625rem;
    letter-spacing: 0.765px;
    line-height: 160%;
  }
}
[data-page=synopsis] .synopsis__row__end {
  width: 100%;
}
[data-page=synopsis] .synopsis__row__end img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

[data-page=download] .row {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -20px;
}
@media (min-width: 768px) {
  [data-page=download] .row {
    margin-bottom: -80px;
  }
}
[data-page=download] .row > * {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  [data-page=download] .row > * {
    margin-bottom: 80px;
  }
}
[data-page=download] .download {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  border-radius: 5px;
  transition: all ease 400ms;
}
[data-page=download] .download:hover {
  transition: all ease 400ms;
}
[data-page=download] .download:hover .download__icon {
  opacity: 0;
  transition: all ease 400ms;
}
[data-page=download] .download:hover .download__front {
  z-index: 5;
  opacity: 1;
  transition: all ease 400ms;
}
[data-page=download] .download__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
[data-page=download] .download__icon {
  position: absolute;
  top: 21px;
  right: 19px;
  filter: drop-shadow(0 0 8px rgba(76, 76, 76, 0.3));
  width: 30px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 2;
  transition: all ease 400ms;
}
@media (min-width: 768px) {
  [data-page=download] .download__icon {
    width: 25px;
    top: 16px;
    right: 14px;
  }
}
@media (min-width: 992px) {
  [data-page=download] .download__icon {
    width: 30px;
    top: 21px;
    right: 19px;
  }
}
[data-page=download] .download__front {
  width: 100%;
  height: 100%;
  background-color: rgba(82, 172, 203, 0.4);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: -1;
  opacity: 0;
  transition: all ease 400ms;
}
[data-page=download] .download__front > * {
  margin-bottom: 20px;
  z-index: 5;
}
[data-page=download] .download__front > *:last-child {
  margin-bottom: 0;
}
[data-page=download] .download .u-link-range {
  z-index: 1;
}
[data-page=download] .download__modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
[data-page=download] .download__modal::-webkit-scrollbar-track {
  background-color: transparent;
}
[data-page=download] .download__modal::-webkit-scrollbar-thumb {
  background-color: transparent;
}
[data-page=download] .download__modal::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
[data-page=download] .download__modal::-webkit-scrollbar {
  background-color: transparent;
  display: none;
}
@media (min-width: 1620px) {
  [data-page=download] .download__modal .modal-dialog {
    max-width: 1120px;
  }
}
[data-page=download] .download__modal .modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 20px 20px 20px;
}
@media (min-width: 768px) {
  [data-page=download] .download__modal .modal-body {
    gap: 97px;
    padding: 144px 28px 28px 28px;
  }
}
[data-page=download] .download__modal--vid .modal-body {
  padding: 60px 20px;
  margin: 0;
}
@media (min-width: 768px) {
  [data-page=download] .download__modal--vid .modal-body {
    padding: 80px 40px;
  }
}
@media (min-width: 1200px) {
  [data-page=download] .download__modal--vid .modal-body {
    padding: 163px 80px;
  }
}
[data-page=download] .download__modal__name {
  color: #4C4C4C;
  line-height: 180%;
  letter-spacing: 1.08px;
}
@media (min-width: 576px) {
  [data-page=download] .download__modal__name {
    font-size: 1.125rem;
  }
}
[data-page=download] .download__modal__img {
  max-width: 386px;
  margin: 0 auto;
}
[data-page=download] .download__modal__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
[data-page=download] .download__modal__vid {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
[data-page=download] .download__modal__vid iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=download] .download__modal__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.8px;
  color: #52ACCB;
  font-size: 0.875rem;
  padding: 20px;
}
@media (min-width: 576px) {
  [data-page=download] .download__modal__btn {
    font-size: 1rem;
    padding: 32px;
  }
}
[data-page=download] .download__modal__btn:hover {
  background-color: #52ACCB;
  color: #FEFEFE;
}
[data-page=download] .download__modal__btn:hover .btn__icon path {
  fill: #FEFEFE;
  transition: all ease 400ms;
}
[data-page=download] .download__modal__btn .btn__icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  margin-right: 9px;
}
[data-page=download] .download__modal__btn .btn__icon path {
  fill: #52ACCB;
  transition: all ease 400ms;
}
[data-page=download] .more {
  display: flex;
  justify-content: center;
  align-items: center;
}

[data-page=troupe] .banner {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  [data-page=troupe] .banner {
    margin-bottom: 80px;
  }
}
[data-page=troupe] .info {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  line-height: 180%;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  [data-page=troupe] .info {
    font-size: 0.95625rem;
    letter-spacing: 0.765px;
    line-height: 160%;
    margin-bottom: 100px;
  }
}
[data-page=troupe] .glory {
  margin: 0 auto;
}
@media (min-width: 1620px) {
  [data-page=troupe] .glory {
    max-width: 42.8125vw;
  }
}
[data-page=troupe] .glory__title {
  font-size: 1.275rem;
  letter-spacing: 1.02px;
  line-height: 160%;
  font-weight: 700;
  color: #52ACCB;
  font-family: "Noto Serif TC", sans-serif;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  [data-page=troupe] .glory__title {
    font-size: 1.9125rem;
    letter-spacing: 1.53px;
    line-height: 150%;
    margin-bottom: 60px;
  }
}
[data-page=troupe] .glory__list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  [data-page=troupe] .glory__list {
    padding: 0 80px;
  }
}
[data-page=troupe] .glory__list__item {
  position: relative;
  display: flex;
  gap: 40px;
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  [data-page=troupe] .glory__list__item {
    gap: 80px;
  }
}
@media (min-width: 768px) {
  [data-page=troupe] .glory__list__item {
    gap: 92px;
    padding-bottom: 63px;
  }
}
[data-page=troupe] .glory__list__item::before, [data-page=troupe] .glory__list__item::after {
  content: "";
  position: absolute;
}
[data-page=troupe] .glory__list__item::before {
  width: 10px;
  height: 10px;
  border-radius: 1000px;
  background-color: #52ACCB;
  top: 10px;
  left: 60px;
}
@media (min-width: 576px) {
  [data-page=troupe] .glory__list__item::before {
    top: 17px;
    left: 79px;
  }
}
[data-page=troupe] .glory__list__item::after {
  width: 1px;
  height: 100%;
  background-color: rgba(82, 172, 203, 0.4);
  top: 15px;
  left: 65px;
}
@media (min-width: 576px) {
  [data-page=troupe] .glory__list__item::after {
    top: 22px;
    left: 84px;
  }
}
[data-page=troupe] .glory__list__item::after::after {
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(82, 172, 203, 0.4);
  border-radius: 1000px;
}
[data-page=troupe] .glory__list__item::after:last-child::after {
  display: none;
}
[data-page=troupe] .glory__list__item:last-child::after {
  display: none;
}
[data-page=troupe] .glory__list__item .item__year {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  font-weight: 900;
  color: #52ACCB;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  [data-page=troupe] .glory__list__item .item__year {
    padding-top: 9px;
  }
}
@media (min-width: 768px) {
  [data-page=troupe] .glory__list__item .item__year {
    font-size: 0.95625rem;
    letter-spacing: 0.765px;
    line-height: 150%;
  }
}
[data-page=troupe] .glory__list__item .item__content {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  line-height: 180%;
}
@media (min-width: 768px) {
  [data-page=troupe] .glory__list__item .item__content {
    font-size: 0.95625rem;
    letter-spacing: 0.765px;
    line-height: 160%;
  }
}
[data-page=troupe] .glory__list__item ul.item__content {
  list-style: disc;
  padding-left: 20px;
}

@media (min-width: 1400px) {
  [data-page=team] .team {
    padding-right: 17.4479166667vw;
    padding-left: 17.4479166667vw;
  }
}
@media (min-width: 768px) {
  [data-page=team] .team .row {
    margin-bottom: -20px;
  }
}
@media (min-width: 1400px) {
  [data-page=team] .team .row {
    margin-left: -45px;
    margin-right: -45px;
  }
}
@media (min-width: 768px) {
  [data-page=team] .team .row > * {
    margin-bottom: 20px;
  }
}
@media (min-width: 1400px) {
  [data-page=team] .team .row > * {
    padding-left: 45px;
    padding-right: 45px;
  }
}
[data-page=team] .team__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(82, 172, 203, 0.4);
}
[data-page=team] .team__item__title {
  font-size: 1rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  font-weight: 700;
  color: #52ACCB;
  flex-shrink: 0;
}
[data-page=team] .team__item__name {
  font-size: 0.95625rem;
  letter-spacing: 0.765px;
  line-height: 160%;
  font-weight: 500;
  text-align: right;
  word-break: keep-all;
}
@media (min-width: 992px) {
  [data-page=team] .team__item__name {
    font-size: 1.275rem;
    letter-spacing: 1.02px;
    line-height: 160%;
  }
}

.safari .os-scrollbar {
  display: none;
}
.safari[data-page=synopsis] .director__content .content__smtext {
  word-break: initial;
}

.ios[data-page=troupe] .bg {
  background-attachment: inherit;
  background-size: cover;
}

/* no support backdrop-filter */