@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap");
:root {
  --primary: #A3826D;
  --primary-m3: #4F849B;
  --primary-dark2: #005B7F;
  --primary-dark: #0D3B4B;
  --primary-light: #98C0C2;
  --secondary: #0093B2;
  --secondary-light: #4AB3D7;
  --green: #AC7;
  --white: #FFF;
  --gray-light: #BFBFBF;
  --gray-middle: #8C8C8C;
  --gray: #7E6C6C;
  --gray-deep: #545454;
  --tag-red: #FF6060;
  --tag-purple: #7F8DD6;
  --tag-pink: #F9AAD4;
  --tag-blue: #60A0FF;
  --tag-green: #ADD881;
  --tag-orange: #FF8660; }

body {
  color: var(--primary-dark);
  min-height: 100vh;
  background: #fff;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f4f4",endColorstr="#ececec",GradientType=1);
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0px;
  letter-spacing: 1px; }

* {
  box-sizing: border-box; }

a {
  color: #333;
  text-decoration: none; }

.container {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    .container {
      max-width: 90%; } }

.container-w {
  max-width: 1400px;
  margin: 0 auto;
  width: 90%; }
  @media only screen and (max-width: 768px) {
    .container-w {
      max-width: 90%;
      width: 90%; } }

h2, h3, h4 {
  font-weight: normal;
  margin: 0; }

.flex-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap; }

.mt-10 {
  margin-top: 5vh; }

