@charset "utf-8";
/* CSS Document */

/* 共通 css開始  */
* {
  box-sizing: border-box;
}
:root {
  --main: #3e3e3e;
}
@font-face {
  font-family: "Noto Serif TC";
  src: url("/fonts/NotoSerifTC-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif TC";
  src: url("/fonts/NotoSerifTC-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Serif TC", sans-serif;
  line-height: 1.7em;
  margin: 0;
  background-color: #fefdfb;
}

@supports (padding-top: constant(safe-area-inset-top)) {
  body {
    padding: env(safe-area-inset-top) env(safe-area-inset-right)
      env(safe-area-inset-bottom) env(safe-area-inset-left);
  }
}

@media (display-mode: fullscreen) {
  body {
    padding: 0;
    padding-top: 44px;
  }
}

@media (display-mode: standalone) {
  body {
    padding: 0;
  }
}

@supports (padding-top: env(safe-area-inset-top)) {
  body {
    --safe-area-inset-top: env(safe-area-inset-top);
    height: calc(100% + var(--safe-area-inset-top));
  }
}

@media (display-mode: fullscreen) {
  body {
    height: 100%;
  }
}

@media (display-mode: standalone) {
  body {
    height: 100%;
  }
}

label {
  margin-bottom: 0;
}
a {
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}
a img {
  border: none;
}
img {
  -webkit-user-drag: none;
}
img {
  image-rendering: -moz-crisp-edges; /* Firefox        */
  image-rendering: -o-crisp-edges; /* Opera          */
  image-rendering: -webkit-optimize-contrast; /* Safari         */
  image-rendering: optimize-contrast; /* CSS3 Proposed  */
  -ms-interpolation-mode: nearest-neighbor; /* IE8+           */
}
a:hover,
a:focus {
  text-decoration: none;
}
:focus,
button:focus {
  outline: none;
}
/* Heading styles */
h1,
h2,
h3,
h4,
h5,
h6,
p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
}
/* List style */
ul {
  /* list-style: none; */
  margin-left: 20px;
  padding: 0;
}
/*------------------------------------*\
    Global
\*------------------------------------*/

@media (min-width: 1200px) {
  .container {
    max-width: 1230px;
    /* max-width: 923px; */
  }
}
.gs_container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  /* width: 1158px; */
  width: 869px;
}

@media (max-width: 1640px) {
  .gs_container {
    /* width: 1140px; */
    width: 855px;
  }
}

@media (max-width: 1199px) {
  .gs_container {
    /* width: 960px; */
    width: 720px;
  }
}

@media (max-width: 991px) {
  .gs_container {
    /* width: 720px; */
    width: 540px;
  }
}

@media (max-width: 767px) {
  .gs_container {
    /* width: 540px; */
    width: 405px;
    padding-right: 0px;
    padding-left: 0px;
  }
}

