@charset "UTF-8";
@font-face {
  font-family: "GenRyuMin2TW";
  src: url("../fonts/genryu-font-master/GenRyuMin2TW-EL.otf") format("opentype");
  font-weight: 200;
  /* ExtraLight */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GenRyuMin2TW";
  src: url("../fonts/genryu-font-master/GenRyuMin2TW-L.otf") format("opentype");
  font-weight: 300;
  /* Light */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GenRyuMin2TW";
  src: url("../fonts/genryu-font-master/GenRyuMin2TW-M.otf") format("opentype");
  font-weight: 500;
  /* Medium */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GenRyuMin2TW";
  src: url("../fonts/genryu-font-master/GenRyuMin2TW-H.otf") format("opentype");
  font-weight: 700;
  /* Heavy */
  font-style: normal;
  font-display: swap;
}
:root {
  --gray: #f7f7f7;
  --blue: #1b365d;
  --orange: #ec6800;
}

/* mixin */
* {
  box-sizing: border-box;
  font-family: "Open Sans", "Noto Sans TC", "微軟正黑體", sans-serif;
}
*:focus {
  outline: none;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", "Noto Sans TC", "微軟正黑體", sans-serif;
  overflow-x: hidden;
  transition: 0.3s;
  position: relative;
  color: #222;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  max-width: 1920px;
  margin: auto !important;
}
body.fixed {
  height: 100vh !important;
  overflow: hidden !important;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
  transition: 0.3s;
}

.unreset {
  padding: 1px 0;
  color: #222;
  font-family: "Open Sans", "Noto Sans TC", "微軟正黑體", sans-serif;
}
.unreset:after {
  content: "";
  display: block;
  clear: both;
}
.unreset p:first-child {
  margin-top: 0;
}

.unreset img {
  max-width: 100%;
  height: auto !important;
}

.unreset iframe {
  max-width: 100%;
  display: block;
}

/* 編輯器影片RWD */
.unreset .embeddedContent {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.unreset .embeddedContent iframe,
.unreset .embeddedContent object,
.unreset .embeddedContent embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-container {
  margin: 0 auto;
  width: 1680px;
  max-width: 100%;
  padding: 0 60px;
}
@media (max-width: 640px) {
  .page-container {
    padding: 0 25px;
  }
}

.index-container {
  margin: 0 auto;
  width: 1560px;
  max-width: 100%;
  padding: 0 60px;
}
@media (max-width: 640px) {
  .index-container {
    padding: 0 25px;
  }
}

.header-container {
  margin: 0 auto;
  width: 1680px;
  max-width: 100%;
  padding: 0 60px;
}

.footer-container {
  margin: 0 auto;
  width: 1560px;
  max-width: 100%;
  padding: 0 60px;
}
@media (max-width: 640px) {
  .footer-container {
    padding: 0 25px;
  }
}

sup {
  vertical-align: super;
  font-size: small;
}

sub {
  vertical-align: sub;
  font-size: smaller;
  font-weight: lighter;
}

select {
  font-family: "Open Sans", "Noto Sans TC", "微軟正黑體", sans-serif;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 0 0;
  background: #ccc;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:horizontal {
  background: #000;
  border-radius: 10px;
}

/* 404 */
.error-row {
  background: url(../images/404/error-background.svg) no-repeat;
  background-position: center top;
  max-width: 1400px;
  padding: 60px 25px;
  margin: 40px auto 0 auto;
}
.error-row .img-box {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}
.error-row .img-box img {
  display: block;
  width: 100%;
}
.error-row .img-box .error-code {
  color: #222;
  font-size: 120px;
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1;
  margin: 0;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translateX(-57%);
}
.error-row .content {
  margin-top: 50px;
  text-align: center;
}
.error-row .content .title {
  color: #222;
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}
.error-row .content .des {
  margin-top: 25px;
}
.error-row .content .des p {
  color: #222;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
.error-row .content .des p:not(:last-child) {
  margin-bottom: 5px;
}
.error-row .btn-row {
  margin-top: 80px;
}
.error-row .btn-row .link {
  background: #222;
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 12px 13px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-decoration: inherit;
  text-transform: uppercase;
  transition: all 0.4s;
  width: 240px;
}
.error-row .btn-row .link:hover {
  background: #90a538;
}
@media (max-width: 1440px) {
  .error-row .img-box {
    max-width: 540px;
  }
  .error-row .img-box .error-code {
    font-size: 100px;
  }
  .error-row .btn-row {
    margin-top: 50px;
  }
}
@media (max-width: 1024px) {
  .error-row .img-box {
    max-width: 440px;
  }
  .error-row .img-box .error-code {
    font-size: 70px;
    top: 45%;
  }
  .error-row .btn-row {
    margin-top: 50px;
  }
}
@media (max-width: 640px) {
  .error-row {
    padding: 20px 25px 40px 25px;
    margin: 0 auto 20px auto;
  }
  .error-row .img-box .error-code {
    font-size: 50px;
    top: 45%;
  }
  .error-row .content {
    margin-top: 30px;
  }
  .error-row .content .title {
    font-size: 24px;
  }
  .error-row .content .des {
    margin-top: 15px;
  }
  .error-row .content .des p {
    font-size: 16px;
  }
  .error-row .btn-row {
    margin-top: 30px;
  }
  .error-row .btn-row .link {
    font-size: 17px;
    max-width: 170px;
  }
}

/* 空白狀態 */
.empty-row {
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  max-width: 640px;
}
.empty-row .img-box {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}
.empty-row .img-box img {
  display: block;
  width: 100%;
}
.empty-row .content {
  margin-top: 40px;
  text-align: center;
}
.empty-row .content .title {
  color: #222;
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}
.empty-row .content .des {
  color: #888;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  margin-top: 20px;
}
.empty-row .btn-row {
  margin-top: 40px;
}
.empty-row .btn-row .link {
  background: #222;
  color: #fff;
  display: block;
  font-size: 1.0625rem;
  margin-left: auto;
  margin-right: auto;
  padding: 13px;
  text-align: center;
  text-decoration: inherit;
  transition: all 0.4s;
  width: 120px;
}
.empty-row .btn-row .link:hover {
  background: #90a538;
}
@media (max-width: 640px) {
  .empty-row .content {
    margin-top: 30px;
  }
  .empty-row .content .title {
    font-size: 26px;
  }
  .empty-row .content .des {
    font-size: 16px;
    margin-top: 15px;
  }
  .empty-row .btn-row {
    margin-top: 30px;
  }
}

.cookies-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(110%);
  transition: all 0.3s;
  z-index: 1;
}
.cookies-box.show {
  transform: translateY(0);
}
.cookies-box .cookies-content {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  padding: 15px 20px;
}
.cookies-box .cookies-content .des {
  padding-right: 20px;
  width: calc(100% - 100px);
}
.cookies-box .cookies-content .des p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.cookies-box .cookies-content .des a {
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: underline;
}
.cookies-box .cookies-content .des a:hover {
  opacity: 0.5;
}
.cookies-box .cookies-content .btn-confirm {
  border: 1px solid white;
  background: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: block;
  padding: 13px 10px;
  text-align: center;
  width: 100px;
}
.cookies-box .cookies-content .btn-confirm:hover {
  background: white;
  color: #333;
}
.cookies-box .cookies-content > .page-container {
  display: flex;
  align-items: center;
}
@media (max-width: 1440px) {
  .cookies-box .cookies-content {
    padding: 15px 0;
  }
}
@media (max-width: 640px) {
  .cookies-box .cookies-content {
    display: block;
  }
  .cookies-box .cookies-content .des {
    padding-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .cookies-box .cookies-content .des p,
  .cookies-box .cookies-content .des a {
    font-size: 0.875rem;
  }
  .cookies-box .cookies-content .btn-confirm {
    padding: 10px 8px;
    font-size: 0.875rem;
    width: 100%;
  }
  .cookies-box .cookies-content > .page-container {
    flex-wrap: wrap;
  }
}

/*========== basic mobile ==========*/
/*========= form ==========*/
.form-style form {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 0;
}
@media (max-width: 640px) {
  .form-style form {
    gap: 15px 0;
  }
}
.form-style .form-box {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  transition: 0.3s;
  align-items: baseline;
}
.form-style .form-box .box-title {
  width: 90px;
  color: #444;
  padding-right: 5px;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
}
@media (max-width: 640px) {
  .form-style .form-box .box-title {
    width: 100%;
    margin-bottom: 10px;
  }
}
.form-style .form-box .box-title .must {
  color: #ef5728;
  margin-left: 3px;
  transform: translateY(-5px);
}
.form-style .form-box .box-content {
  width: calc(100% - 90px);
}
@media (max-width: 640px) {
  .form-style .form-box .box-content {
    width: 100%;
  }
}
.form-style .form-box .box-content input[type=text],
.form-style .form-box .box-content input[type=password],
.form-style .form-box .box-content input[type=email],
.form-style .form-box .box-content input[type=date],
.form-style .form-box .box-content input[type=number],
.form-style .form-box .box-content input[type=tel],
.form-style .form-box .box-content textarea {
  background: none;
  border-radius: 0;
  border: none;
  appearance: none;
  width: 100%;
  border: 1px solid transparent;
  padding: 10px 20px;
  font-size: 0.9375rem;
  background: #fff;
  color: #222;
  text-align: left;
  transition: 0.3s;
  border-radius: 8px;
  border: 1px solid #444444;
}
.form-style .form-box .box-content input[type=text]::placeholder,
.form-style .form-box .box-content input[type=password]::placeholder,
.form-style .form-box .box-content input[type=email]::placeholder,
.form-style .form-box .box-content input[type=date]::placeholder,
.form-style .form-box .box-content input[type=number]::placeholder,
.form-style .form-box .box-content input[type=tel]::placeholder,
.form-style .form-box .box-content textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}
.form-style .form-box .box-content input[type=text]:disabled,
.form-style .form-box .box-content input[type=password]:disabled,
.form-style .form-box .box-content input[type=email]:disabled,
.form-style .form-box .box-content input[type=date]:disabled,
.form-style .form-box .box-content input[type=number]:disabled,
.form-style .form-box .box-content input[type=tel]:disabled,
.form-style .form-box .box-content textarea:disabled {
  background: none;
}
.form-style .form-box .box-content select {
  background: none;
  border-radius: 0;
  border: none;
  appearance: none;
  width: 100%;
  border: 1px solid transparent;
  padding: 8px 50px 8px 20px;
  border-radius: 8px;
  border: 1px solid #444444;
  font-size: 0.9375rem;
  color: #222;
  text-align: left;
  background: #fff url(../images/select_arrow.svg) right 0 center no-repeat;
  background-size: 40px;
}
.form-style .form-box .box-content select:disabled {
  background: none;
  appearance: none;
}
.form-style .form-box .box-content input[type=text],
.form-style .form-box .box-content input[type=password],
.form-style .form-box .box-content input[type=email],
.form-style .form-box .box-content input[type=date],
.form-style .form-box .box-content input[type=number],
.form-style .form-box .box-content input[type=tel],
.form-style .form-box .box-content select {
  height: 42px;
}
.form-style .form-box .box-content input[type=text]:focus,
.form-style .form-box .box-content input[type=password]:focus,
.form-style .form-box .box-content input[type=email]:focus,
.form-style .form-box .box-content input[type=date]:focus,
.form-style .form-box .box-content input[type=number]:focus,
.form-style .form-box .box-content input[type=tel]:focus,
.form-style .form-box .box-content select:focus {
  border-color: var(--blue);
}
.form-style .form-box .box-content textarea {
  padding: 15px 20px;
  display: block;
}
.form-style .form-box .box-content textarea:focus {
  border-color: var(--blue);
}
.form-style .form-box .part {
  display: inline-block;
}
.form-style .form-box .part span b {
  font-weight: bold;
}
.form-style .form-box .part:not(:last-child) {
  margin-right: 10px;
}
.form-style .form-box .radiobox,
.form-style .form-box .checkbox {
  font-size: 0.9375rem;
  color: #444;
}
.form-style .form-box .radiobox input[type=radio] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  transform: translateY(-3px);
}
.form-style .form-box .checkbox input[type=checkbox] {
  border: 2px solid #222;
  width: 18px;
  height: 18px;
  position: relative;
  top: 3px;
}
.form-style .form-box.half {
  width: calc((100% - 40px) / 2);
}
.form-style .form-box.one-third {
  width: calc((100% - 80px) / 3);
}
.form-style .form-box.quarter {
  width: calc((100% - 120px) / 4);
}
.form-style .form-box.one-fifth {
  width: calc((100% - 160px) / 5);
}
.form-style .form-box.short {
  width: calc((100% - 100px) / 2);
  margin-right: 50px;
}
.form-style .form-box.short .content input[type=text],
.form-style .form-box.short .content input[type=password],
.form-style .form-box.short .content input[type=email],
.form-style .form-box.short .content input[type=date],
.form-style .form-box.short .content input[type=number],
.form-style .form-box.short .content input[type=tel],
.form-style .form-box.short .content select {
  width: calc(100% - 75px);
}
.form-style .form-box.mid {
  width: calc((100% - 100px) / 2);
  margin-right: 50px;
}
.form-style .form-box.row {
  width: 100%;
}
.form-style .form-box:last-child {
  margin-right: 0;
}
.form-style .form-box.gender {
  max-width: 100%;
}
.form-style .form-box.captcha {
  width: auto;
  flex-wrap: nowrap;
}
.form-style .form-box.captcha .content {
  display: flex;
  align-items: center;
}
.form-style .form-box.captcha .content input {
  flex-shrink: 1;
}
.form-style .form-box.captcha .content img {
  display: inline-block;
  margin-left: 15px;
}
.form-style .form-box.captcha .txt {
  color: #222;
  font-weight: 300;
  margin-left: 40px;
}
.form-style .newline {
  width: 100%;
  margin-top: -25px;
}
.form-style .form-flex-group {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 70px;
}
@media (max-width: 640px) {
  .form-style .form-flex-group {
    gap: 15px 0px;
  }
}
.form-style .captcha-group {
  align-items: center;
  justify-content: space-between;
}
.form-style .form-btn-list {
  display: flex;
  column-gap: 30px;
}
.form-style .form-btn-list button {
  background: none;
  border: none;
  cursor: pointer;
  appearance: none;
  display: block;
  transition: 0.3s;
  display: block;
  color: #fff;
  background: #444444;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 40px;
  font-weight: 500;
  word-break: keep-all;
}
.form-style .form-btn-list button.row {
  width: 100%;
}
.form-style .form-btn-list .send button:hover {
  background: #90a538;
}
.form-style.center {
  display: flex;
  justify-content: center;
}
.form-style.row {
  margin-top: 25px;
  width: 100%;
}

