@charset "utf-8";
/* CSS Document */

/* 共通 css開始  */
* {
  box-sizing: border-box;
}
:root {
  --main: #49312e;
  --red: #ac0003;
  --white: #ffffff;
  --amber_brown: #ab8252;
  --gray: #999999;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: '微軟正黑體';
  line-height: 1.5em;
  margin: 0;
  background-color: #fffef9;
}

@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: 1470px;
}

@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: flex;
  align-items: center;
  column-gap: 8px;
  margin: 0;
  padding: 10px 0;
  width: 130px;

  /* style */
  font-size: 18px;
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: #000;
  background-color: transparent;
  border: none;
  border-radius: 27px;
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .main_btn {
  }
}
.main_btn:hover {
  opacity: 0.7;
}

.back_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 15px 0;
  width: 127px;

  /* style */
  font-size: 18px;
  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: var(--white);
  background-color: #898989;
  border: none;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .back_btn {
  }
}
.back_btn:hover {
  opacity: 0.7;
}
/* ========== 圖片比例 ========== */
.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: contain;
  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: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--red);
  /* background-color: #b8b8b8; */
  /* border: 1px solid transparent; */
  border: 1px solid var(--red);
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  margin: 0 10px;
  padding: 0 4px;
  /* font-weight: bold; */
  position: relative;
}
/* .gs_pagination a.pag_btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 19px;
  height: 1px;
  background-color: var(--main);
  opacity: 0;
  transition: all 0.2s ease-in-out;
} */
.gs_pagination strong {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffff;
  /* border: 1px solid var(--main); */
  background-color: var(--red);
  border-bottom: 1px solid var(--red);
  font-size: 18px;
  transition: all 0.2s ease-in-out;
  margin: 0 10px;
  padding: 0 4px;
  font-weight: normal;
}
.gs_pagination a.pag_btn:hover {
  color: var(--white);
  background-color: var(--red);
}
@media (max-width: 991px) {
  .gs_pagination strong,
  .gs_pagination a.pag_btn {
    font-size: 16px;
    margin: 0 10px;
  }
}
@media (max-width: 400px) {
  .gs_pagination strong,
  .gs_pagination a.pag_btn {
    margin: 0 8px;
  }
}
.gs_pagination a.pag_arrow {
  text-align: center;
  color: var(--main);
  margin: 0 12px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
  font-weight: bold;
}
.gs_pagination a.pag_arrow i {
  font-size: 27px;
}
.gs_pagination a.pag_arrow:hover {
  color: #b8b8b8;
}
@media (max-width: 991px) {
  .gs_pagination a.pag_arrow {
    margin: 0 10px;
  }
  .gs_pagination a.pag_arrow i {
    font-size: 22px;
  }
}
@media (max-width: 400px) {
  .gs_pagination a.pag_arrow {
    margin: 0 8px;
  }
}
/* ========== 導航欄漢堡特效 ========== */
.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(--white);
  stroke-width: 5;
  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: var(--white);
    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: 100px;
  left: 0;
  z-index: 100;
  width: 100%;
  height: calc(100vh - 100px);
  background-color: #fffef9;
  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%;
}
.nav_item_mobile img {
  width: 19px;
  object-fit: contain;
}
.nav_link_mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8.5px;
  padding: 55px 30px;
  color: var(--main);
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.nav_item_mobile:last-child .nav_item_mobile_title {
  border-bottom: none;
}
.nav_item_mobile_title {
  border-bottom: 1px solid var(--amber_brown);
}

.nav_link_mobile:hover {
  color: #000;
}
.nav_link_mobile i {
  font-size: 13px;
  color: var(--main);
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.nav_item_mobile_title.active .nav_link_mobile i {
  transform: translateY(-50%) rotate(90deg);
  color: var(--white);
}
.nav_item_classification_mobile_wrap {
  background-color: #6b6363;
  /* padding: 0 20px; */
  display: none;
}
/* .nav_item_mobile_title.active + .nav_item_classification_mobile_wrap {
	background-color: #6B6363;

} */
.nav_item_classification_mobile_block:last-child
  .nav_item_classification_mobile_link {
  border-bottom: none;
}
.nav_item_classification_mobile_link {
  display: block;
  padding: 14px 0px;
  margin: 0 20px;
  color: var(--white);
  border-bottom: 1px solid #939393;
  position: relative;
  text-align: center;
  font-size: 16px;
}
.nav_item_classification_mobile_link:not([href]) {
  color: var(--white);
}
.nav_item_classification_mobile_link i {
  font-size: 13px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--main);
  transition: all 0.3s;
}
.nav_item_classification_mobile.active .nav_item_classification_mobile_link i {
  transform: translateY(-50%) rotate(90deg);
}
.nav_item_classification_mobile:last-child
  .nav_item_classification_mobile_link {
  border-bottom: none;
}
@media (max-width: 991px) {
  .nav_item_classification_mobile_link:not([href]):hover,
  .nav_item_classification_mobile_link:hover,
  .nav_item_classification_mobile.active .nav_item_classification_mobile_link {
    color: var(--main);
  }
}
.nav_item_classification_mobile_2_wrap {
  background-color: #d0e1fa;
  display: none;
  border-bottom: 1px solid #b6c6d9;
}
.nav_item_classification_mobile_2_link {
  display: block;
  color: #000;
  border-bottom: 1px dashed #b6c6d9;
  padding: 20px 15px;
  text-align: center;
  font-size: 16px;
}
.nav_item_classification_mobile_2_link:hover {
  color: #000;
}
.nav_item_classification_mobile_2:last-child
  .nav_item_classification_mobile_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.6rem;
}
.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;
  margin: 18px 0;
}
.html_ckeditor_content ul,
.html_ckeditor_content ol {
  padding-left: 2rem;
}
/* ========== Banner ========== */
.page_banner {
  position: relative;
  z-index: 2;
  height: calc(100vw / 1920 * 302);
}
@media (max-width: 767px) {
  .page_banner {
    height: calc(100vw / 428 * 180);
  }
}
.page_banner .gs_container {
  height: 100%;
}
.page_banner.animation {
  animation-name: ani_fadeIn;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.page_banner_title_wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  row-gap: 8px;
}
.page_banner_title_en {
  font-size: 30px;
  color: var(--white);
  line-height: 1;
}
.page_banner_title {
  font-size: 30px;
  color: var(--white);
  margin-right: 32px;
  position: relative;
}
.page_banner_title::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  height: 27px;
  width: 2px;
  border-radius: 20px;
  background-color: var(--white);
}
@media (max-width: 767px) {
  .page_banner_title_en {
    font-size: 25px;
  }
  .page_banner_title {
    font-size: 25px;
  }
}

/* 電腦版 */
.page_banner_img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0;
  object-fit: cover;
  z-index: -1;
}
@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: 100%;
    position: absolute;
    inset: 0 0;
    z-index: -1;
    object-fit: cover;
  }
}
/* ===麵包屑=== */
.breadcrumb_wrap {
  margin-bottom: 65px;
}

.breadcrumb_list {
  text-align: right;
  color: #9a9595;
}
.breadcrumb_link {
  font-size: 18px;
  color: #9a9595;
  transition: all 0.3s;
}
.breadcrumb_link:hover,
.breadcrumb_link.active {
  color: var(--main);
}
@media screen and (max-width: 991px) {
  .breadcrumb_wrap {
    margin-bottom: 60px;
  }
  .breadcrumb_list {
    padding: 5px 0;
  }
  .breadcrumb_link {
    /* font-size: 16px; */
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb_link {
    /* font-size: 14px; */
  }
}
/* ========== 頁面設定 ========== */
.page_wrap {
  padding: 122px 0 223px;
  position: relative;
}

@media (max-width: 767px) {
  .page_wrap {
    padding: 90px 0 140px;
  }
}
.page_title {
  color: var(--main);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
.main_title_wrap {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .main_title_wrap {
    margin-bottom: 30px;
  }
}
.main_title {
  font-size: 24px;
  font-weight: bold;
  color: #0554ad;
}
@media (max-width: 767px) {
  .main_title {
    font-size: 22px;
  }
}
.main_title_img {
  width: 155px;
  height: 30px;
  object-fit: contain;
  position: absolute;
  top: 7px;
  right: -50px;
  z-index: -1;
}

.page_col_2 {
  display: grid;
  grid-template-columns: 250px calc(100% - 300px);
  gap: 50px;
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
  .page_col_2 {
    grid-template-columns: 100%;
    gap: 0;
  }
}

/* ===其它頁選單=== */
.page_nav_block.animation {
  animation-name: ani_slideBottom;
  animation-duration: 0.75s;
  animation-delay: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
.page_nav_list {
  display: block;
  width: 100%;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .page_nav_list {
    display: none;
  }
}
.page_nav_item {
  position: relative;
}
.page_nav_link {
  flex-shrink: 0;
  padding: 18px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  border-bottom: 1px solid #939393;
  overflow: hidden;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.page_nav_link:not([href]) {
  color: #000;
}
.page_nav_link i {
  color: #000;
  font-size: 13px;
  transition: all 0.3s;
}
.page_nav_link .page_nav_link_single_icon {
  color: var(--white);
}
.page_nav_link:hover,
.page_nav_link.active,
.page_nav_link.active_single {
  background-color: #6b6363;
  color: var(--white);
  border-color: var(--main);
}
.page_nav_link:hover i,
.page_nav_link.active i,
.page_nav_link.active_single i {
  color: var(--white);
}
.page_nav_link.active i {
  transform: rotate(90deg);
}
.page_nav_link:not([href]):hover {
  color: var(--white);
}

.page_nav_text {
  font-size: 20px;
  color: #be5c44;
  margin-bottom: 35px;
  font-weight: bold;
}
@media (max-width: 991px) {
  .page_nav_text {
    display: none;
  }
}

.page_nav_list_2_drop {
  /* position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 4; */
  display: none;
  padding: 0 27px 0 32px;
}
.page_nav_link.active + .page_nav_list_2_drop {
  display: block;
}
.page_nav_link_2 {
  color: #000;
  height: 64px;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border-bottom: 1px dashed #757b82;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.page_nav_link_2:last-of-type {
  border-bottom: none;
}
.page_nav_link_2:not([href]) {
  color: var(--main);
}
.page_nav_link_2 i {
  font-size: 12px;
}

.page_nav_link_2:hover,
.page_nav_link_2.active {
  color: var(--main);
}

.page_nav_list_3_drop {
  position: absolute;
  z-index: 2;
  left: 100%;
  top: 0;
  background-color: var(--white);
  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: var(--white);
  background-color: #ec938c;
}

/*****************************************************************************/
/*-----------------------------------start-----------------------------------*/
/*****************************************************************************/

/****************************head****************************/
header {
  background-color: var(--main);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.3s;
}
.header_main_block {
  position: relative;
}
@media (max-width: 991px) {
  header {
  }
  header .gs_container {
    position: relative;
  }
}
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: 89px;
}
@media (max-width: 991px) {
  .head_main_wrap {
    justify-content: space-between;
    height: 100px;
  }
}

.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_wrap {
  display: flex;
  align-items: center;
}
.head_welcome_link {
}
.head_welcome_title {
  font-weight: bold;
  font-size: 20px;
  color: var(--white);
  margin-left: 46px;
}
@media (max-width: 991px) {
  .head_welcome_link {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
  }
  .head_welcome_title {
    display: none;
  }
}
.header.active .head_welcome_link {
  /* margin-top: 10px; */
}

.head_logo_img {
  max-width: 218px;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 1199px) {
}
@media (max-width: 991px) {
}

/* head選單設定 */
.head_bar_block {
  display: flex;
  align-items: center;
  height: 100%;
}

.head_bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  margin-right: 100px;
}
@media (max-width: 1640px) {
  .head_bar {
    margin-right: 60px;
  }
}
@media (max-width: 1199px) {
  .head_bar_block {
    column-gap: 0px;
  }
}
@media (max-width: 991px) {
  .head_bar_block {
    position: static;
  }
  .head_bar {
    display: none;
  }
}
.nav_item {
  position: relative;
  transition: all 0.3s;
}

.nav_link {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  margin: 0 25px;
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
  position: relative;
  letter-spacing: 2px;
}

.nav_link i {
  font-size: 10px;
  transform: rotate(90deg);
  color: #000;
}
.nav_link i {
  width: 12px;
  object-fit: contain;
}
.nav_link::after {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -4px;
  height: 0px;
  background-color: var(--white);
  transition: all 0.3s;
}

@media (max-width: 1640px) {
  .nav_link {
    margin: 0 15px;
  }
  .nav_link::before {
    left: calc(100% + 15px);
  }
}

@media (max-width: 1199px) {
  .nav_item {
    margin: 0 5px;
  }
  .nav_link {
    margin: 0 10px;
  }
  .nav_link::before {
    left: calc(100% + 10px);
  }
}
.nav_item:hover .nav_link,
.nav_link.active,
.nav_item:hover .nav_link i,
.nav_link.active i {
  color: var(--white);
}
.nav_item:hover .nav_link::after,
.nav_link.active::after {
  height: 2px;
}

/* 導覽列購物車會員區塊 */
.nav_member_block {
  display: flex;

  align-items: center;
  column-gap: 14px;
}
.nav_member_name {
  color: var(--white);
  font-weight: bold;
}
.nav_member_logout_btn {
  width: 70px;
  height: 30px;
  border-radius: 7px;
  background-color: var(--white);
  color: var(--main);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.nav_member_logout_btn:hover {
  color: var(--main);
  opacity: 0.7;
}

@media (max-width: 991px) {
  .nav_member_block_pc {
    display: none;
  }

  .nav_member_block {
    justify-content: center;
    padding: 45px 0 38px;
    border-bottom: 1px solid var(--amber_brown);
    column-gap: 25px;
  }

  .nav_member_name {
    color: var(--main);
    font-size: 20px;
    font-weight: normal;
  }

  .nav_member_logout_btn {
    width: 120px;
    height: 50px;
    color: var(--white);
    background-color: var(--gray);
  }
  .nav_member_logout_btn:hover {
    color: var(--white);
    opacity: 1;
  }
}

/* 導覽列社群連結 */
.nav_social_link_wrap {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: 37px;
}
.nav_social_link {
  padding: 40px 0 19px;
  transition: all 0.3s;
}
.nav_social_link i {
  color: #464646;
  font-size: 21px;
}
.nav_social_link:nth-child(3) i {
  font-size: 23.5px;
}
.nav_social_link:hover {
  opacity: 0.7;
}
@media (max-width: 1640px) {
  .nav_social_link_wrap {
    margin-left: 40px;
  }
}
@media (max-width: 1200px) {
  .nav_social_link_wrap {
    margin-left: 16px;
    gap: 8px;
  }
}
@media (max-width: 991px) {
  .nav_social_link_wrap {
    gap: 27px;
    margin-left: 0;
    padding: 50px 15px;
  }
  .nav_social_link {
    padding: 0;
  }
}
/* 電腦版下拉選單 */
.nav_item:hover .nav_item_classification_wrap {
  pointer-events: all;
  opacity: 1;
}
.nav_item_classification_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.nav_item_classification {
  position: relative;
  border-bottom: 1px solid #bcbcbc;
}
.nav_item_classification:last-child {
  border-bottom: none;
}
.nav_item_classification_link {
  display: block;
  font-size: 18px;
  padding: 18px 40px 18px 20px;
  background-color: var(--main);
  color: var(--white);
  /* word-break: break-all; */
  white-space: nowrap;
  position: relative;
  width: 100%;
}
.nav_item_classification_link:not([href]) {
  color: var(--white);
}
.nav_item_classification_link i {
  font-size: 10px;
  color: var(--white);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.nav_item_classification:hover .nav_item_classification_link,
.nav_item_classification_link:hover {
  background-color: #f9f9f9;
  color: #000;
}
.nav_item_classification:hover .nav_item_classification_link i,
.nav_item_classification_link:hover i {
  color: #000;
}
.nav_item_classification:hover .nav_item_classification_2_wrap {
  opacity: 1;
  z-index: 1;
}
.nav_item_classification_2_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  /* width: 100%; */
  opacity: 0;
  z-index: -1;
  max-height: 500px;
  overflow: auto;
}
.nav_item_classification_2 {
  border-bottom: 1px solid #bcbcbc;
}
.nav_item_classification_2:last-child {
  border-bottom: none;
}
.nav_item_classification_2_link {
  display: block;
  font-size: 18px;
  padding: 18px 22px;
  background-color: #f9f9f9;
  color: #424242;
  white-space: nowrap;
  /* word-break: break-all; */
}
.nav_item_classification_2_link:hover {
  background-color: var(--main);
  color: var(--white);
}
.nav_item_classification_2_link:hover {
}

/* hover 選單 */
.nav_hover_wrap {
  visibility: hidden;
  position: absolute;
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  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: var(--white);
}
#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;
}

/* 上方空白區塊(撐高用) */
.head_top_block {
  height: 89px;
}

@media (max-width: 991px) {
  .head_top_block {
    height: 100px;
  }
}

/* 語系按鈕 */
.nav_lang_item {
  position: relative;
  /* position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%); */
  background: linear-gradient(to right, var(--main), #207eef);
  padding: 14px 41px;
  border-radius: 50px 0 0 50px;
}
.nav_lang_item.active {
  border-radius: 0px;
}
@media (max-width: 1199px) {
  .nav_lang_item:lang(jp) {
    padding: 14px 12px 14px 20px;
  }
}
@media (max-width: 991px) {
  .nav_lang_item {
    border-radius: 50px;
    padding: 5px 14px;
  }
  .nav_lang_item:lang(jp) {
    padding: 5px 14px;
  }
  .nav_lang_item.active {
    border-radius: 0;
  }
}
.nav_lang_item_text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s;
}
.nav_lang_item_text:hover {
  color: 0;
  opacity: 0.7;
}
.lang_img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.lang_down_img {
  width: 9px;
  height: 5px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .nav_lang_item_text {
    font-size: 14px;
    gap: 4px;
  }
  .lang_img {
    width: 12px;
    height: 12px;
  }
  .lang_down_img {
    width: 6px;
    height: 3px;
  }
}
.nav_lang_drop_item {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 30;
  background: linear-gradient(to right, var(--main), #207eef);
  text-align: center;
  display: none;
}
.nav_lang_drop_item_link {
  display: block;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding: 8px 4px;
  transition: all 0.3s;
}
.nav_lang_drop_item_link:last-child {
  border-bottom: none;
}
.nav_lang_drop_item_link:hover {
  color: var(--white);
  opacity: 0.7;
}
@media (max-width: 991px) {
  .nav_lang_drop_item_link {
    font-size: 14px;
    padding: 5px 4px;
  }
}
/****************************head****************************/

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #ddd;
}
::-webkit-scrollbar-thumb {
  background: var(--main);
}

/***************************welcome**************************/

/***************************會員登入頁面**************************/
.member_login_box_style {
  border: 1px solid var(--amber_brown);
  background-color: var(--white);
  padding: 184px 65px 84px;
  border-radius: 10px;
  max-width: 735px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}
.box_top_right_img {
  width: 100%;
  max-width: 174px;
  position: absolute;
  right: 0;
  top: 0;
  object-fit: contain;
  z-index: -1;
}

.box_left_bottom_img {
  width: 100%;
  max-width: 130px;
  position: absolute;
  left: 0;
  bottom: 0;
  object-fit: contain;
  z-index: -1;
}
@media (max-width: 991px) {
  .member_login_box_style {
    padding: 137px 65px 91px;
  }
  .box_top_right_img {
    max-width: 136px;
  }
  .box_left_bottom_img {
    max-width: 105px;
  }
}

.member_login_logo img {
  width: 100%;
  max-width: 265px;
  object-fit: contain;
}
.member_login_text {
  color: var(--main);
  margin: 50px 0;
  font-size: 20px;
}
@media (max-width: 767px) {
  .member_login_text {
    margin: 16px 0 40px;
    font-size: 16px;
  }
}
.line_login_btn {
  /* structure */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  margin: 0;
  padding: 15px 15px;
  width: 100%;
  max-width: 245px;

  /* style */
  font-size: 20px;
  font-weight: bold;
  text-align: center;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: var(--white);
  background-color: var(--main);
  border-radius: 10px;
  border: 2px solid var(--main);
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .line_login_btn {
    padding: 15px 15px;
    max-width: 235px;
  }
}

.line_login_btn:hover {
  color: var(--white);
  background-color: var(--main);
}
@media (max-width: 767px) {
  .line_login_btn:hover {
    color: var(--main);
    background-color: var(--white);
  }
}
/***************************會員登入頁面**************************/

/* =================表單基本設定-開始================= */
.form_wrap {
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .form_wrap {
  }
}
@media (max-width: 991px) {
  .form_wrap {
  }
}
@media (max-width: 767px) {
  .form_wrap {
  }
}
.form_style {
  background-color: var(--white);
  padding: 32px 47px 40px;
  border: 1px solid var(--amber_brown);
  border-radius: 10px;
}
.member_data_form_style {
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 767px) {
  .form_style {
    padding: 15px 15px 40px;
  }
}
.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_col_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 25px;
}
.input_group {
  width: 100%;
  margin-bottom: 20px;
}
/* select 客製 icon 加 wrap */
.select_wrap {
  position: relative;
}
.select_wrap::after {
  content: '';
  background: url('../img/select_img.png') center center/contain no-repeat;
  width: 11px;
  height: 6px;
  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; */
  padding: 4px 10px;
  color: var(--main);
  border-radius: 5px;
  border: 1px solid var(--gray);
  background-color: var(--white);
}
@media (max-width: 767px) {
  .select_style {
    font-size: 18px;
  }
}
.group_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.input_address_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
}
@media (max-width: 767px) {
  .input_address_wrap {
  }
}
.select_item {
  width: 100%;
}
@media (max-width: 767px) {
  .input_address_wrap .select_item:first-child {
  }
}
.postal_code {
  flex-shrink: 0;
  width: 100%;
  height: 45px;
  line-height: 45px;
  margin-top: 28px;
  font-size: 18px;
  padding: 0px 10px;
  border: 1px solid var(--gray);
  border-radius: 5px;
  color: var(--main);
}
@media (max-width: 767px) {
  .postal_code {
  }
}

