@charset "UTF-8";
/* ========================
  🎨 Design Tokens - Variables
======================== */
/* Color */
/* Breakpoints（對齊 Bootstrap） */
/* Font Family */
/* Section Spacing */
/*
  content-edge：內容版心與瀏覽器邊界的預設距離
  section-py：section 上下留白
  如果不需要上下 padding，可用 .section-py--mobile-0 等類別局部去除。
*/
/* Section Spacing - Mobile */
/* Section Spacing - Desktop */
/* Text Block Padding */
.txt-title {
  margin-bottom: 1.5em;
}

body {
  overflow: hidden;
  background-color: #000;
}

.banner {
  position: relative;
  background-color: #000;
}
.banner .phone-wrap {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4rem;
}
.banner .phone-wrap a.text-white {
  font-size: calc(22 * var(--vw-base));
  font-weight: 400;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  display: inline-block;
  outline: none;
}
.banner .phone-wrap .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  padding: 0.5rem 4rem;
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
.banner .phone-wrap .btn span {
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.banner .phone-wrap .btn::after {
  content: attr(data-en);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.banner .phone-wrap .btn:hover span, .banner .phone-wrap .btn:active span {
  opacity: 0;
  transform: translateY(-8px);
}
.banner .phone-wrap .btn:hover::after, .banner .phone-wrap .btn:active::after {
  opacity: 1;
  transform: translateY(0);
}
.banner .phone-wrap .btn img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .banner .phone-wrap {
    bottom: 6%;
    gap: 1rem;
  }
  .banner .phone-wrap a.text-white {
    font-size: calc(20 * var(--vw-base));
  }
  .banner .phone-wrap .btn {
    padding: 0.3rem 2rem;
  }
  .banner .phone-wrap .btn img {
    width: 48px;
    height: 48px;
  }
}

.page01 .page-en-title {
  font-size: calc(56 * var(--vw-base));
}
@media (max-width: 991px) {
  .page01 .page-en-title {
    font-size: calc(48 * var(--vw-base));
  }
}
.page01 .page-zh-title {
  font-size: calc(36 * var(--vw-base));
}
@media (max-width: 991px) {
  .page01 .page-zh-title {
    font-size: calc(28 * var(--vw-base));
  }
}
.page01 .tel-txt {
  color: #1a3d71;
  font-family: "Noto Serif TC", "PMingLiU", serif;
  font-size: calc(48 * var(--vw-base));
  display: block;
  margin-inline: auto;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .page01 .tel-txt {
    font-size: calc(40 * var(--vw-base));
    margin-bottom: 1rem;
  }
}
.page01 form .form-check-label {
  white-space: nowrap;
}
.page01 form .gender-group {
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .page01 form .form-floating > label,
  .page01 form .form-check-label,
  .page01 form .form-text,
  .page01 form .small,
  .page01 form .btn {
    font-size: 16px;
  }
}

[data-aos=custom-zoom-out] {
  transform: scale(1.1);
  opacity: 1;
  transition-property: transform, opacity;
  transition: transform 5s ease, opacity 5s ease !important;
}

[data-aos=custom-zoom-out].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos=custom-zoom-in] {
  transform: scale(0.8);
  opacity: 1;
  transition-property: transform, opacity;
  transition: transform 3s ease, opacity 3s ease !important;
}

[data-aos=custom-zoom-in].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos=fade-up] {
  transform: translateY(30px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos=fade-up].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos=fade-down] {
  transform: translateY(-30px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos=fade-down].aos-animate {
  transform: translateY(0);
  opacity: 1;
}