@media (max-width: 575px) {
  .gs_container {
    width: calc(100% - 105px);

    /* padding: 0px 30px; */
    /* margin: 0px 30px; */
  }
}
/* ========== 主要按鈕 ========== */
.main_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 10px 0;
  width: 185px;

  /* style */
  font-size: 20px;
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #fff;
  background-color: var(--main);
  border-radius: 50px;
  outline: none;
  border: 1px solid var(--main);
  transition: all 0.3s;
}
.main_btn i {
  font-size: 11px;
}
@media (max-width: 767px) {
  .main_btn {
    padding: 10px 0;
    width: 150px;
    font-size: 16px;
  }
}
.main_btn:hover {
  color: var(--main);
  background-color: #fff;
}
/* ========== 圖片比例 ========== */
.outter {
  width: 100%;
}
.image-container {
  width: 100%;
}
.image-container::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.image-container.ratio-5-4::before {
  padding-top: 80%;
}
.image-container .image {
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
/* ========== 分頁 ========== */
.gs_pagination {
  width: 100%;
  padding: 10px 0;
  clear: both;
  text-align: center;
  background: none;
  box-shadow: none;
  margin: 0;
  margin-top: 73px;
  /* margin-bottom: 60px; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .gs_pagination {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
}
.gs_pagination a.pag_btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid #cfcfcf;
  background-color: #cfcfcf;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
  margin: 0 12px;
}
.gs_pagination strong {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid var(--main);
  background-color: var(--main);
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
  margin: 0 15px;
}
.gs_pagination a.pag_btn:hover {
  color: #fff;
  border: 1px solid var(--main);
  background-color: var(--main);
}
@media (max-width: 991px) {
  .gs_pagination strong,
  .gs_pagination a.pag_btn {
    font-size: 18px;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 767px) {
  .gs_pagination strong,
  .gs_pagination a.pag_btn {
    margin: 0 6px;
  }
}
.gs_pagination a.pag_arrow {
  color: #000;
  margin: 0 12px;
  transition: all 0.5s ease-in-out;
}
.gs_pagination a.pag_arrow_left {
  transform: scale(-1, 1);
}
.gs_pagination a.pag_arrow:hover {
  color: #000;
  opacity: 0.7;
}
.gs_pagination a.pag_arrow i {
  font-size: 12px;
}
@media (max-width: 767px) {
  .gs_pagination a.pag_arrow {
    margin: 0 4px;
  }
}
/* ========== 導航欄漢堡特效 ========== */
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--main);
  stroke-width: 6;
  stroke-linecap: round;
}
.ham1 .top {
  stroke-dasharray: 40 139;
}
.ham1 .bottom {
  stroke-dasharray: 40 180;
}
.ham1.active .top {
  stroke-dashoffset: -98px;
}
.ham1.active .bottom {
  stroke-dashoffset: -138px;
}
.top_nav_bar {
  display: none;
}
@media (max-width: 991px) {
  .top_nav_bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding-left: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
  }
  .top_nav_bar.active {
    box-shadow: 0 2px 8px 5px rgba(0, 0, 0, 0.2);
  }
}
.dropdown {
  display: inline-block;
}
.dropdown_control {
  cursor: pointer;
  z-index: 50;
  display: none;
  /* width: 44px; */
  font-size: 14px;
  position: relative;
  color: #000;
}
.dropdown_control span {
  font-size: 20px;
  font-weight: 500;
}
/* .dropdown_control.active {
  width: 40px;
} */
@media (max-width: 991px) {
  .dropdown_control {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
/* 行動裝置版選單 */
.head_bar_mobile {
  position: absolute;
  /* top: 84px;
  right: 30px; */
  bottom: -10px;
  left: 0px;
  width: calc(100% + 5px);
  transform: translateY(100%);
  /* height: calc(100vh - 60px); */
  background-color: transparent;
  /* opacity: 0.2; */
  padding: 5px 0;
  /* box-shadow: inset 0 -5px 20px -5px rgba(0, 0, 0, 0.16); */
  /* overflow-y: auto; */
  overscroll-behavior: none;
  display: none;
  z-index: 20;
  background-color: rgb(0, 0, 0, 0.2);
}
@media (min-width: 992px) {
  .head_bar_mobile {
    display: none !important;
  }
}
.ham_logo_pic_wrap {
  text-align: center;
}
.nav_item_mobile {
  width: 100%;
  color: #ffffff;
  font-size: 20px;
  padding: 0 12px;
}
.nav_item_mobile_title {
  /* text-align: center; */
}
.nav_link_mobile {
  display: block;
  padding: 20px 0;
  /* font-weight: 400; */
  color: #fff;
  /* border-bottom: 1px solid var(--main); */
  position: relative;
}
.nav_item_mobile:last-child .nav_link_mobile {
  border-bottom: none;
}
.nav_link_mobile:hover,
.nav_item_mobile_title.active .nav_link_mobile {
  color: var(--main);
}
.nav_link_mobile i {
  font-size: 16px;
  color: var(--main);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  /* transition: all 0.3s; */
}
.nav_item_mobile_title.active .nav_link_mobile i {
  transform: translateY(-50%) rotate(90deg);
}
.nav_item_classification_wrap {
  background-color: var(--main);
  display: none;
}

.nav_item_classification_link {
  display: block;
  padding: 20px 24px;
  color: #fff;
  position: relative;
  font-size: 18px;
}
.nav_item_classification_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--main) 10px, transparent 10px);
  background-size: 20px 2px;
}
.nav_item_classification_link i {
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(-90deg);
  transition: all 0.3s;
}
.nav_item_classification.active .nav_item_classification_link i {
  transform: translateY(-50%) rotate(0deg);
}
.nav_item_classification:last-child .nav_item_classification_link::after {
  display: none;
}
@media (max-width: 991px) {
  .nav_item_classification_link {
  }
  .nav_item_classification_link:hover {
    color: #fff;
  }
}
.nav_item_classification_2_wrap {
  background-color: #fff;
  display: none;
}
.nav_item_classification_2_link {
  display: block;
  padding: 18px;
  color: #000;
  border-bottom: 1px dashed #000;
}
.nav_item_classification_2:last-child .nav_item_classification_2_link {
  border-bottom: none;
}
/* 行動裝置版icon 按鈕 */
.icon_nav_mobile_wrap {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.icon_nav_mobile_item {
  min-width: 140px;
}
.icon_nav_mobile_wrap .icon_nav_mobile_item:first-child {
  margin-bottom: 15px;
}
.icon_nav_mobile_link {
  font-size: 20px;
  color: var(--main);
  display: flex;
  align-items: center;
}
.icon_nav_mobile_link i {
  display: inline-block;
  font-size: 30px;
  width: 30px;
  margin: 0 10px;
}
/* HTML 文字編輯器內容 */
.html_ckeditor_content * {
  line-height: 1.5em;
}
.html_ckeditor_content p {
  margin: 18px 0px;
}
.html_ckeditor_content {
  width: 100%;
  word-break: break-all;
}
.html_ckeditor_content:after {
  content: ""; /* 2. 新增 content，注意需要加上 "" */
  display: block; /* 3. 新增 display，也可以用 table */
  clear: both;
}
.html_ckeditor_content img {
  max-width: 100%;
  height: auto !important;
}
.html_ckeditor_content iframe {
  max-width: 100%;
}
.html_ckeditor_content p {
  z-index: 1;
}
.html_ckeditor_content p {
  z-index: 1;
}
.html_ckeditor_content ul,
.html_ckeditor_content ol {
  padding-left: 2rem;
}
/* ========== Banner ========== */
.upper_img_block {
  position: relative;
  z-index: 2;
}
/* 電腦版 */
.upper_img_desk img {
  width: 100%;
  height: calc(100vw / 1920 * 564);
  object-fit: cover;
}
@media (max-width: 767px) {
  .upper_img_desk img {
    display: none;
  }
}
/* 手機版 */
.upper_img_mobile img {
  display: none;
}
@media (max-width: 767px) {
  .upper_img_mobile img {
    display: block;
    width: 100%;
    height: calc(100vw / 428 * 200);
    object-fit: cover;
  }
}
/* 頁面標題 */
.banner_wrap {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  /* .banner_wrap {
    width: 192px;
    height: 80px;
  } */
}
@media (max-width: 767px) {
  /* .banner_wrap {
    width: 156px;
    height: 65px;
  } */
}
.head_title_decorate {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  width: 100%;
  max-width: 138px;
}
@media (max-width: 991px) {
  .head_title_decorate {
    max-width: 90px;
  }
}
@media (max-width: 767px) {
  .head_title_decorate {
    max-width: 63px;
  }
}
.banner_title {
  text-align: center;
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
}
.banner_title_en {
  font-size: 48px;
  color: #fff;
}
@media (max-width: 991px) {
  .banner_title {
    font-size: 22px;
  }
  .banner_title_en {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .banner_title {
    font-size: 18px;
  }
  .banner_title_en {
    font-size: 20px;
  }
}
/* ===麵包屑=== */
.breadcrumb_wrap {
  padding: 0px 0 16px;
  text-align: right;
  color: #c7c7c7;
}
.breadcrumb_link {
  font-size: 18px;
  color: #c7c7c7;
  transition: all 0.3s;
}
.breadcrumb_link:hover {
  color: #c7c7c7;
  opacity: 0.7;
}
@media screen and (max-width: 991px) {
  .breadcrumb_wrap {
    padding: 0px 0 36px;
  }
  .breadcrumb_link {
    font-size: 16px;
  }
}
/* ========== 頁面設定 ========== */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #ddd;
}
::-webkit-scrollbar-thumb {
  background: #9d9d9d;
}

.page_wrap {
  /* padding-bottom: 75px; */
  position: relative;
  z-index: 0;
  min-height: calc(100vh - 286px);
}
.page_wrap .gs_container {
  /* border-top-width: 3px solid #d9d9d9; */
  border-top-width: 3px;
  border-top-style: solid;
  padding: 75px 39px 180px;
}
@media (max-width: 991px) {
  .page_wrap {
    min-height: calc(100vh - 115px);
  }
}
@media (max-width: 767px) {
  .page_wrap {
    min-height: calc(100vh - 112px);
  }
  .page_wrap .gs_container {
    /* border-top: none; */
    padding: 25px 0 80px;
  }
}

.page_title_block {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 26px;
}
.page_title_zh {
  color: var(--main);
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
}
.page_title_en {
  color: #c7c7c7;
  font-size: 48px;
  line-height: 1;
}
@media (max-width: 991px) {
  .page_title_block {
    margin-bottom: 10px;
  }
  .page_title_zh {
    font-size: 20px;
  }
  .page_title_en {
    font-size: 22px;
  }
}

.page_col_2 {
  display: grid;
  grid-template-columns: 289px 1fr;
  gap: 60px;
}
@media (max-width: 1200px) {
  .page_col_2 {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .page_col_2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.page_box {
}
@media (max-width: 991px) {
  .page_box {
  }
}
/* ===其它頁選單=== */
/* .page_nav_link_1{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  margin: 0px 100px;
  border: 1px solid black;
}
.slide {
  margin: 0px -100px;
} */
.page_nav_list_wrap {
  overflow-x: auto;
  overflow-y: hidden;
  /* scrollbar-width: 1px; */
  margin-bottom: 24px;
  padding-bottom: 30px;
  user-select: none;
}
@media (max-width: 767px) {
  .page_nav_list_wrap {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}
.page_nav_list_wrap::-webkit-scrollbar {
  height: 0px; /* 水平滾動條高度 */
}
.page_nav_list_wrap::-webkit-scrollbar-track {
  background: transparent;
}
.page_nav_list_wrap::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 2px;
}

.page_nav_list {
  display: flex;
  align-items: center;
  gap: 240px;
  position: relative;
  overflow-x: auto;
  padding-bottom: 20px;
}
@media (max-width: 1640px) {
  .page_nav_list {
    gap: 230px;
  }
}

@media (max-width: 1199px) {
  .page_nav_list {
    gap: 180px;
  }
}

@media (max-width: 991px) {
  .page_nav_list {
    gap: 110px;
  }
}

@media (max-width: 767px) {
  .page_nav_list {
    margin-bottom: 30px;
    gap: 75px;
    padding-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .page_nav_list {
    gap: 55px;
  }
}
.page_nav_list_inner {
  position: absolute;
  left: 0px;
  top: 0px;
}
.page_nav_item {
  position: relative;
}
.page_nav_link {
  /* display: inline-block; */
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-size: 20px;
  /* width: calc(1080px / 4); */
  color: var(--main);
  /* cursor: pointer; */
  transition: all 0.3s;
  position: relative;
  text-align: center;
}
@media (max-width: 576px) {
  .page_nav_link {
    font-size: 12px;
  }
}
.page_nav_link a {
  color: var(--main);
  position: relative;
}
.page_nav_link a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: var(--main);
  bottom: -8px;
  left: 0px;

  /* display: none; */
  transition: 0.3s;
}
@media (max-width: 576px) {
  .page_nav_link a::after {
    width: 0%;
  }
}
.page_nav_link:not([href]) {
  color: #000;
}
.page_nav_link img {
  width: 24px;
  height: 28px;
  opacity: 0;
}
.page_nav_link:hover,
.page_nav_link.active {
  color: var(--main);
}
.page_nav_link a:hover::after,
.page_nav_link.active a::after {
  width: 100%;
}
@media (max-width: 576px) {
  .page_nav_link:hover::after {
    /* width: unset; */
  }
  .page_nav_link:hover::after {
    /* width: unset; */
  }
}
.page_nav_link:hover img,
.page_nav_link.active img {
  opacity: 1;
}
.page_nav_link:not([href]):hover {
  color: #fff;
}
/* .page_nav_link:nth-child(n + 4) {
  text-align: end;
}
.page_nav_link:nth-child(1) {
  text-align: start;
} */
.page_nav_list_2_drop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 4;
  display: none;
}
.page_nav_link_2 {
  background-color: #e8e5e3;
  color: #000;
  height: 52px;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-bottom: 1px solid #8d8d8d;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.page_nav_link_2:last-of-type {
  border-bottom: none;
}
.page_nav_link_2:not([href]) {
  color: #707070;
}
.page_nav_link_2 i {
  font-size: 12px;
}

.page_nav_link_2:hover,
.page_nav_link_2.active {
  color: #fff;
  background-color: #dbc591;
}

.page_nav_list_3_drop {
  position: absolute;
  z-index: 2;
  left: 100%;
  top: 0;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: none;
}

.page_nav_link_3 {
  display: block;
  font-size: 18px;
  padding: 0 20px;
  height: 52px;
  line-height: 52px;
  text-wrap: nowrap;
  color: #000;
}

.page_nav_link_3:hover,
.page_nav_link_3.active {
  color: #fff;
  background-color: #ec938c;
}

.page_nav_text {
  font-size: 22px;
  text-align: center;
}
@media (max-width: 991px) {
  .page_nav_text {
    font-size: 18px;
  }
}
/*****************************************************************************/
/*-----------------------------------start-----------------------------------*/
/*****************************************************************************/

/****************************head****************************/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  header {
    /* background-color: #000; */
  }
}
header.active {
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}

.head_main_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: 117px; */
  padding: 66px 0 59px;
}
.header.active .head_main_wrap {
  height: 80px;
  padding: 0;
}
@media (max-width: 991px) {
  .head_main_wrap {
    justify-content: space-between;
    padding: 30px 0 18px;
    /* align-items: start; */
  }
  .header.active .head_main_wrap {
    height: 72px;
    padding: 0;
  }
}