/* =================表單基本設定-結束================= */

/* =================會員頁面表單設定-開始================= */
.member_form_title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 42px;
}
.member_recaptcha_wrap {
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .member_recaptcha_wrap {
    margin-bottom: 30px;
  }
}
.g_recaptcha_wrapper {
  display: flex;
  justify-content: center;
}
/* =================會員頁面表單設定-結束================= */

/* =================表單樣式設定-開始================= */
.input_label {
  color: #000;
  font-size: 20px;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .input_label {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .input_label {
    font-size: 18px;
  }
}
.input_label span {
  color: #ff0000;
}
.input_style {
  font-size: 18px;
  padding: 4px 10px;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  color: var(--main);
  border: 1px solid var(--gray);
  background-color: var(--white);
  transition: all 0.3s;
}
.input_style::placeholder {
  color: #8d8d8d;
}
.input_style:disabled {
  background-color: var(--gray);
}
@media (max-width: 767px) {
  .input_style {
    font-size: 16px;
  }
}
.readonly {
  color: #a5a5a5;
  background-color: #ececec;
}
.radio_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 40px;
}
.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; */
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* 自訂外圈 */
.radio_style + .radio_label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #000; /* 外圈黑色 */
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-sizing: border-box;
}

/* 勾選後的內圈 */
.radio_style:checked + .radio_label::before {
  background: radial-gradient(circle, #c00 7px, transparent 8px);
}

.radio_label {
  font-size: 18px;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
}
.radio_label a {
  color: #003fc8;

  text-decoration: underline;
  text-underline-offset: 3px; /* 底線與字的距離 */
  transition: all 0.3s;
}
.radio_label a:hover {
  text-decoration: none;
}
.main_recaptcha_wrap {
  padding-top: 25px;
}
@media (max-width: 767px) {
  .main_recaptcha_wrap {
  }
}
#or_text {
  text-align: center;
  font-size: 20px;
  color: #888;
  position: relative;
}
@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: #888;
}
#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;
}
/* =================表單樣式設定-結束================= */

