* {
  box-sizing: border-box;
}

html, body {
  touch-action: pan-y;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  overscroll-behavior: none;
  cursor: default;
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 100%;
  overscroll-behavior: none;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", sans-serif;
  background-color: #408CC5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

button {
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  .mobile-br {
    display: inline;
  }
}
.mt-text {
  margin-top: 260px;
}
@media screen and (max-width: 640px) {
  .mt-text {
    margin-top: 440px;
  }
}
@media screen and (max-width: 480px) {
  .mt-text {
    margin-top: 400px;
  }
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 4px;
}

.mb-8 {
  margin-bottom: 8px;
}

footer {
  position: absolute;
  z-index: 2;
  bottom: 0;
  font-size: 16px;
  font-weight: 300;
  color: white;
  padding: 32px 24px;
  text-align: center;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 640px) {
  footer {
    padding: 32px 16px;
  }
}

.yellow {
  color: #fff833;
}

.red {
  color: #ff2929;
}

.sliver {
  color: #d8d8d8;
}

.blue {
  color: #add2d8 !important;
}

.bg-orange {
  background-color: #F94806;
}

.bg-black {
  background-color: #383D42;
}

.title-h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 5px;
}
.title-h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.title-h4 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.3;
}
.title-h5 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

.text-p1 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.6;
}

.text-p2 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.schedule-table {
  width: 100%;
  border-collapse: separate;
  text-align: center;
  font-size: 18px;
  border-spacing: 0 10px;
}

.schedule-table thead th {
  background-color: #FFFFFF;
  color: #008fc7;
  font-weight: 400;
  padding: 12px;
}

.schedule-table tbody td {
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.schedule-table tbody tr:nth-child(even) td {
  background-color: rgba(255, 255, 255, 0.8);
  color: #008fc7;
}

.schedule-table td.ending {
  background-color: rgba(255, 255, 255, 0.1);
  color: #008fc7;
}

th:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

th:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

tr td:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

tr td:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.contact-table {
  width: 100%;
  border-collapse: separate;
  text-align: center;
  font-size: 16px;
  border-spacing: 0 10px;
}
@media screen and (max-width: 640px) {
  .contact-table {
    font-size: 14px;
  }
}

.contact-table thead th {
  background-color: #008fc7;
  color: #FFFFFF;
  font-weight: 400;
  padding: 12px;
}

.contact-table tbody td {
  padding: 12px;
  background-color: #e9f3fa;
  color: #000000;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.6;
  white-space: normal;
  word-break: break-all;
}

.contact-table tbody tr:nth-child(even) td {
  background-color: white;
  color: #000000;
}

.inquiry-table {
  width: 100%;
  border-collapse: separate;
  text-align: center;
  font-size: 16px;
  border-spacing: 0 10px;
}
@media screen and (max-width: 640px) {
  .inquiry-table {
    font-size: 14px;
  }
}

.inquiry-table thead th {
  background-color: #008fc7;
  color: #FFFFFF;
  font-weight: 400;
  padding: 12px;
}

.inquiry-table tbody td {
  padding: 12px;
  background-color: #e9f3fa;
  color: #000000;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.6;
  min-width: 100px;
  white-space: normal;
  word-break: break-all;
}
.inquiry-table tbody td:last-child {
  position: relative;
  text-align: left;
  font-weight: 300;
  padding-left: 32px;
  width: 75%;
}

.inquiry-table tbody td:last-child::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 18px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
}

.inquiry-table tbody tr:nth-child(even) td {
  background-color: white;
  color: #000000;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1001;
}
.popup.is-active {
  opacity: 1;
  pointer-events: all;
}
.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.popup__content {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  color: #413d3c;
  width: calc(100% - 48px);
  margin: 0 24px;
  max-width: 600px;
  padding: 32px 48px 24px 48px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 640px) {
  .popup__content {
    padding: 20px;
  }
}
.popup__content h1 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 24px;
}
.is-active .popup__content {
  transform: translateY(0);
}
.popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.popup__close img {
  pointer-events: none;
  display: block;
}