.head_bottom_wrap {
  padding: 20px 0;
}
@media (max-width: 1199px) {
  .head_bottom_wrap {
    padding: 10px 0;
  }
}
@media (max-width: 991px) {
  .head_bottom_wrap {
    display: none;
  }
}
.header.active .head_bottom_wrap {
  padding: 10px 0;
}
/* head logo */

/* .header.active .head_logo_decorate{
	visibility: hidden;
	opacity: 0;
} */
.header .gs_container {
  /* position: relative; */
}
.head_welcome_link {
  display: flex;
  align-items: center;
  gap: 58px;
  /* transform: translateX(-25%); */
  position: relative;
  left: -20%;
}
@media (max-width: 1640px) {
  .head_welcome_link {
    left: -8%;
    grid-area: 40px;
  }
}
@media (max-width: 1400px) {
  .head_welcome_link {
    left: -5%;
  }
}
@media (max-width: 1280px) {
  .head_welcome_link {
    left: 0;
  }
}
@media (max-width: 1200px) {
  .head_welcome_link {
    gap: 40px;
    left: -5%;
  }
}
@media (max-width: 1080px) {
  .head_welcome_link {
    left: 0;
  }
}
@media (max-width: 991px) {
  .head_welcome_link {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .head_welcome_link {
    gap: 10px;
  }
}
.head_welcome_link h1 {
  font-size: 30px;
  color: #fff;
  white-space: nowrap;
  font-weight: normal;
}
.head_welcome_link:hover {
  color: #fff;
}
.head_welcome_link.page_active h1 {
  /* color: var(--main); */
  color: #3e3e3e;
}
.head_welcome_link.page_active:hover {
  color: var(--main);
}
@media (max-width: 400px) {
  .head_welcome_link h1 {
    font-size: 26px;
  }
}
.header.active .head_welcome_link {
  /* margin-top: 10px; */
}

.head_logo_img {
  max-width: 338px;
  width: 100%;
  object-fit: contain;
  aspect-ratio: 6.25925;
}
.head_logo_img_mobile {
  display: none;
}
@media (max-width: 767px) {
  .head_logo_img {
    max-width: 216px;
  }
  .head_logo_img_pc {
    display: none;
  }
  .head_logo_img_mobile {
    display: block;
  }
}

@media (max-width: 1199px) {
}
/* head選單設定 */
.head_bar_block {
  display: flex;
  align-items: center;
  padding-right: 43px;
  /* margin-bottom: auto; */
}
@media (max-width: 991px) {
  .head_bar_block {
    /* margin-bottom: auto; */
  }
}
/* .header.active .head_bar_block {
  position: static;
  padding: 0;
  transform: translateY(0);
  height: auto;
  background-color: transparent;
} */
.head_bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1640px) {
  .head_bar_block {
    padding-right: 40px;
  }
  .head_bar {
    gap: 80px;
  }
}
@media (max-width: 1400px) {
  .head_bar_block {
    padding-right: 20px;
  }
}
@media (max-width: 1200px) {
  .head_bar {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .head_bar_block {
    padding-right: 0;
  }
  .head_bar {
    display: none;
  }
}
.nav_item {
  position: relative;
  transition: all 0.3s;
}
@media (max-width: 1640px) {
  .nav_item::after {
    left: 24px;
    right: 24px;
  }
}
@media (max-width: 1200px) {
  .nav_item::after {
    left: 16px;
    right: 16px;
  }
}
.nav_link {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  color: var(--main);
  border-radius: 10px;
  position: relative;
}
.nav_link:hover,
.nav_item.active .nav_link {
  color: var(--main);
}
@media (max-width: 1199px) {
  .nav_item {
    margin: 0 10px;
  }
  .nav_link {
    font-size: 18px;
  }
  .nav_item_customize .nav_link {
    max-width: 137px;
  }
}

/* hover 選單 */
.nav_hover_wrap {
  visibility: hidden;
  position: absolute;
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 5px;
  width: 160%;
  border: 5px solid #8bbed1;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .nav_hover_wrap {
    top: 84px;
    width: 170%;
  }
}
.nav_hover_link {
  font-size: 18px;
  display: block;
  padding: 0 10px;
  text-align: center;
  color: var(--main);
}
.nav_hover_text {
  display: block;
  padding: 12px;
  border-bottom: 1px solid #a5a5a5;
}
.nav_hover_link:last-child .nav_hover_text {
  border-bottom: 0;
}
.nav_hover_link:hover {
  background-color: #1a80a7;
  color: #ffffff;
}
#has_hover:hover .nav_hover_wrap {
  visibility: visible;
  opacity: 1;
}
/* head icon 按鈕 */
.icon_nav_link {
  font-size: 30px;
  color: var(--main);
  margin-left: 15px;
}
.icon_nav_link:hover {
  color: #8bbed1;
}
.cart_count {
  text-align: center;
  position: absolute;
  top: -7px;
  right: 0;
  width: 23px;
  height: 23px;
  line-height: 23px;
  font-size: 16px;
  border-radius: 50%;
  background-color: #bc1f21;
  color: #ffffff;
  z-index: 1;
}
/* 上方空白區塊(撐高用) */
.head_top_block {
  height: 179px;
}
@media (max-width: 991px) {
  .head_top_block {
    height: 86px;
  }
}
/* 語系按鈕 */
.nav_lang_item {
  position: relative;
  padding: 4px 25px;
}
@media (max-width: 1640px) {
  .nav_lang_item {
    padding: 4px 16px;
  }
}
@media (max-width: 1199px) {
  .nav_lang_item {
    padding: 4px 8px;
  }
}
@media (max-width: 1199px) {
  .nav_lang_item {
    padding: 4px 25px;
  }
}
.nav_lang_item_text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #595757;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}
.nav_lang_item_text:hover {
  color: var(--main);
}
.nav_lang_item i {
  font-size: 12px;
}
.nav_lang_drop_item {
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  z-index: 20;
  background-color: var(--main);
  text-align: center;
  display: none;
}
.nav_lang_drop_item_link {
  display: block;
  color: #000;
  border-bottom: 1px solid #fff;
  padding: 8px 4px;
  transition: all 0.3s;
}
.nav_lang_drop_item_link:last-child {
  border-bottom: none;
}
.nav_lang_drop_item_link:hover {
  color: #fff;
}
/****************************head****************************/

