@charset "utf-8";
/* CSS Document */

/* 共通 css開始  */
* {
  box-sizing: border-box;
}
:root {
  --main: #c9bc9b;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "微軟正黑體";
  line-height: 1.5em;
  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;
  }
}
.gs_container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 1430px;
}

@media (max-width: 1640px) {
  .gs_container {
    width: 1140px;
  }
}

@media (max-width: 1199px) {
  .gs_container {
    width: 960px;
  }
}

@media (max-width: 991px) {
  .gs_container {
    width: 720px;
  }
}

@media (max-width: 767px) {
  .gs_container {
    width: 540px;
  }
}

@media (max-width: 575px) {
  .gs_container {
    width: 100%;
  }
}
/* ========== 主要按鈕 ========== */
.main_btn {
  /* structure */
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 10px 0;
  width: 199px;

  /* style */
  font-size: 18px;
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #fff;
  background-color: #000;
  border-radius: 3px;
  outline: none;
  border: 1px solid #000;
  transition: all 0.3s;
}
.main_btn:hover {
  color: #000;
  background-color: #fff;
}
@media (max-width: 767px) {
  .main_btn {
    padding: 10px 0;
    font-size: 16px;
  }
  .main_btn:hover {
    color: #fff;
    background-color: #000;
  }
}

/* ========== 圖片比例 ========== */
.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: 50px; */
  /* margin-bottom: 60px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .gs_pagination {
    justify-content: center;
  }
}
@media (max-width: 767px) {
}
.gs_pagination a.pag_btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--main);
  border: 1px solid var(--main);
  background-color: #fff;
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
  margin: 0 15px;
}
.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;
  }
}

.gs_pagination a.pag_arrow {
  text-align: center;
  color: var(--main);
  font-size: 20px;
  margin: 0 15px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
  font-weight: bold;
}
.gs_pagination a.pag_arrow:hover {
  color: #000;
}

/* ========== 導航欄漢堡特效 ========== */
.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: #000;
  stroke-width: 7;
  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;
}
.dropdown_control.active {
  width: 40px;
}
@media (max-width: 991px) {
  .dropdown_control {
    display: block;
  }
}
/* 行動裝置版選單 */
.head_bar_mobile {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  height: calc(100vh - 62px);
  background-color: #fff;
  padding: 15px 0;
  box-shadow: inset 0 -5px 20px -5px rgba(0, 0, 0, 0.16);
  overflow-y: auto;
  overscroll-behavior: none;
  display: none;
}
@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 15px;
}
.nav_item_mobile_title {
  text-align: center;
}
.nav_link_mobile {
  display: block;
  padding: 20px 0;
  color: #000;
  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: 22px;
  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 {
  border-top: 1px solid #fff;
  background-color: rgba(201, 188, 158, 0.25);
  /* padding: 0 20px; */
  text-align: center;
  display: none;
}

.nav_item_classification_link {
  display: block;
  padding: 18px;
  color: #595757;
  border-bottom: 1px dashed var(--main);
  position: relative;
}
.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 {
  border-bottom: none;
}
@media (max-width: 991px) {
  .nav_item_classification_link:hover {
    color: #595757;
  }
}
.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.6em;
}
.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 ========== */
.page_banner {
  position: relative;
  z-index: 2;
}
/* 電腦版 */
.page_banner_img {
  width: 100%;
  height: calc(100vw / 1920 * 502);
  object-fit: cover;
}
@media (max-width: 767px) {
  .page_banner_img {
    display: none;
  }
}
/* 手機版 */
.page_banner_img_mobile {
  display: none;
}
@media (max-width: 767px) {
  .page_banner_img_mobile {
    display: block;
    width: 100%;
    height: calc(100vw / 428 * 193);
    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 40px;
  text-align: right;
  color: #a1a1a1;
}
.breadcrumb_link {
  font-size: 18px;
  color: #a1a1a1;
  transition: all 0.3s;
}
.breadcrumb_link:hover {
  color: #a1a1a1;
  opacity: 0.7;
}
@media screen and (max-width: 991px) {
  .breadcrumb_wrap {
    padding: 0px 0 30px;
  }
  .breadcrumb_link {
    font-size: 16px;
  }
}
/* ========== 頁面設定 ========== */
.page_wrap {
  padding-top: 36px;
  padding-bottom: 230px;
  position: relative;
  z-index: 0;
  background-color: #fbfbfb;
}

@media (max-width: 767px) {
  .page_wrap {
    padding-top: 12px;
    padding-bottom: 130px;
  }
}
.page_bg {
  position: absolute;
  left: 0;
  bottom: -30px;
  z-index: -1;
  width: 100%;
  height: 100%;
  max-height: 800px;
  object-fit: cover;
}
.page_mobile_bg {
  display: none;
}
.page_right_img {
  position: absolute;
  top: 120px;
  right: 23px;
  z-index: -1;
  width: 100%;
  max-width: 163px;
}
@media (max-width: 767px) {
  .page_bg {
    display: none;
  }
  .page_mobile_bg {
    position: absolute;
    left: 0;
    bottom: -10px;
    z-index: -1;
    width: 100%;
    height: 100%;
    max-height: 800px;
    object-fit: cover;
    display: block;
  }
  .page_right_img {
    top: 60px;
    max-width: 68px;
  }
}
.page_title_block {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 35px;
}
.page_title_pic_wrap {
  width: 44px;
  height: 50px;
}
.page_title_pic_wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page_title {
  color: #3e3a3a;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .page_title_block {
    margin-bottom: 25px;
  }
  .page_title_pic_wrap {
    width: 28px;
    height: 30px;
  }
  .page_title {
    font-size: 20px;
  }
}

.page_col_2 {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 60px;
}
@media (max-width: 1200px) {
  .page_col_2 {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .page_col_2 {
    gap: 0;
    grid-template-columns: 1fr;
  }
}

/* ===其它頁選單=== */
.page_nav_list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .page_nav_list {
    display: none;
  }
}
.page_nav_item {
  position: relative;
}
.page_nav_link {
  display: block;
  padding: 15px 24px;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid var(--main);
  background-color: var(--main);
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.page_nav_link:not([href]) {
  color: #000;
}
.page_nav_link i {
  color: #000;
  font-size: 12px;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transition: all 0.3s;
}
.page_nav_link:hover,
.page_nav_link.active {
  background-color: #595757;
  color: #fff;
  border: 1px solid #595757;
}
.page_nav_link:hover i,
.page_nav_link.active i {
  color: #fff;
}
.page_nav_link.active i {
  transform: translateY(-50%) rotate(0deg);
}
.page_nav_link:not([href]):hover {
  color: #fff;
}

.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 {
  background-color: #fff;
  border-top: 10px solid var(--main);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s;
}

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: 70px;
}
@media (max-width: 991px) {
  .head_main_wrap {
    justify-content: space-between;
    height: 52px;
  }
}

.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;
} */
.head_welcome_link {
}
@media (max-width: 991px) {
  .head_welcome_link {
  }
}
.header.active .head_welcome_link {
  /* margin-top: 10px; */
}

.head_logo_img {
  max-width: 304px;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .head_logo_img {
    width: 153px;
  }
}

@media (max-width: 1199px) {
}
/* head選單設定 */
.head_bar_block {
  display: flex;
  align-items: center;
  transform: translateX(10%);
}
@media (max-width: 1280px) {
  .head_bar_block {
    transform: translateX(5%);
  }
}
@media (max-width: 1200px) {
  .head_bar_block {
    transform: translateX(8%);
  }
}
@media (max-width: 1080px) {
  .head_bar_block {
    transform: translateX(5%);
  }
}
.head_bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 991px) {
  .head_bar {
    display: none;
  }
}
.nav_item {
  position: relative;
  transition: all 0.3s;
}