.pop-link {
  text-decoration: underline;
  color: #43bcd6;
  margin-top: 16px;
  font-size: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  padding: 18px 24px;
  height: 72px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.site-header .header-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.site-header .brand {
  display: inline-flex;
  align-items: center;
}
.site-header .brand img {
  height: 32px;
}

.main-nav {
  display: flex;
  align-items: center;
}
.main-nav__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .main-nav__body {
    overflow: hidden;
    display: grid;
    grid-auto-rows: min-content;
    gap: 16px;
  }
}
.main-nav a {
  font-size: 15px;
  color: #413d3c;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}
.main-nav a.active {
  color: #2E71BF;
}
@media screen and (max-width: 960px) {
  .main-nav a:first-child {
    padding-top: 32px;
  }
  .main-nav a:last-child {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 960px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: flex-start;
    padding: 0 48px;
    background-color: #FFFFFF;
    width: 100vw;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    overflow: hidden;
  }
  .main-nav.is-active {
    grid-template-rows: 1fr;
  }
}

.menu-toggle {
  width: 24px;
  height: 18px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #413d3c;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.banner2 {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}
.banner2-img {
  width: 100%;
  object-fit: contain;
}
.banner2-under {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: relative;
  top: -180px;
}

.banner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.banner-img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}
.banner-img-contain {
  width: 100%;
  object-fit: contain;
}
.banner-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  gap: 8px;
  position: absolute;
  left: 10%;
  bottom: 1%;
  z-index: 999;
  color: #FFFFFF;
}
.banner-title h2 {
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .banner-title {
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .banner-title h2 {
    font-size: 24px;
  }
  .banner-title h4 {
    font-size: 20px;
  }
}

.input-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 640px) {
  .input-wrapper {
    gap: 12px;
  }
}
.input-wrapper label {
  min-width: 80px;
  text-align-last: justify;
}
.input-style {
  width: 100%;
  flex: 1;
  border: 1px solid #bfbfbf;
  border-radius: 6px;
  font-size: 16px;
  color: #413d3c;
  padding: 12px;
  outline: none;
}
.input-style::placeholder {
  color: #909090;
}

.button-style-fill {
  font-size: 16px;
  letter-spacing: 0.5px;
  width: 100%;
  border-radius: 6px;
  background-color: #43bcd6;
  color: #FFFFFF;
  height: 40px;
  border: none;
}

.code-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 104px;
}
@media screen and (max-width: 640px) {
  .code-wrapper {
    padding-left: 92px;
  }
}

.verify-code {
  content: "";
  width: 128px;
  height: 40px;
  background-color: #909090;
}

.block-bg {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex: 1;
  width: 100%;
  padding: 36px 36px 120px 36px;
  background-color: #022684;
}
.block-bg__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  color: #FFFFFF;
  width: 100%;
  max-width: 1124px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 860px) {
  .block-bg__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.block-bg__inner section {
  flex: 1;
}
.block-bg__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #FFFFFF;
  text-align: center;
  flex-direction: column;
  width: 100%;
  max-width: 1124px;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .block-bg {
    padding: 36px 20px 120px 20px;
  }
}
.block-area {
  padding-top: 18px;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 580px) {
  .block-area {
    flex-direction: column;
    gap: 48px;
  }
}

.block-bg2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex: 1;
  width: 100%;
  padding: 36px 36px 120px 36px;
  background-color: #022684;
  background: linear-gradient(0deg, #012787 0%, #4ba1e4 100%);
}
@media screen and (max-width: 640px) {
  .block-bg2 {
    padding: 36px 20px 120px 20px;
  }
}

