@charset "UTF-8";
:root {
  --primary-color: #f2701d;
  --second-color: #3a3a3a;
  --third-color: #fc9a00;
  --fourth-color: #160a0a;
  --primary-color-light: #fff8f4;
  --primary-color-dark: #c84d00;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  background: white;
}

a {
  color: #f2701d;
}

.btn-thsr-primary {
  background-color: #f2701d;
  color: #fff;
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-thsr-primary:hover, .btn-thsr-primary:active, .btn-thsr-primary:focus {
  background-color: rgb(208.0334728033, 88.3682008368, 11.9665271967) !important;
  color: #fff !important;
}
.btn-thsr-primary-outline {
  border-color: #f2701d;
  color: #f2701d;
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-thsr-primary-outline:hover, .btn-thsr-primary-outline:active, .btn-thsr-primary-outline:focus {
  background-color: #f2701d !important;
  color: #fff !important;
}
.btn-thsr-cancel {
  border-color: #3a3a3a;
  color: #3a3a3a;
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-thsr-cancel:hover, .btn-thsr-cancel:active, .btn-thsr-cancel:focus {
  background-color: #eaeaea !important;
  color: #3a3a3a !important;
}
.btn-thsr-tab {
  background-color: transparent;
  color: #626262;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-thsr-tab.active, .btn-thsr-tab:hover, .btn-thsr-tab:focus, .btn-thsr-tab:active {
  border-color: #f2701d;
  color: #f2701d;
}

.navbar-custom {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.navbar-custom .navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar-custom .navbar-brand img {
  max-width: 130px;
}
.navbar-custom .navbar-brand span {
  font-size: 1rem;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid #dee2e6;
}

.hero-banner {
  width: 100%;
}
.hero-banner .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.content-tabs {
  background-color: white;
  border-bottom: 1px solid #dee2e6;
  z-index: 10;
  position: sticky;
  top: 58px;
}
.content-tabs .nav-tabs {
  border-bottom: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content-tabs .nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content-tabs .nav-item:not(:nth-child(1))::before {
  content: "";
  position: relative;
  left: 0;
  width: 1px;
  height: 36px;
  background-color: #dee2e6;
}
.content-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 0.8rem 2rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #f2701d;
}
.content-tabs .nav-link.active, .content-tabs .nav-link:hover, .content-tabs .nav-link:active, .content-tabs .nav-link:focus, .content-tabs .nav-link.active:hover {
  background-color: #f2701d;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: inherit;
  border: none;
}
@media (max-width: 48em) {
  .content-tabs .nav-link {
    padding: 0.6rem 1rem;
  }
}

.holiday-offers .section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: #3a3a3a;
}
.holiday-offers .section-intro {
  text-align: center;
  margin: 0 auto 3rem auto;
  color: #626262;
}
.holiday-offers .offer-card {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 48em) {
  .holiday-offers .offer-card {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.holiday-offers .offer-card .btn-details {
  background-color: #f2701d;
  color: #fff;
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  margin-left: 1rem;
}
@media (max-width: 48em) {
  .holiday-offers .offer-card .btn-details {
    margin: 0rem;
  }
}
.holiday-offers .offer-card .btn-details:hover {
  background-color: rgb(208.0334728033, 88.3682008368, 11.9665271967);
  color: #fff;
}
.holiday-offers .offer-card .btn-details.disabled {
  background-color: #3a3a3a;
}
.holiday-offers .offer-img {
  width: 150px;
  padding: 0;
}
.holiday-offers .offer-title {
  font-weight: 500;
  font-size: 1.5rem;
  color: #f2701d;
  position: relative;
}
.holiday-offers .offer-title span {
  color: #b82921;
  font-weight: 400;
}
.holiday-offers .offer-title span strong {
  font-weight: 600;
  margin: 0rem 0.3rem;
  font-size: 1.8rem;
}
.holiday-offers .offer-title span:before {
  content: "";
  background-color: #f2701d;
  width: 1px;
  height: 20px;
  margin: 0rem 0.75rem;
  display: inline-block;
}
.holiday-offers .offer-title.event-free-charter::after {
  content: "享免費接送";
  display: inline-block;
  font-size: 1rem;
  color: #f2701d;
  border: 1px solid #f2701d;
  border-radius: 4px;
  padding: 0.3rem 0.5rem;
}
.holiday-offers .offer-info {
  color: #626262;
}
.holiday-offers .offer-info span {
  color: #f2701d;
}
.holiday-offers .category-divider {
  text-align: center;
  margin: 3rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #3a3a3a;
}

.booking-process .side-nav .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (max-width: 62em) {
  .booking-process .side-nav .nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 2rem;
  }
}
@media (max-width: 48em) {
  .booking-process .side-nav .nav {
    display: none;
  }
}
.booking-process .side-nav .dropdown-item:active, .booking-process .side-nav .dropdown-item:focus {
  background-color: #f2701d;
}
.booking-process .step-item {
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.booking-process .step-number {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #f2701d;
  color: #fff;
  font-weight: bold;
  margin: 0 auto 1rem auto;
}
.booking-process .step-title {
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.booking-process .step-img {
  border: 1px solid #dee2e6;
  border-radius: 4px;
  margin-top: auto;
}
.booking-process .step-header {
  background-color: #f2701d;
  color: white;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
.booking-process .step-header span {
  font-weight: 400;
  color: white;
  font-size: 14px;
}
.booking-process .final-summary-img {
  border: 2px solid #dee2e6;
  border-radius: 0.5rem;
  margin-top: 2rem;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-section .search-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 8px;
}
.faq-section .accordion-item {
  border-radius: 0px;
  border: none;
}
.faq-section .accordion-button {
  border-radius: 0px !important;
  border: none;
  background-color: #eaeaea;
  color: #626262;
}
.faq-section .accordion-button:focus, .faq-section .accordion-button:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-section .accordion-button.outer {
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  background-color: #f2701d;
  width: 100%;
  padding: 0.8rem 1rem;
}
.faq-section .accordion-button.outer:after {
  content: none;
}
.faq-section .accordion-collapse {
  border-radius: 0px;
  border: none;
}
.faq-section .accordion-collapse.outer {
  padding: 0.5rem 0rem;
}
.faq-section .accordion-body.outer {
  padding: 0;
}

.thsr-ticket-title .type {
  background-color: #f2701d;
}

.total {
  background-color: rgb(253.0962343096, 234.0585774059, 221.9037656904);
}

.order-list__pic {
  height: 160px;
}
.order-list__pic img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper {
  margin-top: 0px;
}