/*========== form mobile ==========*/
/*========== header ==========*/
:root {
  --header_h: 95px;
}
@media (max-width: 960px) {
  :root {
    --header_h: 80px;
  }
}
@media (max-width: 480px) {
  :root {
    --header_h: 70px;
  }
}

.main {
  padding-top: var(--header_h);
}

header {
  position: relative;
  z-index: 999;
  height: var(--header_h);
  display: flex;
  align-items: center;
  position: fixed;
  left: 0;
  width: 100%;
  transition: 0.4s;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  gap: 20px;
}
@media (max-width: 960px) {
  header {
    background: #fff;
  }
}
header .logo {
  position: relative;
  transition: 0.3s;
  z-index: 10;
}
header .logo a {
  display: block;
  width: 161px;
  aspect-ratio: 161/51;
  background: url(../images/logo.svg) no-repeat;
  background-size: contain;
  background-position: center left;
}
header .logo a img {
  display: block;
  max-width: 100%;
}
@media (max-width: 960px) {
  header .logo a {
    width: 130px;
  }
}
header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1440px) {
  header .header-container {
    padding: 0 0 0 25px;
  }
}
@media (max-width: 960px) {
  header .header-container {
    padding: 0 25px;
  }
}
@media (max-width: 480px) {
  header .header-container {
    padding: 0 15px;
  }
}
header.scroll {
  height: 70px;
}
header.scroll .header-link .header-search > a,
header.scroll .header-link .header-language > a {
  height: 70px;
}
@media (max-width: 960px) {
  header .empty {
    display: none;
  }
}