/***************************忘記密碼**************************/
.member_forget_captcha_wrap {
  margin: 35px 0 10px;
}
/***************************忘記密碼**************************/
/* ======會員中心基本設定====== */
.member_data_warp {
  max-width: 650px;
  margin: 0 auto;
}
.member_list_mobile {
  display: none;
}
@media (max-width: 991px) {
  .member_list_desk {
    display: none;
  }
  .member_list_mobile {
    display: block;
  }
}
.member_list_title_warp {
  display: flex;
  column-gap: 4px;
  padding: 12px 0;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  font-size: 20px;
  color: #000;
  text-align: center;
}
@media (max-width: 767px) {
  .member_list_title_warp {
    font-size: 14px;
  }
}
.member_list_item {
  display: flex;
  column-gap: 4px;
  font-size: 18px;
  color: #000;
  padding: 20px 0;
  border-bottom: 1px solid #dedede;
  text-align: center;
  transition: all 0.3s;
}
.member_list_item:hover {
  opacity: 0.5;
  color: #000;
}
@media (max-width: 767px) {
  .member_list_item {
    font-size: 14px;
  }
}
.list_cell {
  flex: 1;
}
.list_cell2 {
  flex: 0.5;
}
.list_cell_text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_item_mobile {
  padding: 30px 0;
  border-bottom: 1px solid #dedede;
}
.item_text_wrap {
  display: flex;
}
.item_text_mobile {
  width: 50%;
}
.item_text {
  color: var(--main);
  font-size: 20px;
  margin-bottom: 15px;
}
.item_text span:first-child {
  margin-right: 20px;
}
.member_order_item_mobile_payment_block {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.member_order_list_btn_wrap {
  max-width: 83px;
}
.member_list_btn_wrap {
  text-align: center;
}
.member_list_btn {
  display: block;
  color: var(--white);
  background-color: #c8161d;
  border: 1px solid #c8161d;
  border-radius: 5px;
  font-size: 16px;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .member_order_list_btn_wrap {
    width: 65px;
  }
  .member_list_btn {
    padding: 5px 0;
    font-size: 14px;
    margin: auto;
  }
}
.member_list_btn:hover {
  color: #c8161d;
  background-color: var(--white);
}

/* ======會員中心基本設定====== */

/***************************會員註冊完成**************************/
.member_register_complete_box {
  border: 1px solid var(--amber_brown);
  background-color: var(--white);
  padding: 165px 65px 136px;
  border-radius: 10px;
  max-width: 650px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}
.member_register_complete_title {
  font-size: 30px;
  font-weight: bold;
  color: var(--main);
  margin-bottom: 72px;
}
@media (max-width: 991px) {
  .member_register_complete_box {
    padding: 94px 30px 90px;
  }
  .member_register_complete_title {
    margin-bottom: 50px;
  }
}
.member_register_complete_btn_wrap {
  display: flex;
  justify-content: center;
}

.reservation_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 15px 0;
  width: 234px;

  /* style */
  font-size: 18px;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: var(--white);
  background-color: var(--red);
  border: none;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 991px) {
}
.reservation_btn:hover {
  opacity: 0.7;
}
/***************************會員註冊完成**************************/

/***************************會員中心**************************/
#member_data_section.page_wrap {
  padding: 73px 0 54px;
}
@media (max-width: 767px) {
  #member_data_section.page_wrap {
    padding: 32px 0 118px;
  }
}

.member_data_remind {
  color: var(--red);
  text-align: center;
  margin-bottom: 16px;
}

.verify_block {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.verify_btn {
  flex-shrink: 0;
  width: 136px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  background-color: var(--main);
  border: 1px solid var(--main);
  border-radius: 5px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
}
.verify_btn:hover {
  background-color: var(--white);
  color: var(--main);
}
@media (max-width: 767px) {
  .verify_block {
    column-gap: 8px;
  }
  .verify_btn:hover {
    background-color: var(--main);
    color: var(--white);
  }
}

.member_data_birthday_col_3 {
  display: grid;
  grid-template-columns: 0.4fr 0.2fr 0.4fr;
  column-gap: 10px;
}

.main_btn_wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.member_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 15.5px 0;
  width: 135px;

  /* style */
  font-size: 18px;

  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: var(--white);
  background-color: var(--red);
  border: none;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .main_btn_wrap {
    margin-top: 40px;
  }
  .member_btn {
  }
}
.member_btn:hover {
  opacity: 0.7;
}
/***************************會員中心**************************/

/***************************預約注意事項**************************/
#reservation_notice_section.page_wrap {
  padding-top: 73px;
}
#reservation_notice_section .page_title {
  margin-bottom: 74px;
}
.reservation_notice_box {
  border: 1px solid var(--amber_brown);
  background-color: var(--white);
  padding: 28px 25px 36px;
  border-radius: 10px;
  max-width: 1044px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 991px) {
  #reservation_notice_section.page_wrap {
    padding-top: 32px;
  }
  #reservation_notice_section .page_title {
    margin-bottom: 32px;
  }
}
.reservation_notice_btn_wrap {
  display: flex;
  justify-content: center;

  margin-top: 60px;
}
.reservation_notice_btn_wrap .reservation_btn {
  width: 208px;
}
/***************************預約注意事項**************************/

/***************************預約師父列表**************************/
#master_list_section.page_wrap {
  padding: 74px 0 71px;
}
@media (max-width: 991px) {
  #master_list_section.page_wrap {
    padding: 32px 0 100px;
  }
  #master_list_section .page_title {
    margin-bottom: 32px;
  }
}
.master_wrap {
  max-width: 860px;
  margin: 0 auto;
}
.master_item {
  position: relative;
  z-index: 0;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  column-gap: 34px;
  padding: 23px 28px 23px 23px;
  background-color: var(--white);
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #b9b58e;
}

.master_item_top_right_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 166px;
  object-fit: contain;
  z-index: -1;
}

.master_item_bottom_left_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 154px;
  object-fit: contain;
  z-index: -1;
}
@media (max-width: 991px) {
  .master_item {
    padding: 14px 12px 10px;
    flex-wrap: wrap;
    column-gap: 12px;
  }
  .master_item_top_right_img {
    max-width: 117px;
  }
  .master_item_bottom_left_img {
    max-width: 100px;
  }
}
.master_item_img_wrap {
  max-width: 135px;
  border-radius: 50%;
  overflow: hidden;
}
.master_item_img_wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.master_item_content_block {
  flex: 1;
}

.master_item_content_name {
  font-size: 20px;
  font-weight: bold;
  color: var(--main);
  margin-bottom: 6px;
}
.master_item_content_intro {
  color: var(--main);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  overflow: hidden;
}

.master_item_content_address_wrap {
  display: flex;
  align-items: center;
}
.master_item_content_address_title {
  color: var(--main);
  font-weight: bold;
}
.master_item_content_address {
  color: var(--main);
  cursor: pointer;
  transition: all 0.5s;
}
.master_item_content_address:hover {
  opacity: 0.7;
}

.master_item_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 12px 0;
  width: 101px;

  /* style */
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: var(--white);
  background-color: var(--red);
  border: none;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .master_content_block {
    flex: auto;
    width: calc(100% - 110px);
  }
  .master_img_wrap {
    max-width: 98px;
  }
  .master_item_btn_wrap {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .master_item_btn {
    width: 80px;
  }
}
.master_item_btn:hover {
  opacity: 0.7;
}
/***************************預約師父列表**************************/