/***************************welcome**************************/
/* ===== 首頁輪播 ===== */
#main_slider_section {
  position: relative;
  z-index: 10;
}
#main_slider_section_mobile {
  display: none;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  #main_slider_section {
    display: none;
  }
  #main_slider_section_mobile {
    display: block;
  }
}
/* 電腦版圖片 */
.main_slider_img {
  width: 100%;
  /* height: calc(100vw / 1920 * 1039); */
  height: 100vh;
  object-fit: cover;
}
/* 手機版圖片 */
.main_slider_img_mobile {
  width: 100%;
  /* height: calc(100vw / 428 * 317); */
  height: 100vh;
  object-fit: cover;
}
/* 輪播點點設定 */
.main_slider .slick-dots {
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  bottom: 5%;
  right: 50px;
  width: 30px;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .main_slider .slick-dots {
    padding-top: 10px;
    bottom: 20px;
    right: 15px;
  }
}

.main_slider .slick-dots li {
  margin: 5px;
}
.main_slider .slick-dots li button:before {
  font-size: 11px;
  color: #fff;
  transition: all 0.3s;
  opacity: 1;
  border-radius: 50px;
}
.main_slider .slick-dots li.slick-active {
  height: 28px;
}
.main_slider .slick-dots li.slick-active button {
  height: 28px;
}
.main_slider .slick-dots li.slick-active button:before {
  content: "";
  width: 11px;
  height: 28px;
  background-color: #fff;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
.main_slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.main_slider .slick-dots li.slick-active button:before,
.main_slider .slick-dots li:hover button:before {
  color: #fff;
}
@media (max-width: 767px) {
  .main_slider .slick-dots li button:before {
  }
}

/* 首頁標題設定 */
.welcome_title_wrap {
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .welcome_title_wrap {
    margin-bottom: 25px;
  }
}
.welcome_title_pic_wrap {
  display: inline-block;
}
.welcome_title_zh_block img {
  width: 48px;
  height: 18px;
  object-fit: contain;
}

.welcome_title_zh_block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.welcome_title_zh {
  font-size: 36px;
  font-weight: bold;
  color: var(--main);
  line-height: 1;
}
@media (max-width: 767px) {
  .welcome_title_zh {
    font-size: 20px;
  }
  .welcome_title_zh_block img {
    width: 32px;
    height: 12px;
  }
}
.welcome_title_en {
  white-space: nowrap;
  font-size: 48px;
  /* font-weight: bold; */
  color: #c7c7c7;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .welcome_title_en {
    font-size: 22px;
  }
}
/***************************welcome**************************/