/*==== header-language ===*/
.header-link {
  display: flex;
  position: fixed;
  right: 0;
  top: 0;
}
@media (max-width: 1440px) {
  .header-link {
    position: static;
  }
}
@media (max-width: 960px) {
  .header-link {
    margin-left: auto;
  }
}
.header-link .header-search > a,
.header-link .header-language > a {
  display: flex;
  height: 95px;
  width: 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media (max-width: 960px) {
  .header-link .header-search > a,
  .header-link .header-language > a {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 960px) {
  .header-link .header-search > a,
  .header-link .header-language > a {
    width: auto;
    height: auto;
    padding: 0 10px;
  }
}
@media (max-width: 320px) {
  .header-link .header-search > a,
  .header-link .header-language > a {
    padding: 0 5px;
  }
}
.header-link .header-search > a .icon,
.header-link .header-language > a .icon {
  aspect-ratio: 1/1;
}
.header-link .header-search > a .icon img,
.header-link .header-language > a .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.header-link .header-search > a .text,
.header-link .header-language > a .text {
  margin-top: 2px;
  font-size: 0.9375rem;
}
@media (max-width: 960px) {
  .header-link .header-search > a .text,
  .header-link .header-language > a .text {
    font-size: 0.875rem;
    margin-top: 2px;
  }
}
.header-link .header-search {
  position: relative;
}
.header-link .header-search > a {
  background: #b36c31;
}
@media (max-width: 960px) {
  .header-link .header-search > a {
    background: none;
  }
}
.header-link .header-search > a .icon {
  width: 24px;
  -webkit-mask: url(../images/header_search.svg) no-repeat center/contain;
  mask: url(../images/header_search.svg) no-repeat center/contain;
  background-color: #fff;
}
@media (max-width: 960px) {
  .header-link .header-search > a .icon {
    width: 20px;
    background-color: #b36c31;
  }
}
@media (max-width: 960px) {
  .header-link .header-search > a .text {
    color: #444;
  }
}
.header-link .header-search > a:hover {
  background: #444;
}
@media (max-width: 960px) {
  .header-link .header-search > a:hover {
    background: none;
  }
}
.header-link .header-language {
  position: relative;
}
.header-link .header-language > a {
  background: #90a538;
}
@media (max-width: 960px) {
  .header-link .header-language > a {
    background: none;
  }
}
.header-link .header-language > a .icon {
  width: 25px;
  -webkit-mask: url(../images/header_language.svg) no-repeat center/contain;
  mask: url(../images/header_language.svg) no-repeat center/contain;
  background-color: #fff;
}
@media (max-width: 960px) {
  .header-link .header-language > a .icon {
    width: 20px;
    background-color: #90a538;
  }
}
@media (max-width: 960px) {
  .header-link .header-language > a .text {
    color: #444;
  }
}
.header-link .header-language > a:hover {
  background: #444;
}
@media (max-width: 960px) {
  .header-link .header-language > a:hover {
    background: none;
  }
}

.header-language .language-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  width: 120px;
}
.header-language ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #f1f1f1;
}
.header-language ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-language ul li a {
  display: block;
  color: #222222;
  font-size: 0.875rem;
  padding: 6px 15px;
}
.header-language ul li a:hover {
  background: #222;
  color: #fff;
}
.header-language ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.header-language.phone {
  display: none;
}

.header-search-form {
  background: #eee;
  padding: 6px;
  width: 450px;
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  z-index: 10;
}
@media (max-width: 640px) {
  .header-search-form {
    position: fixed;
    width: 100%;
    right: auto;
    left: 0;
    top: 60px;
  }
}
.header-search-form form {
  width: 100%;
  display: flex;
  gap: 0 8px;
}
.header-search-form .input-box {
  display: flex;
  background: #fff;
  padding: 5px 15px;
  flex: 1;
  align-items: baseline;
}
.header-search-form .input-box .title {
  width: 100px;
  color: #444;
  position: relative;
  font-size: 1.0625rem;
}
.header-search-form .input-box .title:after {
  content: "";
  width: 1px;
  height: 60%;
  background: #ccc;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-search-form .input-box .content input {
  border: none;
  box-shadow: none;
  height: 30px;
  display: block;
  width: 100%;
  padding-left: 20px;
  font-size: 1rem;
}
.header-search-form button {
  background: none;
  border: none;
  cursor: pointer;
  appearance: none;
  display: block;
  background: #b36c31;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  font-size: 1rem;
}
.header-search-form button:hover {
  background: #222;
}

/*==== header-menu ===*/
@media (max-width: 960px) {
  .header-menu {
    width: 100%;
    height: auto;
    top: var(--header_h);
    left: 0;
    position: absolute;
    background: #fff;
    border-top: 1px solid #ddd;
    display: none;
  }
}
.header-menu ul.layer1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0 120px;
}
.header-menu ul.layer1 > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1440px) {
  .header-menu ul.layer1 {
    gap: 0 60px;
  }
}
@media (max-width: 960px) {
  .header-menu ul.layer1 {
    display: block;
  }
}
.header-menu ul.layer1 > li {
  position: relative;
}
.header-menu ul.layer1 > li:first-child {
  padding-left: 0;
}
.header-menu ul.layer1 > li:last-child {
  padding-right: 0;
}
.header-menu ul.layer1 > li > a {
  display: block;
  font-size: 1.0625rem;
  font-weight: bold;
  color: #444444;
  overflow: hidden;
  white-space: nowrap;
  height: 25px;
  line-height: 25px;
}
@media (max-width: 960px) {
  .header-menu ul.layer1 > li > a {
    height: auto;
    line-height: initial;
    padding: 15px 20px;
  }
}
@media (max-width: 640px) {
  .header-menu ul.layer1 > li > a {
    font-weight: 500;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
  }
}
.header-menu ul.layer1 > li > a span {
  display: inline-block;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.header-menu ul.layer1 > li > a span::before {
  display: inline-block;
  width: 100%;
  height: 100%;
  content: attr(data-hover);
  position: absolute;
  left: 0;
  top: 100%;
  font-weight: 700;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media (max-width: 960px) {
  .header-menu ul.layer1 > li > a span::before {
    display: none;
  }
}
.header-menu ul.layer1 > li:hover > a span {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}
@media (max-width: 960px) {
  .header-menu ul.layer1 > li:hover > a span {
    transform: none;
  }
}
.header-menu ul.layer1 > li.active > a {
  color: #dc9a63;
  font-weight: bold;
}
@media (max-width: 960px) {
  .header-menu ul.layer1 > li.active > a {
    color: #444444;
  }
}
@media (max-width: 480px) {
  .header-menu ul.layer1 > li.active > a {
    font-weight: 500;
  }
}
.header-menu ul.layer1 > li:hover > a {
  color: #dc9a63;
  font-weight: bold;
}
.header-menu .layer2 {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
  padding-top: 5px;
  width: 150px;
}
@media (max-width: 960px) {
  .header-menu .layer2 {
    width: 100%;
    position: static;
    transform: none;
    padding: 0 20px;
  }
}
.header-menu .layer2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  padding: 15px;
  border-top: 2px solid #222222;
  border-bottom: 2px solid #222222;
}
.header-menu .layer2 ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 960px) {
  .header-menu .layer2 ul {
    padding: 0;
  }
}
.header-menu .layer2 ul > li > a {
  display: block;
  padding: 8px 10px;
  color: #222;
  font-size: 1rem;
}
.header-menu .layer2 ul > li:not(:last-child) a {
  border-bottom: 1px dashed #ccc;
}
.header-menu .layer2 ul > li:hover > a {
  background: #90a538;
  color: #fff;
}
.phone-bar {
  z-index: 10;
  display: none;
}
@media (max-width: 960px) {
  .phone-bar {
    align-items: center;
    justify-content: center;
    display: flex;
  }
}
.phone-bar .nav-icon-1 {
  width: 26px;
  height: 26px;
  position: relative;
  transition: 0.1s;
  cursor: pointer;
  display: inline-block;
}
.phone-bar .nav-icon-1 span {
  width: 4px;
  height: 4px;
  background-color: var(--blue);
  display: block;
  border-radius: 50%;
  position: absolute;
}
.phone-bar .nav-icon-1 span:nth-child(1) {
  left: 0;
  top: 0;
}
.phone-bar .nav-icon-1 span:nth-child(2) {
  left: 11px;
  top: 0;
}
.phone-bar .nav-icon-1 span:nth-child(3) {
  right: 0;
  top: 0;
}
.phone-bar .nav-icon-1 span:nth-child(4) {
  left: 0;
  top: 11px;
}
.phone-bar .nav-icon-1 span:nth-child(5) {
  position: absolute;
  left: 11px;
  top: 11px;
}
.phone-bar .nav-icon-1 span:nth-child(6) {
  right: 0px;
  top: 11px;
}
.phone-bar .nav-icon-1 span:nth-child(7) {
  left: 0px;
  bottom: 0px;
}
.phone-bar .nav-icon-1 span:nth-child(8) {
  position: absolute;
  left: 11px;
  bottom: 0px;
}
.phone-bar .nav-icon-1 span:nth-child(9) {
  right: 0px;
  bottom: 0px;
}
.phone-bar .nav-icon-1:hover span {
  transform: scale(1.2);
  transition: 350ms cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.phone-bar .nav-icon-1.open {
  transform: rotate(180deg);
  cursor: pointer;
  transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.phone-bar .nav-icon-1.open span {
  border-radius: 50%;
  transition-delay: 200ms;
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  background: var(--orange);
}
.phone-bar .nav-icon-1.open span:nth-child(2) {
  left: 6px;
  top: 6px;
}
.phone-bar .nav-icon-1.open span:nth-child(4) {
  left: 5px;
  top: 16px;
}
.phone-bar .nav-icon-1.open span:nth-child(6) {
  right: 6px;
  top: 6px;
}
.phone-bar .nav-icon-1.open span:nth-child(8) {
  left: 16px;
  bottom: 5px;
}

/*========== header mobile ==========*/
/*===== footer =====*/
footer {
  background: #727171;
  padding: 60px 0;
}
@media (max-width: 1280px) {
  footer {
    padding: 60px 0;
  }
}
@media (max-width: 640px) {
  footer {
    padding: 40px 0;
  }
}
footer .footer-container {
  display: flex;
  justify-content: space-between;
  gap: 0 40px;
}
@media (max-width: 960px) {
  footer .footer-container {
    flex-wrap: wrap;
    gap: 30px;
  }
}
footer .logo {
  position: relative;
  transition: 0.3s;
  z-index: 10;
}
footer .logo a {
  display: block;
  width: 192px;
  aspect-ratio: 192/61;
  -webkit-mask: url("../images/logo.svg") no-repeat center/contain;
  mask: url("../images/logo.svg") no-repeat center/contain;
  background-color: #fff;
}
footer .logo a img {
  display: block;
  max-width: 100%;
}
@media (max-width: 1280px) {
  footer .logo a {
    width: 160px;
  }
}
@media (max-width: 640px) {
  footer .logo a {
    width: 180px;
  }
}

.footer-left {
  display: flex;
  gap: 20px 60px;
  flex: 1;
}
@media (max-width: 1440px) {
  .footer-left {
    gap: 20px 40px;
  }
}
@media (max-width: 960px) {
  .footer-left {
    width: 100%;
    flex: auto;
  }
}
@media (max-width: 640px) {
  .footer-left {
    flex-wrap: wrap;
  }
}

.footer-menu1 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.footer-menu1 ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 480px) {
  .footer-menu1 ul {
    border-top: 1px solid #eee;
    gap: 0;
  }
}
.footer-menu1 ul li {
  padding: 0 30px;
  position: relative;
}
@media (max-width: 1440px) {
  .footer-menu1 ul li {
    padding: 0 20px;
  }
}
@media (max-width: 1280px) {
  .footer-menu1 ul li {
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .footer-menu1 ul li {
    width: 100%;
    padding: 0;
  }
}
.footer-menu1 ul li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #9c9c9c;
}
@media (max-width: 1280px) {
  .footer-menu1 ul li:not(:last-child)::after {
    display: none;
  }
}
.footer-menu1 ul li a {
  display: block;
  color: #fff;
  font-size: 0.9375rem;
}
@media (max-width: 480px) {
  .footer-menu1 ul li a {
    font-size: 0.9375rem;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
}
.footer-menu1 ul li a:hover {
  color: #dc9a63;
}
.footer-menu1 ul li:first-child {
  padding-left: 0;
}
.footer-menu1 ul li:last-child {
  padding-right: 0;
}

.footer-menu2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 70px;
  justify-content: flex-end;
}
.footer-menu2 ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1440px) {
  .footer-menu2 ul {
    gap: 20px 50px;
  }
}
@media (max-width: 1280px) {
  .footer-menu2 ul {
    gap: 20px 20px;
  }
}
@media (max-width: 960px) {
  .footer-menu2 ul {
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .footer-menu2 ul {
    border-top: 1px solid #eee;
    gap: 0;
  }
}
.footer-menu2 ul li {
  position: relative;
}
@media (max-width: 480px) {
  .footer-menu2 ul li {
    width: 100%;
    padding: 0;
  }
}
.footer-menu2 ul li a {
  display: block;
  color: #fff;
  font-size: 1.0625rem;
}
@media (max-width: 480px) {
  .footer-menu2 ul li a {
    font-size: 0.9375rem;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
}
.footer-menu2 ul li a:hover {
  color: #dc9a63;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 20px;
  color: #fff;
  margin-top: 20px;
  font-size: 0.9375rem;
}
.footer-info p {
  margin: 0;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
}
.footer-info p span {
  display: inline-block;
  margin-right: 5px;
}
.footer-info p a {
  color: #dc9a63;
}
.footer-info p a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-info p.address, .footer-info p.service-time {
  width: 100%;
  flex: 0 0 100%;
}

.footer-right {
  text-align: right;
}
@media (max-width: 960px) {
  .footer-right {
    width: 100%;
    text-align: left;
    padding-left: 200px;
  }
}
@media (max-width: 640px) {
  .footer-right {
    padding-left: 0;
  }
}

.copyright {
  color: #fff;
  margin-top: 25px;
}
@media (max-width: 960px) {
  .copyright {
    margin-top: 10px;
  }
}

.iware {
  color: #adadad;
  font-size: 0.75rem;
}
.iware a {
  color: #adadad;
}
.iware a:hover {
  color: #fff;
  text-decoration: underline;
}

.fixed-top {
  position: fixed;
  right: 40px;
  bottom: -100%;
  transition: 1s;
}
@media (max-width: 960px) {
  .fixed-top {
    right: 10px;
  }
}
.fixed-top.active {
  bottom: 50px;
}
@media (max-width: 960px) {
  .fixed-top.active {
    bottom: 20px;
  }
}

.totop {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .totop {
    width: 70px;
    height: 70px;
  }
}
.totop a {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
  text-decoration: none;
}
.totop .text {
  color: #222;
}
.totop .brand-label {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.totop .brand-label svg {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: center;
  animation: rotate 15s linear infinite;
  animation-play-state: running;
}
.totop .brand-label text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  fill: #222;
  letter-spacing: 4.5px;
  transition: 0.4s;
}
.totop:hover .text {
  color: #b36c31;
}
.totop:hover .brand-label text {
  fill: #b36c31;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(365deg);
  }
}
/*========== footer mobile ==========*/
/*===== page main =====*/
.page-main {
  background: #f0efec;
}
.page-main.contact-main {
  background: #fff;
}
.page-main.error-main {
  background: #fff;
}

/*===== breadcrumb =====*/
.breadcrumb {
  padding-top: 25px;
  padding-bottom: 10px;
}
.breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
  justify-content: flex-end;
}
.breadcrumb ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb ul li {
  color: #666;
  font-size: 0.875rem;
  display: flex;
  align-items: baseline;
}
.breadcrumb ul li a {
  color: #666666;
  font-size: 0.875rem;
}
.breadcrumb ul li a:hover {
  color: #dc9a63;
  text-decoration: underline;
}
.breadcrumb ul li:not(:last-child):after {
  content: "/";
  display: block;
  color: #a9a9a9;
  font-size: 0.75rem;
  margin: 0 7px;
}
.page-article {
  display: flex;
  padding-bottom: 75px;
}
@media (max-width: 960px) {
  .page-article {
    flex-wrap: wrap;
    gap: 30px 0;
  }
}
@media (max-width: 640px) {
  .page-article {
    padding-bottom: 50px;
  }
}

.page-article-content {
  width: 100%;
}

/*===== aside =====*/
.aside {
  width: 240px;
}
@media (max-width: 960px) {
  .aside {
    width: 100%;
  }
}
.aside .aside-title {
  padding-bottom: 50px;
  padding-top: 10px;
  position: relative;
}
.aside .aside-title .title {
  color: #444444;
  font-size: 1.75rem;
  text-align: right;
}
.aside .aside-title .title span {
  font-family: "GenRyuMin2TW", "Noto Serif TC", serif;
  font-weight: 300;
  position: relative;
}
.aside .aside-title .title span::after {
  content: "";
  display: block;
  position: absolute;
  width: 110%;
  background: #222222;
  height: 3px;
  right: 0;
  bottom: -10px;
  transform: skewY(2deg);
}
.aside .aside-title .pic {
  position: absolute;
  left: 0;
  bottom: 0;
}
.aside .aside-title .pic img {
  display: block;
  max-width: 100%;
}
.aside .aside-pic {
  padding-top: 30px;
}
.aside .aside-pic .pic img {
  display: block;
  max-width: 100%;
}
@media (max-width: 960px) {
  .aside .aside-pic {
    display: none;
  }
}
.aside aside {
  border-top: 1px solid #444444;
  border-bottom: 1px solid #444444;
}
.aside .layer {
  list-style: none;
  margin: 0;
  padding: 0;
}
.aside .layer > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.aside .layer > li > a {
  display: block;
}
@media (max-width: 960px) {
  .aside .layer1 {
    display: flex;
    flex-wrap: wrap;
  }
}
.aside .layer1 > li > a {
  color: #222222;
  font-size: 1.0625rem;
  display: block;
  padding: 12px 20px;
  border-radius: 0;
  position: relative;
  text-align: right;
}
@media (max-width: 640px) {
  .aside .layer1 > li > a {
    padding: 8px 20px;
    font-size: 0.9375rem;
  }
}
@media (max-width: 480px) {
  .aside .layer1 > li > a {
    padding: 8px 12px;
  }
}
.aside .layer1 > li.active {
  border-bottom-color: #222;
}
.aside .layer1 > li.active > a {
  background: #9d9587;
  color: #fff;
  font-weight: bold;
}
.aside .layer1 > li:not(.active) > a:hover {
  background: #90a538;
  color: #fff;
  font-weight: bold;
}
.aside .layer1 > li:not(:last-child) {
  border-bottom: 1px solid #444444;
}
@media (max-width: 960px) {
  .aside .layer1 > li:not(:last-child) {
    border-bottom: none;
  }
}
.aside .layer2 {
  display: none;
  border-left: 1px solid var(--blue);
  margin: 20px;
}
.aside .layer2 > li > a {
  font-size: 1.0625rem;
  color: #3e3a39;
  padding: 6.5px 20px;
}
.aside .layer2 > li.active > a {
  color: var(--green);
}
.aside .layer2 > li:not(.active) > a:hover {
  background: #f1f1f1;
  border-color: transparent;
  border-radius: 5px;
}
.aside .layer3 {
  display: none;
}
.aside .layer3 > li > a {
  font-size: 1rem;
  color: var(--blue);
  padding: 5px 30px;
  position: relative;
}
.aside .layer3 > li.active > a::before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
  font-weight: bold;
}
.aside + .page-article-content {
  flex: 1;
  min-width: 0;
  padding-left: 6.25%;
}
@media (max-width: 960px) {
  .aside + .page-article-content {
    width: 100%;
    padding-left: 0;
    min-width: initial;
  }
}