.bg-gray {
  background: #f4f4f4;
  background: -moz-linear-gradient(180deg, #f4f4f4 0%, #ececec 100%);
  background: -webkit-linear-gradient(180deg, #f4f4f4 0%, #ececec 100%);
  background: linear-gradient(180deg, #f4f4f4 0%, #ececec 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f4f4f4",endColorstr="#ececec",GradientType=1); }

/* variables */
:root {
  /* colors */
  --vu0-color-primary-hsl: 250, 84%, 54%;
  --vu0-color-contrast-low-hsl: 240, 4%, 65%;
  --vu0-color-contrast-high-hsl: 230, 7%, 23%;
  --vu0-color-contrast-higher-hsl: 230, 13%, 9%;
  --vu0-color-bg-hsl: 0, 0%, 100%;
  --vu0-color-black-hsl: 230, 13%, 9%;
  --vu0-color-white-hsl: 0, 0%, 100%;
  /* spacing */
  --vu0-space-4xs: 0.125rem;
  --vu0-space-sm: 0.75rem;
  --vu0-space-md: 1.25rem;
  --vu0-space-xl: 3.25rem;
  --vu0-space-2xl: 5.25rem;
  /* typography */
  --vu0-text-base: 1rem;
  --vu0-text-sm: 0.833rem; }

@media (min-width: 64rem) {
  :root {
    /* spacing */
    --vu0-space-4xs: 0.1875rem;
    --vu0-space-sm: 1.125rem;
    --vu0-space-md: 2rem;
    --vu0-space-xl: 5.125rem;
    --vu0-space-2xl: 8.25rem;
    /* typography */
    --vu0-text-base: 1.25rem;
    --vu0-text-sm: 1rem; } }
/* icons */
.vu0-icon {
  height: var(--vu0-size, 1em);
  width: var(--vu0-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial; }

.vu0-icon--sm {
  --vu0-size: 24px; }

.vu0-icon--lg {
  --vu0-size: 48px; }

.vu0-icon--is-spinning {
  animation: vu0-icon-spin 1s infinite linear; }

@keyframes vu0-icon-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
.page-banner {
  padding-top: 10vh;
  text-align: center; }
  .page-banner h1 {
    font-size: 2em;
    position: relative;
    color: #A3826D;
    margin-bottom: 0px; }
    @media only screen and (max-width: 768px) {
      .page-banner h1 {
        font-size: 26px; } }
    .page-banner h1::before {
      content: url(../img/banner-title.png);
      position: absolute;
      top: -50px;
      width: 100px;
      height: 100px;
      left: 50%;
      transform: translateX(-50%); }
  .page-banner h4 {
    color: #A3826D;
    margin-bottom: 3vh; }
  .page-banner .date {
    font-family: "Cardo", serif; }

.tab-container {
  width: 80%;
  max-width: 600px;
  background: #fff;
  border-radius: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: auto; }
  .tab-container .tab-buttons {
    display: flex;
    border-bottom: 2px solid #ddd; }
    .tab-container .tab-buttons .tab-button {
      flex: 1;
      padding: 15px 10px;
      border-radius: 100px;
      text-align: center;
      background: none;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s, color 0.3s;
      color: #333;
      font-size: 16px; }
      .tab-container .tab-buttons .tab-button:hover {
        background-color: #f0f0f0; }
      .tab-container .tab-buttons .tab-button.active {
        background-color: #A3826D;
        color: #fff;
        font-weight: bold; }

.breadcrumb {
  margin-top: 5vh;
  display: flex;
  position: absolute;
  z-index: 4;
  align-items: center;
  font-size: 15px;
  color: #636363;
  letter-spacing: 0.5px; }
  @media only screen and (max-width: 768px) {
    .breadcrumb {
      margin-top: 0px; } }
  .breadcrumb__link {
    text-decoration: none;
    color: #686868;
    font-weight: bold;
    position: relative;
    padding: 5px 4px;
    transition: color 0.3s ease; }
    .breadcrumb__link:hover {
      color: #A3826D; }
    .breadcrumb__link:hover::after {
      width: 100%; }
    .breadcrumb__link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: #A3826D;
      transition: width 0.3s ease; }
  .breadcrumb__separator {
    color: #999;
    margin: 0 8px;
    font-size: 14px; }
  .breadcrumb__link--active {
    color: #333;
    cursor: default;
    pointer-events: none;
    font-weight: 600; }
    .breadcrumb__link--active::after {
      display: none; }

.button {
  margin: 2em auto;
  display: inline-block;
  -webkit-appearance: none;
  border: 6px solid rgba(255, 255, 255, 0.45);
  border-radius: 50px;
  padding: 1em 3em;
  background-repeat: no-repeat;
  background-size: 100%;
  background-clip: padding-box;
  position: relative;
  font-size: 14px;
  color: #FFF; }
  .button span {
    font-size: 130%; }

.button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50px;
  z-index: -1;
  filter: blur(14px); }

.button:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 50px;
  z-index: -1;
  filter: blur(14px); }

.button2 {
  background-image: linear-gradient(90deg, #A3826D, #c98a33); }

.button2:before {
  background-image: linear-gradient(90deg, #A3826D, transparent); }

.button2:after {
  background-image: linear-gradient(90deg, transparent, #c98a33); }

.faq-heading {
  font-family: Lato;
  font-weight: 400;
  font-size: 19px;
  -webkit-transition: text-indent 0.2s;
  text-indent: 20px;
  color: #333; }
  @media only screen and (max-width: 768px) {
    .faq-heading {
      font-size: 16px; } }

.faq-text {
  font-family: Open Sans;
  font-weight: 400;
  color: #919191;
  width: 95%;
  padding-left: 20px;
  margin-bottom: 30px; }

.faq {
  width: 100%;
  margin: 0 auto;
  background: white;
  border-radius: 4px;
  position: relative;
  border: 1px solid #E1E1E1; }

.faq label {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 56px;
  padding-top: 1px;
  background-color: #FAFAFA;
  border-bottom: 1px solid #E1E1E1; }

.faq input[type="checkbox"] {
  display: none; }

.faq .faq-arrow {
  width: 5px;
  height: 5px;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 2px solid rgba(0, 0, 0, 0.33);
  border-right: 2px solid rgba(0, 0, 0, 0.33);
  float: right;
  position: relative;
  top: -30px;
  right: 27px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.faq input[type="checkbox"]:checked + label > .faq-arrow {
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg); }

.faq input[type="checkbox"]:checked + label {
  display: block;
  background: white !important;
  color: #4f7351;
  height: 260px;
  transition: height 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  @media only screen and (max-width: 768px) {
    .faq input[type="checkbox"]:checked + label {
      height: auto;
      min-height: 100px; } }

.faq input[type='checkbox']:not(:checked) + label {
  display: block;
  transition: height 0.8s;
  height: 60px;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

::-webkit-scrollbar {
  display: none; }

#video-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; }

.video_img {
  width: 100%;
  margin-bottom: 30px; }

.youtube-video-play-button {
  height: 30px;
  width: 45px;
  background-color: rgba(50, 50, 50, 0.75);
  border-radius: 5px;
  opacity: 0.6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%); }

.openbox {
  max-width: 400px;
  margin: auto;
  position: relative; }

.openbox:hover .youtube-video-play-button {
  background-color: rgba(255, 69, 70, 0.9);
  opacity: 1.0;
  cursor: pointer; }

.youtube-video-play-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 16px;
  margin: 0 auto;
  border-style: solid;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent white; }

header {
  position: sticky;
  top: 0px;
  z-index: 999;
  background-color: #fff; }

.menu-container {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 20px; }
  .menu-container .menu-keep {
    display: flex;
    gap: 20px;
    background-color: #fff;
    align-items: center;
    min-width: 300px;
    min-height: 60px;
    z-index: 400;
    max-width: 400px;
    flex: 1; }
    @media only screen and (max-width: 1280px) {
      .menu-container .menu-keep {
        max-width: 260px;
        min-width: 250px; } }
    .menu-container .menu-keep .menu-logo {
      min-width: 200px;
      padding: 6% 10%;
      flex: 1; }
      .menu-container .menu-keep .menu-logo a {
        display: inline-block; }
    .menu-container .menu-keep .logo-major {
      z-index: 1000;
      position: relative;
      min-width: 150px; }
  .menu-container .menu-forweb {
    display: flex;
    flex: 1;
    gap: 40px;
    align-items: center;
    flex-direction: row-reverse; }
    @media only screen and (max-width: 1280px) {
      .menu-container .menu-forweb {
        gap: 20px; } }
    @media only screen and (max-width: 768px) {
      .menu-container .menu-forweb {
        display: none; } }
    .menu-container .menu-forweb a {
      padding: 20px 20px; }
    .menu-container .menu-forweb .adm {
      background-image: url(../img/btn-bg.jpg);
      background-size: cover;
      background-position: center;
      padding: 20px 36px;
      min-height: 90px;
      align-content: center; }
  .menu-container .menu-toggle {
    top: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 1100;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: #e0e0e0 solid 1px; }
    .menu-container .menu-toggle .hamburger {
      position: relative;
      width: 40px;
      height: 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 3px 10px; }
      .menu-container .menu-toggle .hamburger span {
        display: block;
        height: 2px;
        background: #A3826D;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease; }
      .menu-container .menu-toggle .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px); }
      .menu-container .menu-toggle .hamburger.active span:nth-child(2) {
        transform: rotate(-45deg) translate(5px, -5px); }
  .menu-container .nsd-menu-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 66vh;
    /* 最大覆蓋畫面高度的 2/3 */
    background: #eeeeee;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 0.5s ease;
    padding: 0px 5%; }
    .menu-container .nsd-menu-overlay.active {
      top: 0; }
    .menu-container .nsd-menu-overlay__content {
      width: 100%;
      padding: 20px; }
      .menu-container .nsd-menu-overlay__content .nsd-menu-fullscreen {
        list-style: none;
        padding: 0;
        margin: 0; }
        .menu-container .nsd-menu-overlay__content .nsd-menu-fullscreen .fullscreen-single__item {
          font-size: 24px;
          margin-bottom: 20px;
          color: #333;
          text-transform: uppercase; }
          .menu-container .nsd-menu-overlay__content .nsd-menu-fullscreen .fullscreen-single__item a.menu-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            align-items: center;
            justify-content: space-between; }
            .menu-container .nsd-menu-overlay__content .nsd-menu-fullscreen .fullscreen-single__item a.menu-link .arrow {
              width: 10px;
              height: 10px;
              border-right: 2px solid #333;
              border-bottom: 2px solid #333;
              transform: rotate(45deg);
              transition: transform 0.3s ease; }
          .menu-container .nsd-menu-overlay__content .nsd-menu-fullscreen .fullscreen-single__item.expanded .arrow {
            transform: rotate(-135deg);
            /* 展開時箭頭向上 */ }
          .menu-container .nsd-menu-overlay__content .nsd-menu-fullscreen .fullscreen-single__item .sub-menu {
            list-style: none;
            margin: 10px 0 0;
            padding-left: 20px;
            display: none; }
            .menu-container .nsd-menu-overlay__content .nsd-menu-fullscreen .fullscreen-single__item .sub-menu .sub-menu__inner {
              font-size: 18px;
              margin: 5px 0; }
              .menu-container .nsd-menu-overlay__content .nsd-menu-fullscreen .fullscreen-single__item .sub-menu .sub-menu__inner a {
                color: #666;
                text-decoration: none; }
                .menu-container .nsd-menu-overlay__content .nsd-menu-fullscreen .fullscreen-single__item .sub-menu .sub-menu__inner a:hover {
                  color: #333; }
          .menu-container .nsd-menu-overlay__content .nsd-menu-fullscreen .fullscreen-single__item.expanded .sub-menu {
            display: block; }

.doctors {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 5vh; }
  .doctors a {
    margin: auto; }
  .doctors-single {
    position: relative;
    width: 360px;
    height: 400px; }
    .doctors-single::after {
      position: absolute;
      z-index: -2;
      width: 300px;
      height: 330px;
      background: #FCFCFC;
      content: '';
      bottom: 0px;
      left: -30px; }
    .doctors-single:hover {
      transition-duration: 500ms; }
      .doctors-single:hover::after {
        background: linear-gradient(30deg, #C7B299 0%, #ffffff 100%);
        transition: background 2s ease;
        /* 設定背景變化的過渡時間 */ }
    .doctors-single::before {
      width: 420px;
      bottom: 0px;
      z-index: -1;
      position: absolute;
      content: url(../img/bg-doctor.png); }
      @media only screen and (max-width: 768px) {
        .doctors-single::before {
          max-width: 200px; } }
    .doctors-single .picture {
      width: 340px;
      height: 400px;
      background-size: contain;
      background-position: center bottom;
      background-repeat: no-repeat;
      right: 0px;
      bottom: 0px;
      position: absolute; }
      @media only screen and (max-width: 768px) {
        .doctors-single .picture {
          width: 270px; } }
      @media only screen and (max-width: 768px) {
        .doctors-single .picture-forindex {
          width: 100%; } }
    .doctors-single .info {
      position: absolute;
      top: 100px; }
      .doctors-single .info .name {
        font-size: 24px; }
      .doctors-single .info .title {
        font-size: 14px; }
      .doctors-single .info .name-english {
        color: #A3826D;
        font-size: 16px;
        font-weight: lighter;
        font-style: italic;
        max-width: 120px; }

.doctor-info {
  display: flex;
  position: relative;
  gap: 40px; }
  @media only screen and (max-width: 768px) {
    .doctor-info {
      flex-direction: column;
      gap: 0px; } }
  .doctor-info .r {
    flex: 1;
    padding: 10% 0px 5% 0px; }
    .doctor-info .r .title {
      font-size: 16px;
      letter-spacing: 2px; }
      @media only screen and (max-width: 768px) {
        .doctor-info .r .title {
          text-align: center; } }
    .doctor-info .r .name-ch {
      color: #A3826D;
      font-size: 36px;
      position: relative;
      margin-bottom: 0px; }
      @media only screen and (max-width: 768px) {
        .doctor-info .r .name-ch {
          text-align: center; } }
      .doctor-info .r .name-ch::before {
        position: absolute;
        content: '';
        border: #959595 1px solid;
        width: 36px;
        rotate: -45deg;
        top: -10px; }
        @media only screen and (max-width: 768px) {
          .doctor-info .r .name-ch::before {
            left: 44%; } }
    .doctor-info .r .name-en {
      color: #A3826D;
      font-style: italic;
      font-weight: lighter; }
      @media only screen and (max-width: 768px) {
        .doctor-info .r .name-en {
          text-align: center; } }
    .doctor-info .r .more {
      display: flex;
      gap: 20px;
      flex-wrap: wrap; }
      .doctor-info .r .more .edu {
        margin-bottom: 20px; }
        @media only screen and (max-width: 768px) {
          .doctor-info .r .more .edu {
            width: 100%; } }
        .doctor-info .r .more .edu h3 {
          font-size: 24px;
          color: #2D5055; }
          @media only screen and (max-width: 768px) {
            .doctor-info .r .more .edu h3 {
              text-align: center; } }
        .doctor-info .r .more .edu ul {
          list-style: square;
          line-height: 1.8; }
        .doctor-info .r .more .edu span {
          display: block;
          font-size: 16px;
          font-style: italic;
          color: #8d8d8d; }
  .doctor-info .l {
    flex: 1;
    min-height: 800px;
    position: relative; }
    @media only screen and (max-width: 768px) {
      .doctor-info .l {
        min-height: 430px; } }
    .doctor-info .l::before {
      position: absolute;
      content: url(../img/ico-logo-w.png);
      bottom: 20px; }
    @media only screen and (max-width: 768px) {
      .doctor-info .l::after {
        content: '';
        width: 100%;
        height: 200px;
        position: absolute;
        bottom: 0px;
        background: white;
        background: -moz-linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 35%);
        background: -webkit-linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 35%);
        background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 35%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
        z-index: 2; } }
    .doctor-info .l .picture {
      width: 500px;
      position: absolute;
      z-index: 2;
      bottom: 0px;
      right: 0px; }
      @media only screen and (max-width: 768px) {
        .doctor-info .l .picture {
          width: 260px;
          left: 12%;
          right: auto; } }
    .doctor-info .l .slogan {
      position: absolute;
      left: -5vw;
      top: 20vh;
      font-size: 22px;
      max-width: 260px;
      font-style: italic; }
      @media only screen and (max-width: 768px) {
        .doctor-info .l .slogan {
          top: auto;
          bottom: 0px;
          z-index: 3;
          left: 50%;
          transform: translateX(-50%);
          min-width: 300px;
          text-align: center; } }

.doctor-major {
  background-image: url(../img/bg-clinic.jpg);
  background-attachment: fixed;
  padding: 16vh 0px;
  background-size: cover; }
  .doctor-major-box {
    background-color: #fff;
    min-height: 400px;
    display: flex; }
    @media only screen and (max-width: 768px) {
      .doctor-major-box {
        flex-direction: column;
        min-height: auto; } }
    .doctor-major-box .title {
      flex: 1;
      padding: 5%; }
      .doctor-major-box .title h2 {
        font-size: 32px; }
      .doctor-major-box .title h4 {
        color: #A3826D;
        font-style: italic; }
    .doctor-major-box .list-box {
      flex: 3;
      padding: 5%; }
    .doctor-major-box .picture {
      background-image: url(../img/doc-info.jpg);
      flex: 2;
      background-size: cover; }
      @media only screen and (max-width: 768px) {
        .doctor-major-box .picture {
          min-height: 270px;
          display: inline-block;
          background-position: center; } }
    .doctor-major-box .list {
      margin-bottom: 20px; }
      .doctor-major-box .list h3 {
        display: inline-block;
        background: linear-gradient(245deg, #C7B299 0%, #765937 100%);
        color: #fff;
        font-size: 16px;
        padding: 2px 6px; }

.doctor-top {
  position: relative; }
  .doctor-top::before {
    position: absolute;
    bottom: 0px;
    z-index: -2;
    content: '';
    width: 50%;
    height: 260px;
    border-radius: 0px 100px 0px 0px;
    background: linear-gradient(245deg, #C7B299 0%, #ffffff 100%); }
    @media only screen and (max-width: 768px) {
      .doctor-top::before {
        right: 0px;
        rotate: 180deg;
        top: 0px;
        height: 340px;
        width: 62%; } }

@media only screen and (max-width: 768px) {
  .single-service-medicle {
    height: 300px; } }

.index-doctor-carousel {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden; }
  .index-doctor-carousel .index-carousel-container {
    width: 100%;
    overflow: hidden; }
  .index-doctor-carousel .index-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform; }
  .index-doctor-carousel .index-carousel-prev,
  .index-doctor-carousel .index-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(124, 83, 20, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    width: 45px;
    z-index: 10; }
  .index-doctor-carousel .index-carousel-prev {
    left: 10px; }
  .index-doctor-carousel .index-carousel-next {
    right: 10px; }
  @media (max-width: 768px) {
    .index-doctor-carousel .index-doctor-card {
      flex: 0 0 50%; } }

@media only screen and (max-width: 768px) {
  .single-team-area-start.team-radious-style .thumbnail {
    width: 120px;
    height: 120px; } }

.index-doctor-card {
  flex: 0 0 25%;
  text-align: center;
  padding: 20px;
  position: relative;
  width: 360px;
  height: 400px; }
  @media only screen and (max-width: 768px) {
    .index-doctor-card {
      height: 230px; } }
  .index-doctor-card .picture {
    width: 340px;
    height: 400px;
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    right: 0px;
    max-width: 80%;
    bottom: 0px;
    position: absolute; }
    @media only screen and (max-width: 768px) {
      .index-doctor-card .picture {
        width: 100%; } }
  .index-doctor-card::after {
    position: absolute;
    z-index: -2;
    width: 300px;
    height: 330px;
    background: #FCFCFC;
    content: '';
    bottom: 0px;
    left: 0px;
    max-width: 20vw; }
    @media only screen and (max-width: 768px) {
      .index-doctor-card::after {
        max-width: 100%;
        height: 200px;
        border: 4px solid #fff9f1; } }
  .index-doctor-card:hover {
    transition-duration: 500ms; }
    .index-doctor-card:hover::after {
      background: linear-gradient(30deg, #C7B299 0%, #ffffff 100%);
      transition: background 2s ease;
      /* 設定背景變化的過渡時間 */ }
  .index-doctor-card::before {
    width: auto;
    bottom: 0px;
    left: 20px;
    z-index: -1;
    position: absolute;
    content: url(../img/bg-doctor.png); }
    @media only screen and (max-width: 768px) {
      .index-doctor-card::before {
        max-width: 200px; } }
  .index-doctor-card .info {
    position: absolute;
    top: 100px; }
    @media only screen and (max-width: 768px) {
      .index-doctor-card .info {
        bottom: 0px;
        width: 100%;
        top: auto;
        background-color: #fff;
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 70%);
        background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 70%);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 70%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
        border-left: 4px solid #fff9f1;
        border-right: 4px solid #fff9f1; } }
    .index-doctor-card .info .name {
      font-size: 24px; }
      @media only screen and (max-width: 768px) {
        .index-doctor-card .info .name {
          font-size: 18px; } }
    .index-doctor-card .info .title {
      font-size: 14px; }
    .index-doctor-card .info .name-english {
      color: #A3826D;
      font-size: 16px;
      font-weight: lighter;
      font-style: italic;
      max-width: 120px; }
      @media only screen and (max-width: 768px) {
        .index-doctor-card .info .name-english {
          max-width: none;
          margin: 0px;
          padding-top: 10vh;
          font-weight: normal; } }

.box-aboutjing {
  background-image: url(../img/bg-about3.svg);
  background-size: cover;
  padding: 5% 0px; }
  .box-aboutjing .single {
    display: flex;
    flex-direction: row; }
    .box-aboutjing .single .box-about-info {
      padding-left: 5%;
      align-self: center;
      color: #4e4841; }
      .box-aboutjing .single .box-about-info .en-title {
        font-style: italic;
        color: #4e4841; }
    .box-aboutjing .single .picture {
      width: 50%; }
    .box-aboutjing .single .title-about {
      width: 100%;
      margin-bottom: 20px;
      max-width: 400px; }

/* ✅ 隱藏 radio 按鈕 */
.jing-content-slider input[type="radio"] {
  display: none; }

/* 主要區塊 */
#jing-section-1 {
  display: flex;
  justify-content: center;
  height: 90vh;
  background-color: #fff; }

/* 輪播容器 */
.jing-content-slider {
  position: relative;
  width: 70vw;
  height: 80vh;
  overflow: visible;
  /* ✅ 確保進度條不被裁切 */
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1; }

/* 主要圖片區塊 */
.jing-slider {
  position: relative;
  width: 100%;
  height: 100%; }

.jing-banner {
  position: absolute;
  background-size: cover;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  background-position: center;
  height: 100%;
  text-align: center;
  transition: opacity 0.5s ease-in-out; }

.box-service-icon {
  margin: 7vh auto 10vh auto;
  position: relative;
  display: flex; }
  .box-service-icon .ser-decor {
    top: 0px;
    z-index: 0; }
  .box-service-icon .box-ser2 {
    display: flex;
    padding-right: 6vw;
    gap: 30px;
    flex-wrap: wrap;
    align-content: baseline; }
    .box-service-icon .box-ser2 .single {
      min-width: 200px;
      padding: 20px;
      max-width: 170px;
      display: flex;
      flex-direction: column;
      text-align: center;
      flex: 1; }
      .box-service-icon .box-ser2 .single:hover {
        background-color: #fffdfa; }
      .box-service-icon .box-ser2 .single img {
        max-width: 140px;
        margin: auto;
        margin-bottom: 20px;
        margin-top: 0px; }
    .box-service-icon .box-ser2 .arrow {
      max-width: 46px;
      margin: auto;
      margin-top: 14px; }
      .box-service-icon .box-ser2 .arrow img {
        width: 100%; }
    .box-service-icon .box-ser2 .more h5 {
      color: var(--primary);
      font-weight: bold;
      display: inline-block;
      padding: 10px 6px 2px 6px;
      border-bottom: 3px solid #A3826D; }
    .box-service-icon .box-ser2 h4 {
      color: var(--primary);
      font-size: 20px; }
    .box-service-icon .box-ser2 h5 {
      font-weight: lighter;
      margin-top: 6px; }
    .box-service-icon .box-ser2 h6 {
      color: var(--primary);
      margin: 0px;
      font-family: "Cardo", serif; }

.page-wrapper {
  z-index: -1;
  background-color: #fff;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  position: fixed; }

.stripe-wrapper {
  z-index: 5;
  justify-content: center;
  width: 100vw;
  min-width: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0% auto;
  overflow: hidden; }

.wrapper {
  z-index: 10;
  width: 100%;
  max-width: 1600px;
  position: relative; }

.wrapper.no-padding {
  padding-left: 0;
  padding-right: 0; }

.stripe-container {
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex; }

.pin-stripe {
  background-color: rgba(184, 184, 184, 0.2);
  width: 1px; }

.banner-service {
  background-image: url(../img/service/lose.jpg);
  background-size: cover;
  min-height: 300px;
  width: 100%;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .banner-service {
      background-attachment: unset;
      background-size: cover; } }
  .banner-service::before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
    z-index: 0; }
  .banner-service .box-title {
    position: relative;
    padding: 5% 0px; }
  .banner-service h1 {
    font-weight: normal;
    letter-spacing: 1px;
    z-index: 2;
    color: #fff;
    margin-bottom: 0px; }
  .banner-service .sectitle {
    color: #fff;
    font-size: 3em;
    font-family: "Cardo", serif;
    font-weight: lighter; }
    @media only screen and (max-width: 768px) {
      .banner-service .sectitle {
        font-size: 20px; } }
  .banner-service .descript {
    color: #fff;
    margin-top: 30px; }

.title-service {
  position: relative; }
  .title-service h3 {
    font-size: 24px;
    color: #A3826D;
    font-family: "Cardo", serif; }
  .title-service h4 {
    font-size: 16px;
    font-style: italic;
    font-weight: lighter;
    color: #A3826D; }
  .title-service::before {
    left: -30px;
    position: absolute;
    top: 10px;
    content: url(../img/service/title-icon.png); }
    @media only screen and (max-width: 768px) {
      .title-service::before {
        top: -30px;
        left: 0px; } }
  .title-service.two {
    text-align: center; }
    .title-service.two::before {
      content: none; }

.pt {
  margin-top: 8vh; }

.pb {
  margin-bottom: 8vh; }

.pd-self {
  box-sizing: border-box;
  padding: 8vh 0px; }

.boxs {
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 5vh; }

.box-items {
  display: flex;
  gap: 16px;
  flex-wrap: wrap; }
  .box-items .single {
    flex: 1;
    min-height: 460px;
    padding: 2%;
    background-size: cover;
    background-position: center;
    border-radius: 10px; }
    @media only screen and (max-width: 768px) {
      .box-items .single {
        min-width: 140px;
        min-height: 240px; } }
    .box-items .single h4 {
      text-align: center;
      font-size: 16px; }
      .box-items .single h4 span {
        display: block;
        font-size: 120%; }
    .box-items .single.light h4 {
      color: #Fff; }

.box-about {
  background-image: url(../img/service/bg-about.jpg);
  background-size: cover;
  padding: 5% 0px; }
  .box-about .info {
    width: 50%;
    color: #fff; }
    @media only screen and (max-width: 768px) {
      .box-about .info {
        width: 100%; } }

.box-process {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: row; }
  .box-process .single {
    background-color: #faf1ec;
    padding: 40px;
    flex: 1;
    border-radius: 10px;
    min-width: 200px; }
    @media only screen and (max-width: 768px) {
      .box-process .single {
        width: 50%;
        flex: 1;
        height: 220px;
        padding: 10px;
        min-width: 120px; } }
    .box-process .single h5 {
      font-size: 25px;
      margin-bottom: 40px;
      opacity: 0.6;
      margin-top: 0px;
      font-weight: lighter; }
    .box-process .single img {
      width: 50px;
      max-width: 100%; }
    .box-process .single:nth-child(even) {
      background-color: #5d4435;
      color: #f2e7dd; }
      .box-process .single:nth-child(even) img {
        fill: #fff;
        filter: brightness(1);
        max-width: 100%; }
  .box-process .single2 {
    background-image: url(../img/service/DSC01557_0.jpg);
    background-size: cover;
    flex: 4;
    min-width: 560px;
    height: 300px;
    border-radius: 10px;
    padding: 40px;
    color: #fff;
    text-align: right;
    background-position: center;
    max-width: 100%; }
    @media only screen and (max-width: 768px) {
      .box-process .single2 {
        min-width: 160px;
        height: 220px;
        flex: 1;
        width: 50%;
        padding: 10px; } }
    .box-process .single2 h5 {
      font-size: 28px;
      font-style: italic; }

.box-card-ser {
  position: relative; }
  .box-card-ser .single {
    display: flex;
    position: sticky;
    top: 100px;
    padding: 5%;
    background-color: #fff;
    margin-bottom: 6vh;
    gap: 20px;
    background-image: url(../img/service/bg-line.png);
    background-position: -5%;
    background-size: 60%;
    background-repeat: no-repeat; }
    @media only screen and (max-width: 768px) {
      .box-card-ser .single {
        flex-direction: column;
        position: relative; } }
    .box-card-ser .single .info {
      flex: 1;
      align-self: center;
      color: #3c2d24; }
      .box-card-ser .single .info h4 {
        font-size: 20px; }
        @media only screen and (max-width: 768px) {
          .box-card-ser .single .info h4 {
            font-size: 16px; } }
      .box-card-ser .single .info h3 {
        font-size: 26px; }
        @media only screen and (max-width: 768px) {
          .box-card-ser .single .info h3 {
            font-size: 22px; } }
      .box-card-ser .single .info h5 {
        font-size: 18px;
        font-weight: normal; }
    .box-card-ser .single .picture {
      flex: 1; }
      .box-card-ser .single .picture img {
        max-width: 100%; }
    .box-card-ser .single.left {
      flex-direction: row-reverse; }
      @media only screen and (max-width: 768px) {
        .box-card-ser .single.left {
          flex-direction: column; } }

.box-button {
  z-index: 20;
  width: 100%;
  text-align: center;
  display: block; }

.services {
  display: flex;
  flex-wrap: wrap; }
  .services a {
    position: relative;
    overflow: hidden;
    width: 25%; }
    @media only screen and (max-width: 768px) {
      .services a {
        width: 100%; } }
    .services a::after {
      content: url(../img/service/bg-line.png);
      position: absolute;
      top: 40px;
      right: 20px;
      opacity: 0;
      width: 200px; }
    .services a:hover {
      background-color: #fcf9f4;
      transition-duration: 600ms; }
      .services a:hover::after {
        opacity: 1;
        transition-duration: 500ms; }
  .services .single {
    border-right: 1px solid #f2e7dd; }
    .services .single .picture {
      height: 500px;
      background-size: cover;
      background-image: url(../img/service/item03.jpg); }
      @media only screen and (max-width: 768px) {
        .services .single .picture {
          width: 80%;
          margin: auto;
          height: 260px; } }
    .services .single .info {
      padding: 40px;
      padding-bottom: 80px;
      margin-bottom: 8vh;
      position: relative; }
      @media only screen and (max-width: 768px) {
        .services .single .info {
          padding: 30px; } }
      .services .single .info p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis; }
      .services .single .info h3 {
        font-size: 26px; }
      .services .single .info .number {
        font-size: 60px;
        margin: 0px;
        font-weight: lighter;
        font-family: "Cardo", serif;
        color: #A3826D;
        opacity: 0.6;
        position: absolute;
        right: 40px;
        bottom: 0px;
        margin: 0px;
        line-height: 1; }
        @media only screen and (max-width: 768px) {
          .services .single .info .number {
            bottom: -18px; } }
      .services .single .info h4 {
        font-family: "Cardo", serif;
        color: #A3826D; }
      .services .single .info .more {
        position: absolute;
        bottom: 0px;
        left: 40px;
        margin: 0px; }
        .services .single .info .more h6 {
          position: relative;
          margin: 0px;
          font-family: "Cardo", serif; }
          .services .single .info .more h6::after {
            content: '';
            width: 100%;
            border: 1px solid;
            position: absolute;
            left: 0px;
            bottom: -5px; }

.box-title2 {
  padding: 5% 0px 2% 0px; }
  .box-title2 h1 {
    font-size: 26px;
    font-weight: normal;
    margin: 0px; }
  .box-title2 .sectitle {
    font-family: "Cardo", serif;
    font-size: 3em;
    color: #A3826D; }

.box-btn-reser {
  padding-top: 5vh; }
  .box-btn-reser .more {
    display: flex;
    max-width: 490px;
    margin: auto;
    position: relative;
    align-items: center; }
    .box-btn-reser .more #lottie-animation svg {
      width: 180px !important;
      height: 180px !important;
      margin-right: -16px; }
      @media only screen and (max-width: 768px) {
        .box-btn-reser .more #lottie-animation svg {
          width: 140px !important;
          height: 140px !important;
          margin-left: -10px; } }
    .box-btn-reser .more h6 {
      margin: 0px 0px 10px 0px;
      font-size: 16px; }
      .box-btn-reser .more h6 span {
        display: block; }
    .box-btn-reser .more .info {
      color: #28855B; }
      .box-btn-reser .more .info #copyDiv {
        color: #28855B;
        border: 1px solid #28855B;
        padding: 4px 10px;
        border-radius: 4px; }
    .box-btn-reser .more #message {
      color: #353b38 !important;
      font-size: 12px;
      position: absolute;
      bottom: 22px; }
      @media only screen and (max-width: 768px) {
        .box-btn-reser .more #message {
          bottom: -10px; } }
    .box-btn-reser .more .qr {
      margin-left: 6px; }

.banner-img img {
  width: 100%; }
.banner-img .mob-img {
  display: none; }
@media only screen and (max-width: 768px) {
  .banner-img .mob-img {
    display: block; }
  .banner-img .web-img {
    display: none; } }

.single-peo {
  background-color: #F7EDE7;
  border-radius: 0px 20px 0px 0px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0px 5%;
  margin-top: 16vh;
  margin-bottom: 6vh; }
  @media only screen and (max-width: 768px) {
    .single-peo {
      margin-top: 5vh;
      flex-direction: column;
      padding: 5% 5% 0px 5%; } }
  .single-peo h3 {
    font-size: 2em; }
    @media only screen and (max-width: 768px) {
      .single-peo h3 {
        font-size: 24px; } }
  .single-peo .people {
    margin-top: -10vh;
    max-width: 100%; }
    .single-peo .people img {
      margin-top: 10px;
      max-width: 100%; }
  .single-peo .info p span {
    color: var(--primary); }

.title2 {
  text-align: center; }
  .title2 .pin {
    width: 60px; }
  .title2 h3 {
    font-size: 2em; }
    @media only screen and (max-width: 768px) {
      .title2 h3 {
        font-size: 24px; } }
  .title2 h4 {
    font-size: 1.4em; }
  .title2 .arrowdown {
    width: 90px; }

.complex-box {
  padding: 5% 0px;
  background-color: #F7EDE7; }
  .complex-box .container {
    display: flex;
    flex-direction: column;
    gap: 5vh; }
    .complex-box .container .single {
      background-color: #fff;
      display: flex;
      border: 1px solid var(--primary);
      padding: 20px;
      align-items: center; }
      @media only screen and (max-width: 768px) {
        .complex-box .container .single {
          flex-direction: column; } }
      .complex-box .container .single.right {
        flex-direction: row-reverse; }
        @media only screen and (max-width: 768px) {
          .complex-box .container .single.right {
            flex-direction: column-reverse; } }
        .complex-box .container .single.right .pic .dress {
          left: -30px;
          right: auto; }
          @media only screen and (max-width: 768px) {
            .complex-box .container .single.right .pic .dress {
              right: auto;
              left: 50%;
              top: -30px; } }
      .complex-box .container .single .pic {
        position: relative;
        min-width: 44%;
        max-width: 400px; }
        .complex-box .container .single .pic img {
          width: 100%; }
        .complex-box .container .single .pic .dress {
          width: 60px;
          right: -30px;
          top: 50%;
          transform: translateY(-50%);
          position: absolute; }
          @media only screen and (max-width: 768px) {
            .complex-box .container .single .pic .dress {
              left: 50%;
              transform: translateX(-50%);
              bottom: -30px;
              top: auto; } }
      .complex-box .container .single .info {
        padding: 5%; }
        .complex-box .container .single .info img {
          width: 100%; }
        .complex-box .container .single .info h2 {
          color: var(--primary);
          font-size: 1.8em; }
          @media only screen and (max-width: 768px) {
            .complex-box .container .single .info h2 {
              text-align: center;
              position: relative;
              z-index: 2; } }
        .complex-box .container .single .info p span {
          color: var(--primary); }
        .complex-box .container .single .info h4 {
          color: var(--primary);
          font-weight: bold;
          font-size: 20px; }

.mobuse {
  display: none; }
  @media only screen and (max-width: 768px) {
    .mobuse {
      display: block; } }

@media only screen and (max-width: 768px) {
  .webuse {
    display: none; } }

.endbox {
  background-size: cover;
  background-position: center;
  border-radius: 0px 20px 0px 0px;
  margin: 5vh auto;
  background-image: url("../../assets/img/202410181001095986_0.jpg");
  padding: 5%;
  background-attachment: fixed; }
  .endbox .inerbox {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5%;
    border-radius: 6px;
    text-align: center; }
    .endbox .inerbox blockquote {
      margin: 0px auto; }
  @media only screen and (max-width: 768px) {
    .endbox {
      padding: 10% 5%; } }

.case-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; }
  @media only screen and (max-width: 768px) {
    .case-box {
      flex-direction: column; } }
  .case-box a {
    flex: 1;
    max-width: 50%; }
    @media only screen and (max-width: 768px) {
      .case-box a {
        max-width: 100%; } }
    .case-box a:hover {
      filter: drop-shadow(5px 4px 16px #b7a499); }
    .case-box a img {
      width: 100%;
      border-radius: 10px; }

.box-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; }
  .box-icons .single {
    max-width: 300px;
    flex: 1;
    margin: auto;
    text-align: center; }
    .box-icons .single h4 {
      margin-top: 10px;
      font-size: 20px;
      line-height: 24px;
      font-weight: bold; }
    .box-icons .single p {
      margin: 0px auto; }
    .box-icons .single img {
      max-width: 100%;
      max-width: 200px;
      margin: auto; }

.box-icons-out {
  border: 1px solid #A3826D;
  padding: 5%;
  border-radius: 6px; }

.box-clinic {
  display: flex;
  flex-direction: column; }
  .box-clinic .single {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; }
    @media only screen and (max-width: 768px) {
      .box-clinic .single {
        flex-direction: column; } }
    .box-clinic .single .picture {
      position: relative;
      width: 40%; }
      @media only screen and (max-width: 768px) {
        .box-clinic .single .picture {
          width: 100%; } }
    .box-clinic .single .map {
      background-color: #f6f4f3;
      align-self: center; }
      @media only screen and (max-width: 768px) {
        .box-clinic .single .map {
          width: 100%;
          text-align: center; } }
      .box-clinic .single .map img {
        width: 380px;
        padding: 20px; }
        @media only screen and (max-width: 768px) {
          .box-clinic .single .map img {
            width: 300px; } }
    .box-clinic .single .info {
      align-self: center;
      flex: 1;
      min-width: 300px; }
      .box-clinic .single .info h2 {
        font-size: 24px;
        font-family: "Cardo", serif;
        margin-bottom: 20px; }
      .box-clinic .single .info .link {
        margin-bottom: 20px; }
        .box-clinic .single .info .link h4 {
          font-weight: bold;
          margin: 0px; }
        .box-clinic .single .info .link p {
          margin-top: 0px;
          margin-bottom: 10px; }
        .box-clinic .single .info .link .trans {
          display: flex;
          gap: 10px;
          margin: 6px 0px; }
          .box-clinic .single .info .link .trans h5, .box-clinic .single .info .link .trans h6 {
            margin: 0px; }
          .box-clinic .single .info .link .trans .more h5 {
            font-size: 16px; }
          .box-clinic .single .info .link .trans .icon img {
            width: 100%;
            border: 1px solid #c7b1a3;
            border-radius: 100px;
            padding: 10px;
            width: 50px;
            height: 50px; }

.swiper-container {
  width: 100%;
  height: 400px;
  margin: auto;
  overflow: hidden;
  padding-bottom: 5px;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .swiper-container {
      height: 260px; } }

.swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  overflow: hidden; }

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-in-out; }

.swiper-slide-active img {
  transform: scale(1.05);
  /* Slight zoom effect for the active slide */ }

.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.328);
  padding: 10px 20px; }

/* Navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease; }

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px !important;
  font-weight: bold;
  color: #fff; }

/* Pagination bullets */
.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.6; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #A3826D !important;
  /* Stylish active bullet color */ }

/* Progress bar */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(to right, #A3826D, #e7b297);
  transition: width 3s linear; }

.btn-googlemap {
  padding: 2px 6px;
  background-color: #A3826D;
  border-radius: 4px;
  color: #fff;
  font-size: 12px; }
  .btn-googlemap:hover {
    background-color: #2D5055;
    transition-duration: 400ms; }

.news-all {
  display: flex; }
  @media only screen and (max-width: 768px) {
    .news-all {
      flex-direction: column; } }
  .news-all .news-cat {
    min-height: 360px;
    min-width: 200px;
    padding: 5%;
    background-image: url(../img/bg-news.jpg);
    background-size: cover;
    background-position: bottom center;
    border-radius: 110px 0px 0px 0px; }
    @media only screen and (max-width: 768px) {
      .news-all .news-cat {
        background-image: url(../img/bg-news-mob.jpg);
        border-radius: 50px 0px 0px 0px;
        min-height: auto; } }
    .news-all .news-cat .pic {
      gap: 20px;
      display: flex;
      flex-direction: column; }
      @media only screen and (max-width: 768px) {
        .news-all .news-cat .pic {
          padding-top: 100px;
          flex-direction: row; } }
      .news-all .news-cat .pic button {
        text-align: left;
        color: #6c6c6c;
        background-color: unset;
        font-size: 16px;
        letter-spacing: 1px;
        border: 0px;
        position: relative; }
        .news-all .news-cat .pic button.active {
          color: #A3826D;
          font-weight: bold; }
          .news-all .news-cat .pic button.active::before {
            position: absolute;
            left: -26px;
            content: url(../img/pin-title.svg); }
            @media only screen and (max-width: 768px) {
              .news-all .news-cat .pic button.active::before {
                display: none; } }

.box-news {
  display: flex;
  flex-direction: column;
  flex: 5; }
  @media only screen and (max-width: 768px) {
    .box-news {
      flex-direction: column; } }
  .box-news a {
    width: 100%;
    padding: 26px 5%;
    display: flex;
    border-bottom: 1px solid #ebebeb; }
    .box-news a .date {
      flex: 1; }
      .box-news a .date .day {
        font-size: 3em;
        font-weight: normal;
        font-family: "Cardo", serif;
        color: #A3826D; }
        @media only screen and (max-width: 768px) {
          .box-news a .date .day {
            font-size: 2em; } }
      .box-news a .date .month {
        color: #A3826D;
        font-family: "Cardo", serif; }
      .box-news a .date .year {
        color: gray;
        font-family: "Cardo", serif;
        font-style: italic;
        font-size: 16px; }
      .box-news a .date p {
        margin: 0px; }
    .box-news a .info {
      flex: 5; }
      .box-news a .info .btn-more {
        text-align: right;
        color: #A3826D; }
      .box-news a .info .tags {
        display: flex;
        gap: 6px; }
        .box-news a .info .tags span {
          color: #A3826D; }
    @media only screen and (max-width: 768px) {
      .box-news a {
        width: 100%; } }
    .box-news a .picture {
      background-size: cover;
      background-position: center;
      width: 100%;
      height: 200px; }

.box-news-content {
  margin: 5vh auto;
  display: flex;
  gap: 30px; }
  @media only screen and (max-width: 768px) {
    .box-news-content {
      flex-direction: column; } }
  .box-news-content .l {
    flex: 1;
    min-width: 400px; }
    @media only screen and (max-width: 768px) {
      .box-news-content .l {
        min-width: auto; } }
  .box-news-content .r {
    flex: 6; }
  .box-news-content .breadcrumb {
    margin-top: 0px;
    position: relative; }
  .box-news-content .picture {
    max-width: 800px;
    margin: auto;
    margin-top: 10px; }
    @media only screen and (max-width: 768px) {
      .box-news-content .picture {
        max-width: 100%; } }
    .box-news-content .picture img {
      width: 100%; }

.hover-item {
  cursor: pointer;
  position: relative; }
  .hover-item:hover {
    background-color: #faf9f6; }

.floating-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  display: none;
  /* Initially hidden */
  box-shadow: 5px 4px 6px rgba(109, 103, 103, 0.1);
  z-index: 1000;
  transition: transform 0.1s ease-out; }

.news-rel {
  display: block;
  width: 100%;
  text-align: center;
  color: #A3826D;
  font-size: 22px;
  margin-bottom: 10px; }

#survey {
  width: 90%;
  max-width: 800px;
  margin: auto;
  /* 當 radio 被選中時，改變顏色 */
  /* 圖示的中心點 */ }
  #survey .box-title2 {
    text-align: center; }
  #survey .progress-box {
    background-color: #fff;
    position: sticky;
    top: 86px;
    padding-bottom: 10px; }
  #survey .progress-bar {
    position: relative;
    background: #f1f1f1;
    border-radius: 5px;
    width: 100%;
    overflow: hidden;
    height: 20px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2); }
  #survey .progress {
    height: 100%;
    background: linear-gradient(90deg, #A3826D, #d4a941);
    width: 0%;
    transition: width 0.4s ease-in-out; }
  #survey .progress-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px; }
  #survey .question {
    margin-bottom: 20px; }
    #survey .question h2 {
      font-size: 18px;
      margin-bottom: 10px; }
  #survey .options label {
    display: block;
    font-size: 16px;
    background-color: #f6f2ee;
    padding: 9px;
    border-bottom: 1px solid #dacbcb; }
  #survey input[type="radio"],
  #survey input[type="checkbox"] {
    margin-right: 10px;
    border-color: #A3826D;
    background-color: #A3826D; }
  #survey input[type="radio"]:checked + .radio-mark {
    border-color: #A3826D;
    background-color: #A3826D; }
  #survey input[type="radio"]:checked + .radio-mark::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  #survey button {
    background-color: #A3826D;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px; }
  #survey button:disabled {
    background-color: #ccc;
    cursor: not-allowed; }
  #survey .page {
    display: none; }
  #survey .page.active {
    display: block; }
  #survey #resultChart {
    max-width: 600px;
    margin: auto;
    width: 90%;
    height: auto; }
  #survey .completion-message {
    display: none;
    text-align: center; }
  #survey .completion-message.active {
    display: block; }
  #survey .sectitle {
    font-size: 24px !important; }
    @media only screen and (max-width: 768px) {
      #survey .sectitle {
        font-size: 18px !important; } }

.survey-result .res-info {
  padding: 3%;
  background-color: #A3826D;
  color: #fff;
  margin: 3% auto; }

.footer-contact {
  background-image: url(../img/bg-contact2.jpg);
  margin-top: 10vh;
  background-size: cover;
  min-height: 200px; }

.footer-main {
  background-image: url(../img/bg-footer-new.jpg);
  margin-top: 10vh;
  min-height: 400px;
  display: flex;
  background-size: cover;
  padding: 5%;
  flex-direction: column;
  width: 100%;
  gap: 6vh; }
  @media only screen and (max-width: 768px) {
    .footer-main {
      min-height: auto; } }
  .footer-main .top {
    display: flex;
    width: 100%; }
    @media only screen and (max-width: 768px) {
      .footer-main .top {
        flex-direction: column; } }
    .footer-main .top .l {
      flex: 1; }
      .footer-main .top .l img {
        width: 200px; }
        @media only screen and (max-width: 768px) {
          .footer-main .top .l img {
            width: 140px;
            margin-top: 30px; } }
      @media only screen and (max-width: 768px) {
        .footer-main .top .l {
          margin: auto; } }
    .footer-main .top .r {
      gap: 20px;
      flex: 4;
      display: flex;
      flex-direction: column; }
      .footer-main .top .r .info {
        flex-direction: column;
        display: flex;
        font-style: normal;
        gap: 6px; }
        .footer-main .top .r .info .address {
          display: flex;
          flex-direction: row;
          gap: 5%; }
          @media only screen and (max-width: 768px) {
            .footer-main .top .r .info .address {
              flex-direction: column;
              gap: 30px; } }
          .footer-main .top .r .info .address .single {
            display: flex;
            flex-direction: column; }
            .footer-main .top .r .info .address .single h4 {
              font-size: 18px;
              margin-bottom: 10px;
              color: #93590a;
              font-family: "Cardo", serif; }
        .footer-main .top .r .info h3 {
          font-size: 22px;
          color: #A3826D;
          font-family: "Cardo", serif;
          margin-bottom: 10px; }
        .footer-main .top .r .info address {
          font-style: normal; }
      .footer-main .top .r .sitemap {
        margin-top: 3vh;
        display: flex;
        flex-direction: row;
        gap: 40px; }
      @media only screen and (max-width: 768px) {
        .footer-main .top .r {
          margin: auto; } }
  .footer-main .bottom {
    color: #614e42; }

.contact {
  padding: 5%;
  display: flex;
  gap: 40px;
  flex-direction: column; }
  .contact .so {
    color: #5F4646; }
    .contact .so h5 {
      font-size: 20px;
      display: flex;
      gap: 6px;
      margin: 0px; }
      .contact .so h5 img {
        width: 30px; }
    .contact .so h4 {
      font-size: 24px; }

.box-social {
  position: fixed;
  right: 10px;
  top: 30vh;
  z-index: 999;
  display: flex;
  flex-direction: column;
  background-color: #0e0e0e7a;
  gap: 20px;
  padding: 20px 10px;
  border-radius: 100px; }
  @media only screen and (max-width: 768px) {
    .box-social {
      top: auto;
      bottom: 20vh;
      gap: 10px; } }
  .box-social a img {
    width: 60px; }
    @media only screen and (max-width: 768px) {
      .box-social a img {
        width: 40px; } }
    .box-social a img:hover {
      filter: contrast(1.5); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px; }
  .footer-social a {
    max-width: 46px; }
    .footer-social a img {
      width: 100% !important; }
    .footer-social a:hover {
      filter: brightness(1.3); }

.swiper-button-prev.forclinic {
  color: #fff !important;
  font-size: 20px;
  width: 16px !important;
  left: 16px !important; }

.swiper-button-next.forclinic {
  color: #fff !important;
  font-size: 20px;
  width: 16px !important;
  right: 16px !important; }