.area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex-direction: column;
  border: 2px solid #FFFFFF;
  border-top: none;
  min-width: 256px;
}
.area h3 {
  font-size: 24px;
  display: block;
  width: 100%;
  position: relative;
  top: -16px;
  line-height: 28px;
}
.area h3::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20%;
  height: 2px;
  background: white;
  left: -2px;
}
.area h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20%;
  height: 2px;
  background: white;
  right: -2px;
}
.area__inner {
  padding: 0 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-direction: column;
}

.locate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.locate img {
  width: 24px;
}
.locate p {
  font-size: 20px;
}

.index-bg {
  position: absolute;
  top: -5%;
  transform: translateY(-15%);
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .index-bg {
    transform: translateY(-5%);
  }
}
.index-bg img {
  width: 100%;
  height: 500px;
  z-index: 1;
  object-fit: fill;
}

.index-bg-2 {
  position: absolute;
  top: -4%;
  transform: translateY(-13%);
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 780px) {
  .index-bg-2 {
    top: -3%;
  }
}
@media screen and (max-width: 640px) {
  .index-bg-2 {
    top: -2%;
  }
}
.index-bg-2 img {
  width: 100%;
  height: 2100px;
  z-index: 1;
  object-fit: fill;
  object-position: top center;
}

.index-bg-3 {
  position: absolute;
  top: -4%;
  transform: translateY(-13%);
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 780px) {
  .index-bg-3 {
    top: -3%;
  }
}
@media screen and (max-width: 640px) {
  .index-bg-3 {
    top: -2.5%;
  }
}
.index-bg-3 img {
  width: 100%;
  height: 1900px;
  z-index: 1;
  object-fit: fill;
  object-position: top center;
}

.index-bg-4 {
  position: absolute;
  top: 35%;
  transform: translateY(-35%);
  width: 100%;
  overflow: hidden;
}
.index-bg-4 img {
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: fill;
  object-position: top center;
}

.index-bg-under {
  position: absolute;
  width: 100%;
  top: 0;
}
.index-bg-under img {
  width: 100%;
  z-index: 1;
  object-fit: cover;
}

.highlight {
  flex: 1;
  color: #fff601;
}
.highlight img {
  width: 88px;
  margin: 12px 0;
}

.schedule {
  width: 100%;
}
.schedule-title {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}
.schedule-tag {
  color: #2197b8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 12px;
  padding-bottom: 2px;
  height: 48px;
  border-radius: 100px;
  background-color: #FFFFFF;
  flex: 1;
  max-width: 254px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 910px) {
  .schedule-tag {
    width: 100%;
    max-width: none;
  }
}
.schedule-tag img {
  width: 24px;
}
.schedule-tag-group {
  width: 100%;
  max-width: 1020px;
  margin: 60px auto 40px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 910px) {
  .schedule-tag-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .schedule-tag-group {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 910px) {
  .schedule-tag.wide {
    grid-column: 1/-1;
  }
}
.note-group {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-direction: column;
}
.note-container {
  width: 100%;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px 14px 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}
.note-num {
  position: relative;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  align-content: center;
  min-width: 52px;
  margin: 0px 32px 0px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.color-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 18px;
}

.note-ul {
  padding-left: 24px;
}
.note-ul li {
  margin-bottom: 2px;
}
.note-ul li:last-child {
  margin: 0;
}

.card-scroll {
  width: 100%;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.card {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex-direction: column;
  color: #413d3c;
  width: calc(100% - 48px);
  max-width: 1080px;
  margin: 100px 24px 100px 24px;
  padding: 32px 48px 32px 48px;
  z-index: 50;
}
@media screen and (max-width: 780px) {
  .card {
    padding: 20px;
    margin: 80px 16px 120px 16px;
    width: calc(100% - 32px);
  }
}
.card h1 {
  font-size: 36px;
  font-weight: 400;
}
.card p {
  font-size: 24px;
  font-weight: 500;
  color: #43bcd6;
  margin-top: 16px;
  margin-bottom: 16px;
}

.card-title-thin {
  font-size: 30px !important;
  font-weight: 500 !important;
}

/*# sourceMappingURL=style.css.map */