/***************************預約師父內頁**************************/
#master_content_section.page_wrap {
  padding: 74px 0 71px;
}
@media (max-width: 991px) {
  #master_content_section.page_wrap {
    padding: 32px 0 100px;
  }
  #master_content_section .page_title {
    margin-bottom: 32px;
  }
}
.master_content_wrap {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.master_content_box {
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: 28px 108px 30px;
  background-color: var(--white);
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #b9b58e;
}
@media (max-width: 991px) {
  .master_content_box {
    padding: 20px 15px 40px;
  }
}
.master_content {
  display: flex;
  column-gap: 50px;
  margin-bottom: 42px;
}

.master_content_top_right_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 140px;
  object-fit: contain;
  z-index: -1;
}
@media (max-width: 991px) {
  .master_content_top_right_img {
    display: none;
  }
}
.master_content_img_wrap {
  max-width: 145px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.master_content_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.master_content_block {
  flex: 1;
}

.master_content_name {
  font-size: 20px;
  font-weight: bold;
  color: var(--main);
  margin-bottom: 18px;
}
.master_content_intro {
  color: var(--main);
  margin-bottom: 18px;
}

.master_content_address_wrap {
  display: flex;
  align-items: center;
}
.master_content_address_title {
  color: var(--main);
  font-weight: bold;
}
.master_content_address {
  color: var(--main);
  cursor: pointer;
  transition: all 0.5s;
}
.master_content_address:hover {
  opacity: 0.7;
}
.master_content_reservation_time_block {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 58px;
  row-gap: 40px;
}

.master_content_reservation_time_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: start;
  column-gap: 18px;
  row-gap: 17px;
}

.master_content_reservation_time_item {
}
.reservation_time_radio {
  display: none;
}
.reservation_time_radio_label {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--amber_brown);
  color: var(--main);
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s;
}
.master_content_reservation_time_item:hover .reservation_time_radio_label,
.reservation_time_radio:checked + .reservation_time_radio_label {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.reservation_time_radio:disabled + .reservation_time_radio_label {
  cursor: not-allowed;
  opacity: 0.5;
  border: none;
  color: #d2c4b3;
}
.reservation_time_radio:disabled + .reservation_time_radio_label:hover {
  background-color: transparent;
  color: #d2c4b3;
}
@media (max-width: 991px) {
  .master_content_wrap {
    padding: 20px 15px 40px;
  }
  .master_content {
    column-gap: 18px;
    margin-bottom: 40px;
  }
  .master_content_img_wrap {
    max-width: 108px;
  }

  .master_content_reservation_time_block {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.master_content_reservation_time_title {
  color: var(--main);
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 35px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 45px;
}
.master_content_reservation_time_title::before {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--amber_brown);
}
.master_content_reservation_time_title::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--amber_brown);
}
@media (max-width: 991px) {
  .master_content_reservation_time_title {
    margin-bottom: 22px;
  }
  .master_content_reservation_time_title::before,
  .master_content_reservation_time_title::after {
    display: none;
  }
}
.master_content_reservation_btn_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.master_content_reservation_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 15px 0;
  width: 127px;

  /* style */
  font-size: 18px;
  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: var(--white);
  background-color: var(--main);
  border: none;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .master_content_reservation_btn {
  }
}
.master_content_reservation_btn:hover {
  opacity: 0.7;
}
/***************************預約師父內頁**************************/

/***************************預約確認頁面**************************/
.reservation_confirm_box_style {
  border: 1px solid #d8d1a0;
  background-color: var(--white);
  padding: 73px 170px 51px;
  border-radius: 10px;
  max-width: 911px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}
.box_top_right_img {
  width: 100%;
  max-width: 174px;
  position: absolute;
  right: 0;
  top: 0;
  object-fit: contain;
  z-index: -1;
}

.box_left_bottom_img {
  width: 100%;
  max-width: 130px;
  position: absolute;
  left: 0;
  bottom: 0;
  object-fit: contain;
  z-index: -1;
}
@media (max-width: 991px) {
  .reservation_confirm_box_style {
    padding: 38px 15px 40px;
  }
  .box_top_right_img {
    max-width: 136px;
  }
  .box_left_bottom_img {
    max-width: 105px;
  }
}
.reservation_confirm_list {
  margin-bottom: 60px;
}
.reservation_confirm_title {
  font-size: 24px;
  font-weight: bold;
  color: var(--main);
  margin-bottom: 25px;
}
.reservation_confirm_remind {
  font-size: 20px;
  color: var(--main);
  margin-bottom: 56px;
}
.reservation_confirm_item {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 26px;
}
.reservation_confirm_item_title {
  width: 140px;
  padding: 5px 0;
  background-color: #e4e1cc;
  color: var(--main);
  border-radius: 6px;
  font-weight: bold;
  font-size: 20px;
}
.reservation_confirm_item_content {
  color: var(--main);
  font-size: 20px;
}
/***************************預約確認頁面**************************/

/***************************預約完成頁面**************************/

#order_complete_section .reservation_confirm_box_style {
  padding: 160px 190px 124px;
}

.order_complete_title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  #order_complete_section .reservation_confirm_box_style {
    padding: 38px 15px 40px;
  }
  .order_complete_title {
    margin-bottom: 24px;
  }
}

.order_complete_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 60px;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .order_complete_btn_wrap {
    margin-top: 40px;
  }
}
.order_complete_reservation_btn {
  /* structure */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 15px 0;

  /* style */
  font-size: 18px;
  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: var(--white);
  background-color: var(--red);
  border: none;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s;
}
.order_complete_reservation_btn:hover {
  opacity: 0.7;
}

.order_complete_order_content_btn {
  /* structure */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 15px 0;

  /* style */
  font-size: 18px;
  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: var(--white);
  background-color: var(--main);
  border: none;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s;
}
.order_complete_order_content_btn:hover {
  opacity: 0.7;
}
/***************************預約完成頁面**************************/

/***************************預約查詢-列表**************************/
#member_order_section.page_wrap {
  padding: 60px 0 54px;
}
@media (max-width: 991px) {
  #member_order_section.page_wrap {
    padding: 32px 0 96px;
  }
}
.member_order_wrap {
  max-width: 860px;
  margin: 0 auto;
}
.member_order_remind {
  color: var(--red);
  text-align: center;
  margin-bottom: 20px;
}
.member_order_item {
  display: grid;
  grid-template-columns: 1fr 133px;
  border: 1px solid #979797;
  border-radius: 10px;
  padding: 15px 15px 15px 20px;
  background-color: var(--white);
  margin-bottom: 16px;
}
.member_order_item_content_block {
  display: flex;
  align-items: center;
  column-gap: 12px;
  margin-bottom: 8px;
}
.member_order_item_content_title {
  background-color: #e4e1cc;
  border-radius: 6px;
  padding: 2px 0;
  width: 92px;
  text-align: center;
  color: var(--main);
}
.member_order_item_content_text {
  color: var(--main);
}
.reservation_state {
  font-weight: bold;
}
.reservation_state .brown {
  color: var(--amber_brown);
}
.reservation_state .red {
  color: var(--red);
}
@media (max-width: 991px) {
  .member_order_item {
    display: block;
  }
}
.member_order_item_content_right_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.member_order_item_content_datetime {
  margin-bottom: auto;
  color: var(--gray);
}
.member_order_item_cancel_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 10px 0;
  width: 120px;

  /* style */
  font-size: 18px;
  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: var(--white);
  background-color: var(--main);
  border: none;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s;
}
.member_order_item_cancel_btn:hover {
  opacity: 0.7;
}