.nav_link {
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  padding: 4px 25px;
  color: #000;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 1640px) {
  .nav_link {
    padding: 4px 16px;
  }
  .nav_link:lang(en) {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .nav_item {
    margin: 0 10px;
  }
  .nav_link {
    padding: 4px 5px;
  }
}
.nav_link:hover,
.nav_link.active {
  color: var(--main);
}

/* 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: 80px;
}

@media (max-width: 991px) {
  .head_top_block {
    height: 62px;
  }
}
/* 語系按鈕 */
.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: 8px;
}
.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****************************/

/***************************過場動畫**************************/
.opening_video {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background-color: #fff;
}
.opening_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .opening_video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

@media screen and (max-width: 768px) {
  .opening_video video {
    display: none;
  }
  .opening_video img {
    display: block;
  }
} */
/***************************過場動畫**************************/
/***************************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 * 878);
  object-fit: cover;
}
/* 手機版圖片 */
.main_slider_img_mobile {
  width: 100%;
  height: calc(100vw / 428 * 286);
  object-fit: cover;
}
/* 輪播點點設定 */
.main_slider .slick-dots {
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  position: static;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .main_slider .slick-dots {
    padding-top: 10px;
  }
}

.main_slider .slick-dots li {
  margin: 5px;
}
.main_slider .slick-dots li button:before {
  font-size: 15px;
  color: #c9caca;
  transition: all 0.3s;
  opacity: 1;
}
.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: #3e3a39;
}
@media (max-width: 767px) {
  .main_slider .slick-dots li button:before {
  }
}

/* 首頁標題設定 */
.welcome_title_wrap {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 48px;
}

@media (max-width: 767px) {
  .welcome_title_wrap {
    padding-top: 40px;
    margin-bottom: 40px;
    margin-bottom: 30px;
  }
}
.welcome_title_pic_wrap {
  display: inline-block;
}
.welcome_title_pic_wrap img {
  width: 44px;
  height: 50px;
  object-fit: contain;
}
.welcome_title_block {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.welcome_title_zh {
  font-size: 35px;
  font-weight: bold;
  color: #000;
  line-height: 1;
}
@media (max-width: 767px) {
  .welcome_title_block {
    gap: 5px;
  }
  .welcome_title_zh {
    font-size: 20px;
  }
  .welcome_title_pic_wrap img {
    width: 27px;
    height: 30px;
  }
}
.welcome_title_en {
  white-space: nowrap;
  font-size: 25px;
  /* font-weight: bold; */
  color: #bea06e;
  line-height: 1;
}
.welcome_title_en:lang(en) {
  display: none;
}
@media (max-width: 767px) {
  .welcome_title_en {
    font-size: 18px;
  }
}
/* ========== 首頁關於我們 ========== */
.welcome_about_main_wrap {
  margin-top: 20px;
  padding: 321px 0;
  position: relative;
  z-index: 5;
  /* height: calc(100vw / 1920 * 800);
  min-height: 558px; */
  overflow: hidden;
  background-color: #fff;
}
.welcome_about_content_warp {
  position: relative;
}
.welcome_about_main_wrap .gs_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1200px) {
  .welcome_about_main_wrap {
    padding: 200px 0;
  }
}
@media (max-width: 991px) {
  .welcome_about_main_wrap {
    padding: 150px 0;
  }
}
@media (max-width: 767px) {
  .welcome_about_main_wrap {
    margin-top: 10px;
    padding: 0px 0 45px;
  }
  .welcome_about_main_wrap .gs_container {
    flex-direction: column;
  }
}
.welcome_about_img_wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  /* height: calc(100vw / 1920 * 800);
  min-height: 558px; */
}
.welcome_about_img_wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  height: 100%;
  width: 60%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 80%
  );
}
.welcome_about_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .welcome_about_img_wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    /* height: calc(100vw / 1200 * 600);
    min-height: 400px; */
  }
}
@media (max-width: 767px) {
  .welcome_about_img_wrap {
    position: relative;
    width: 100%;
  }
  .welcome_about_img {
    min-height: 308px;
  }
}

.welcome_about_main_wrap .welcome_about_img.animation {
  animation-name: ani_fadeIn;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_about_main_wrap .welcome_about_img.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}

.welcome_about_right_top_decorate {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 0;
  height: calc(100vw / 1920 * 285);
  min-height: 150px;
  object-fit: contain;
}
.welcome_about_right_decorate {
  position: absolute;
  right: -160px;
  top: 30%;
  z-index: 0;
  height: calc(100vw / 1920 * 311);
  min-height: 220px;
  object-fit: contain;
}
.welcome_about_right_bottom_decorate {
  position: absolute;
  right: 5%;
  bottom: 12px;
  z-index: 0;
  height: calc(100vw / 1920 * 165);
  min-height: 80px;
  object-fit: contain;
}
.welcome_about_right_top_mobile_decorate {
  display: block;
}
.welcome_about_bottom_mobile_decorate {
  display: none;
}
@media (max-width: 767px) {
  .welcome_about_right_top_decorate {
    display: none;
  }
  .welcome_about_right_decorate {
    display: none;
  }
  .welcome_about_right_bottom_decorate {
    bottom: 40px;
    min-height: 78px;
  }
  .welcome_about_right_top_mobile_decorate {
    display: block;
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 0;
    height: calc(100vw / 1920 * 135);
    min-height: 135px;
    object-fit: contain;
  }
  .welcome_about_bottom_mobile_decorate {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    height: calc(100vw / 1920 * 102);
    min-height: 102px;
    object-fit: contain;
  }
}
.welcome_about_content_block {
  grid-column: 2 / 3;
}
.welcome_about_main_wrap .welcome_title_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_about_main_wrap .welcome_title_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
@media (max-width: 767px) {
  .welcome_about_content_block {
    grid-column: 1 / 3;
  }
}
.welcome_about_content_wrap {
  /* padding: 0 100px; */
  margin-bottom: 40px;
}
.welcome_about_content_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.35s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_about_content_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
@media (max-width: 767px) {
  .welcome_about_content_wrap {
    padding-bottom: 80px;
    margin-bottom: 60px;
  }
}

.welcome_about_content_text {
  font-size: 22px;
  color: #000;
  line-height: 2;
  height: 180px;
  overflow: auto;
}
@media (max-width: 767px) {
  .welcome_about_content_text {
    height: auto;
    font-size: 16px;
  }
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #ddd;
}
::-webkit-scrollbar-thumb {
  background: var(--main);
}
.welcome_about_main_wrap .welcome_btn_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.7s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_about_main_wrap .welcome_btn_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}

@media (max-width: 767px) {
  .welcome_btn_wrap {
    text-align: center;
  }
}

/* ========== 首頁產品菜單 ========== */
.welcome_product_section {
  padding: 158px 0 107px;
  position: relative;
  z-index: 5;
  background-color: #fbfbfb;
}

.welcome_product_section .welcome_title_wrap {
  position: relative;
}
.welcome_product_section .welcome_title_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.welcome_product_right_decorate {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  width: 129px;
}
@media (max-width: 991px) {
  .welcome_product_section {
    padding: 36px 0 54px;
  }
  .welcome_product_section .welcome_title_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
  .welcome_product_right_decorate {
    display: none;
  }
}
.welcome_product_list {
  position: relative;
  margin: 0 0px 75px;
}
.welcome_product_list .slick-track {
  display: flex;
  align-items: flex-end;
}
.welcome_product_item {
  margin-bottom: 20px;
  position: relative;
  pointer-events: none;
  width: 300px;
}
.welcome_product_item.slick-active {
  pointer-events: all;
}

