* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-size: 16px;
  line-height: 1.5; }

a {
  color: inherit;
  text-decoration: none; }

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  margin: 0; }

ul {
  list-style: none; }

img,
svg {
  max-width: 100%;
  height: auto; }

@font-face {
  font-family: 'Valky Regular';
  src: url("../assets/Valky Regular.ttf") format("truetype"); }

.banner-ins .page-title h2 {
  font-family: "Valky Regular", sans-serif; }

body {
  transition: all 0.5s ease; }

@keyframes slowShowUp {
  0% {
    opacity: 0;
    transform: translateY(50px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; }
  @media (max-width: 1100px) {
    .wrap {
      max-width: 95vw; } }

body {
  font-family: "Noto Serif TC", sans-serif;
  position: relative; }
  body.scroll-disabled, body.isLoading {
    overflow: hidden; }
  body.loading .outer-wrap {
    opacity: 0; }

.loading {
  align-items: center;
  background-color: #e0e0e0;
  display: flex;
  height: 100%;
  justify-content: center;
  opacity: 0;
  position: fixed;
  pointer-events: initial;
  top: 0;
  transition: all 0.5s ease;
  left: 0;
  width: 100%;
  z-index: 9999; }
  .loading.show {
    opacity: 1;
    pointer-events: none; }
    .loading.show .loading-logo {
      animation: slowShowUp 1s ease-in-out forwards; }
  .loading-logo {
    margin: auto;
    max-width: 200px;
    opacity: 0;
    transition: all 0.5s ease; }
    .loading-logo img {
      filter: brightness(0) invert(1);
      width: 100%; }

header .pc-header {
  background-color: rgba(52, 52, 52, 0.95);
  position: fixed;
  width: 100%;
  z-index: 999; }
  @media (max-width: 1280px) {
    header .pc-header {
      display: none; } }
  header .pc-header .wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-right: 0; }
  header .pc-header .logo {
    background: #fff;
    height: 120px;
    width: 250px;
    padding: 40px 20px; }
  header .pc-header .header-content {
    align-items: flex-end;
    display: flex;
    justify-content: center;
    position: relative;
    gap: 10px; }
    header .pc-header .header-content li {
      position: relative; }
  header .pc-header .header-item {
    display: flex;
    flex-direction: column;
    color: #fff;
    position: relative; }
    header .pc-header .header-item:not(:last-child) {
      margin: 0 20px; }
    header .pc-header .header-item-icon {
      margin-left: 10px;
      height: 12px;
      width: 12px;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.5s ease; }
    @media (min-width: 1281px) {
      header .pc-header .header-item:hover .header-item-icon {
        transform: translateX(0);
        opacity: 1; }
      header .pc-header .header-item:hover .ch::after {
        transform: scaleX(1); } }
    header .pc-header .header-item.current .header-item-icon {
      transform: translateX(0);
      opacity: 1; }
    header .pc-header .header-item.current .ch::after {
      transform: scaleX(1); }
    header .pc-header .header-item .en {
      font-size: 16px;
      line-height: 1;
      padding: 0 5px; }
    header .pc-header .header-item .ch {
      font-size: 16px;
      line-height: 1;
      letter-spacing: 1.2px;
      margin-bottom: 10px;
      position: relative;
      padding: 5px; }
      header .pc-header .header-item .ch:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: #fff;
        bottom: 0;
        left: 0;
        transform-origin: left;
        transform: scaleX(0);
        transition: all 0.5s ease; }
  header .pc-header .header-submenu {
    background-color: rgba(32, 32, 32, 0.95);
    display: none;
    position: absolute;
    top: 120%;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    width: 150px;
    padding: 10px;
    z-index: 9999; }
    header .pc-header .header-submenu li {
      color: #fff;
      padding: 10px;
      position: relative; }
      @media (min-width: 1281px) {
        header .pc-header .header-submenu li:hover {
          background-color: #3a3a3a; } }
  header .pc-header .logo {
    display: block;
    max-width: 150px; }
    header .pc-header .logo:hover img {
      scale: 1.1; }
    header .pc-header .logo img {
      max-width: 100%;
      transition: all 0.5s ease; }

.mb-header {
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  height: 150px;
  padding: 10px;
  position: fixed;
  width: 100%;
  z-index: 999; }
  @media (max-width: 640px) {
    .mb-header {
      height: 110px; } }
  @media (min-width: 1281px) {
    .mb-header {
      display: none; } }
  .mb-header .logo {
    background: #fff;
    display: block;
    max-width: 120px; }
    @media (max-width: 640px) {
      .mb-header .logo {
        max-width: 100px; } }
    .mb-header .logo img {
      max-width: 100%; }
  .mb-header-trigger span {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateX(-50%);
    margin-top: -0.5px;
    width: 26px;
    height: 1px;
    background-color: #fff;
    transition: all 0.5s; }
    .mb-header-trigger span:before, .mb-header-trigger span:after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      height: 1px;
      transition: all 0.5s; }
    .mb-header-trigger span:before {
      background-color: #fff;
      top: -7px; }
    .mb-header-trigger span:after {
      background-color: #fff;
      bottom: -7px; }
  .mb-header-trigger.show span {
    background-color: transparent; }
    .mb-header-trigger.show span::before, .mb-header-trigger.show span::after {
      top: 0;
      transform: rotate(45deg); }
    .mb-header-trigger.show span::after {
      top: 0;
      transform: rotate(-45deg); }
  .mb-header-menu {
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    height: 100vh;
    max-height: 100vh;
    right: 0;
    width: 40%;
    overflow-y: auto;
    padding: 20px 40px 20px 80px;
    transform: translateX(100%);
    transition: all 0.5s ease; }
    @media (max-width: 640px) {
      .mb-header-menu {
        width: 100%; } }
    .mb-header-menu.show {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto; }
  .mb-header-link {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    letter-spacing: 1px;
    margin: 20px 0;
    position: relative;
    width: fit-content; }
    .mb-header-link.current::before {
      opacity: 1; }
    .mb-header-link.hasSubmenu::after {
      width: 8px;
      height: 8px;
      border-left: 1px solid #fff;
      border-bottom: 1px solid #fff;
      content: "";
      position: absolute;
      right: -30px;
      top: 10px;
      transform: rotate(-135deg);
      transition: all 0.5s ease; }
    .mb-header-link.hasSubmenu.open::after {
      transform: rotate(-45deg); }
  .mb-header-fun {
    margin-top: 2rem; }
    .mb-header-fun-link {
      margin: 10px; }
  .mb-header-submenu {
    display: flex;
    height: 0;
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    padding: 0 20px;
    transition: opacity 0.5s ease, height 0.5s ease 0.5s; }
    .mb-header-submenu .submenu {
      height: 0;
      opacity: 0;
      visibility: hidden;
      padding-left: 2rem; }
      .mb-header-submenu .submenu li {
        margin: 15px 0; }
    .mb-header-submenu.open {
      height: fit-content;
      opacity: 1;
      pointer-events: auto; }
    .mb-header-submenu-item {
      margin: 10px 0;
      width: fit-content; }
      .mb-header-submenu-item.hasSubmenu {
        position: relative; }
        .mb-header-submenu-item.hasSubmenu::after {
          width: 8px;
          height: 8px;
          border-left: 1px solid #fff;
          border-bottom: 1px solid #fff;
          content: "";
          position: absolute;
          right: 0;
          top: 5px;
          transform: rotate(-135deg);
          transition: all 0.5s ease; }
        .mb-header-submenu-item.hasSubmenu.open::after {
          transform: rotate(-45deg); }
        .mb-header-submenu-item.hasSubmenu.open .submenu {
          height: fit-content;
          opacity: 1;
          visibility: visible;
          pointer-events: auto; }

.outer-wrap {
  position: relative; }
  @media (max-width: 1024px) {
    .outer-wrap {
      padding-top: 150px; } }
  @media (max-width: 640px) {
    .outer-wrap {
      padding-top: 110px; } }

.title-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: auto;
  margin-bottom: 40px;
  max-width: fit-content; }

.title-tw {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1.2px; }

.title-en {
  color: #653a3a;
  font-weight: 700;
  letter-spacing: 1px; }

.decoration {
  position: absolute;
  pointer-events: none;
  z-index: -1; }
  @media (max-width: 1280px) {
    .decoration {
      display: none; } }
  .decoration img {
    width: 80%; }
    @media (max-width: 1680px) {
      .decoration img {
        width: 60%; } }
    @media (max-width: 1536px) {
      .decoration img {
        width: 50%; } }

.banner-ins {
  overflow: hidden;
  position: relative; }
  .banner-ins .content {
    padding-top: 180px; }
    @media (max-width: 1024px) {
      .banner-ins .content {
        padding-top: 50px; } }
  .banner-ins .wrap {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative; }
    .banner-ins .wrap:after {
      content: "";
      position: absolute;
      width: 200vw;
      height: 1px;
      background-color: #000;
      left: -100vw;
      top: -20px; }
  .banner-ins-img {
    font-size: 0;
    left: 180px;
    position: absolute;
    z-index: -1; }
    @media (max-width: 1440px) {
      .banner-ins-img {
        left: 100px; } }
    @media (max-width: 1024px) {
      .banner-ins-img {
        left: 0; } }
    @media (max-width: 1024px) {
      .banner-ins-img img {
        max-height: 120px; } }
    @media (max-width: 640px) {
      .banner-ins-img img {
        height: 150px;
        object-fit: cover; } }
  .banner-ins .page-title h2 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: 2.64px; }