.member_order_item_again_btn {
  /* structure */
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 10px 0;
  width: 120px;
  /* style */
  font-size: 18px;
  letter-spacing: 0;
  text-decoration: none;
  /* optional */
  color: var(--white);
  background-color: var(--gray);
  border: none;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s;
}
.member_order_item_again_btn:hover {
  opacity: 0.7;
}
@media (max-width: 991px) {
  .member_order_item_content_right_wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .member_order_item_content_datetime {
    margin-bottom: 0;
  }
}
/***************************預約查詢-列表**************************/

/***************************共通頁面**************************/
#full_page_section.page_wrap {
  padding: 112px 0 450px;
}
@media (max-width: 991px) {
  #full_page_section.page_wrap {
    padding: 32px 0 205px;
  }
}
#full_page_section .page_title {
  font-size: 28px;
  text-align: left;
}
/***************************共通頁面**************************/

/***************************聯絡我們**************************/
@media (max-width: 991px) {
  #contact_section {
    padding-bottom: 67px;
  }
  #contact_section .breadcrumb_wrap {
    margin-bottom: 38px;
  }
}
.contact_title {
  margin-bottom: 53px;
  font-size: 18px;
}
@media (max-width: 991px) {
  .contact_title {
    margin-bottom: 15px;
  }
}
.contact_col_2 {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  column-gap: 86px;
}
@media (max-width: 1199px) {
  .contact_col_2 {
    column-gap: 40px;
  }
}
@media (max-width: 991px) {
  .contact_col_2 {
    grid-template-columns: 1fr;
    row-gap: 128px;
  }
}
.contact_form {
}
.contact_label_block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
}

.contact_input_label {
  display: block;
  margin-bottom: 30px;
}
.contact_input_title {
  font-size: 20px;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .contact_label_block {
    display: block;
  }
  .contact_input_label {
    margin-bottom: 15px;
  }
  .contact_input_title {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
/* 聯絡我們輸入樣式 */
.contact_input {
  font-size: 16px;
  padding: 0 16px;
  width: 100%;
  height: 45px;
  border-radius: 3px;
  background-color: #fafafa;
  border: 1px solid #939393;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .contact_input {
  }
}
input::placeholder,
.contact_textarea::placeholder {
  color: #b3b3b3;
  opacity: 0.5;
}
.contact_textarea {
  font-size: 16px;
  padding: 15px 16px;
  width: 100%;
  border-radius: 3px;
  background-color: #fafafa;
  border: 1px solid #939393;
  resize: none;
  height: 168px;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .contact_textarea {
    font-size: 16px;
  }
}

.contact_submit_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 54px;
  margin-top: 38px;
}

@media (max-width: 1199px) {
  .contact_submit_block {
    flex-direction: column;
  }
  .contact_submit_block .main_btn {
    align-self: flex-end;
  }
}

#contact_map_section {
  padding: 0;
}
.contact_map_wrap {
  height: 417px;
  width: 100%;
}
.contact_map_wrap iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .contact_map_wrap iframe {
  }
  .contact_map_wrap {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .contact_map_wrap {
    height: 418px;
    padding: 0 15px 120px;
  }
}

/***************************聯絡我們**************************/

/****************************foot***************************/
.side_nav_wrap {
  position: fixed;
  z-index: 20;
  bottom: 87px;
  right: 72px;
  transition: all 0.3s;
}
.side_nav_wrap.bottom_active {
  bottom: 150px;
}
@media (max-width: 767px) {
  .side_nav_wrap {
    right: 15px;
    bottom: 50px;
  }
  .side_nav_wrap.bottom_active {
    bottom: 170px;
  }
}
.side_nav_list {
  margin-bottom: 12px;
  display: none;
}
.side_nav_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  color: var(--white);
  border-radius: 50%;
  margin-bottom: 15px;
  transition: all 0.3s;
}
.side_nav_item img {
  width: 100%;
  height: 100%;
}
.side_nav_item:hover {
  color: var(--white);
  transform: scale(0.9);
}

.side_nav_item_title {
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .side_nav_list {
    margin-bottom: 10px;
  }
  .side_nav_item {
    width: 65px;
    height: 65px;
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .side_nav_item {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
}
.side_switch_btn_wrap {
  width: 75px;
  height: 75px;
  margin-bottom: 11px;
}
.side_switch_btn_wrap img {
  width: 100%;
  height: 100%;
}
.side_nav_btn_close {
  display: none;
}
@media (max-width: 767px) {
  .side_switch_btn_wrap {
    width: 65px;
    height: 65px;
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .side_switch_btn_wrap {
    width: 50px;
    height: 50px;
  }
}
#go_top {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
.go_top_img {
  width: 100%;
  object-fit: contain;
}
#go_top.active {
  visibility: visible;
  opacity: 1;
}
#go_top:hover {
  transform: scale(0.9);
}
#go_top i {
  /* display: block; */
  font-size: 13px;
}
#go_top span {
  display: block;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  #go_top {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 400px) {
  #go_top {
    width: 50px;
    height: 50px;
  }
}
footer {
  position: relative;
  z-index: 10;
}

.foot_top_wrap {
  padding: 14px 0 10px;
  position: relative;
  background: #fffef9;
}

@media (max-width: 991px) {
  .foot_top_wrap {
    padding: 12px 0 10px;
  }
}

.foot_main_wrap {
  /* display: flex;
  align-items: flex-end;
  flex-wrap: wrap; */
}
@media (max-width: 1699px) {
  .foot_main_wrap {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .foot_main_wrap {
    /* padding: 0 19px; */
  }
}
.foot_left {
  display: flex;
}
@media (max-width: 991px) {
  .foot_left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;

    margin-bottom: 13px;
  }
}