@media (max-width: 1400px) {
  .welcome_product_list {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .welcome_product_item {
    margin-bottom: 0;
  }
  .welcome_product_item.slick-active::after {
    width: 60%;
    min-width: 200px;
  }
  .welcome_product_item.slick-center::after {
    width: 75%;
    min-width: 233px;
  }
}
@media (max-width: 767px) {
  .welcome_product_list {
    margin-bottom: 25px;
  }
}

.welcome_product_list.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_product_list.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
.welcome_product_item_img_wrap {
  position: relative;
  margin-bottom: 20px;
  height: 646px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
}

.welcome_product_item.slick-active .welcome_product_item_img_wrap {
  justify-content: flex-start;
}
/* 顯示第三杯圖片wrap */
.welcome_product_item.slick-current
  + .welcome_product_item
  .welcome_product_item_img_wrap {
  justify-content: flex-end;
}
/* 顯示中間圖片wrap */
.welcome_product_item.slick-active.slick-current
  .welcome_product_item_img_wrap {
  justify-content: center;
}

.welcome_product_item_img_box {
  position: relative;
  width: 75%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.welcome_product_item.slick-current .welcome_product_item_img_box {
  width: 90%;
}
.welcome_product_item .welcome_product_item_img_box::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
  width: 90%;
  max-width: 447px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(to bottom, #d6d6d6, rgba(255, 255, 255, 0) 80%);
  /* opacity: 0; */
  transition: all 0.3s;
}
.welcome_product_item.slick-active .welcome_product_item_img_box::after {
  opacity: 1;
}
.welcome_product_item.slick-center .welcome_product_item_img_box::after {
  width: 110%;
  background: linear-gradient(
    to bottom,
    var(--main),
    rgba(255, 255, 255, 0) 80%
  );
  opacity: 1;
}

.welcome_product_item_img_wrap img {
  /* width: 100%; */
  height: 100%;
  max-height: 497px;
  object-fit: contain;
  vertical-align: bottom;
  transform-origin: bottom;
  transition: height 0.3s;
}

.welcome_product_item.slick-center .welcome_product_item_img_wrap img {
  max-height: 646px;
}

@media (max-width: 1200px) {
  .welcome_product_item_img_box {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .welcome_product_item_img_wrap {
    height: 480px;
  }
  .welcome_product_item_img_box {
    width: 100%;
  }
  .welcome_product_item .welcome_product_item_img_box::after {
    max-width: 310px;
  }
  .welcome_product_item_img_wrap img {
    max-height: 400px;
  }
  .welcome_product_item.slick-center .welcome_product_item_img_wrap img {
    max-height: 480px;
  }
}
@media (max-width: 575px) {
  .welcome_product_item_img_wrap {
    height: 337px;
  }
  .welcome_product_item .welcome_product_item_img_box::after {
    max-width: 232px;
  }
  .welcome_product_item_img_wrap img {
    max-height: 300px;
  }
  .welcome_product_item.slick-center .welcome_product_item_img_wrap img {
    max-height: 337px;
  }
}
.welcome_product_item_title {
  font-size: 25px;
  margin-bottom: 10px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  opacity: 0;
  font-weight: bold;
  transition: all 0.3s;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden; */
}
.welcome_product_item.slick-center .welcome_product_item_title {
  opacity: 1;
}
.welcome_product_item_title::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #3e3a3a;
}
.welcome_product_item_title::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #3e3a3a;
}
@media (max-width: 767px) {
  .welcome_product_item_title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.welcome_product_prev_arrow {
  position: absolute;
  left: -7%;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%) scale(-1, 1);
  color: #3e3a3a;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.welcome_product_next_arrow {
  position: absolute;
  right: -7%;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  color: #3e3a3a;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.welcome_product_prev_arrow:hover {
  left: -7.5%;
}
.welcome_product_next_arrow:hover {
  right: -7.5%;
}
@media (max-width: 1350px) {
  .welcome_product_prev_arrow {
    left: -4%;
  }
  .welcome_product_next_arrow {
    right: -4%;
  }
  .welcome_product_prev_arrow:hover {
    left: -4.5%;
  }
  .welcome_product_next_arrow:hover {
    right: -4.5%;
  }
}
@media (max-width: 1250px) {
  .welcome_product_prev_arrow {
    left: -3%;
  }
  .welcome_product_next_arrow {
    right: -3%;
  }
  .welcome_product_prev_arrow:hover {
    left: -3.5%;
  }
  .welcome_product_next_arrow:hover {
    right: -3.5%;
  }
}
@media (max-width: 1200px) {
  .welcome_product_prev_arrow {
    left: -5%;
    font-size: 12px;
  }
  .welcome_product_next_arrow {
    right: -5%;
    font-size: 12px;
  }
  .welcome_product_prev_arrow:hover {
    left: -5.5%;
  }
  .welcome_product_next_arrow:hover {
    right: -5.5%;
  }
}
@media (max-width: 1080px) {
  .welcome_product_prev_arrow {
    left: -3%;
  }
  .welcome_product_next_arrow {
    right: -3%;
  }
  .welcome_product_prev_arrow:hover {
    left: -3.5%;
  }
  .welcome_product_next_arrow:hover {
    right: -3.5%;
  }
}
@media (max-width: 991px) {
  .welcome_product_prev_arrow {
    left: 0%;
  }
  .welcome_product_next_arrow {
    right: 0%;
  }
  .welcome_product_prev_arrow:hover {
    left: 0%;
  }
  .welcome_product_next_arrow:hover {
    right: 0%;
  }
}

.welcome_product_btn_wrap {
  text-align: center;
}
.welcome_product_section .welcome_product_btn_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_product_section .welcome_product_btn_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}

/* ========首頁優良好茶======= */
.welcome_good_tea_section {
  padding-top: 134px;
  position: relative;
  background-color: #fff;
  z-index: 0;
  margin-bottom: 100px;
}

@media (max-width: 991px) {
  .welcome_good_tea_section {
    padding-top: 15px;
    margin-bottom: 50px;
  }
}
.welcome_good_tea_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.welcome_good_tea_mobile_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  display: none;
}
.welcome_good_tea_img {
  position: absolute;
  top: calc(100% - 100px);
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: 4;
}
@media (max-width: 1200px) {
  .welcome_good_tea_img {
    top: calc(100% - 50px);
  }
}
@media (max-width: 991px) {
  .welcome_good_tea_bg {
    display: none;
  }
  .welcome_good_tea_mobile_bg {
    display: block;
  }
  .welcome_good_tea_img {
    top: calc(100% - 40px);
  }
}
@media (max-width: 767px) {
  .welcome_good_tea_img {
    top: calc(100% - 25px);
  }
}
.welcome_good_tea_section .welcome_title_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_good_tea_section .welcome_title_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
.welcome_good_tea_list {
  margin: auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 100px;
  position: relative;
  z-index: 1;
  padding: 0 6%;
}
@media (max-width: 991px) {
  .welcome_good_tea_list {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }
}
.welcome_good_tea_item:nth-child(2) {
  grid-row: 2 / 3;
  top: -60px;
}
.welcome_good_tea_item:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  top: -200px;
  padding-left: 20px;
}
.welcome_good_tea_item:last-child {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: flex-end;
}
.welcome_good_tea_item {
  color: #fff;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .welcome_good_tea_item:nth-child(2) {
    grid-row: auto;
    top: 0;
  }
  .welcome_good_tea_item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    top: 0;
    padding-left: 0px;
  }
  .welcome_good_tea_item:last-child {
    grid-column: auto;
    grid-row: auto;
  }
}
.welcome_good_tea_item.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_good_tea_item.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
.welcome_good_tea_item_img_wrap {
  margin-bottom: 10px;
}
.welcome_good_tea_item_img_wrap img {
  width: 100%;
  object-fit: contain;
}
.welcome_good_tea_item:nth-child(1) .welcome_good_tea_item_img_wrap img {
  max-width: 231px;
}
.welcome_good_tea_item:nth-child(2) .welcome_good_tea_item_img_wrap img {
  max-width: 204px;
}
.welcome_good_tea_item:nth-child(3) .welcome_good_tea_item_img_wrap img {
  max-width: 296px;
}