/* 單元標題 */
.article-title-block {
  margin-bottom: 30px;
}
.article-title-block .title {
  color: #444444;
  font-size: 1.5625rem;
  font-family: "GenRyuMin2TW", "Noto Serif TC", serif;
  font-weight: 500;
  margin: 0;
}

.contact-title-block {
  padding-bottom: 10px;
  padding-top: 20px;
  position: relative;
}
.contact-title-block .title {
  margin: 0;
  color: #444444;
  font-size: 1.75rem;
}
.contact-title-block .title span {
  font-family: "GenRyuMin2TW", "Noto Serif TC", serif;
  font-weight: 300;
  position: relative;
}
.contact-title-block .title span::after {
  content: "";
  display: block;
  position: absolute;
  width: 105%;
  background: #222222;
  height: 3px;
  left: 0;
  bottom: -10px;
  transform: skewY(-2deg);
}
.contact-title-block .breadcrumb {
  padding-top: 10px;
  padding-bottom: 0;
}

/* 內頁標題 */
.page-detail-other {
  display: flex;
}

.page-detail-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  gap: 0 24px;
}
.page-detail-info .page-sort {
  color: #a7a5a5;
  display: flex;
  align-items: center;
}
.page-detail-info .page-sort .icon {
  margin-right: 8px;
}
.page-detail-info:after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: #dddddd;
  border-bottom: 2px solid #fff;
}

.page-date {
  color: #6aa9c0;
  font-size: 0.875rem;
}

.page-share {
  display: flex;
  align-items: center;
}
.page-share .a2a_kit {
  display: flex;
}
.page-share .a2a_kit a .pic {
  width: 27px;
  height: 27px;
}
.page-share .a2a_kit a .pic img {
  display: block;
  max-width: 100%;
  transition: 0.3s;
}
.page-share .a2a_kit a:not(:last-child) {
  margin-right: 10px;
}
.page-share .a2a_kit a:hover .pic img {
  transform: scale(1.2);
}

.page-detail-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.page-detail-tag .tag-title {
  color: var(--blue);
}
.page-detail-tag .tag-title i {
  margin-right: 5px;
}
.page-detail-tag a {
  margin-left: 10px;
  padding: 4px 13px;
  display: inline-block;
  color: #3e3a39;
  font-size: 0.875rem;
  margin-bottom: 10px;
  background: url(../images/bg_white.jpg);
  border-radius: 3px;
}
.page-detail-tag a:hover {
  background: url(../images/bg_green.jpg);
  color: #fff;
}

/*===== main-section-group =====*/
.aside-menu-btn {
  font-size: 1rem;
  color: #fff;
  background: var(--blue);
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
}
.aside-menu-btn i {
  margin-right: 10px;
}

/*===== 頁面標題 =====*/
/*===== pagination =====*/
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
}
.pagination .page_num {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  font-size: 0.875rem;
  text-decoration: none;
  width: 30px;
  height: 30px;
  color: #222222;
  border: 1px solid transparent;
}
.pagination .page_num.active {
  color: #fff;
  background: #444444;
}
.pagination .page_num:not(.active):hover {
  background: #90a538;
  color: #fff;
}
.pagination .page_arrow {
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
}
.pagination .page_arrow:hover {
  color: var(--orange);
}
.pagination .page_arrow.prev {
  margin-right: 20px;
}
.pagination .page_arrow.next {
  margin-left: 20px;
}
.pagination .page_dot {
  display: inline-block;
  padding: 10px;
  text-align: center;
  margin: 0 3px;
}
.pagination .page_select {
  display: inline-block;
  margin-left: 30px;
}
@media (max-width: 640px) {
  .pagination .page_select {
    display: block;
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}
.pagination .page_select .num_input {
  background: none;
  border-radius: 0;
  border: none;
  appearance: none;
  font-size: 0.9375rem;
  background: #fff;
  border: 1px solid #d2d2d2;
  width: 40px;
  height: 30px;
  padding: 3px 5px;
  border-radius: 3px;
  text-align: center;
  /* 隱藏箭頭 */
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
  -moz-appearance: textfield;
}
.pagination .page_select .num_input::-webkit-outer-spin-button, .pagination .page_select .num_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pagination .page_select .txt {
  display: inline-block;
  margin-left: 5px;
  color: #222;
}

/*===== btn-style =====*/
.page-btn-block {
  border-top: 1px solid #eee;
  display: none;
}

.page-btn-list {
  display: flex;
}
.page-btn-list a {
  display: block;
  line-height: 1;
  font-size: 1.125rem;
  color: #222;
  padding: 18px 20px;
}
.page-btn-list button {
  appearance: none;
  background: none;
  border: none;
  display: block;
  cursor: pointer;
}
.page-btn-list .back-home {
  display: inline-block;
}
.page-btn-list .back-home a::before {
  content: "\f060";
  display: inline-block;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
}
.page-btn-list .back-home a:hover {
  background: #222;
  color: #fff;
}
.page-btn-list.right {
  justify-content: flex-end;
}
.page-btn-list.center {
  justify-content: center;
}

.page-detail-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  margin-top: 50px;
}
.page-detail-btn .back-btn a {
  color: #444444;
  font-size: 0.9375rem;
  font-weight: bold;
}
.page-detail-btn .back-btn a span {
  position: relative;
}
.page-detail-btn .back-btn a span::before {
  content: "";
  display: block;
  position: absolute;
  width: 103%;
  background: #222222;
  height: 3px;
  left: -3%;
  bottom: -12px;
  transform: skewY(-2deg);
}
.page-detail-btn .back-btn a:hover {
  color: #dc9a63;
}
.page-detail-btn .back-btn a:hover span::before {
  background: #dc9a63;
}

/*===== pages-list-search =====*/
/* table-style */
.table-style table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.table-style table td {
  border: 1px solid #d7d7d7;
  padding: 14px 40px;
  color: #535353;
}
.table-style table .right {
  text-align: right;
}
.table-style table .c {
  text-align: center;
}
.table-style table thead th {
  background: url(../images/bg_green.jpg);
  font-weight: 500;
  color: #fff;
  padding: 17px 10px;
  border: 1px solid #d7d7d7;
  line-height: 1;
  text-align: center;
}
.table-style table tbody td.date {
  width: 200px;
}
.table-style table tbody td.link {
  width: 200px;
}
.table-style table tbody td.link a.icon {
  width: 25px;
  height: 25px;
  margin: auto;
  display: block;
}
.table-style table tbody td.link a.icon .pic img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.table-style table tbody td.link a.icon .pic svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
  transition: 0.3s;
}
.table-style table tbody td.link a.icon .pic svg path {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #1B365D;
}
.table-style table tbody td.link a.icon:hover .pic {
  background: var(--green);
  border-radius: 50%;
}
.table-style table tbody td.link a.icon:hover .pic svg {
  transform: scale(0.5);
}
.table-style table tbody td.link a.icon:hover .pic svg path {
  fill: #fff;
}
.table-style.rwd1000 {
  overflow: auto;
}
.table-style.rwd1000 table {
  min-width: 1000px;
}

.table-style2 table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.table-style2 table thead th {
  background: url(../images/bg_green.jpg);
  font-weight: 500;
  color: #fff;
  padding: 17px 10px;
  border: 1px solid #d7d7d7;
  line-height: 1;
  text-align: center;
}
.table-style2 table td {
  border: 1px solid #d7d7d7;
  padding: 14px 40px;
  color: #535353;
}
.table-style2 table td.fb {
  font-weight: bold;
}
.table-style2 table td a {
  color: var(--blue);
  text-decoration: underline;
}
.table-style2 table td a:hover {
  color: var(--green);
}
.table-style2 table tbody tr:nth-child(even) td {
  background-color: #f4f4f4;
}

.tab-style-btn ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.tab-style-btn ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tab-style-btn ul a {
  display: block;
  padding: 7px 30px 6px 30px;
  border: 1px solid #f1f1f1;
  color: #222;
}
.tab-style-btn ul a:hover {
  background: #eee;
}
.tab-style-btn ul li.active a {
  background: var(--aside-layer2-bg);
  border-color: var(--aside-layer2-bg);
  color: var(--main);
  font-weight: bold;
}