/***************************最新消息-列表**************************/
.news_list {
}
.news_item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-bottom: 53px;
}
.news_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .news_list {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .news_item {
  }
}
@media (max-width: 767px) {
  .news_item {
    gap: 53px;
    display: flex;
    flex-direction: column-reverse;
  }
}
.news_item_img_wrap {
  position: relative;
  overflow: hidden;
}
/* .news_item_img_wrap::after {
  content: "more";
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background-color: #7abada;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}
.news_item:hover .news_item_img_wrap::after {
  opacity: 1;
} */

.news_item_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.5;
  transition: all 0.3s;
}
.news_item:hover .news_item_img_wrap img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .news_item:hover .news_item_img_wrap img {
    transform: scale(1);
  }
}

.news_item_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news_item_date {
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

.news_item_title {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden; */
}

@media (max-width: 767px) {
  .news_item_content {
    /* padding: 0 10px; */
    bottom: 5px;
  }
  .news_item_title {
    /* font-size: 18px; */
  }
  .news_item_date {
    /* font-size: 16px; */
    margin-bottom: 0;
    gap: 6px;
  }
}
/***************************最新消息-列表**************************/

/***************************最新消息-內頁**************************/

#news_content_section.page_wrap .gs_container {
  /* border-top: none; */
  padding: 66px 39px 500px;
}
@media (max-width: 767px) {
  #news_content_section.page_wrap .gs_container {
    padding: 17px 0px 250px;
    border-top: none;
  }
}
.news_content_wrap {
  display: flex;
  flex-direction: column;
}
.news_content_img_wrap {
  margin-bottom: 56px;
}
.news_content_img_wrap img {
  aspect-ratio: 1.5;
  width: 100%;
  object-fit: cover;
}
.news_content_title {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
  .news_content_img_wrap {
    margin-bottom: 30px;
  }
  .news_content_title {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.back_btn_wrap {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .back_btn_wrap {
    margin-top: 50px;
  }
}
.back_btn {
  margin: 0 auto;
  /* structure */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  padding: 10px 0;
  width: 200px;
  height: 50px;
  /* style */
  font-size: 18px;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #fff;
  background-color: var(--main);
  border: 1px solid var(--main);
  border-radius: 50px;
  outline: none;
  position: relative;
  transition: all 0.3s;
}
.back_btn:hover {
  background-color: #fff;
  color: var(--main);
}
.back_btn i {
  font-size: 8px;
}
@media (max-width: 767px) {
  .back_btn {
    width: 193px;
  }
}
/***************************最新消息-內頁**************************/
/***************************Works-列表**************************/
.works_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 80px;
}
.works_list_block {
  width: calc(50% - 40px);
  display: flex;
  flex-direction: column;
  row-gap: 75px;
}
@media (max-width: 1200px) {
  .works_list {
    column-gap: 40px;
  }
  .works_list_block {
    width: calc(50% - 20px);
    row-gap: 38px;
  }
}
@media (max-width: 767px) {
  .works_list {
    column-gap: 20px;
  }
  .works_list_block {
    width: calc(50% - 10px);
    row-gap: 16px;
  }
}
.works_item_img_wrap {
  overflow: hidden;
}
.works_item_img_wrap img {
  width: 100%;
  object-fit: contain;
  transition: all 0.3s;
}
.works_item:hover .works_item_img_wrap img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .works_item:hover .works_item_img_wrap img {
    transform: scale(1);
  }
}
/***************************Works-列表**************************/
/***************************works-內頁**************************/
.works_content_wrap {
  display: flex;
  flex-direction: column;
}
.works_content_img_wrap {
  margin-bottom: 56px;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
}
.works_content_img_wrap img {
  /* width: 100%; */
  max-width: 100%;
  height: 100%;
  max-height: 768px;
  object-fit: contain;
  margin: 0px auto;
  display: block;
}
.works_content_title {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
  .works_content_img_wrap {
    margin-bottom: 50px;
  }
  .works_content_title {
    font-size: 18px;
    margin-bottom: 4px;
  }
}