.banner-item {
  background-color: #000; }
  .banner-item a {
    text-align: center; }
  .banner-item img {
    width: 100%;
    height: 100%; }

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%; }
  .breadcrumbs a,
  .breadcrumbs span {
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    margin: 0 5px; }

.ins-content {
  padding: 120px 0 220px;
  position: relative; }
  @media (max-width: 1680px) {
    .ins-content {
      padding: 80px 0 120px; } }
  @media (max-width: 1024px) {
    .ins-content {
      padding: 40px 0 80px; } }
  @media (max-width: 640px) {
    .ins-content {
      padding: 40px 0; } }
  .ins-content .decoration1 {
    left: 5%;
    top: 5%; }
  .ins-content .decoration2 {
    right: 5%;
    top: 20%; }
  .ins-content .decoration3 {
    left: 0;
    bottom: 5%; }
  .ins-content .decoration4 {
    right: 0;
    bottom: 0; }

.ins .wrap {
  max-width: 1140px; }
  @media (max-width: 1140px) {
    .ins .wrap {
      max-width: 90vw; } }

.blockquote {
  background-color: #e0e0e0;
  padding: 1rem;
  letter-spacing: 1px;
  width: fit-content; }

.tab-filter {
  background-color: #e0e0e0;
  padding: 0.5rem;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style: none;
  width: fit-content;
  margin: auto; }
  .tab-filter li {
    padding: 0.5rem 2.5rem;
    position: relative; }
    .tab-filter li a:after {
      content: "";
      position: absolute;
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0; }
    .tab-filter li:after {
      content: "";
      position: absolute;
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      background-color: #000;
      bottom: 0;
      left: 0;
      transition: all 0.5s ease;
      transform-origin: left;
      transform: scaleX(0); }
    .tab-filter li.current:after, .tab-filter li:hover:after {
      content: "";
      position: absolute;
      transform: scaleX(1); }

.page-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin-top: 7rem; }