.j-titleList-block {
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 55px;
}
.j-titleList-block .j-titleList-title {
  color: #3e3a39;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 13px 60px 13px 40px;
  background: url(../images/bg_white.jpg);
  position: relative;
  cursor: pointer;
}
.j-titleList-block .j-titleList-title::after {
  content: "\f0d7";
  display: block;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  color: var(--blue);
  right: 40px;
  top: 15px;
  font-size: 0.9375rem;
  transition: 0.3s;
}
.j-titleList-block .j-titleList-title.active:after {
  transform: rotate(90deg);
}
.j-titleList-block .j-titleList-content {
  padding: 20px 40px;
}
.j-titleList-block .j-titleList {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}
.j-titleList-block .j-titleList li {
  margin-bottom: 5px;
}
.j-titleList-block .j-titleList li a {
  color: #3e3a39;
  font-size: 1.0625rem;
}

.page-search-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  column-gap: 30px;
}
.page-search-form .form-box {
  width: 100%;
  max-width: 100%;
}
.page-search-form .form-box.select-year {
  width: 250px;
}
.page-search-form .form-box.search-keyword {
  width: 300px;
}
.page-search-form .form-box.search-keyword .content input {
  padding-right: 60px;
}
.page-search-form .form-box.select-region {
  width: 300px;
}
.page-search-form .form-box.select-country {
  width: 300px;
}
.page-search-form .form-box.select-location {
  width: 400px;
}
.page-search-form .search-btn {
  position: absolute;
  right: 1px;
  top: 1px;
}
.page-search-form .search-btn button {
  background: none;
  border: none;
  cursor: pointer;
  appearance: none;
  display: block;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/bg_white.jpg);
  width: 50px;
  height: 40px;
}
.page-search-form .search-btn button .pic {
  width: 17px;
  height: 19px;
}
.page-search-form .search-btn button .pic svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.page-search-form .search-btn button .pic svg .st0 {
  fill: #1B365D;
}
.page-search-form .search-btn button:hover {
  background: url(../images/bg_green.jpg);
}
.page-search-form .search-btn button:hover .pic svg .st0 {
  fill: #fff;
}

/*========== pageBasic mobile ==========*/
/*========= index ==========*/
/*========== index-banner ==========*/
.index-banner-section {
  position: relative;
  padding-bottom: 70px;
}
.index-banner-section .index-container {
  position: relative;
  width: 1680px;
  padding: 0;
}
.index-banner-section .swiper-pagination {
  position: static;
  padding: 31px 0;
  display: none;
}
.index-banner-section .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.35;
}
.index-banner-section .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.index-banner-section .banner-left-pic,
.index-banner-section .banner-right-pic {
  position: absolute;
  z-index: 1;
}
.index-banner-section .banner-left-pic .pic img,
.index-banner-section .banner-right-pic .pic img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.index-banner-section .banner-text-pic {
  position: absolute;
  left: 0;
  bottom: -50px;
  z-index: 1;
  width: 640px;
}
.index-banner-section .banner-text-pic .pic {
  width: 100%;
  aspect-ratio: 640/255;
}
.index-banner-section .banner-text-pic .pic img {
  width: 100%;
  display: block;
}
@media (max-width: 1440px) {
  .index-banner-section .banner-text-pic {
    width: 45%;
    left: 2%;
  }
}
@media (max-width: 960px) {
  .index-banner-section .banner-text-pic {
    width: 55%;
  }
}
@media (max-width: 480px) {
  .index-banner-section .banner-text-pic {
    width: 80%;
    left: -5%;
  }
}
.index-banner-section .banner-left-pic {
  left: 2.6041666667%;
  bottom: 0;
  width: 11.8229166667%;
}
.index-banner-section .banner-left-pic .pic {
  width: 100%;
  aspect-ratio: 227/200;
}
@media (max-width: 480px) {
  .index-banner-section .banner-left-pic {
    width: 20%;
    display: none;
  }
}
.index-banner-section .banner-right-pic {
  right: 2.6041666667%;
  bottom: 25px;
  width: 5.6770833333%;
}
.index-banner-section .banner-right-pic .pic {
  width: 100%;
  aspect-ratio: 109/120;
}
@media (max-width: 480px) {
  .index-banner-section .banner-right-pic {
    width: 15%;
  }
}

.index-banner-swiper .swiper-slide figure {
  margin: 0;
}
.index-banner-swiper .swiper-slide figure img {
  display: block;
  max-width: 100%;
  margin: auto;
}

/*========== index-news ==========*/
.index-link-section {
  display: flex;
}
@media (max-width: 640px) {
  .index-link-section {
    padding: 25px 0 0 0;
    flex-wrap: wrap;
  }
}

.index-link-list {
  display: flex;
  padding-left: 25%;
  flex: 1;
  background: #9d9587;
  transition: 0.4s;
}
@media (max-width: 960px) {
  .index-link-list {
    padding-left: 40px;
  }
}
@media (max-width: 640px) {
  .index-link-list {
    width: 100%;
    padding-left: 0;
    background: none;
  }
}
@media (max-width: 320px) {
  .index-link-list {
    flex-wrap: wrap;
    padding: 0 25px;
  }
}

.index-link-box {
  flex: 1;
  background: #fff;
  position: relative;
}
@media (max-width: 640px) {
  .index-link-box {
    flex: auto;
    width: 33.3333333333%;
  }
  .index-link-box:last-child::after {
    display: none;
  }
}
@media (max-width: 320px) {
  .index-link-box {
    width: 100%;
  }
}
.index-link-box a {
  display: block;
  padding: 0 20px 40px 20px;
  position: relative;
}
@media (max-width: 640px) {
  .index-link-box a {
    padding: 0 20px 20px 20px;
  }
}
@media (max-width: 320px) {
  .index-link-box a {
    display: flex;
    padding: 0 10px 20px 10px;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed #ccc;
  }
}
.index-link-box a::before {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s;
  background: linear-gradient(to right, #90a538, #6aa9c0);
}
@media (max-width: 320px) {
  .index-link-box a::before {
    bottom: -1px;
  }
}
.index-link-box a:hover .icon {
  animation: hoverShake 0.4s ease-in-out;
}
.index-link-box a:hover::before {
  width: 100%;
}
.index-link-box .icon {
  width: 120px;
  max-width: 100%;
  margin: auto;
  display: flex;
  transition: transform 0.2s ease;
}
@media (max-width: 480px) {
  .index-link-box .icon {
    width: 95%;
  }
}
@media (max-width: 320px) {
  .index-link-box .icon {
    width: 35%;
  }
}
.index-link-box .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  aspect-ratio: 120/70;
}
.index-link-box .text {
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  color: #444444;
  margin-top: 15px;
}
@media (max-width: 640px) {
  .index-link-box .text {
    font-size: 1rem;
    font-weight: 500;
  }
}
@media (max-width: 320px) {
  .index-link-box .text {
    width: 65%;
    text-align: left;
    padding-left: 20px;
    font-size: 1.125rem;
  }
}
.index-link-box::after {
  content: "";
  display: block;
  width: 2px;
  height: 15%;
  background: #999999;
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
}
@media (max-width: 320px) {
  .index-link-box::after {
    display: none;
  }
}

@keyframes hoverShake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-3px);
  }
  40% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
.index-link-right {
  width: 18.75%;
  align-self: flex-end;
}
@media (max-width: 640px) {
  .index-link-right {
    width: 100%;
    margin-top: 20px;
  }
}
.index-link-right .pic {
  position: relative;
  transform: translateX(100%);
  transition: 1s;
  transform-origin: center;
}
.index-link-right .pic img {
  display: block;
  max-width: 100%;
  margin-left: 18%;
}
@media (max-width: 640px) {
  .index-link-right .pic img {
    margin-left: 30%;
    width: 150px;
  }
}
.index-link-right.active .pic {
  animation: bicycle 1s linear forwards;
  animation-fill-mode: forwards;
}