.foot_right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .foot_right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .foot_right {
  }
}
/* 頁底logo */
.foot_logo_wrap {
  padding-right: 65px;
}
@media (max-width: 1640px) {
  .foot_logo_wrap {
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .foot_logo_wrap {
    padding-right: 0;
    margin-bottom: 20px;
  }
}

.foot_logo {
  max-width: 164px;
  width: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .foot_logo {
    max-width: 164px;
  }
}

/* copyright設定 */
.foot_copyright_wrap {
  padding: 0px 0 15px;
  background-color: #fffef9;
}
.foot_copyright {
  width: 100%;
  font-size: 16px;
  color: var(--main);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.copyright_text:last-child {
  margin-left: 4px;
}
.foot_copyright_uniform {
  font-size: 16px;
  margin-right: 4px;
}
@media (max-width: 991px) {
  .foot_copyright {
    position: relative;
  }
  .foot_copyright_uniform {
    display: none;
  }
}
@media (max-width: 767px) {
  .foot_copyright_wrap {
    padding: 0px 0 12px;
  }
}
@media (max-width: 575px) {
  .foot_copyright {
    font-size: 12px;
  }
}
.foot_copyright a {
  color: var(--main);
}
.foot_copyright a:hover {
  color: var(--main);
  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: 17px;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .foot_social_link_wrap {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .foot_social_link_mobile_wrap {
  }
}
.foot_social_link {
  display: inline-block;
  color: #000;
  font-size: 24px;
}
.foot_social_link:hover {
  color: #000;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .foot_social_link {
  }
}
.foot_nav_list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 50px;
}
.foot_nav_item {
  font-size: 18px;
  color: #000;
  transition: all 0.3s;
}
.foot_nav_item:hover {
  color: #000;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .foot_nav_list {
    column-gap: 15px;
  }
}
@media (max-width: 767px) {
  .foot_nav_list {
    justify-content: center;
  }
}
@media (max-width: 400px) {
  .foot_nav_list {
    column-gap: 10px;
  }
  .foot_nav_item {
    font-size: 16px;
  }
}
/* 店家資訊 */
.foot_info_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.foot_info_wrap:last-of-type {
  padding-left: 98px;
}
@media (max-width: 991px) {
  .foot_info_wrap:last-of-type {
    padding-top: 20px;
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .foot_info_wrap {
    row-gap: 7px;
  }
}
.foot_info_item {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .foot_info_item {
    justify-content: flex-start;
  }
}

.info_text {
  font-size: 16px;
  display: flex;
}
.foot_info_item .info_text:last-child {
  margin-bottom: 0;
}

.info_title {
  flex-shrink: 0;
  position: relative;
  color: #000;
}
.foot_info_item a {
  color: #000;
}
.foot_info_item a:hover {
  opacity: 0.7;
}
.foot_info_item a:not([href]) {
  color: #000;
}
/* 頁面連結 */
.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: var(--white);
  font-size: 16px;
  white-space: nowrap;
  padding: 0 6px;
}

.foot_link_text:hover {
  color: var(--white);
  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: var(--white);
}
.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***************************/
/* ============手機版底部導覽列============= */

.bottom_nav_list {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  background-color: var(--main);
  padding: 7px 0;
  display: none;
}
.bottom_nav_item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  position: relative;
}
.bottom_nav_item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-right: 1px solid var(--white);
}
.bottom_nav_item:last-child:after {
  display: none;
}
.bottom_nav_link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  color: var(--white);
}
.bottom_nav_link img {
  object-fit: contain;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .bottom_nav_list {
    display: flex;
  }
  .bottom_nav_height {
    height: 80px;
  }
}
/* ============手機版底部導覽列============= */

/* 隱藏reCAPTCHA徽章 */
/* .grecaptcha-badge { visibility: hidden; } */

.grecaptcha_text {
  color: var(--main);
}
.grecaptcha_text a {
  color: var(--main);
  opacity: 0.7;
}

/* bootstrap datepicker樣式 */
.calendar_wrap {
}

.calendar_wrap {
  border: none;
  box-shadow: none;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont;
}

.calendar_wrap .datepicker-inline {
  width: auto !important;
}
.calendar_wrap table {
  width: 100%;
}

/* 月份標題 */
.calendar_wrap .datepicker-switch {
  font-weight: 600;
  color: #49312e;
  padding-bottom: 10px;
}
.calendar_wrap .datepicker-switch:hover {
  color: var(--red);
  background: transparent !important;
}
/* 左右箭頭 */
.calendar_wrap .datepicker th.prev,
.calendar_wrap .datepicker th.next {
  /* color: #c62828;
  font-weight: bold; */
  position: relative;
  padding-bottom: 10px;
}
.calendar_wrap .datepicker th.prev:hover,
.calendar_wrap .datepicker th.next:hover {
  background-color: transparent;
}
.calendar_wrap .datepicker th.prev span,
.calendar_wrap .datepicker th.next span {
}
.calendar_wrap .datepicker th.prev {
  left: 20%;
}
.calendar_wrap .datepicker th.next {
  right: 20%;
}

.datepicker-days table tr .dow,
.calendar_wrap table tr .dow {
  color: var(--red);
}

/* 日期基本樣式 */
.datepicker-days table tr td.day,
.calendar_wrap table tr td.day {
  width: 40px;
  height: 40px;
  position: relative;
}
.datepicker-days table tr td.day.active,
.calendar_wrap table tr td.day.active {
  background: transparent !important;
  color: var(--white);
}
.datepicker-days table tr td.day:hover {
  background-color: transparent !important;
  color: var(--white);
}

.datepicker-days table tr td.active::before,
.datepicker-days table tr td.day:hover::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background-color: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.datepicker-days table tr td.day.disabled:hover::before {
  display: none;
}
@media (max-width: 991px) {
  .datepicker-days table tr td.active::before,
  .datepicker-days table tr td.day:hover::before {
    width: 25px;
    height: 25px;
  }
}
.datepicker-days table tr td .month.active,
.calendar_wrap table tr td .month.active {
  background: var(--red) !important;
}
/* 今天（不特別高亮） */
.calendar_wrap table tr td.today {
  /* background: none;
  color: inherit; */
}

/* 非本月日期 */
.calendar_wrap table tr td.old,
.calendar_wrap table tr td.new {
  color: #ccc;
}

/* 禁用日期 */
.calendar_wrap table tr td.disabled,
.calendar_wrap table tr td.disabled:hover {
  color: #e0e0e0;
  cursor: not-allowed;
  background: none;
}