.page-item {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 5px;
  transition: all 0.5s ease; }
  .page-item:hover, .page-item.current {
    background-color: #000;
    border-radius: 5px;
    padding: 5px 2.5px;
    width: 32px;
    height: 32px; }
    .page-item:hover a, .page-item.current a {
      color: #fff; }

.editor {
  letter-spacing: 1.2px;
  line-height: 1.5; }
  .editor h2 {
    font-size: 22px;
    font-weight: 500; }

.back-btn {
  margin: 5rem auto 0;
  transition: all 0.5s ease; }
  @media (min-width: 1281px) {
    .back-btn:hover {
      transform: translateX(-10px); } }
  .back-btn a {
    align-items: center;
    background-color: #000;
    display: flex;
    padding: 5px 15px;
    text-align: center;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    width: fit-content;
    margin: auto; }
    .back-btn a svg {
      fill: #fff;
      height: 18px;
      width: 30px;
      transform: scale(-1); }

.album {
  display: none; }

.float-fun {
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 50; }

.float-submenu {
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.5s ease; }
  .float-submenu.show {
    transform: scaleY(1); }

.float-btn {
  cursor: pointer;
  border: 3px solid #000;
  height: 50px;
  width: 50px;
  background-color: transparent;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.85rem 0;
  transition: all 0.5s ease; }
  .float-btn.fixed {
    background-color: #000; }
  .float-btn img {
    max-width: 32px; }
  @media (min-width: 1281px) {
    .float-btn:hover {
      scale: 0.9; } }

.pageBox {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 10px; }
  .pageBox li {
    font-size: 20px;
    color: rgba(52, 52, 52, 0.45);
    position: relative; }
    .pageBox li:after {
      content: "";
      position: absolute;
      width: 1px;
      height: 20px;
      transform: skew(-45deg);
      background-color: #343434;
      right: 0;
      bottom: 0;
      opacity: 0;
      pointer-events: none; }
    .pageBox li.current {
      color: #343434;
      margin-right: 10px; }
      .pageBox li.current:after {
        content: "";
        position: absolute;
        opacity: 1;
        pointer-events: auto; }

footer {
  background-image: url("../images/footerBg.jpg"); }
  footer .wrap {
    display: flex;
    max-width: 1100px; }
    @media (max-width: 1024px) {
      footer .wrap {
        max-width: 90vw; } }
    @media (max-width: 640px) {
      footer .wrap {
        flex-direction: column; } }
    footer .wrap .left {
      width: 25%; }
      @media (max-width: 1024px) {
        footer .wrap .left {
          width: 30%; } }
      @media (max-width: 768px) {
        footer .wrap .left {
          width: 40%; } }
      @media (max-width: 640px) {
        footer .wrap .left {
          width: 100%;
          text-align: center; } }
    footer .wrap .right {
      padding-left: 4rem;
      width: 75%; }
      @media (max-width: 1024px) {
        footer .wrap .right {
          padding-left: 2rem;
          width: 70%; } }
      @media (max-width: 768px) {
        footer .wrap .right {
          width: 60%; } }
      @media (max-width: 640px) {
        footer .wrap .right {
          width: 100%;
          margin-top: 1.5rem;
          padding-left: 0; } }
  footer .footer-box {
    padding: 60px 0; }
    @media (max-width: 640px) {
      footer .footer-box {
        padding: 30px 0; } }
  footer .footer-logo {
    max-width: 180px; }
    @media (max-width: 1024px) {
      footer .footer-logo {
        max-width: 200px; } }
    @media (max-width: 640px) {
      footer .footer-logo {
        max-width: 140px;
        margin: auto; } }
    footer .footer-logo img {
      max-width: 100%; }
  footer .footer-menu {
    margin-left: auto;
    max-width: 180px; }
    footer .footer-menu ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      width: fit-content;
      margin-left: auto; }
      footer .footer-menu ul li {
        font-size: 15px;
        text-align: right;
        width: calc(100% / 2); }
  footer .footer-contact {
    margin-top: 1.5rem; }
    footer .footer-contact ul {
      align-items: flex-end;
      display: flex;
      flex-direction: column; }
      @media (max-width: 768px) {
        footer .footer-contact ul {
          flex-wrap: wrap; } }
      footer .footer-contact ul li {
        align-items: center;
        display: flex;
        font-size: 15px;
        letter-spacing: 1.5px; }
        footer .footer-contact ul li img {
          margin-right: 0.5rem;
          width: 12px;
          height: 12px;
          object-fit: contain;
          margin-left: 16px; }
  footer .copyright {
    margin-top: 100px; }
    @media (max-width: 768px) {
      footer .copyright {
        margin-top: 60px; } }
    @media (max-width: 640px) {
      footer .copyright {
        margin-top: 20px; } }
    footer .copyright p {
      font-weight: 200;
      font-size: 12px;
      letter-spacing: 1.2px; }