@keyframes bicycle {
  to {
    transform: translateX(0);
  }
}
/*========== index-news ==========*/
.index-news-section {
  background: #f0efec;
  padding-top: 40px;
  padding: 90px 0 120px 0;
}
@media (max-width: 1280px) {
  .index-news-section {
    padding: 60px 0 90px 0;
  }
}
@media (max-width: 640px) {
  .index-news-section {
    padding: 40px 0 60px 0;
  }
}
.index-news-section .index-container {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 960px) {
  .index-news-section .index-container {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.index-news-list {
  display: flex;
  width: calc(100% - 300px);
}
@media (max-width: 1280px) {
  .index-news-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 960px) {
  .index-news-list {
    width: 100%;
  }
}

.index-news-box {
  width: 50%;
}
@media (max-width: 1280px) {
  .index-news-box {
    width: 100%;
  }
}
.index-news-box a {
  display: flex;
  align-items: flex-start;
}
.index-news-box a:hover figure .pic::before {
  transform: translateX(100%);
}
.index-news-box a:hover .content .title {
  color: #dc9a63;
}
.index-news-box figure {
  margin: 0;
  width: 130px;
  background: #fff;
  border: 1px solid #c0bfbd;
  border-radius: 8px;
  overflow: hidden;
}
.index-news-box figure .pic {
  width: 100%;
  padding: 4px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 320px) {
  .index-news-box figure .pic {
    padding: 3px;
  }
}
.index-news-box figure .pic img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: 0.4s;
}
.index-news-box figure .pic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 1;
}
@media (max-width: 640px) {
  .index-news-box figure {
    width: 100px;
  }
}
@media (max-width: 320px) {
  .index-news-box figure {
    width: 70px;
  }
}
.index-news-box .content {
  width: calc(100% - 130px);
  padding-left: 30px;
  padding-right: 80px;
}
@media (max-width: 1440px) {
  .index-news-box .content {
    padding-right: 40px;
    padding-left: 20px;
  }
}
@media (max-width: 640px) {
  .index-news-box .content {
    padding-right: 0;
    width: calc(100% - 100px);
  }
}
@media (max-width: 320px) {
  .index-news-box .content {
    width: calc(100% - 70px);
    padding-left: 10px;
  }
}
.index-news-box .content .date {
  display: flex;
  align-items: baseline;
}
.index-news-box .content .date .moon {
  color: #727171;
  font-weight: bold;
  font-size: 1.125rem;
}
.index-news-box .content .date .moon::after {
  content: "/";
  display: inline-block;
  color: #cccccc;
  font-weight: 300;
  margin: 0 5px;
}
.index-news-box .content .date .day {
  color: #727171;
  font-weight: 300;
  font-size: 1.75rem;
}
@media (max-width: 640px) {
  .index-news-box .content .date .day {
    font-size: 1.375rem;
  }
}
.index-news-box .content .title {
  color: #444444;
  font-size: 1.0625rem;
  font-weight: bold;
  margin-top: 5px;
  transition: 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .index-news-box .content .title {
    font-size: 1rem;
    margin-top: 2px;
  }
}
.index-news-box .content .txt {
  color: #444444;
  font-size: 0.9375rem;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 480px) {
  .index-news-box .content .txt {
    margin-top: 2px;
  }
}

.index-news-title {
  width: 300px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 960px) {
  .index-news-title {
    justify-content: flex-start;
    margin-bottom: 40px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .index-news-title {
    margin-bottom: 30px;
  }
}
.index-news-title .title-group {
  display: inline-block;
}
.index-news-title .title .en {
  color: #444444;
  font-size: 0.8125rem;
  font-weight: bold;
}
.index-news-title .title .tw {
  background: #fff;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  padding: 2px 35px;
  text-align: center;
  margin-top: 3px;
  transform: skewY(-2deg);
}
@media (max-width: 640px) {
  .index-news-title .title .tw {
    padding: 4px 35px;
  }
}
.index-news-title .title .tw span {
  font-family: "GenRyuMin2TW", "Noto Serif TC", serif;
  font-weight: 300;
  display: block;
  font-size: 1.75rem;
  color: #444444;
  transform: skewY(2deg);
}
@media (max-width: 640px) {
  .index-news-title .title .tw span {
    font-size: 1.5rem;
  }
}
.index-news-title .more {
  margin-top: 30px;
}
.index-news-title .more a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222222;
  font-size: 0.9375rem;
  font-weight: bold;
}
.index-news-title .more a::before {
  content: "";
  display: block;
  aspect-ratio: 26/8;
  width: 26px;
  -webkit-mask: url(../images/index_more.svg) no-repeat center/contain;
  mask: url(../images/index_more.svg) no-repeat center/contain;
  background-color: #222;
  transition: 0.4s;
}
.index-news-title .more a:hover {
  color: #dc9a63;
}
.index-news-title .more a:hover::before {
  background-color: #dc9a63;
}
.EN .index-news-title .title .en {
  display: none;
}

/*========== index mobile ==========*/
/*========= about ==========*/
.about-pic-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 90px;
  margin: 20px 0;
}
@media (max-width: 1280px) {
  .about-pic-list {
    padding: 0;
  }
}
.about-pic-list.w33 {
  gap: 20px 65px;
}
.about-pic-list.w33 .about-box {
  width: calc((100% - 130px) / 3);
}
@media (max-width: 1280px) {
  .about-pic-list.w33 {
    gap: 20px 40px;
  }
  .about-pic-list.w33 .about-box {
    width: calc((100% - 80px) / 3);
  }
}
@media (max-width: 640px) {
  .about-pic-list.w33 {
    gap: 20px;
  }
  .about-pic-list.w33 .about-box {
    width: 100%;
  }
}
.about-pic-list.w25 {
  gap: 20px 60px;
}
.about-pic-list.w25 .about-box {
  width: calc((100% - 180px) / 4);
}
@media (max-width: 1440px) {
  .about-pic-list.w25 {
    gap: 20px 50px;
  }
  .about-pic-list.w25 .about-box {
    width: calc((100% - 150px) / 4);
  }
}
@media (max-width: 1280px) {
  .about-pic-list.w25 {
    gap: 20px 40px;
  }
  .about-pic-list.w25 .about-box {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 640px) {
  .about-pic-list.w25 {
    gap: 20px;
  }
  .about-pic-list.w25 .about-box {
    width: 100%;
  }
}
.about-pic-list.w16 {
  gap: 20px 25px;
}
.about-pic-list.w16 .about-box {
  width: calc((100% - 125px) / 6);
}
@media (max-width: 1280px) {
  .about-pic-list.w16 {
    gap: 20px 40px;
  }
  .about-pic-list.w16 .about-box {
    width: calc((100% - 80px) / 3);
  }
}
@media (max-width: 640px) {
  .about-pic-list.w16 {
    gap: 20px;
  }
  .about-pic-list.w16 .about-box {
    width: 100%;
  }
}

.about-box .figure {
  margin: 0;
  background: #fff url(../images/about_box_bg.jpg) bottom repeat-x;
  border-radius: 8px;
  padding: 30px 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
}
@media (max-width: 640px) {
  .about-box .figure {
    padding: 15px 10px;
  }
}
.about-box .figure .pic img {
  display: block;
  max-width: 100%;
  margin: auto;
}
.about-box .title {
  color: #444444;
  font-size: 1.25rem;
  font-family: "GenRyuMin2TW", "Noto Serif TC", serif;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .about-box .title {
    font-size: 1.125rem;
  }
}
.about-box .content {
  color: #727171;
  margin-top: 25px;
}
.about-box .tc {
  text-align: center;
}
.about-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 10px;
}
.about-box ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-box ul li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
}
.about-box ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #727171;
  position: absolute;
  left: 0;
  top: 9px;
}

.about-table table {
  width: 100%;
  border-collapse: collapse;
}
.about-table td {
  padding: 10px 15px;
  font-size: 0.9375rem;
  border: 1px solid #e8e8e8;
}
@media (max-width: 640px) {
  .about-table td {
    padding: 5px 10px;
    font-size: 0.875rem;
  }
}
.about-table thead tr th {
  padding: 10px 15px;
  font-size: 0.9375rem;
  background: #727171;
  color: #fff;
  word-break: keep-all;
}
.about-table tbody tr td {
  background: #ffffff;
  color: #444444;
}
.about-table tbody tr td.row {
  background: #b3aeaa;
  color: #fff;
  font-weight: 500;
}

.organization-team-table-group {
  display: flex;
  gap: 50px;
}
@media (max-width: 1440px) {
  .organization-team-table-group {
    gap: 30px;
  }
}
.organization-team-table-group .about-table {
  flex: 1;
}
@media (max-width: 1280px) {
  .organization-team-table-group {
    flex-wrap: wrap;
    gap: 20px;
  }
  .organization-team-table-group .about-table {
    flex: auto;
    width: 100%;
  }
}

.history-block .history-txt {
  color: #444444;
}
.history-block .history-txt .txt1 {
  font-size: 1.5625rem;
  font-weight: 200;
}
.history-block .history-txt .txt2 b {
  font-size: 1.0625rem;
}

