@charset "UTF-8";
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%;
  font: inherit;
  vertical-align: baseline;
}

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;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

a, img {
  border: none;
}

a {
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
:root {
  --black-1: #000;
  --black-2: #444343;
  --black-3: #505050;
  --orange-1: #ca4f0f;
  --orange-2: #ff7d28;
  --light-orange-1: #feeadd;
  --light-orange-2: #fcf4ea;
  --light-orange-3: #ffdcb2;
  --white: #fff;
  --gray-1: #999;
  --gray-2: #E9E9E9;
  --gray-3: #929292;
  --light-gray-1: #f2f2f2;
  --price: #db5009;
  --light-green-1: #54a388;
  --light-green-2: #a9d0c3;
}

@media (max-width: 768px) {
  html {
    scroll-behavior: smooth;
  }
}

a, a:hover, a:active, a:visited {
  color: var(--black-1);
}

.wow:first-child {
  visibility: hidden;
}

header h1 {
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  width: 100%;
}

.respond-menu {
  margin: 45px 0 40px 0;
}

.list--disc {
  margin-left: 25px;
}
.list--disc > li {
  list-style: disc;
}

.list--normal > li {
  list-style-type: none;
}

.primary-orange {
  color: var(--orange-2);
}

.container {
  font: 15px/1.8 arial, 微軟正黑體;
  color: var(--black-2);
}
.container img {
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.swiper img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.swiper .swiper-slide {
  box-sizing: border-box;
  display: flex;
  overflow: hidden;
}
.swiper .swiper-pagination-bullet {
  background: var(--white);
  width: 10px;
  height: 10px;
  opacity: 0.9;
}
.swiper .swiper-pagination-bullet-active {
  border-radius: 10px;
  background: var(--orange-1);
  width: 40px;
  opacity: 1;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: auto;
  height: auto;
}
.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
  color: #192a48;
}
.swiper .swiper-button-prev {
  left: 0;
}
.swiper .swiper-button-next {
  right: 0;
}

.heading {
  position: relative;
  aspect-ratio: 16/5;
}
@media (max-width: 768px) {
  .heading {
    margin-top: 40px;
    aspect-ratio: 192/125;
  }
}
.heading .heading__slide {
  background: var(--gray-2);
  display: block;
}
.heading .swiper-pagination.swiper-pagination-bullets {
  bottom: 0;
}

.heading__search {
  position: absolute;
  right: 5%;
  top: 50%;
  z-index: 50;
  transform: translateY(-45%);
  width: 300px;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1400px) {
  .heading__search {
    right: 2%;
  }
}
@media (max-width: 1000px) {
  .heading__search {
    background: var(--gray-2);
    position: relative;
    width: 100%;
    min-height: auto;
    top: unset;
    right: unset;
    transform: unset;
  }
}

.mainNav {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  background: var(--white);
  box-shadow: 0 4px 5px rgba(181, 181, 181, 0.2);
  padding: 8px 0 0;
  position: sticky;
  top: 40px;
  z-index: 15;
}
@media (max-width: 1100px) {
  .mainNav {
    gap: 10px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .mainNav {
    display: none;
  }
}
.mainNav .d-flex {
  justify-content: center;
}
.mainNav .textLink {
  display: block;
  line-height: normal;
}
.mainNav .title {
  line-height: 32px;
}

.nav-style .textLink {
  border-radius: 5px;
  border: 1px solid var(--orange-1);
  padding: 5px;
  color: var(--orange-1) !important;
  transition: all 0.3s linear;
}
.nav-style .textLink.active, .nav-style .textLink:hover {
  background: var(--orange-1);
  color: var(--white) !important;
}
.nav-style .active .textLink {
  background: var(--orange-1);
  color: var(--white) !important;
}

.mainNav-tab {
  gap: 5px;
}
@media (max-width: 1100px) {
  .mainNav-tab {
    flex-wrap: wrap;
  }
}

.mainNav-tab__item .textLink {
  padding: 10px 10px 3px 10px;
  border-bottom: 2px solid var(--white);
  font-size: 20px;
  font-weight: bold;
}
.mainNav-tab__item.on .textLink, .mainNav-tab__item:hover .textLink {
  color: var(--orange-1);
  border-bottom: 2px solid var(--orange-1);
}

.mainNav-menu {
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  margin-bottom: 8px;
}
@media (max-width: 1100px) {
  .mainNav-menu {
    margin-bottom: 0;
  }
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 0 60px 0;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  main {
    max-width: auto;
    padding: 20px 20px 60px 20px;
  }
}

.tholiday {
  border-radius: 15px;
  border: 3px solid var(--light-green-2);
  padding: 30px 20px 20px;
  margin: 60px 0 20px;
  position: relative;
}
.tholiday .icon {
  display: block;
  width: 40px;
  height: 40px;
  background: var(--gray-3);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  flex: 0 0 auto;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .tholiday .icon {
    width: 30px;
    height: 30px;
  }
}
.tholiday .dm-icon-reschedule {
  -webkit-mask-image: url(../img/icon-reschedule.svg);
          mask-image: url(../img/icon-reschedule.svg);
}
.tholiday .dm-icon-mobile-ticket {
  -webkit-mask-image: url(../img/icon-mobile-ticket.svg);
          mask-image: url(../img/icon-mobile-ticket.svg);
}
.tholiday .dm-icon-points {
  -webkit-mask-image: url(../img/icon-points.svg);
          mask-image: url(../img/icon-points.svg);
}

.tholiday__title {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 3px;
  white-space: nowrap;
  padding: 0 10px;
  background: var(--white);
  color: var(--light-green-1);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .tholiday__title {
    font-size: 26px;
  }
}

.tholiday-info {
  gap: 10px;
}
@media (max-width: 768px) {
  .tholiday-info {
    flex-direction: column;
    padding: 0 10px;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .tholiday-info {
    gap: 10px;
    padding: 0;
  }
}

.tholiday-info__item {
  gap: 10px;
  width: calc((100% - 20px) / 3);
}
@media (max-width: 768px) {
  .tholiday-info__item {
    width: 100%;
  }
}

.tholiday-info__content {
  font-size: 14px;
  line-height: 1.6;
}

.tholiday-info__title {
  font-size: 18px;
  font-weight: bold;
}

.promo-banner {
  padding: 20px 0 40px;
  position: relative;
  z-index: 10;
  aspect-ratio: 15/2;
  overflow: hidden;
}
@media (max-width: 768px) {
  .promo-banner {
    aspect-ratio: 29/10;
  }
}
.promo-banner .textLink {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.promo-banner .textLink:hover {
  transform: translateY(5px);
}

.product {
  padding: 50px 0;
}
.product.scrollto {
  scroll-margin-top: 150px;
}
@media (max-width: 768px) {
  .product.scrollto {
    scroll-margin-top: 0;
  }
}

.scroll-padding {
  display: grid;
  gap: 30px;
}

.product-main {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.product-main__title {
  font-size: 30px;
  font-weight: bold;
  line-height: normal;
  padding: 0 10px;
  background: linear-gradient(0, var(--light-orange-1) 40%, transparent 40%);
}
@media (max-width: 575px) {
  .product-main__title {
    font-size: 26px;
  }
}

.product-main__content {
  text-align: center;
}

.product-grid {
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.product-grid:empty {
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-gray-1);
  padding: 20px;
}
.product-grid:empty:after {
  content: "目前暫無行程，請參考其他地區...";
  font-size: 18px;
  line-height: normal;
  color: #7e7e7e;
}

.product-promo {
  margin-top: 10px;
  aspect-ratio: 30/7;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
.product-promo:hover {
  transform: translateY(5px);
}
.product-promo .product-promo__link {
  display: block;
  border-radius: 15px;
  overflow: hidden;
}

.product-item__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  color: var(--white);
  background: var(--gray-3);
  font-size: 18px;
  font-weight: bold;
  line-height: normal;
  padding: 5px 15px;
  border-radius: 0 0 10px 0;
  transition: all 0.3s linear;
}
@media (max-width: 575px) {
  .product-item__label {
    font-size: 15px;
  }
}

.product-item__img {
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: radial-gradient(circle at center, #EEE 0%, #d3d3d3 100%);
}
.product-item__img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: scale(1, 1);
  transition: all 0.5s ease-out;
}

.product-item__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.product-item {
  border-radius: 15px;
  width: calc((100% - 50px) / 3);
  background: var(--light-gray-1);
  overflow: hidden;
  position: relative;
  transition: all 0.3s linear;
}
@media (max-width: 1100px) {
  .product-item {
    width: calc((100% - 25px) / 2);
  }
}
@media (max-width: 575px) {
  .product-item {
    width: 100%;
  }
}
.product-item:hover {
  background: var(--light-orange-2);
}
.product-item:hover .product-item__label {
  background: #fd8e8e;
}
.product-item:hover img {
  transform: scale(1.1, 1.1);
}

.product-item__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 5px;
}

.product-item__title {
  font-size: 18px;
  font-weight: bold;
  color: var(--black-1);
}

.product-item__price {
  margin-top: auto;
  justify-content: center;
  align-items: baseline;
  padding-top: 10px;
  gap: 5px;
  line-height: normal;
  letter-spacing: 1px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .product-item__price {
    flex-wrap: wrap;
    gap: 10px 5px;
  }
}
.product-item__price .textPrice {
  color: var(--price);
  font-size: 30px;
  font-weight: bold;
}

.product-item__departure {
  border-radius: 5px;
  background: var(--light-orange-3);
  padding: 5px 10px;
}
.product-item__departure:after {
  content: "出發";
}

.product-more {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-more__btn {
  display: block;
  border-radius: 5px;
  color: var(--orange-1);
  border: 1px solid var(--orange-1);
  padding: 8px 10px;
  line-height: normal;
  transition: all 0.3s linear;
}
.product-more__btn:hover {
  color: var(--white);
  background: var(--orange-1);
}

.flow {
  position: fixed;
  bottom: 210px;
  right: 0;
  z-index: 100;
}
@media (max-width: 768px) {
  .flow {
    right: 10px;
    bottom: 220px;
  }
}
.flow .flow__link {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .flow .flow__link {
    width: 60px;
  }
}

.bankCode-grid {
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px) {
  .bankCode-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .bankCode-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 370px) {
  .bankCode-grid {
    grid-template-columns: auto;
  }
}

.bankCode-item {
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 0 7px 0px rgba(70, 70, 70, 0.2);
  transition: all 0.3s linear;
}
.bankCode-item:hover {
  background: var(--light-orange-2);
}

.bankCode-item__link {
  display: block;
  padding: 15px;
  cursor: pointer;
}

.bankCode__content {
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.bankCode-item__title {
  font-size: 18px;
  font-weight: bold;
  color: var(--black-1);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--black-2);
}

.bankCode-num {
  font-size: 18px;
  font-weight: bold;
}

.notice {
  flex-direction: column;
  gap: 20px;
}
.notice .textLink {
  text-decoration: underline;
}
.notice .textLink:hover {
  color: var(--orange-2);
}

.notice__title {
  font-size: 30px;
  font-weight: bold;
  line-height: normal;
  text-align: center;
}

.qa {
  gap: 10px;
  counter-reset: step-counter;
}
.qa .dm-icon-arrow {
  display: block;
  width: 15px;
  height: 15px;
  background: var(--black-3);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  flex: 0 0 auto;
  -webkit-mask-image: url(../img/icon-arrow.svg);
          mask-image: url(../img/icon-arrow.svg);
  transform: rotate(90deg);
  margin-top: 5px;
  transition: transform 0.3s ease;
  grid-column: 3;
}

.qa__title {
  padding: 0 20px 0 5px;
  grid-column: 2;
}

.qa__ques {
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 20px 10px;
  background: var(--light-gray-1);
  transition: all 0.3s linear;
  cursor: pointer;
  display: grid;
  grid-column: 1/4;
  grid-template-columns: subgrid;
}
.qa__ques:before {
  content: "Q" counter(step-count) ".";
  font-size: 18px;
  letter-spacing: 1px;
  grid-column: 1;
}
@media (max-width: 768px) {
  .qa__ques:before {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .qa__ques {
    font-size: 16px;
  }
}

.qa__ans {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease, padding 0.5s ease;
  padding: 5px 20px 10px 5px;
  display: block;
  font-size: 16px;
  grid-column: 2/3;
}

.qa__item {
  border-radius: 10px;
  counter-increment: step-count;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
}
.qa__item.active {
  background: var(--light-orange-2);
}
.qa__item.active .dm-icon-arrow {
  transform: rotate(-90deg);
  background: var(--orange-2);
}
.qa__item.active .qa__ques {
  color: var(--orange-2);
  background: transparent;
  padding: 15px 20px 0;
}
.qa__item.active .qa__ans {
  max-height: 800px;
  opacity: 1;
}

.remark {
  border-radius: 2px;
  background: var(--light-gray-1);
  padding: 15px 20px;
}

.remark__content {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.step {
  counter-reset: step-counter;
  gap: 60px 40px;
  flex-wrap: wrap;
  padding: 0 40px;
  font-size: 16px;
}
@media (max-width: 960px) {
  .step {
    padding: 0;
    gap: 60px 20px;
  }
}
.step .style-line {
  width: 100%;
  height: 2px;
  background: #3f3f3f;
}

.step-item {
  counter-increment: step-count;
  width: calc((100% - 40px) / 2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .step-item {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 575px) {
  .step-item {
    width: 100%;
  }
}
.step-item:before {
  content: "Step" counter(step-count, decimal);
  display: inline-flex;
  font-size: 20px;
  line-height: normal;
  text-shadow: 0 0 0 #FFF;
  letter-spacing: 1px;
  padding: 8px 10px 5px 10px;
  color: var(--white);
  background: #3f3f3f;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #3f3f3f;
}

.step__content {
  padding: 10px 0;
  font-weight: bold;
  flex-grow: 1;
}

.step-img__grid {
  justify-content: center;
  gap: 10px;
  width: 100%;
}
@media (max-width: 370px) {
  .step-img__grid {
    flex-direction: column;
    align-items: center;
  }
}

.step-img__item {
  border-radius: 8px;
  width: calc((100% - 10px) / 2);
  aspect-ratio: 47/97;
  overflow: hidden;
}
@media (max-width: 370px) {
  .step-img__item {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.step-img__item img {
  max-width: 470px;
}