.welcome_good_tea_item_line_wrap {
  position: absolute;
  top: 100%;
  right: -70px;
  width: calc(100% + 100px);
}
.welcome_good_tea_item:nth-child(2) .welcome_good_tea_item_line_wrap {
  right: -80px;
}
.welcome_good_tea_item:nth-child(3) .welcome_good_tea_item_line_wrap {
  right: auto;
  left: -70px;
}
.welcome_good_tea_item_line_wrap img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .welcome_good_tea_item:nth-child(1) .welcome_good_tea_item_img_wrap img {
    max-width: 204px;
  }
  .welcome_good_tea_item:nth-child(3) .welcome_good_tea_item_img_wrap img {
    max-width: 204px;
  }
  .welcome_good_tea_item_line_wrap {
    display: none;
  }
}

.welcome_good_tea_item_mid_img_wrap img {
  width: 100%;
  object-fit: contain;
  max-width: 486px;
  min-width: 486px;
}
@media (max-width: 1600px) {
  .welcome_good_tea_item_mid_img_wrap img {
    min-width: 380px;
  }
}
@media (max-width: 991px) {
  .welcome_good_tea_item_mid_img_wrap {
    margin-top: 15px;
  }
  .welcome_good_tea_item_mid_img_wrap img {
    max-width: 236px;
    min-width: 236px;
  }
}
.welcome_good_tea_item_title {
  font-size: 25px;
  font-weight: bold;
  color: #bea06e;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.welcome_good_tea_item_intro {
  font-size: 22px;
  color: #595757;
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .welcome_good_tea_item_title {
    font-size: 22px;
  }
  .welcome_good_tea_item_intro {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .welcome_good_tea_item_title {
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  .welcome_good_tea_item_intro {
    font-size: 18px;
  }
}

/* ========== 首頁加盟資訊 ========== */
.welcome_join_section {
  padding: 0px 0 102px;
  position: relative;
  z-index: 3;
  background-color: #f2f0eb;
}
.welcome_join_section .welcome_title_wrap {
  position: relative;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .welcome_join_section {
    padding: 0px 0px 55px;
  }
  .welcome_join_section .welcome_title_wrap {
    padding-top: 0;
    margin-bottom: 25px;
  }
}
.welcome_join_section .welcome_title_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_join_section .welcome_title_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
.welcome_join_right_decorate {
  position: absolute;
  right: 0;
  top: -50%;
  z-index: 0;
  width: 213px;
}
@media (max-width: 991px) {
  .welcome_join_right_decorate {
    display: none;
  }
}

.welcome_join_ckeditor {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .welcome_join_ckeditor {
    margin-bottom: 53px;
  }
}
.welcome_join_ckeditor.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_join_ckeditor.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
.welcome_join_list {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-bottom: 120px;
}
.welcome_join_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  align-items: center;
  gap: 45px;
  position: relative;
}
@media (max-width: 1200px) {
  .welcome_join_item {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .welcome_join_list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 5px;
    margin-bottom: 53px;
  }
  .welcome_join_item {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  .welcome_join_item:last-child {
    margin-bottom: 0;
  }
}
.welcome_join_item.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_join_item.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}

.welcome_join_item_img_wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.54;
}
.welcome_join_item_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  transition: all 0.3s;
}
.welcome_join_item:nth-child(even) .welcome_join_item_content {
  order: -1;
}

.welcome_join_item_title_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 36px;
  position: relative;
}
.welcome_join_item_title_head_line {
  background-color: var(--main);
  width: 120%;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: -10px;
  z-index: -1;
}
.welcome_join_item_title_head_line::before {
  content: "";
  background-color: var(--main);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.welcome_join_item:nth-child(even) .welcome_join_item_title_head_line {
  right: auto;
  left: 0;
}
.welcome_join_item:nth-child(even) .welcome_join_item_title_head_line::before {
  left: 0;
  right: auto;
}
@media (max-width: 767px) {
  .welcome_join_item_title_head_line {
    width: 100%;
  }
  .welcome_join_item_title_head_line::before {
    left: auto;
    right: 0;
  }
  .welcome_join_item:nth-child(even)
    .welcome_join_item_title_head_line::before {
    left: 0;
    right: auto;
  }
}
.welcome_join_item_title_en {
  width: 70%;
  font-size: 50px;
  color: var(--main);
  line-height: 1.3;
}
.welcome_join_item_title {
  font-size: 30px;
  color: #3e3a3a;
  font-weight: bold;
  padding: 0 20px 0 0;
  line-height: 1.3;
}
.welcome_join_item:nth-child(even) .welcome_join_item_title {
  order: -1;
  padding: 0 0 0 20px;
}
.welcome_join_item:nth-child(even) .welcome_join_item_title_en {
  text-align: right;
}
.welcome_join_item_intro {
  font-size: 22px;
  color: #3e3a3a;
  line-height: 1.5;
  max-height: 235px;
  overflow: auto;
  padding: 0 20px 0 0;
}
.welcome_join_item:nth-child(even) .welcome_join_item_intro {
  padding: 0 0 0 20px;
}
@media (max-width: 1200px) {
  .welcome_join_item_title_en {
    font-size: 30px;
  }
  .welcome_join_item_title {
    font-size: 24px;
  }
  .welcome_join_item_intro {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .welcome_join_item_title_en {
    font-size: 24px;
  }
  .welcome_join_item_title {
    font-size: 20px;
    padding: 0 10px 0 0;
  }
  .welcome_join_item:nth-child(even) .welcome_join_item_title {
    padding: 0 0 0 10px;
  }
  .welcome_join_item_intro {
    font-size: 18px;
    padding: 0 10px 0 0;
  }
  .welcome_join_item:nth-child(even) .welcome_join_item_intro {
    padding: 0 0 0 10px;
  }
}
@media (max-width: 767px) {
  .welcome_join_item_intro {
    max-height: auto;
  }
}
.welcome_join_item_mobile_mid_img_wrap {
  display: none;
}
@media (max-width: 767px) {
  .welcome_join_item_mobile_mid_img_wrap {
    display: block;
    text-align: right;
    margin: 16px 0;
  }
  .welcome_join_item_mobile_mid_img {
    width: 95px;
    height: 62px;
    object-fit: contain;
  }
  .welcome_join_item_intro {
    height: auto;
  }
}
.welcome_join_btn_wrap {
  text-align: center;
}
.welcome_join_btn_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_join_btn_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}

/* ========首頁最新消息======= */
.welcome_news_section {
  padding: 195px 0 100px;
  position: relative;
  z-index: 0;
  background-color: #fff;
  /* overflow: hidden; */
}
@media (max-width: 991px) {
  .welcome_news_section {
    padding: 12px 0 100px;
  }
}
.welcome_news_bg {
  position: absolute;
  /* bottom: -40%; */
  /* bottom: -30%; */
  bottom: -190px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: calc(100vw / 1920 * 1329);
}
.welcome_news_mobile_bg {
  display: none;
}
@media (max-width: 767px) {
  .welcome_news_bg {
    display: none;
  }
  .welcome_news_mobile_bg {
    display: block;
    position: absolute;
    bottom: -248px;
    left: 0;
    width: 100%;
    z-index: 0;
  }
}
.welcome_news_section .welcome_title_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_news_section .welcome_title_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
.welcome_news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 65px;
  margin-bottom: 78px;
}

@media (max-width: 1400px) {
  .welcome_news_list {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .welcome_news_list {
    display: none;
  }
}
.welcome_news_list.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_news_list.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}
.welcome_news_item_img_wrap {
  position: relative;
  margin-bottom: 18px;
}
.welcome_news_item_img_wrap::before {
  content: "";
  position: absolute;
  inset: 0 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  opacity: 0;
}
.welcome_news_item_img_wrap::after {
  content: "";
  background: url("../img/news_more_img.svg");
  background-repeat: no-repeat;
  background-size: contain;

  width: 127px;
  height: 111px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}
.welcome_news_item:hover .welcome_news_item_img_wrap::before,
.welcome_news_item:hover .welcome_news_item_img_wrap::after {
  opacity: 1;
}
.welcome_news_item_date {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  font-size: 26px;
  color: #bea06e;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  font-weight: bold;
  line-height: 1.2;
}
.welcome_news_item_date::after {
  content: "";
  position: absolute;
  inset: 6px 6px;
  border: 1px solid #bea06e;
  border-radius: 50%;
}
.welcome_news_item_img_wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.03;
}
@media (max-width: 767px) {
  .welcome_news_item:hover .welcome_news_item_img_wrap::before,
  .welcome_news_item:hover .welcome_news_item_img_wrap::after {
    opacity: 0;
  }
  .welcome_news_item_img_wrap {
    margin-bottom: 14px;
  }
  .welcome_news_item_date {
    width: 102px;
    height: 102px;
    font-size: 22px;
  }
  .welcome_news_item_date::after {
    inset: 5px 5px;
  }
}
.welcome_news_item_nav {
  font-size: 18px;
  margin-bottom: 12px;
  color: #3a3a3a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.welcome_news_item_nav span {
  position: relative;
}

