@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
}

.d_flex {
  display: flex;
}

.mb_0 {
  margin-bottom: 0 !important;
}

.mb_3 {
  margin-bottom: 3rem !important;
}

.stop_scroll {
  overflow-y: hidden !important;
  touch-action: none;
  -ms-touch-action: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

ul.disc > li {
  padding-left: 12px;
  text-indent: -12px;
}
ul.disc > li::before {
  content: "．";
}
ul.disc > p {
  margin-top: 12px;
}
ul.disc > p:first-of-type {
  margin-top: 0;
}
ul.disc > p + p {
  margin-top: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #4e4e4e;
}
@media screen and (max-width: 1024px) {
  html,
body {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  html,
body {
    font-size: 14px;
  }
}

.blur {
  position: fixed;
  inset: 0 0 0 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  transition: opacity 0.2s, transform 0.1s;
}
.blur.focus {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-142px);
  transition: opacity 0.2s, transform 0.2s;
}

.sidebar {
  flex-shrink: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 185px;
  text-align: center;
  padding: 2.75rem 1rem 2.5rem;
  background-color: #aca199;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .sidebar {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: row;
    justify-content: space-between;
    max-width: unset;
    padding: 0.25rem 2rem;
  }
}
.sidebar.focus .item_box {
  opacity: 1;
  transform: translateX(0);
}
.sidebar .logo_box {
  display: flex;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 1200px) {
  .sidebar .logo_box {
    margin: 0;
  }
}
@media screen and (max-width: 1200px) {
  .sidebar .logo_box .logo {
    width: 37px;
  }
}
.sidebar .item_box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .sidebar .item_box {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 5;
    justify-content: center;
    width: 100%;
    max-width: 142px;
    padding: 1.5rem 1rem;
    background-color: #aca199;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.2s, opacity 0.2s;
  }
}
.sidebar .item_box .cross {
  display: none;
}
@media screen and (max-width: 1200px) {
  .sidebar .item_box .cross {
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    display: flex;
    padding: 0.5rem;
  }
  .sidebar .item_box .cross::before, .sidebar .item_box .cross::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    display: flex;
    width: 1.5rem;
    height: 3px;
    background-color: #fff;
    border-radius: 0.5rem;
    cursor: pointer;
  }
  .sidebar .item_box .cross::after {
    transform: translate(-50%, -50%) rotate(135deg);
  }
}
.sidebar .nav_items {
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .sidebar .nav_items {
    display: flex;
    flex-direction: column;
    margin-top: auto;
  }
}
.sidebar .nav_items > li {
  font-size: 1.125rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.sidebar .nav_items > li.focus {
  opacity: 1;
}
.sidebar .nav_items > li + li {
  margin-top: 0.5rem;
}
.sidebar .nav_items > li .en {
  font-size: 0.75rem;
}
.sidebar .icon_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
}
@media screen and (max-width: 1200px) {
  .sidebar .icon_box {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
.sidebar .icon_box .icon {
  width: 48px;
  font-size: 0.75rem;
  color: #fff;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.sidebar .icon_box .icon:hover {
  opacity: 1;
}
.sidebar .icon_box .icon > img {
  width: 40px;
}
.sidebar .icon_box .icon > p {
  transform: scale(0.9);
}
.sidebar .hamburger {
  display: none;
}
@media screen and (max-width: 1200px) {
  .sidebar .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
}
.sidebar .hamburger .bar {
  position: relative;
  display: flex;
  width: 1.25rem;
  height: 3px;
  margin: auto 0;
  background-color: #fff;
  border-radius: 0.25rem;
}
.sidebar .hamburger .bar::before, .sidebar .hamburger .bar::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.sidebar .hamburger .bar::after {
  top: -7px;
}
main {
  margin-left: 185px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  main {
    margin-left: 0;
  }
}

.page + .page {
  padding-top: 4rem;
}
.page.home {
  position: relative;
  padding: 0 1rem;
  height: 100vh;
  background: url("../imgs/cover2@2x.png") no-repeat center/cover;
}
.page.home .home_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.page.home .home_wrapper::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  right: 0;
  bottom: 10%;
  z-index: 0;
  width: 569px;
  height: 429px;
  background: url("../imgs/cover1@2x.png") no-repeat center/contain;
}
@media screen and (max-width: 950px) {
  .page.home .home_wrapper::after {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .page.home .home_wrapper::after {
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.page.home .big_title_box {
  margin-left: 2rem;
  font-weight: 900;
  color: #4e4e4e;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .page.home .big_title_box {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0.75rem;
  }
}
@media screen and (max-width: 500px) {
  .page.home .big_title_box {
    margin: 0 auto;
  }
}
.page.home .big_title_box > p:nth-of-type(1) {
  font-size: 1.5rem;
}
@media screen and (max-width: 500px) {
  .page.home .big_title_box > p:nth-of-type(1) {
    font-size: 1.375rem;
  }
}
.page.home .big_title_box > p:nth-of-type(2) {
  font-size: 4.5rem;
  color: #e70012;
  text-shadow: 2px 2px rgba(241, 90, 36, 0.75);
}
@media screen and (max-width: 500px) {
  .page.home .big_title_box > p:nth-of-type(2) {
    font-size: 4rem;
  }
}
.page.home .big_title_box > p:nth-of-type(3) {
  font-size: 2.1875rem;
}
@media screen and (max-width: 500px) {
  .page.home .big_title_box > p:nth-of-type(3) {
    font-size: 2rem;
  }
}
.page.home .big_title_box > p + p {
  margin-top: 0.5rem;
}
.page.home .big_title_box .red_box {
  margin-top: 1rem;
  color: #e70012;
  font-size: 1.5rem;
}
@media screen and (max-width: 500px) {
  .page.home .big_title_box .red_box {
    font-size: 1.375rem;
  }
}
.page.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page.about .content_wrapper .content_box {
    flex-direction: column;
  }
  .page.about .content_wrapper .content_box > img {
    width: 100%;
  }
  .page.about .content_wrapper .content_box:nth-of-type(2) > img {
    order: 1;
  }
  .page.about .content_wrapper .content_box + .content_box {
    margin-top: 2rem;
  }
}
.page.rehabilitation .doc_list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 1096px;
  padding: 1rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .page.rehabilitation .doc_list {
    gap: 1rem;
  }
}
@media screen and (max-width: 950px) {
  .page.rehabilitation .doc_list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .page.rehabilitation .doc_list {
    padding: 0 1rem;
  }
}
.page.rehabilitation .doc_list + .doc_list {
  margin-top: 1.5rem;
}
@media screen and (max-width: 950px) {
  .page.rehabilitation .doc_list + .doc_list {
    margin-top: 2rem;
  }
}
.page.rehabilitation .doc_list .doc_wrapper {
  width: calc((100% - 2rem) / 2);
  max-width: 570px;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(120deg, #e6e6e6, #aca199);
  box-shadow: 5px 5px 1rem rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
@media screen and (max-width: 950px) {
  .page.rehabilitation .doc_list .doc_wrapper {
    width: 100%;
  }
}
.page.rehabilitation .doc_list .doc {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  background-color: #fff;
}
.page.rehabilitation .doc_list .doc .doc_top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.page.rehabilitation .doc_list .doc .doc_top > img {
  flex-shrink: 0;
  width: 177px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 500px) {
  .page.rehabilitation .doc_list .doc .doc_top > img {
    width: 50%;
  }
}
.page.rehabilitation .doc_list .doc .doc_top .right {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.page.rehabilitation .doc_list .doc .doc_top .right.only {
  justify-content: center;
}
.page.rehabilitation .doc_list .doc .doc_top .right.only .doc_name > span {
  display: flex;
}
.page.rehabilitation .doc_list .doc .doc_top .right.less {
  justify-content: center;
}
.page.rehabilitation .doc_list .doc .doc_top .right.less .doc_name {
  line-height: 1.2;
}
.page.rehabilitation .doc_list .doc .doc_top .right.less .doc_name > span {
  display: flex;
}
.page.rehabilitation .doc_list .doc .doc_top .right .doc_name {
  font-size: 1.3125rem;
}
.page.rehabilitation .doc_list .doc .doc_top .right .doc_name > span {
  font-size: 2.25rem;
}
.page.rehabilitation .doc_list .doc .doc_top .right .certificate {
  font-size: 0.75rem;
}
.page.rehabilitation .doc_list .doc .doc_info {
  flex-grow: 1;
  display: flex;
  gap: 1.5rem;
  min-height: 205px;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(to right, #e6e6e6, #d6d0cc);
  font-size: 0.75rem;
}
.page.general_surgery {
  padding-top: 0;
  height: 5px;
}
@media screen and (max-width: 768px) {
  .page.ambience .content_box {
    flex-direction: column;
  }
  .page.ambience .content_box > img {
    width: 100%;
  }
  .page.ambience .content_box + .content_box {
    margin-top: 2rem;
  }
  .page.ambience .content_box:nth-of-type(2) > img {
    order: 1;
  }
}
.page.ambience .slider_container {
  position: relative;
  padding: 0 1.75rem;
  margin: auto;
}
.page.ambience .slider-for {
  max-width: 660px;
  width: 100%;
  margin: 0 auto 1.5rem;
}
.page.ambience .slider-nav {
  max-width: 660px;
  margin: 0 auto;
}
.page.ambience .slider-nav .slick-track {
  display: flex;
}
.page.ambience .slider-nav .slick-slide {
  opacity: 0.5;
}
.page.ambience .slider-nav .slick-slide.slick-current {
  opacity: 1;
}
.page.ambience .slider-nav .slick-slide + .slick-slide {
  margin-left: 8px;
}
.page.ambience .slider-nav .slick-slide > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page.ambience .slider-nav img {
  cursor: pointer;
  aspect-ratio: 126/84;
}
.page.ambience .slide_box {
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  max-width: 660px;
  margin: 0 auto;
}
.page.ambience .slide_box .title {
  padding-bottom: 0.75rem;
  font-size: 1.875rem;
  font-weight: 900;
  background-color: #fff;
}
.page.ambience .slide_box .img_box {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  aspect-ratio: 620/412;
  background-color: rgba(77, 77, 77, 0.05);
}
.page.ambience .slide_box .img_box img {
  display: flex;
}
.page.ambience .slick-arrow {
  width: 2rem;
  height: 2rem;
  z-index: 1;
}
@media screen and (max-width: 950px) {
  .page.ambience .slick-arrow {
    width: 1.25rem;
    height: auto;
  }
}
.page.ambience .slick-arrow::before {
  content: "";
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #aca199;
  border-radius: 0.5rem;
  background-image: url("../imgs/next.svg");
  background-position: 1.5px center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 950px) {
  .page.ambience .slick-arrow::before {
    border-radius: 0;
    background-color: rgba(172, 161, 153, 0.9);
    opacity: 1;
  }
}
.page.ambience .slick-arrow.slick-next {
  top: auto;
  right: auto;
  bottom: 0;
  left: calc(100% + 0.5rem);
  transform: unset;
}
@media screen and (max-width: 950px) {
  .page.ambience .slick-arrow.slick-next {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
  }
}
.page.ambience .slick-arrow.slick-prev {
  top: auto;
  right: calc(100% + 0.5rem);
  bottom: 0;
  left: auto;
  transform: rotate(180deg);
}
@media screen and (max-width: 950px) {
  .page.ambience .slick-arrow.slick-prev {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
  }
}
.page.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 3.5rem;
}
.page.service .page_title_box {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.page.service .schedule_box {
  width: 100%;
  max-width: 700px;
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .page.service .schedule_box {
    font-size: 0.9375rem;
  }
}
.page.service .schedule_box .schedule {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page.service .schedule_box .schedule + .schedule {
  margin-top: 2rem;
}
.page.service .schedule_box .schedule .title {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0.5rem;
  background-color: #aca199;
  color: #fff;
}
.page.service .schedule_box .schedule > ul {
  display: flex;
  width: 100%;
  border-top: 3px solid #fff;
  background-color: rgba(172, 161, 153, 0.1);
}
@media screen and (max-width: 768px) {
  .page.service .schedule_box .schedule > ul {
    border-top: 2px solid #fff;
  }
}
.page.service .schedule_box .schedule > ul:nth-of-type(even) {
  background-color: rgba(172, 161, 153, 0.5);
}
.page.service .schedule_box .schedule > ul.th_tr li::before {
  content: attr(data-week);
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  .page.service .schedule_box .schedule > ul.th_tr li::before {
    display: none;
  }
}
.page.service .schedule_box .schedule > ul.tr li::before {
  content: attr(data-title);
  margin-right: 0.25rem;
}
@media screen and (max-width: 768px) {
  .page.service .schedule_box .schedule > ul.tr li::before {
    display: none;
  }
}
.page.service .schedule_box .schedule > ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11.6%;
  padding: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page.service .schedule_box .schedule > ul li {
    padding: 0.25rem;
  }
}
.page.service .schedule_box .schedule > ul li:first-of-type {
  width: 30%;
}
.page.service .schedule_box .schedule > ul li + li {
  border-left: 3px solid #fff;
}
@media screen and (max-width: 768px) {
  .page.service .schedule_box .schedule > ul li + li {
    border-left: 2px solid #fff;
  }
}
.page .page_title_box {
  padding: 0 3rem 2rem;
}
@media screen and (max-width: 950px) {
  .page .page_title_box {
    padding: 0 1.5rem 2rem;
  }
}
.page .page_title {
  width: 100%;
  max-width: 1096px;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 500;
  color: #4d4d4d;
}
.page .page_title > div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.page .page_title .en {
  font-size: 0.75rem;
  transform: scale(0.9);
}
.page .content_wrapper {
  background-color: #fffaf7;
  padding: 1rem 3rem;
}
@media screen and (max-width: 950px) {
  .page .content_wrapper {
    padding: 1rem 1.5rem;
  }
}
.page .content_box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1096px;
  margin: 0 auto;
  font-size: 1.125rem;
  font-weight: 500;
  color: #4e4e4e;
}
.page .content_box + .content_box {
  margin-top: 1.5rem;
}
.page .content_box .content_title_box {
  display: flex;
  gap: 0.75rem;
}
.page .content_box .content_title_box .content_title {
  margin-bottom: 0.5rem;
}
.page .content_box .content_title {
  align-self: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5rem;
  margin-bottom: 2rem;
  background-color: #aca199;
  color: #fff;
}
.page .content_box .content_subtitle {
  color: #aca199;
}
.page .content_box .content_text {
  line-height: 1.3;
}
.page .content_box .content_text.star::before {
  content: "✧";
}
.page .content_box img {
  width: 25%;
}

.info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding: 1.5rem 1rem;
  background-color: #786b61;
  color: #fff;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .info {
    gap: 1rem;
    justify-content: space-around;
  }
}
@media screen and (max-width: 500px) {
  .info {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .info .logo_box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}
.info .qr {
  width: 82px;
  height: 89px;
}
@media screen and (max-width: 500px) {
  .info .qr {
    display: none;
  }
}
.info .qr_mob {
  display: none;
  width: 82px;
  height: 89px;
}
@media screen and (max-width: 500px) {
  .info .qr_mob {
    display: flex;
  }
}

footer {
  padding-left: 185px;
  padding: 0.5rem 1rem 0.5rem 185px;
  font-size: 0.75rem;
  text-align: center;
  background-color: #aca199;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  footer {
    padding-left: 0;
  }
}

:root {
  --animate-duration: 1s;
  --animate-delay: 0.75s;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */