@import url(https://fonts.googleapis.com/earlyaccess/cwtexkai.css);
@import url(https://fonts.googleapis.com/earlyaccess/cwtexyen.css);
@import url(https://fonts.googleapis.com/earlyaccess/cwtexfangsong.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
@import url(https://fonts.googleapis.com/earlyaccess/cwtexming.css);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+TC:200,300,400,500,600,700,900&subset=chinese-traditional);
body {
  font-family: "Noto Sans TC";
}

.all_block {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: -1px;
}

.ps_a {
  position: absolute;
}

.ps_top {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.ps_top img {
  width: 100%;
}

.ps_md {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ps_md img {
  width: 100%;
}

.ps_bt {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.ps_bt img {
  width: 100%;
}

.ps_bt_E {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: 0.3%;
  transform: translateX(-50%);
  pointer-events: none;
}
.ps_bt_E img {
  width: 100%;
}

:root {
  --e-tree-width: 56%;
  --e-tree-left: -32%;
  --e-tree-top: -1%;
  --e-ya-width: 31%;
  --e-ya-right: -3%;
  --e-ya-bottom: 7%;
  --e-tree-mobile-width: 46%;
  --e-tree-mobile-left: -1%;
  --e-tree-mobile-top: 46%;
  --e-ya-mobile-width: 46%;
  --e-ya-mobile-right: -10%;
  --e-ya-mobile-bottom: 5%;
}

.ps_full_text {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.reveal-text img {
  opacity: 1;
}

.ps_tree {
  position: absolute;
  width: 46%;
  right: -12%;
  top: -4%;
  z-index: 3;
  pointer-events: none;
  animation: tree_sway 6.8s ease-in-out infinite alternate;
  transform-origin: 70% 0;
}

.ps_tree img {
  width: 100%;
}

.ps_tree.ps_tree_e {
  width: var(--e-tree-width);
  left: var(--e-tree-left);
  right: auto;
  top: var(--e-tree-top);
}

.ps_ya {
  position: absolute;
  width: 15%;
  left: -4%;
  top: 10%;
  z-index: 5;
  pointer-events: none;
  animation: leaf_drift 9s ease-in-out infinite;
}

.ps_ya img {
  width: 100%;
}

.ps_ya.ps_ya_e {
  width: var(--e-ya-width);
  left: auto;
  right: var(--e-ya-right);
  top: auto;
  bottom: var(--e-ya-bottom);
  animation: leaf_drift_e 9.2s ease-in-out infinite;
}

.ps_F_gallery {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  transform: translateX(-50%);
  z-index: 2;
}

.f_gallery_item {
  position: relative;
  overflow: hidden;
  animation-name: irregular_fade_out;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.f_gallery_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.f_gallery_item:nth-child(1) {
  animation-duration: 5.7s;
  animation-delay: 0.2s;
}

.f_gallery_item:nth-child(2) {
  animation-duration: 7.1s;
  animation-delay: 1.3s;
}

.f_gallery_item:nth-child(3) {
  animation-duration: 6.2s;
  animation-delay: 0.7s;
}

.f_gallery_item:nth-child(4) {
  animation-duration: 7.8s;
  animation-delay: 1.8s;
}

.f_gallery_item:nth-child(5) {
  animation-duration: 6.6s;
  animation-delay: 0.4s;
}

.f_gallery_item:nth-child(6) {
  animation-duration: 8.3s;
  animation-delay: 1.1s;
}

@keyframes tree_sway {
  0% {
    transform: rotate(-1deg) translateX(0);
  }
  100% {
    transform: rotate(1.8deg) translateX(8px);
  }
}

@keyframes leaf_drift {
  0% {
    transform: translate(0, 0) rotate(-8deg);
  }
  50% {
    transform: translate(24px, 16px) rotate(8deg);
  }
  100% {
    transform: translate(0, 34px) rotate(-6deg);
  }
}

@keyframes leaf_drift_e {
  0% {
    transform: translate(0, 0) rotate(-4deg);
  }
  50% {
    transform: translate(-10px, 8px) rotate(3deg);
  }
  100% {
    transform: translate(0, 14px) rotate(-3deg);
  }
}

@keyframes irregular_fade_out {
  0% {
    opacity: 1;
  }
  14% {
    opacity: 0.68;
  }
  27% {
    opacity: 0.92;
  }
  43% {
    opacity: 0.54;
  }
  59% {
    opacity: 0.82;
  }
  76% {
    opacity: 0.38;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .ps_tree.ps_tree_e {
    width: var(--e-tree-mobile-width);
    left: var(--e-tree-mobile-left);
    right: auto;
    top: var(--e-tree-mobile-top);
  }

  .ps_ya.ps_ya_e {
    width: var(--e-ya-mobile-width);
    left: auto;
    right: var(--e-ya-mobile-right);
    top: auto;
    bottom: var(--e-ya-mobile-bottom);
  }

  .ps_F_gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-text img,
  .ps_tree,
  .ps_ya,
  .f_gallery_item {
    animation: none;
  }
}

.copyright {
  margin-bottom: 70px;
  color: #ffffff;
  background-color: #595757;
}
.copyright .footer_homelink {
  text-decoration: none;
  color: #ffffff;
}

.form-black {
  position: relative;
  overflow: hidden;
  background-image: url("../../images/form/form_bg_001.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.form-black .logo_yang {
  position: absolute;
  width: 20%;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  z-index: 3;
}
.form-black .logo_yang img {
  width: 100%;
}

.form_font_color {
  font-family: "Noto Sans TC";
  font-weight: 800;
  color: #595757;
}

.form_font_size {
  font-size: 18px;
}

select,
.custom-select,
.form-control {
  background-color: #f2f2f2 !important;
  border: 1px solid rgba(51, 51, 51, 0);
  color: #595757;
  font-family: "Noto Sans TC";
  font-weight: 800;
}

.form-check-label {
  color: #595757;
}

.submit_btn {
  background-color: #595757;
  color: #ffffff;
  border: px;
}

.submit_btn:hover {
  background-color: #595757;
  color: #f7ea03;
}

.submit_btn:focus {
  outline-style: none;
  box-shadow: none;
  border-color: transparent;
  color: #f7ea03;
}

.form-control:focus {
  outline-style: none;
  box-shadow: none;
  color: #292929;
}

.form-check-input {
  width: 18px;
  height: 18px;
  border-color: #595757;
}

.custom-select:focus {
  outline-style: none;
  box-shadow: none;
  color: #292929;
}

.form-select:invalid .background-position {
  background-position-x: right 0.75rem, right 2.25rem;
  background-position-y: center, center;
}

.form-control::-moz-placeholder {
  color: #595757 !important;
  opacity: 1;
  /* Firefox */
}

.form-control::placeholder {
  color: #595757 !important;
  opacity: 1;
  /* Firefox */
}

.form-control:focus::-moz-placeholder {
  color: transparent !important;
}

.form-control:focus::placeholder {
  color: transparent !important;
}

.placeholder-center::-moz-placeholder {
  text-align: center;
}

.placeholder-center::placeholder {
  text-align: center;
}

@keyframes ldio-bdb60efu1c6 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ldio-bdb60efu1c6 div {
  left: 47px;
  top: 24px;
  position: absolute;
  animation: ldio-bdb60efu1c6 linear 1s infinite;
  background: #0d3ba4;
  width: 6px;
  height: 12px;
  border-radius: 3px/6px;
  transform-origin: 3px 26px;
}

.ldio-bdb60efu1c6 div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.9166666667s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -0.8333333333s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.75s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.6666666667s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.5833333333s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.5s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.4166666667s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.3333333333s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.25s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.1666666667s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.0833333333s;
  background: #ffffff;
}

.ldio-bdb60efu1c6 div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
  background: #ffffff;
}

.loadingio-spinner-spinner-ep6wnccq1mu {
  width: 70px;
  height: 70px;
  display: inline-block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0);
}

.ldio-bdb60efu1c6 {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(0.7);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}

.ldio-bdb60efu1c6 div {
  box-sizing: content-box;
}

.floatboxbut {
  position: relative;
  overflow: hidden;
  background-color: rgba(89, 87, 87, 0.9019607843);
}

.floatboxbut .vr {
  background-color: #ffffff;
  width: 1px;
}

.floatboxbut div[alt=map],
.floatboxbut div[alt=form],
.floatboxbut div[alt=phone],
.floatboxbut div[alt=fb] {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floatboxbut div[alt=map] a,
.floatboxbut div[alt=form] a,
.floatboxbut div[alt=phone] a,
.floatboxbut div[alt=fb] a {
  text-decoration: none;
  color: #e7e7e7;
}

.floatboxbut div[alt=map] a img,
.floatboxbut div[alt=form] a img,
.floatboxbut div[alt=phone] a img,
.floatboxbut div[alt=fb] a img {
  width: 25px;
}

.floatboxbut div[alt=map] a span,
.floatboxbut div[alt=form] a span,
.floatboxbut div[alt=phone] a span,
.floatboxbut div[alt=fb] a span {
  font-size: 10px;
}

.mobile-footer-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1100;
}

.mobile-footer-card {
  width: 100%;
  background: #ee5800;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
}

.mobile-footer-head {
  width: 100%;
  padding: 10px 16px 12px;
  background: linear-gradient(180deg, #ef6000 0%, #e75500 100%);
  border-top: 2px solid #e9a86e;
}

.mobile-footer-head-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffe7c2;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.mobile-footer-head-link + .mobile-footer-head-link {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #ffcf7a;
}

.mobile-footer-head-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(96%) sepia(8%) saturate(744%) hue-rotate(319deg) brightness(101%) contrast(96%);
}

.mobile-footer-actions-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  border-top: 2px solid #f3c57d;
  background: #d8b46f;
}

.mobile-footer-actions-v2 .mobile-footer-action {
  min-height: 78px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #2f2f2f;
  text-decoration: none;
  border-right: 1px solid rgba(222, 104, 36, 0.95);
  border-left: 1px solid rgba(239, 180, 120, 0.55);
  background: linear-gradient(180deg, #d8b56f 0%, #d1ac65 100%);
}

.mobile-footer-actions-v2 .mobile-footer-action:first-child {
  border-left: none;
}

.mobile-footer-actions-v2 .mobile-footer-action:last-child {
  border-right: none;
}

.mobile-footer-actions-v2 .mobile-footer-action img {
  width: 27px;
  height: 27px;
}

.mobile-footer-actions-v2 .mobile-footer-action span {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  letter-spacing: 1px;
}

.mobile-footer-actions-v2 .mobile-footer-booking {
  border: 2px solid #8b1010;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 999px;
  padding: 6px 14px;
  color: #7f0000 !important;
}

@media (min-width: 992px) {
  .mobile-footer-wrap {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-footer-head-link {
    font-size: 12px;
  }

  .mobile-footer-head-link + .mobile-footer-head-link {
    font-size: 16px;
  }

  .mobile-footer-actions-v2 .mobile-footer-action {
    min-height: 66px;
    gap: 6px;
  }

  .mobile-footer-actions-v2 .mobile-footer-action span {
    font-size: 12px;
    letter-spacing: 0.4px;
  }

  .mobile-footer-actions-v2 .mobile-footer-action img {
    width: 22px;
    height: 22px;
  }

  .mobile-footer-actions-v2 .mobile-footer-booking {
    padding: 4px 10px;
  }
}

.btn_text .vr {
  background-color: #ffffff !important;
  width: 1px !important;
  padding: 0 !important;
  opacity: 1 !important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1rem;
  box-sizing: border-box;
}

.modal-content {
  background: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.scrollable-modal .modal-body {
  overflow-y: auto;
  flex-grow: 1;
  margin-bottom: 1rem;
  padding-right: 0.5rem;
}

.cancel {
  text-align: center;
}
.cancel img {
  width: 40px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.cancel img:hover {
  transform: scale(1.1);
}

.text_information {
  color: #ff0000;
}

.pan_block {
  position: relative;
  overflow: hidden;
}
.pan_block .pan {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
}
.pan_block .pan img {
  width: 85vh;
}

.pan_text {
  position: absolute;
  left: 0;
  top: 0;
}
.pan_text img {
  width: 85vh;
}

.panorama_hand {
  position: absolute;
  z-index: 3;
  width: 11.25vw;
  bottom: 5%;
  left: 45%;
  transform: translateX(-50%);
  animation-name: panorama_hand_am;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease;
  animation-duration: 1s;
}
.panorama_hand img {
  height: 16.875vw;
}

@keyframes panorama_hand_am {
  0% {
    left: 48%;
  }
  100% {
    left: 52%;
  }
}
.delay_set {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4e070c;
  z-index: 900;
}/*# sourceMappingURL=style.css.map */