.history-tab {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 790px;
  max-width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  .history-tab {
    gap: 20px;
  }
}
.history-tab .tabs-btn {
  width: 280px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: flex-end;
}
.history-tab .tabs-btn::after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #444444;
}
@media (max-width: 480px) {
  .history-tab .tabs-btn::after {
    display: none;
  }
}
@media (max-width: 1280px) {
  .history-tab .tabs-btn {
    width: 230px;
  }
}
@media (max-width: 960px) {
  .history-tab .tabs-btn {
    width: 200px;
  }
}
@media (max-width: 640px) {
  .history-tab .tabs-btn {
    gap: 20px;
    width: 120px;
  }
}
@media (max-width: 480px) {
  .history-tab .tabs-btn {
    width: 60px;
    gap: 30px;
  }
}
@media (max-width: 320px) {
  .history-tab .tabs-btn {
    width: 45px;
  }
}
.history-tab .tabs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.history-tab .tabs ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.history-tab .tabs li {
  margin: 10px 0;
  height: 60px;
  position: relative;
  width: 100%;
}
.history-tab .tabs li a {
  display: block;
  font-family: "Figtree", "Open Sans", "Noto Sans TC", sans-serif;
  color: #444444;
  font-size: 1.125rem;
  font-weight: 800;
  text-align: right;
  transition: none;
  padding: 15px 0;
  position: absolute;
  right: 0;
}
@media (max-width: 480px) {
  .history-tab .tabs li a {
    font-size: 1.125rem;
    padding: 10px 0;
  }
}
@media (max-width: 320px) {
  .history-tab .tabs li a {
    font-size: 1rem;
  }
}
.history-tab .tabs li.active{
  height: 255px;
  width: 100%;
}
.history-tab .tabs li.active a {
  display: block;
  font-size: 9.375rem;
  color: #fff;
  position: relative;
  line-height: 0.85;
  padding: 0;

  position: absolute;

}
@media (max-width: 1280px) {
  .history-tab .tabs li.active{
    height: 205px;
  }
  .history-tab .tabs li.active a {
    font-size: 7.5rem;  
  }
}
@media (max-width: 960px) {
  .history-tab .tabs li.active{
    height: 170px;
  }
  .history-tab .tabs li.active a {
    font-size: 6.25rem;
  }
}
@media (max-width: 640px) {
  .history-tab .tabs li.active{
    height: 122px;
  }
  .history-tab .tabs li.active a {
    font-size: 3.75rem;
    padding: 10px 0;
  }
}
@media (max-width: 480px) {
  .history-tab .tabs li.active{
    height: 98px;
  }
  .history-tab .tabs li.active a {
    font-size: 2.8125rem;
  }
}
@media (max-width: 320px) {
  .history-tab .tabs li.active a {
    font-size: 2.1875rem;
  }
}
.history-tab .tabs li.active a span {
  display: block;
  color: #90a538;
}
.history-tab .tabs li.active a:after {
  content: "";
  background: url(../images/history_year_pic.png) no-repeat;
  background-size: contain;
  width: 37.0967741935%;
  aspect-ratio: 69/76;
  position: absolute;
  top: 42px;
  right: -5px;
  transition: 0.4s;
}
@media (max-width: 960px) {
  .history-tab .tabs li.active a:after {
    top: 35px;
  }
}
@media (max-width: 640px) {
  .history-tab .tabs li.active a:after {
    top: 25px;
    right: 0;
  }
}
.history-tab .tabs li:nth-child(even).active a span {
  color: #dc9a63;
}
.history-tab .tabs-content {
  flex: 1;
}
.history-list {
  padding-top: 40px;
}
@media (max-width: 640px) {
  .history-list {
    padding-top: 10px;
  }
}

.history-box {
  font-size: 0.9375rem;
  color: #444;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.history-box .title {
  font-weight: bold;
  font-size: 1rem;
}
.history-box:not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}


.about-chairman-block {
  display: flex;
  gap: 20px 40px;
}
@media (max-width: 960px) {
  .about-chairman-block {
    flex-wrap: wrap;
  }
}
.about-chairman-block .pic {
  width: 31.0965630115%;
}
@media (max-width: 960px) {
  .about-chairman-block .pic {
    width: 100%;
  }
}
.about-chairman-block .info {
  flex: 1;
}
@media (max-width: 960px) {
  .about-chairman-block .info {
    flex: auto;
    width: 100%;
  }
}

/*========== about mobile ==========*/
/*========= contact ==========*/
.contact-block {
  display: flex;
}
@media (max-width: 960px) {
  .contact-block {
    flex-wrap: wrap;
  }
}

.contact-pic {
  width: 42.3076923077%;
}
@media (max-width: 960px) {
  .contact-pic {
    width: 100%;
  }
}
.contact-pic figure {
  margin: 0;
}
.contact-pic figure .pic img {
  display: block;
  max-width: 100%;
}
@media (max-width: 960px) {
  .contact-pic figure .pic img.pc {
    display: none;
  }
}
.contact-pic figure .pic img.phone {
  display: none;
}
@media (max-width: 960px) {
  .contact-pic figure .pic img.phone {
    display: block;
  }
}
@media (max-width: 480px) {
  .contact-pic figure .pic img.phone {
    display: none;
  }
}
.contact-pic figure .pic img.phone-480 {
  display: none;
}
@media (max-width: 480px) {
  .contact-pic figure .pic img.phone-480 {
    display: block;
  }
}

.contact-form {
  width: 57.6923076923%;
  padding-left: 3.8461538462%;
}
@media (max-width: 960px) {
  .contact-form {
    width: 100%;
    padding-left: 0;
  }
}
.contact-form form {
  flex-direction: column;
}
.contact-form .form-box {
  min-width: 0;
}
.contact-form .form-box.name {
  width: 320px;
}
@media (max-width: 960px) {
  .contact-form .form-box.name {
    width: 100%;
  }
}
.contact-form .form-box.gender {
  width: auto;
  align-self: center;
}
@media (max-width: 640px) {
  .contact-form .form-box.gender {
    width: 100%;
  }
}
.contact-form .form-box.gender .box-title {
  width: auto;
  padding-right: 25px;
}
@media (max-width: 640px) {
  .contact-form .form-box.gender .box-title {
    width: 100%;
    padding-right: 0;
  }
}
.contact-form .form-box.gender .box-content {
  flex: 1;
}
@media (max-width: 640px) {
  .contact-form .form-box.gender .box-content {
    flex: auto;
    width: 100%;
  }
}
.contact-form .form-box.company-name {
  width: 480px;
}
@media (max-width: 960px) {
  .contact-form .form-box.company-name {
    width: 100%;
  }
}
.contact-form .form-box.phone {
  width: 320px;
}
@media (max-width: 960px) {
  .contact-form .form-box.phone {
    width: 100%;
  }
}
.contact-form .form-box.contact-time {
  width: auto;
  align-self: center;
}
@media (max-width: 640px) {
  .contact-form .form-box.contact-time {
    width: 100%;
  }
}
.contact-form .form-box.contact-time .box-title {
  width: auto;
  padding-right: 25px;
}
@media (max-width: 640px) {
  .contact-form .form-box.contact-time .box-title {
    width: 100%;
    padding-right: 0;
  }
}
.contact-form .form-box.contact-time .box-content {
  flex: 1;
}
@media (max-width: 640px) {
  .contact-form .form-box.contact-time .box-content {
    flex: auto;
    width: 100%;
  }
}
.contact-form .form-box.email {
  width: 480px;
}
@media (max-width: 960px) {
  .contact-form .form-box.email {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .contact-form .form-box.inquire-items {
    width: 100%;
  }
}
.contact-form .form-box.remark {
  align-items: flex-start;
}
.contact-form .form-box.remark .box-title {
  margin-top: 15px;
}
@media (max-width: 640px) {
  .contact-form .form-box.remark .box-title {
    margin-top: 0;
  }
}
.contact-form .form-box.captcha {
  margin-left: 90px;
}
@media (max-width: 640px) {
  .contact-form .form-box.captcha {
    margin-left: 0;
    justify-content: center;
  }
}
.contact-form .form-btn-list {
  width: 100%;
  margin-left: 90px;
}
@media (max-width: 640px) {
  .contact-form .form-btn-list {
    margin-left: 0;
    justify-content: center;
  }
}

/*========== contact mobile ==========*/
/*========= news ==========*/
.news-list .news-box a {
  display: flex;
}
@media (max-width: 640px) {
  .news-list .news-box a {
    flex-wrap: wrap;
  }
}
.news-list .news-box a:hover figure .pic::before {
  transform: translateX(100%);
}
.news-list .news-box a:hover .content .title:after {
  width: 100%;
}
.news-list .news-box figure {
  margin: 0;
  width: 240px;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 640px) {
  .news-list .news-box figure {
    width: 100%;
  }
}
.news-list .news-box figure .pic {
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.news-list .news-box figure .pic img {
  display: block;
  width: 100%;
  aspect-ratio: 240/130;
  object-fit: cover;
  transition: 0.4s;
}
.news-list .news-box figure .pic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 1;
}
.news-list .news-box figure + .content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 640px) {
  .news-list .news-box figure + .content {
    width: 100%;
    min-width: initial;
  }
}
.news-list .news-box .content {
  width: 100%;
  padding: 30px 50px 20px 50px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 1280px) {
  .news-list .news-box .content {
    padding: 30px 30px 20px 30px;
  }
}
@media (max-width: 640px) {
  .news-list .news-box .content {
    padding: 20px;
  }
}
.news-list .news-box .content .title {
  color: #444444;
  font-size: 1.0625rem;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  position: relative;
}
.news-list .news-box .content .title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  background: #444444;
  transition: 0.4s;
}
.news-list .news-box .content .txt {
  color: #444444;
  font-size: 0.9375rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list .news-box .content .date {
  color: #6aa9c0;
  font-size: 0.875rem;
}
.news-list .news-box:not(:last-child) {
  margin-bottom: 20px;
}

/*========== news mobile ==========*/