.welcome_news_item_nav_icon {
  width: 12px;
  height: 8px;
  background: var(--main);
  position: relative;
}
.welcome_news_item_nav_icon:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 3px solid var(--main);
}
.welcome_news_item_nav_icon:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 3px solid var(--main);
}
.welcome_news_item_title {
  font-size: 22px;
  color: #000;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}

@media (max-width: 767px) {
  .welcome_news_item_nav {
    font-size: 16px;
  }
  .welcome_news_item_title {
    font-size: 18px;
  }
}
.welcome_news_list_mobile {
  display: none;
}
.welcome_news_btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.welcome_news_list_mobile_prev,
.welcome_news_list_mobile_next {
  display: none;
}
@media (max-width: 991px) {
  .welcome_news_btn_wrap {
    gap: 15px;
  }
  .welcome_news_list_mobile {
    display: block;
    margin-bottom: 45px;
  }
  .welcome_news_list_mobile_prev,
  .welcome_news_list_mobile_next {
    display: block;
    font-size: 12px;
  }
}
.welcome_news_section .welcome_news_btn_wrap.animation {
  animation-name: ani_slideBottom;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@media (max-width: 991px) {
  .welcome_news_section .welcome_news_btn_wrap.animation {
    animation-name: ani_slideBottom_stop;
    animation-duration: 0s;
    animation-delay: 0s;
  }
}

/***************************welcome**************************/

/***************************關於我們**************************/
/* 底圖 */
.about_back_img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about_back_img_wrap {
    display: none;
  }
}
.about_back_img_wrap img {
  position: absolute;
  opacity: 0.2;
  width: 35vw;
}
.about_back_img_wrap img:nth-child(1) {
  top: 3%;
  left: -10%;
}
.about_back_img_wrap img:nth-child(2) {
  top: 25%;
  right: -5%;
}
.about_back_img_wrap img:nth-child(3) {
  top: 45%;
  left: 1%;
}
.about_back_img_wrap img:nth-child(4) {
  top: 60%;
  right: -5%;
}
/* 關於我們上方區塊 */
.about_top_wrap {
  display: flex;
  margin-bottom: 150px;
}
@media (max-width: 991px) {
  .about_top_wrap {
    margin-bottom: 70px;
  }
}
.about_introduction_pic_wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .about_introduction_pic_wrap {
    width: 100%;
  }
}
.about_introduction_img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .about_introduction_img {
    width: 465px;
    height: 310px;
  }
}
@media (max-width: 991px) {
  .about_introduction_img {
    width: 100%;
    height: 460px;
  }
}
@media (max-width: 767px) {
  .about_introduction_img {
    height: 340px;
  }
}
@media (max-width: 575px) {
  .about_introduction_img {
    height: calc((100vw - 30px) / 600 * 400);
  }
}
.about_introduction_content_wrap {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .about_introduction_content_wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 15px;
    /* transform: translateY(-50%); */
  }
}
.about_introduction_title {
  text-align: center;
  margin-bottom: 200px;
}
.about_introduction_title.mobile {
  display: none;
}
@media (max-width: 991px) {
  .about_introduction_title.mobile {
    display: block;
    margin-bottom: 20px;
  }
  .about_introduction_title.desk {
    display: none;
  }
}
.about_introduction_title_pic_wrap {
  display: inline-block;
}
@media (max-width: 991px) {
  .about_introduction_title_pic_wrap {
    display: block;
    text-align: start;
  }
}
.about_introduction_title_pic_wrap img {
  width: 200px;
  height: 40px;
  object-fit: contain;
}
.about_introduction_title_en {
  font-size: 36px;
  font-weight: bold;
  color: #e1b15c;
  position: absolute;
  top: -20px;
  left: -5px;
  z-index: 1;
  opacity: 0.5;
}
@media (max-width: 991px) {
  .about_introduction_title_en {
    display: inline-block;
    position: static;
    top: auto;
    left: auto;
    opacity: 1;
  }
}
.about_introduction_title_zh {
  font-size: 24px;
  font-weight: bold;
  color: #0554ad;
  position: absolute;
  bottom: -3px;
  left: -65px;
}
@media (max-width: 991px) {
  .about_introduction_title_zh {
    display: inline-block;
    position: static;
    bottom: auto;
    left: auto;
  }
}
.about_introduction_text {
  font-weight: bold;
  line-height: 2;
  margin-top: 50px;
  padding: 40px 30px;
  position: absolute;
  width: 125%;
  right: 0;
  color: var(--main);
  z-index: 2;
}
@media (max-width: 1199px) {
  .about_introduction_text {
    width: 135%;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .about_introduction_text {
    margin-top: 0;
    position: relative;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .about_introduction_text {
    padding: 15px;
  }
}
.about_introduction_text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
  opacity: 0.8;
  border-radius: 20px;
}
.content_text {
  max-height: 150px;
  overflow: auto;
}
@media (max-width: 991px) {
  .content_text {
    max-height: none;
  }
}
/* 關於我們中間區塊 */
.about_child_item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .about_child_item {
    margin-bottom: 70px;
  }
}
.about_middle_wrap .about_child_item:nth-child(even) .about_child_pic_wrap {
  order: -1;
}
@media (max-width: 991px) {
  .about_middle_wrap .about_child_item:nth-child(even) .about_child_pic_wrap {
    order: 1;
  }
  .about_middle_wrap .about_child_item:nth-child(odd) .about_child_pic_wrap {
    text-align: end;
  }
}
.about_child_content_wrap {
  width: 50%;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .about_child_content_wrap {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about_child_content {
  padding-right: 50px;
}
@media (max-width: 1199px) {
  .about_child_content {
    padding-right: 10px;
  }
}
.about_middle_wrap .about_child_item:nth-child(even) .about_child_content {
  padding-right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 125%;
  padding: 40px 30px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .about_middle_wrap .about_child_item:nth-child(even) .about_child_content {
    width: 135%;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .about_middle_wrap .about_child_item:nth-child(even) .about_child_content {
    position: static;
    top: auto;
    transform: translateY(0);
    right: auto;
    width: auto;
    padding: 0;
  }
}
.about_middle_wrap
  .about_child_item:nth-child(even)
  .about_child_content::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: -1;
  opacity: 0.8;
  border-radius: 20px;
}
.about_child_title {
  color: #e1b15c;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.about_child_text {
  color: var(--main);
  font-weight: bold;
  line-height: 2;
}
.about_child_pic_wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .about_child_pic_wrap {
    width: 100%;
  }
}
.about_child_img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  box-shadow: 20px 20px rgba(56, 105, 154, 0.45);
}
.about_middle_wrap .about_child_item:nth-child(even) .about_child_img {
  box-shadow: -20px 20px rgba(56, 105, 154, 0.45);
}
@media (max-width: 1199px) {
  .about_child_img {
    width: 465px;
    height: 310px;
  }
}
@media (max-width: 767px) {
  .about_child_img {
    width: 330px;
    height: 220px;
  }
}
/* 關於我們下方區塊 */
.about_bottom_wrap {
  padding-top: 150px;
  background-image: url("../img/about_bottom_background.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: -255px;
  margin-top: -100px;
}
@media (max-width: 1199px) {
  .about_bottom_wrap {
    margin-bottom: -220px;
  }
}
@media (max-width: 991px) {
  .about_bottom_wrap {
    padding-top: 50px;
    margin-top: -50px;
  }
}
@media (max-width: 767px) {
  .about_bottom_wrap {
    margin-bottom: -100px;
  }
}
.about_bottom_content_wrap {
  width: 60%;
  z-index: 1;
  margin-bottom: 85px;
}
@media (max-width: 1199px) {
  .about_bottom_content_wrap {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .about_bottom_content_wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.about_bottom_text {
  padding: 40px;
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  color: #194c7e;
}
@media (max-width: 991px) {
  .about_bottom_text {
    margin-bottom: 25px;
  }
}
.about_bottom_text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  opacity: 0.7;
  border-radius: 20px;
  z-index: -1;
}
.about_bottom_btn_wrap {
  padding-left: 160px;
  position: absolute;
  bottom: -50px;
  left: 0;
}
@media (max-width: 991px) {
  .about_bottom_btn_wrap {
    padding-left: 0;
    position: static;
    bottom: auto;
    left: auto;
    text-align: center;
  }
}
.about_bottom_btn_wrap span {
  padding: 4px;
  border: 1px solid #1a80a7;
  display: inline-block;
}
.about_bottom_btn {
  /* structure */
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 20px 0;
  width: 265px;

  /* style */
  font-size: 22px;
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #ffffff;
  background-color: #1a80a7;
  outline: none;
  transition: all 0.3s;
}
.about_bottom_btn:hover {
  color: #ffffff;
  background-color: #194c7e;
}
.about_mountain_pic_wrap {
  text-align: end;
  padding-right: 230px;
}
@media (max-width: 1199px) {
  .about_mountain_pic_wrap {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .about_mountain_img {
    width: 60vw;
  }
}

/* 食物圖片 */
.about_bottom_img {
  position: absolute;
  bottom: -60px;
  right: -175px;
}
@media (max-width: 991px) {
  .about_bottom_img {
    display: none;
  }
}
/* 海鷗 */
.seagull_left {
  position: absolute;
  top: 25%;
  left: 10%;
}
.seagull_middle {
  position: absolute;
  top: 60%;
  left: 45%;
}
.seagull_right {
  position: absolute;
  top: 40%;
  right: 10%;
}
/***************************關於我們**************************/

/***************************最新消息-列表**************************/
.news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  column-gap: 30px;
  row-gap: 45px;
  padding: 0 0 114px;
}
.news_item {
}
@media (max-width: 1200px) {
  .news_list {
    column-gap: 26px;
    row-gap: 35px;
    padding: 0 0 45px;
  }
}
@media (max-width: 767px) {
  .news_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 14px;
  }
}
@media (max-width: 767px) {
  .news_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 14px;
  }
}
.news_item_img_wrap {
  position: relative;
  margin-bottom: 18px;
}
.news_item_img_wrap::before {
  content: "";
  position: absolute;
  inset: 0 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  opacity: 0;
}
.news_item_img_wrap::after {
  content: "";
  background: url("../img/news_more_img.svg");
  background-repeat: no-repeat;
  background-size: contain;

  width: 127px;
  height: 111px;
  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::before,
.news_item:hover .news_item_img_wrap::after {
  opacity: 1;
}
.news_item_date {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  font-size: 26px;
  color: #bea06e;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  font-weight: bold;
  line-height: 1.2;
}
.news_item_date::after {
  content: "";
  position: absolute;
  inset: 6px 6px;
  border: 1px solid #bea06e;
  border-radius: 50%;
}
.news_item_img_wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.03;
}
@media (max-width: 767px) {
  .news_item:hover .news_item_img_wrap::before,
  .news_item:hover .news_item_img_wrap::after {
    opacity: 0;
  }
  .news_item_img_wrap {
    margin-bottom: 14px;
  }
  .news_item_date {
    width: 68px;
    height: 68px;
    font-size: 16px;
  }
  .news_item_date::after {
    inset: 4px 4px;
  }
}
.news_item_nav {
  font-size: 18px;
  margin-bottom: 12px;
  color: #3a3a3a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news_item_nav span {
  position: relative;
}
.news_item_nav_icon {
  width: 12px;
  height: 8px;
  background: var(--main);
  position: relative;
}
.news_item_nav_icon:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 3px solid var(--main);
}
.news_item_nav_icon:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 3px solid var(--main);
}
.news_item_title {
  font-size: 22px;
  color: #000;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}

@media (max-width: 767px) {
  .news_item_nav {
    font-size: 16px;
  }
  .news_item_title {
    font-size: 18px;
  }
}
/***************************最新消息-列表**************************/

/***************************最新消息-內頁**************************/

.news_content_date {
  display: inline-block;
  font-size: 20px;
  color: var(--main);
  margin-bottom: 10px;
  padding: 4px 16px;
  border-radius: 5px;
  border: 1px solid #bea06e;
}
.news_content_title {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #c9caca;
}
@media (max-width: 767px) {
  .news_content_date {
    font-size: 16px;
    padding: 2px 16px;
  }
  .news_content_title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.back_btn_wrap {
  margin-top: 70px;
  text-align: center;
}
@media (max-width: 767px) {
  .back_btn_wrap {
    margin-top: 50px;
  }
}
.back_btn {
  margin: 0 auto;
  /* structure */
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 10px 0;
  width: 184px;
  height: 45px;
  /* style */
  font-size: 18px;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 5px;
  outline: none;
  position: relative;
  transition: all 0.3s;
}
.back_btn:hover {
  background-color: #fff;
  color: #000;
}
@media (max-width: 767px) {
  .back_btn {
    /* font-size: 18px; */
  }
  .back_btn:hover {
    background-color: #000;
    color: #fff;
  }
}
/***************************最新消息-內頁**************************/

/***************************飲品介紹**************************/
.drinks_html_ckeditor_mobile {
  display: none;
}
@media (max-width: 767px) {
  .drinks_html_ckeditor_pc {
    display: none;
  }
  .drinks_html_ckeditor_mobile {
    display: block;
  }
}
/***************************飲品介紹**************************/

/* =================表單基本設定-開始================= */
.form_wrap {
  padding: 0 300px;
}
@media (max-width: 1199px) {
  .form_wrap {
    padding: 0 200px;
  }
}
@media (max-width: 991px) {
  .form_wrap {
    padding: 0 100px;
  }
}
@media (max-width: 767px) {
  .form_wrap {
    padding: 0;
  }
}
.form_style {
  background-color: #ffffff;
  padding: 50px;
  border: 1px solid #adbdce;
  border-radius: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .form_style {
    padding: 20px;
  }
}
.input_group_three {
  width: 31%;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .input_group_three {
    width: 100%;
  }
}
.input_group_line {
  width: 23%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .input_group_line {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .input_group_line {
    width: 36%;
  }
}
@media (max-width: 575px) {
  .input_group_line {
    width: 100%;
  }
}
.input_group_two {
  width: 48%;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .input_group_two {
    width: 100%;
  }
}
.input_group_six {
  width: 73%;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .input_group_six {
    width: 65%;
  }
}
@media (max-width: 767px) {
  .input_group_six {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .input_group_six {
    width: 100%;
  }
}
.input_group_double {
  width: 48%;
}
@media (max-width: 575px) {
  .input_group_double {
    width: 100%;
    margin-bottom: 10px;
  }
}
.input_group {
  width: 100%;
  margin-bottom: 15px;
}
/* select 客製 icon 加 wrap */
.select_wrap::after {
  font-family: "Karen";
  font-weight: 900;
  content: "\f0ad";
  color: #194c7e;
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  pointer-events: none;
}
.select_style {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 45px;
  font-size: 18px;
  padding-left: 20px;
  color: var(--main);
  background-color: #ffffff;
  border: 1px solid var(--main);
  border-radius: 10px;
}
@media (max-width: 767px) {
  .select_style {
    font-size: 18px;
  }
}
.group_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.input_address_wrap {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .input_address_wrap {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
  }
}
.select_item {
  width: 40%;
}
@media (max-width: 767px) {
  .input_address_wrap .select_item:first-child {
    width: 100%;
    margin-bottom: 15px;
  }
  .input_address_wrap .select_item:nth-child(2) {
    width: 70%;
  }
}
.postal_code {
  width: 100px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 10px;
  font-size: 18px;
  color: #194c7e;
  border: 1px solid var(--main);
}
@media (max-width: 767px) {
  .postal_code {
    width: 25%;
  }
}
.main_btn_wrap {
  text-align: center;
  padding: 15px 0;
}
@media (max-width: 767px) {
  .main_btn_wrap {
    padding: 15px 0;
  }
}
/* =================表單基本設定-結束================= */

/* =================表單樣式設定-開始================= */
.input_label {
  color: var(--main);
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .input_label {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .input_label {
    font-size: 18px;
  }
}
.input_style {
  font-size: 18px;
  padding-left: 10px;
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--main);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .input_style {
    font-size: 16px;
  }
}
.readonly {
  color: #a5a5a5;
  background-color: #ececec;
}
.radio_wrap {
  display: flex;
  flex-wrap: wrap;
}
.radio_item {
  margin-right: 25px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .radio_item {
    margin-right: 20px;
  }
}
.radio_style {
  width: 17px;
  height: 17px;
  margin-right: 10px;
}
.radio_label {
  font-size: 18px;
  color: var(--main);
  margin: 0;
}
.main_recaptcha_wrap {
  padding: 20px 0;
}
@media (max-width: 767px) {
  .main_recaptcha_wrap {
    padding: 0;
  }
}
#or_text {
  text-align: center;
  font-size: 20px;
  color: #194c7e;
}
@media (max-width: 767px) {
  #or_text {
    padding: 5px 0;
  }
}
#or_text::after,
#or_text::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: var(--main);
}
#or_text::after {
  left: 0;
}
#or_text::before {
  right: 0;
}