.works_content_slider_section {
  position: fixed;
  inset: 0 0;
  height: 100vh;
  z-index: -100;
  background-color: #fff;
  opacity: 0;
  padding: 0 20px;
  transition: all 0.3s;
  transition-delay: opacity 0.3s;
}
.works_content_slider_section.active {
  z-index: 100;
  opacity: 1;
  transition-delay: opacity 0s;
}
.works_content_slider_close {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  z-index: 101;
  transition: all 0.3s;
}
.works_content_slider_close:hover {
  opacity: 0.7;
}
.works_content_slider_list {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.works_content_slider_list .slick-list {
}
.works_content_slider_item {
  margin: auto;
}
.works_content_slider_item_img_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.works_content_slider_item_img_wrap img {
  width: 100%;
  height: 100vh;
  object-fit: contain;
}

/* 輪播箭頭設定 */
.works_content_slider_list .slick-arrow {
  color: #454545;
  font-size: 24px;

  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  transition: all 0.4s;
}
.works_content_slider_list .slick-arrow:hover {
  opacity: 0.7;
}
.works_content_slider_list .works_content_slider_pre_arrow_wrap {
  right: 100%;
  transform: translateY(-50%);
}
.works_content_slider_list .works_content_slider_pre_arrow {
  transform: scale(-1);
}
.works_content_slider_list .works_content_slider_next_arrow_wrap {
  left: 100%;
}

@media (max-width: 1280px) {
}
@media (max-width: 991px) {
}
/***************************works-內頁**************************/

/***************************cv-頁面**************************/
#cv_section.page_wrap .gs_container {
  padding: 66px 39px 40px;
}
@media (max-width: 767px) {
  #cv_section.page_wrap .gs_container {
    padding: 40px 0px 20px;
    border-top: none;
  }
}
.cv_first_row {
  position: relative;
  margin-bottom: 50px;
}
/* @media (max-width: 767px) {
  .cv_img_box {
    display: flex;
    justify-content: center;
  }
} */
.cv_img_box {
  width: 340px;
  height: 340px;
}
@media (max-width: 767px) {
  .cv_img_box {
    width: 68%;
    height: unset;
    aspect-ratio: 1 / 1;
    margin: 0px auto;
  }
}
.cv_img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cv_link {
  position: absolute;
  right: 0px;
  bottom: 0px;
  font-size: 20px;
  color: #3e3e3e;
}
.cv_link:hover {
  color: #3e3e3e;
}
.cv_content {
  margin-top: 27px;
  color: #000;
}
.cv_list_title {
  font-size: 20px;
}
.cv_list {
  margin-bottom: 27px;
}
.cv_item {
  display: flex;
  gap: 12px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .cv_list_title {
    font-size: 18px;
  }
  .cv_item {
    font-size: 18px;
  }
}
/***************************cv-頁面**************************/