/* 有icon的input */
.icon_input_group {
  border-radius: 10px;
  border: 1px solid var(--main);
  display: flex;
  overflow: hidden;
}
.icon_input_wrap {
  text-align: center;
  line-height: 50px;
  width: 55px;
  height: 50px;
  background-color: #d2f0ff;
  color: #194c7e;
  font-size: 20px;
  border-right: 1px solid var(--main);
}
.icon_input_style {
  font-size: 18px;
  padding-left: 10px;
  width: calc(100% - 55px);
  height: 50px;
  border: 0;
}
/* =================表單樣式設定-結束================= */

/***************************聯絡我們**************************/
#contact_section {
  padding-bottom: 0;
}
.contact_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
  padding: 40px 22px;
  background-color: #fff;
  border: 1px solid #c9caca;
  border-radius: 5px;
}
.contact_form {
}
.contact_input_label {
  display: block;
  margin-bottom: 32px;
}
.contact_input_title {
  font-size: 22px;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .contact_wrap {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .contact_wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 15px 60px;
  }
  .contact_input_title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .contact_input_label {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
/* 聯絡我們輸入樣式 */
.contact_input {
  font-size: 18px;
  padding: 0 16px;
  width: 100%;
  height: 55px;
  border-radius: 5px;
  background-color: #f6f6f6;
  border: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .contact_input {
    font-size: 16px;
  }
}
input::placeholder,
.contact_textarea::placeholder {
  color: #b3b3b3;
  opacity: 0.5;
}
.contact_textarea {
  font-size: 18px;
  padding: 15px 16px;
  width: 100%;
  border-radius: 10px;
  background-color: #f6f6f6;
  border: none;
  resize: none;
  height: 192px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .contact_textarea {
    font-size: 16px;
  }
}

.contact_submit_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.contact_submit_block .main_btn {
  width: 164px;
}
@media (max-width: 1199px) {
  .contact_submit_block {
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .contact_submit_block {
    margin-top: 52px;
    align-items: center;
  }
}
.contact_btn_wrap {
  text-align: center;
}
@media (max-width: 1199px) {
  .contact_btn_wrap {
    margin-top: 20px;
  }
}
.contact_btn {
  /* structure */
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 15px 0;
  width: 250px;

  /* style */
  font-size: 20px;
  /* font-weight: bold; */
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #ffffff;
  background-color: var(--main);
  border-radius: 60px;
  border: 2px solid var(--main);
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .contact_btn {
    padding: 10px 0;
    width: 150px;
  }
}
.contact_btn:hover {
  color: var(--main);
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .contact_info_wrap {
    margin-bottom: 50px;
  }
}
.contact_map_wrap {
  margin-top: 76px;
}
.contact_map_wrap iframe {
  width: 100%;
  transform: translateY(28px);
  height: 512px;
  margin-top: -28px;
}
@media (max-width: 991px) {
  .contact_map_wrap iframe {
    transform: translateY(38px);
    margin-top: -38px;
  }
}
@media (max-width: 767px) {
  .contact_map_wrap {
    margin-top: 38px;
  }
  .contact_map_wrap iframe {
    transform: translateY(16px);
    margin-top: -16px;
    max-height: 246px;
  }
}
/***************************聯絡我們**************************/

/***************************門市據點**************************/
.store_list {
  margin-bottom: 63px;
}
.store_item {
  padding: 18px 16px;
  border: 1px solid #c9caca;
  display: grid;
  grid-template-columns: 0.28fr 0.258fr 0.462fr;
  gap: 18px;
  background-color: #fff;
  margin-bottom: 35px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .store_list {
    margin-bottom: 59px;
  }
  .store_item {
    padding: 15px;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
}

.store_item_img_wrap img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.343;
}

.store_item_title {
  font-size: 20px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid #595757;
  font-weight: bold;
}
@media (max-width: 767px) {
  .store_item_title {
    font-size: 18px;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}
.store_item_info_block {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.store_item_info_block:last-child {
  margin-bottom: 0;
}
.store_item_info_icon {
  text-align: center;
}
.store_item_info_icon i {
  color: var(--main);
  font-size: 18px;
}
.store_item_info_text {
  color: #595757;
  font-size: 18px;
  transition: all 0.3s;
}
a.store_item_info_text:hover {
  opacity: 0.7;
  color: #595757;
}
@media (max-width: 991px) {
  .store_item_info_block {
    margin-bottom: 10px;
    gap: 4px;
  }
  .store_item_info_text {
    font-size: 16px;
  }
}
.store_item_map_wrap {
  width: 100%;
}
.store_item_map_wrap iframe {
  width: 100%;
  /* max-width: 614px; */
  height: 100%;
  max-height: 277px;
}
@media (max-width: 991px) {
  .store_item_map_wrap iframe {
    min-height: 168px;
  }
}
/***************************門市據點**************************/
/***************************加盟表單**************************/
#join_form_section {
  padding-bottom: 0;
}
.join_form {
  margin-top: 50px;
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; */
  padding: 43px 57px;
  background-color: #fff;
  border: 1px solid #c9caca;
  border-radius: 5px;
}
.join_form_input_block {
  display: flex;
  align-items: center;
  gap: 40px;
}
.join_form_input_label {
  display: block;
  width: 100%;
  margin-bottom: 32px;
}
.join_form_input_title {
  font-size: 22px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
  .join_form_input_block {
    display: block;
  }
  .join_form {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 15px 60px;
  }
  .join_form_input_title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .join_form_input_label {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
/* 加盟表單輸入樣式 */
.join_form_input {
  font-size: 18px;
  padding: 0 16px;
  width: 100%;
  height: 55px;
  border-radius: 5px;
  background-color: #f6f6f6;
  border: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .join_form_input {
    font-size: 16px;
  }
}
input::placeholder,
.join_form_textarea::placeholder {
  color: #b3b3b3;
  opacity: 0.5;
}
.join_form_textarea {
  font-size: 18px;
  padding: 15px 16px;
  width: 100%;
  border-radius: 10px;
  background-color: #f6f6f6;
  border: none;
  resize: none;
  height: 192px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .join_form_textarea {
    font-size: 16px;
  }
}

.join_form_submit_block {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 45px;
}
.join_form_submit_block .g_recaptcha_wrapper {
  /* display: flex;
  align-items: flex-end; */
}
.join_form_submit_block .main_btn {
  width: 164px;
}
@media (max-width: 1199px) {
  .join_form_submit_block {
  }
}
@media (max-width: 767px) {
  .join_form_submit_block {
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
}
.join_form_btn_wrap {
  text-align: center;
}
@media (max-width: 1199px) {
  .join_form_btn_wrap {
    margin-top: 20px;
  }
}
.join_form_btn {
  /* structure */
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 15px 0;
  width: 250px;

  /* style */
  font-size: 20px;
  /* font-weight: bold; */
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #ffffff;
  background-color: var(--main);
  border-radius: 60px;
  border: 2px solid var(--main);
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .join_form_btn {
    padding: 10px 0;
    width: 150px;
  }
}
.join_form_btn:hover {
  color: var(--main);
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .join_form_info_wrap {
    margin-bottom: 50px;
  }
}
.join_form_map_wrap {
  margin-top: 76px;
}
.join_form_map_wrap iframe {
  width: 100%;
  transform: translateY(28px);
  height: 512px;
  margin-top: -28px;
}
@media (max-width: 991px) {
  .join_form_map_wrap iframe {
    transform: translateY(38px);
    margin-top: -38px;
  }
}
@media (max-width: 767px) {
  .join_form_map_wrap {
    margin-top: 38px;
  }
  .join_form_map_wrap iframe {
    transform: translateY(16px);
    margin-top: -16px;
    max-height: 246px;
  }
}
/***************************加盟表單**************************/
/****************************foot***************************/
#go_top {
  cursor: pointer;
  position: fixed;
  z-index: 20;
  bottom: 10%;
  right: 3%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  #go_top {
    font-size: 50px;
  }
}
#go_top.active {
  visibility: visible;
  opacity: 1;
}
#go_top.bottom_active {
  bottom: 155px;
}
#go_top:hover {
  transform: scale(0.9);
}
.go_top_img {
  width: 125px;
  height: 107px;
  object-fit: contain;
}
@media (max-width: 991px) {
  #go_top.bottom_active {
    bottom: 280px;
  }
}
@media (max-width: 767px) {
  #go_top.bottom_active {
    bottom: 230px;
  }
  .go_top_img {
    width: 108px;
    height: 92px;
  }
}
.footer {
  position: relative;
  z-index: 0;
}
.foot_top_wrap {
  background-color: var(--main);
  padding-top: 30px;
  padding-bottom: 24px;
  mask-image: url("../img/foot_bg.png");
  -webkit-mask-image: url("../img/foot_bg.png");
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: top center;
  -webkit-mask-position: top center;
  mask-repeat: no-repeat;
}
@media (max-width: 767px) {
  .foot_top_wrap {
    padding-top: 25px;
    padding-bottom: 10px;
    mask-image: url("../img/foot_mobile_bg.png");
    -webkit-mask-image: url("../img/foot_mobile_bg.png");
  }
}
.foot_main_wrap {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1699px) {
  .foot_main_wrap {
    padding-left: 0;
  }
}
.foot_left {
  width: 50%;
  display: flex;
}
@media (max-width: 991px) {
  .foot_left {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .foot_left {
  }
}
.foot_right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}
@media (max-width: 991px) {
  .foot_right {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .foot_right {
    padding: 0;
  }
}
/* 頁底logo */
.foot_logo_wrap {
  padding-right: 60px;
}
@media (max-width: 991px) {
  .foot_logo_wrap {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .foot_logo_wrap {
    padding: 0 24px;
  }
}
.foot_logo {
  width: 120px;
  height: 140px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .foot_logo {
    width: 50px;
    height: 97px;
    object-fit: contain;
  }
}

/* copyright設定 */
.foot_copyright {
  width: 100%;
  font-size: 16px;
  color: #555454;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .foot_copyright {
    position: relative;
    justify-content: center;
    padding-top: 8px;
  }
}
@media (max-width: 767px) {
  .foot_copyright {
    font-size: 14px;
  }
}
.foot_copyright a {
  color: #555454;
}
.foot_copyright a:hover {
  color: #555454;
  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;
  }
}
/* 社群連結 */
.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 {
    margin-bottom: 0;
  }
}
.foot_social_link {
  display: inline-block;
  color: #555454;
  font-size: 22px;
}
.foot_social_link:hover {
  color: #555454;
  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 {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .foot_info_wrap {
    /* margin-top: 10px;
    width: 100%;
    height: auto; */
    padding: 0;
  }
}
.foot_info_item {
  color: #ffffff;
}

@media (max-width: 767px) {
  .foot_info_item {
    margin-top: 0;
  }
}
.info_text {
  font-size: 16px;
  margin-top: 5px;
  display: flex;
  gap: 20px;
}
.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: #555454;
}
.info_title::after {
  content: "";
  border-right: 1px solid #555454;
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: -10px;
}
.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,
.info_text span {
  color: #555454;
}
.foot_info_item a:hover {
  opacity: 0.7;
}
.foot_info_item a:not([href]) {
  color: #555454;
}
/* 頁面連結 */
.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;
}