@media (max-width: 991px) {
  #shop_section .gs_container {
    border: none;
  }
}
/***************************聯絡我們**************************/

#contact_section .gs_container {
  padding: 250px 39px 300px;
}
@media (max-width: 991px) {
  #contact_section .gs_container {
    padding: 32px 15px 200px;
    border: none;
  }
}
@media (max-width: 767px) {
  #contact_section .gs_container {
    padding: 32px 0px 200px;
  }
}

.contact_wrap {
  /* display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px; */
}
@media (max-width: 991px) {
  .contact_wrap {
    /* display: grid;
    grid-template-columns: unset;
    grid-template-rows: 1fr unset;
    gap: 45px; */
  }
}
.contact_social_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 20px; */
}
.contact_social_item {
  color: #000;
  /* display: block; */
}
.contact_social_item:hover {
  color: #000;
  opacity: 0.7;
}
.contact_social_item i {
  font-size: 50px;
}
.contact_social_item:last-of-type i {
  font-size: 42px;
}
@media (max-width: 991px) {
  .contact_social_list {
    /* justify-content: center; */
  }
  .contact_social_item i {
    /* font-size: 50px; */
  }
}
@media (max-width: 767px) {
  .contact_wrap {
    grid-template-columns: 1fr;
    /* gap: 20px; */
  }
  .contact_social_item:hover {
    opacity: 1;
  }
}

/***************************聯絡我們**************************/

/****************************foot***************************/
#go_top {
  cursor: pointer;
  position: fixed;
  z-index: 20;
  bottom: 10%;
  right: 3%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

#go_top.active {
  visibility: visible;
  opacity: 1;
}
#go_top.bottom_active {
  bottom: 230px;
}
#go_top:hover {
  transform: scale(0.9);
}
.go_top_img {
  width: 56px;
  height: 86px;
  object-fit: contain;
}
@media (max-width: 991px) {
  #go_top.bottom_active {
    bottom: 330px;
  }
}
@media (max-width: 767px) {
  #go_top.bottom_active {
    bottom: 320px;
  }
  .go_top_img {
    width: 53px;
    height: 80px;
  }
}

.foot_top_wrap {
  background: url("../img/foot_bg.png") no-repeat top center/cover;
  padding-top: 80px;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .foot_top_wrap {
    padding-top: 32px;
    padding-bottom: 14px;
    background: url("../img/foot_mobile_bg.png") no-repeat top center/cover;
  }
}
.foot_main_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media (max-width: 1699px) {
  .foot_main_wrap {
    padding-left: 0;
  }
}
.foot_left {
  width: 60%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1640px) {
  .foot_left {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .foot_left {
    width: 100%;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .foot_left {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .foot_left {
    margin-bottom: 10px;
  }
}
.foot_right {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* padding: 20px 0; */
  padding-left: 20px;
}
@media (max-width: 1640px) {
  .foot_right {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .foot_right {
    border-top: 1px solid #fff;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .foot_right {
    padding: 0;
  }
}
/* 頁底logo */
.foot_logo_wrap {
  padding-right: 50px;
}
@media (max-width: 991px) {
  .foot_logo_wrap {
    padding: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .foot_logo_wrap {
    /* width: 100%;
    padding: 0;
    text-align: center; */
  }
}
.foot_logo {
  width: 93px;
  height: 113px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .foot_logo {
    width: 74px;
    height: 90px;
    object-fit: contain;
  }
}

/* copyright設定 */
.foot_copyright {
  position: static;
  z-index: 10;
  left: 0px;
  right: 0px;
  bottom: 0;

  width: 100%;
  font-size: 16px;
  color: var(--main);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 77px;
}
@media (max-width: 1200px) {
  .foot_copyright {
    padding-top: 8px;
    flex-wrap: nowrap;
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .foot_copyright {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.foot_copyright a {
  color: #fff;
}
.foot_copyright a:hover {
  color: #fff;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .foot_copyright.desk {
    display: none;
  }
}
.foot_copyright.mobile {
  display: none;
}
@media (max-width: 991px) {
  .foot_copyright.mobile {
    display: flex;
  }
}
.copyright_text {
  text-align: right;
  line-height: 1.5;
  font-size: 20px;
}

@media (max-width: 1200px) {
  .copyright_text {
    text-align: left;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .copyright_text {
    font-size: 16px;
  }
}
/* 社群連結 */
.foot_social_link_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .foot_social_link_wrap {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .foot_social_link_wrap {
  }
  .foot_social_link_mobile_wrap {
    justify-content: center;
    margin-bottom: 15px;
  }
}
.foot_social_link {
  display: inline-block;
  color: #383737;
  font-size: 22px;
}
.foot_social_link:hover {
  color: #383737;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .foot_social_link {
  }
}
.foot_title {
  font-size: 24px;
  color: #fff;
}
@media (max-width: 991px) {
  .foot_title {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .foot_title {
    font-size: 20px;
    text-align: center;
  }
}
/* 店家資訊 */
.foot_info_wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* padding: 20px 0; */
}
@media (max-width: 1640px) {
  .foot_info_wrap {
    width: auto;
  }
}
@media (max-width: 767px) {
  .foot_info_wrap {
    /* margin-top: 10px;
    width: 100%;
    height: auto; */
    padding: 0;
  }
}
.foot_info_item {
  color: #ffffff;
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  column-gap: 30px;
}
@media (max-width: 1640px) {
  .foot_info_item {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .info_text_block:first-child {
    display: flex;
    column-gap: 24px;
  }
}
@media (max-width: 767px) {
  .foot_info_item {
    margin-top: 0;
  }
}
.info_text {
  font-size: 18px;
  margin-top: 5px;
  display: flex;
}
.foot_info_item .info_text:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .info_text {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .foot_info_item .info_text:last-child {
    margin-bottom: 5px;
  }
}
.info_title {
  position: relative;
  color: #fff;
  flex-shrink: 0;
}
.info_text i {
  display: inline-block;
  width: 25px;
  text-align: center;
  font-size: 20px;
  margin-right: 10px;
}
.info_text .fa-matsu-footer-2 {
  font-size: 15px;
}
.foot_info_item a {
  color: #fff;
}
.foot_info_item a:hover {
  opacity: 0.7;
}
.foot_info_item a:not([href]) {
  color: #fff;
}
/* 頁面連結 */
.foot_link_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .foot_link_wrap {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .foot_link_wrap {
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .foot_link_wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.foot_link_text {
  color: #ffffff;
  font-size: 16px;
  white-space: nowrap;
  padding: 0 6px;
}

.foot_link_text:hover {
  color: #ffffff;
  opacity: 0.7;
}
.foot_link_item {
  display: flex;
}
@media (max-width: 575px) {
  .foot_link_wrap .foot_link_item:first-child {
    margin-bottom: 10px;
  }
}
.foot_link_text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.2px;
  height: 80%;
  background-color: #ffffff;
}
.foot_link_wrap .foot_link_item:last-child .foot_link_text:last-child::after {
  display: none;
}
@media (max-width: 575px) {
  .foot_link_wrap
    .foot_link_item:first-child
    .foot_link_text:last-child::after {
    display: none;
  }
}
/****************************foot***************************/

/* 隱藏reCAPTCHA徽章 */
/* .grecaptcha-badge { visibility: hidden; } */

.grecaptcha_text {
  color: var(--main);
}
.grecaptcha_text a {
  color: var(--main);
  opacity: 0.7;
}
