@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
body {
  font-family: "Noto Sans TC", "微軟正黑體", "新細明體", "細明體", Arial, "Arial Black", sans-serif;
  text-align: justify;
}

* {
  max-height: 99999px;
}

/* header */
.navbar-nav {
  flex-grow: 1;
  justify-content: end;
}

/* root */
:root {
  --swiper-theme-color: #ec236d;
  --rwd-60px: 60px;
  --rwd-75px: 75px;
}

@media (max-width: 1399px) {
  :root {
    --rwd-60px: 4.166vw;
    --rwd-75px: 5.2vw;
  }
}
@media (max-width: 1024px) {
  :root {
    --rwd-60px: 4.166vw;
    --rwd-75px: 5.2vw;
  }
}
@media (max-width: 768px) {
  :root {
    --rwd-60px: 36px;
    --rwd-75px: 48px;
  }
}
/*
@media (max-width: 480px) {
    :root{

    }
} */
@media (max-width: 320px) {
  :root {
    --rwd-75px: 11.12vw;
    --rwd-60px: 5.6vw;
  }
}
/* 通用 */
a {
  text-decoration: none;
}

.ul-reset {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.img {
  max-width: 100%;
}

.hover-bigger:hover {
  transform: scale(1.1);
}

.hover-smaller:hover {
  transform: scale(0.95);
}

.tr-1 {
  transition: all 1s ease;
}

.tr-5 {
  transition: all 0.5s ease;
}

/* fixed */
#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

#go-top {
  border: 0;
  background: none;
  bottom: 3vw;
  right: 30px;
  z-index: 999;
}

#go-top img {
  width: 5vw;
  height: auto;
}
@media (max-width: 1440px) {
  #go-top img {
    width: 5vw;
  }
}
@media (max-width: 991px) {
  #go-top img {
    width: 7vw;
  }
}
@media (max-width: 767px) {
  #go-top img {
    width: 12vw;
  }
}
@media (max-width: 576px) {
  #go-top img {
    width: 15vw;
  }
}

.buy-now {
  width: 7.5vw;
  position: fixed;
  z-index: 999;
  bottom: 120px;
  right: 30px;
  transition: all 0.5s ease-in-out;
  animation: buy-now 2s infinite;
}
@media (max-width: 1440px) {
  .buy-now {
    width: 9vw;
    bottom: 100px;
    right: 30px;
  }
}
@media (max-width: 991px) {
  .buy-now {
    width: 12vw;
    bottom: 100px;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .buy-now {
    width: 15vw;
    bottom: 90px;
    right: 30px;
  }
}
@media (max-width: 576px) {
  .buy-now {
    width: 21vw;
    bottom: 15vw;
    right: 30px;
  }
}

@keyframes buy-now {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(6%);
  }
}
/*
@media (max-width: 320px) {

    #menu{

    }
}
*/
/* 內容區塊通用 */
.section-block {
  padding: var(--rwd-75px) 0;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 1440px) {
  .section-block {
    padding: var(--rwd-60px) 0;
  }
}
/* menu */
.menu-box {
  position: absolute;
  z-index: 99;
  width: 100%;
}
@media (max-width: 991px) {
  .menu-box {
    align-items: center;
    justify-content: space-between;
  }
}
.menu-box > div {
  position: absolute;
}
.menu-box.show-menu {
  position: fixed;
}

.nav-link {
  font-weight: bold;
  font-size: 20px;
}

.menu-link .nav-item {
  margin-bottom: 8px;
}
.menu-link .nav-item a {
  color: #a48b78;
  font-weight: normal;
  font-size: 26px;
  text-align: center;
  margin: 0 8px;
  padding: 2px 16px;
  text-decoration: none;
  display: block;
}
.menu-link .nav-item a:hover {
  color: #a48b78;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .menu-link .nav-item a {
    font-size: 18px;
    margin: 4px 8px;
    padding: 2px 16px;
  }
}

.logos > a {
  display: inline-block;
  vertical-align: top;
}

.logos img {
  width: auto;
  height: 4.5vw;
  margin-left: 1vw;
  margin-top: 1vw;
}
@media (max-width: 575px) {
  .logos img {
    height: 13vw;
  }
}

.menu-box-nav {
  background-color: rgba(90, 147, 202, 0.8666666667);
}
@media (max-width: 991px) {
  .menu-box-nav > ul {
    border-radius: 0;
    padding-bottom: 4vw;
  }
}
@media (max-width: 575px) {
  .menu-box-nav > ul {
    padding-bottom: 3vw;
  }
}

.menu-box-btn img {
  display: block;
  padding: 0.5vw;
  width: 5vw;
  height: auto;
}
@media (max-width: 767px) {
  .menu-box-btn img {
    width: 7.5vw;
  }
}
@media (max-width: 575px) {
  .menu-box-btn img {
    width: 11vw;
  }
}

.menu-link ul {
  display: flex;
  align-items: center;
  flex-direction: row;
}

/* TODO: MENU RWD */
.menu-box.menu-add-bg {
  top: 0px;
}

.menu-link .nav-item {
  width: 100%;
  text-align: center;
}

.menu-link .nav-item a {
  padding: 8px;
}

.menu-link {
  position: fixed;
  top: 0px;
  right: 0;
  width: 30vw;
  padding-top: 64px;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  transform: translateX(100%);
}
@media (max-width: 991px) {
  .menu-link {
    width: 35vw;
  }
}
@media (max-width: 575px) {
  .menu-link {
    width: 100%;
  }
}

.menu-link ul {
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 16px;
}

.show-menu .menu-link {
  transform: translateX(0%);
}

.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  border: 2px solid var(--swiper-theme-color);
  background: unset;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--swiper-theme-color);
  opacity: 1;
}

.swiper-add-arrows {
  position: relative;
  width: 68%;
  margin: auto;
}

.swiper-add-arrows .swiper-button-next, .swiper-add-arrows .swiper-button-prev {
  opacity: 0;
  z-index: -99;
}

.arr-left, .arr-right {
  position: absolute;
  opacity: 1;
  cursor: pointer;
  width: 4vw;
  height: 4vw;
  top: 40%;
  background: url(../images/arr.png) center center no-repeat;
  background-size: 100% auto;
}

.arr-left:hover, .arr-right:hover {
  opacity: 0.5;
}

.arr-left {
  left: -4vw;
}

.arr-right {
  right: -4vw;
  transform: rotate(180deg);
}

.hide-3-items .arr-left, .hide-3-items .arr-right {
  display: none;
}

@media (max-width: 1600px) {
  .swiper-add-arrows {
    width: 80%;
  }
}
@media (max-width: 1199px) {
  .swiper-add-arrows {
    width: 85%;
  }
  .arr-left, .arr-right {
    background-size: 50%;
  }
}
@media (max-width: 1024px) {
  .swiper-add-arrows {
    width: 90%;
  }
  .arr-left, .arr-right {
    background-size: 50%;
  }
}
@media (max-width: 990px) {
  .hide-3-items .arr-left, .hide-3-items .arr-right {
    display: block;
  }
}
@media (max-width: 575px) {
  .arr-left {
    left: -4vw;
  }
  .swiper-add-arrows {
    width: 85%;
  }
  .arr-right {
    right: -4vw;
    transform: rotate(180deg);
  }
  .arr-left, .arr-right {
    background-size: 100%;
  }
}
.video-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 52vw;
  z-index: -1; /* 確保背景不遮擋其他內容 */
  overflow: hidden;
}

.video-background iframe {
  position: absolute;
  top: -2px;
  width: 101vw; /* 確保影片覆蓋整個背景 */
  height: 57vw;
  pointer-events: none; /* 防止用戶點擊影片 */
}

@media (max-width: 575px) {
  .video-background {
    height: 151vw;
  }
  .video-background iframe {
    height: 151vw;
    transform: unset;
    top: 0vw;
    left: 0;
  }
}
/*
HTML 結構

  <section id="kv" class="position-relative kv">
    <!-- btn -->
    <div id="mute-button" style="background-size: cover;position: absolute; z-index: 3;background-image: url('./images/music-op.png');opacity: 0.75; left: 48.75vw; bottom: 5vw; cursor: pointer;"></div>
    <!-- yt -->
    <div class="video-background">
      <div id="video-player"></div>
      <div id="video-player-m"></div>
  </div>

*/
body {
  font-weight: 400;
  color: #3e3a39;
}
p {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  font-size: unset;
}

:root {
  --fz-mid-title: 2vw;
  --fz-mid-l: 1.6vw;
  --fz-mid: 1.45vw;
  --fz-mid-s: 1.35vw;
  --fz-normal-l: 1.2vw;
  --fz-big-sw-title: 4.75vw;
  --fz-big-main-title-en: 3.35vw;
  --fz-big-title: 2.8vw;
  --fz-big: 2.35vw;
  --fz-big-s: 1.5vw;
  --fco-dark-info: #496071;
}

@media (max-width: 991px) {
  :root {
    --fz-mid-title: 2.75vw;
    --fz-mid-l: 2.2vw;
    --fz-mid: 2vw;
    --fz-mid-s: 1.85vw;
    --fz-normal-l: 1.65vw;
    --fz-big-title: 3.8vw;
    --fz-big: 3.2vw;
    --fz-big-s: 2vw;
  }
}
@media (max-width: 767px) {
  :root {
    --fz-mid-title: 3.5vw;
    --fz-mid-l: 2.75vw;
    --fz-mid: 2.5vw;
    --fz-mid-s: 2.35vw;
    --fz-normal-l: 2.25vw;
    --fz-big-title: 4.5vw;
    --fz-big: 4vw;
    --fz-big-s: 2.75vw;
  }
}
@media (max-width: 575px) {
  :root {
    --fz-mid-title: 5vw;
    --fz-mid-l: 4.75vw;
    --fz-mid: 4.5vw;
    --fz-mid-s: 4.5vw;
    --fz-normal-l: 4.5vw;
    --fz-big-sw-title: 8vw;
    --fz-big-main-title-en: 6vw;
    --fz-big-title: 7vw;
    --fz-big: 6vw;
    --fz-big-s: 5vw;
  }
}
img {
  display: block;
}

.table-active::after {
  content: "";
  display: block;
  width: 1.2vw;
  height: 2vw;
  background-image: url(../images/2x/btn-table-active@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 575px) {
  .table-active::after {
    width: 3vw;
    height: 5vw;
  }
}

.ff-en {
  font-family: Arial;
}

.ff-ct-main {
  font-family: tt-zhihei-chs-variable, sans-serif;
  font-style: normal;
  font-variation-settings: "wght" 800;
}

.fw-l {
  font-weight: 400;
}

.fw-n {
  font-weight: 500;
}

.fw-b {
  font-weight: bold;
}

.f-brown {
  color: #604c3f;
}

.f-co-tag {
  color: #81a4bf;
}

.f-co-green {
  color: #98d2c2;
}

.f-co-dark-info {
  color: var(--fco-dark-info);
}

.fs-mid-title {
  font-size: var(--fz-mid-title);
}

.fs-mid-l {
  font-size: var(--fz-mid-l);
  line-height: calc(var(--fz-mid-l) * 1.75);
}
.fs-mid-l.one-line {
  line-height: calc(var(--fz-mid-l) * 1.25);
}

.fs-mid {
  font-size: var(--fz-mid);
  line-height: calc(var(--fz-mid) * 1.75);
}
.fs-mid.one-line {
  line-height: calc(var(--fz-mid) * 1.25);
}

.fs-mid-s {
  font-size: var(--fz-mid-s);
  line-height: calc(var(--fz-mid-s) * 1.75);
}
.fs-mid-s.one-line {
  line-height: calc(var(--fz-mid-s) * 1.25);
}

.f-crowd {
  letter-spacing: -1px;
}

.fs-big-title {
  font-size: var(--fz-big-title);
}

.fs-big {
  font-size: var(--fz-big);
  line-height: calc(var(--fz-big) * 1.5);
}
.fs-big.one-line {
  line-height: calc(var(--fz-big) * 1.25);
}

.fs-big-s {
  font-size: var(--fz-big-s);
  line-height: calc(var(--fz-big-s) * 1.75);
}
.fs-big-s.one-line {
  line-height: calc(var(--fz-big-s) * 1.25);
}

.fs-n-l {
  font-size: var(--fz-normal-l);
  line-height: calc(var(--fz-normal-l) * 1.75);
}
.fs-n-l.one-line {
  line-height: calc(var(--fz-normal-l) * 1.2);
}

.img-title {
  width: 52%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.img-title.mb-title {
  margin-bottom: 2.5vw;
}
@media (max-width: 991px) {
  .img-title {
    width: 58%;
  }
}
@media (max-width: 767px) {
  .img-title {
    width: 66%;
  }
}
@media (max-width: 575px) {
  .img-title {
    width: 85%;
  }
}

.btn-more {
  display: block;
  height: 2vw;
  width: auto;
}
.btn-more:hover {
  transform: scale(0.97);
}
@media (max-width: 991px) {
  .btn-more {
    height: 3.5vw;
  }
}
@media (max-width: 575px) {
  .btn-more {
    height: 7vw;
  }
}

.mb-block {
  margin-bottom: 4.5vw;
}
@media (max-width: 991px) {
  .mb-block {
    margin-bottom: 8vw;
  }
}

.esg-block {
  background-image: url("../images/esg/esg-clouds-bottom.png"), url("../images/esg/seo-bg-cover.png"), url("../images/bg-paper.png");
  background-size: 100vw auto, 400px 400px, 100vw auto;
  background-position: left bottom, top center, top center;
  background-repeat: no-repeat, repeat, repeat;
  padding-bottom: 1.5vw;
  position: relative;
}

.esg-op {
  padding-top: 3.5vw;
  line-height: 2.8vw;
  padding-bottom: 2vw;
}
@media (max-width: 575px) {
  .esg-op {
    padding-top: 7.5vw;
    padding-bottom: 5vw;
  }
}

.fs-esg {
  font-size: 1.6vw;
  line-height: 2.4vw;
}
@media (max-width: 991px) {
  .fs-esg {
    font-size: 2.2vw;
    line-height: 3.3vw;
  }
}
@media (max-width: 767px) {
  .fs-esg {
    font-size: 2.5vw;
    line-height: 4.375vw;
  }
}
@media (max-width: 575px) {
  .fs-esg {
    font-size: 3.75vw;
    line-height: 6.5625vw;
  }
}

.esg-block-01 {
  background-image: url("../images/esg/esg-clouds.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 80% auto;
  position: relative;
}
.esg-block-01::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 34vw;
  height: 34vw;
  background-size: contain;
  right: 0;
  bottom: 5%;
  background-image: url("../images/esg/esg-img-01.png");
}
@media (max-width: 991px) {
  .esg-block-01 {
    overflow: hidden;
  }
  .esg-block-01::after {
    right: -3vw;
  }
}
@media (max-width: 767px) {
  .esg-block-01 {
    overflow: hidden;
  }
  .esg-block-01::after {
    width: 30vw;
    height: 30vw;
  }
}
@media (max-width: 575px) {
  .esg-block-01::after {
    content: none;
  }
}

.esg-flex {
  gap: 2vw;
}
.esg-flex li img {
  width: 11vw;
  margin-bottom: 0.75vw;
}
.esg-flex li {
  color: #7aacb7;
  font-size: 1.2vw;
  text-align: center;
}
@media (max-width: 991px) {
  .esg-flex li {
    font-size: 2vw;
  }
  .esg-flex li img {
    width: 12.5vw;
  }
}
@media (max-width: 767px) {
  .esg-flex li {
    font-size: 2.25vw;
  }
  .esg-flex li img {
    width: 14vw;
  }
}
@media (max-width: 575px) {
  .esg-flex li {
    font-size: 3.5vw;
  }
  .esg-flex li img {
    width: 22.5vw;
  }
}

.esg-block-02 {
  background-image: url("../images/esg/esg-img-02@1.5x_2026.png?1111");
  background-position: left top;
  background-size: 100vw auto;
  background-repeat: no-repeat;
  padding-top: 26vw;
  padding-bottom: 4.5vw;
  margin-top: -7.5vw;
}
@media (max-width: 991px) {
  .esg-block-02 {
    background-image: url("../images/esg/1x/img-green-bg-l.png"), url("../images/esg/1x/img-green-bg-r.png");
    background-position: left -6vw top, right 1vw top 16.5vw;
    background-size: 34.8411458333vw auto, 31.71875vw auto;
    background-repeat: no-repeat, no-repeat;
    padding-top: 12vw;
    padding-bottom: 4.5vw;
    margin-top: -7.5vw;
  }
}
@media (max-width: 767px) {
  .esg-block-02 {
    background-size: 32.7916666667vw auto, 30.1328125vw auto;
    background-position: left -8vw top, right 0.5vw top 16.5vw;
  }
}
@media (max-width: 575px) {
  .esg-block-02 {
    background-image: url("../images/esg/1x/img-green-bg-r.png");
    background-position: right 1vw top 25vw;
    background-size: 60vw auto;
    background-repeat: no-repeat;
    padding-top: 15vw;
    padding-bottom: 4.5vw;
    margin-top: -7.5vw;
  }
}

.esg-block-02-text {
  width: 28.6%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .esg-block-02-text {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .esg-block-02-text {
    width: 51%;
  }
}
@media (max-width: 575px) {
  .esg-block-02-text {
    margin-left: 1rem;
    width: 51%;
  }
}

.tab-esg {
  width: 33%;
  margin-bottom: 4vw;
  margin-top: 1vw;
}
@media (max-width: 991px) {
  .tab-esg {
    width: 45%;
    margin-top: 1.5vw;
    margin-bottom: 8vw;
  }
}
@media (max-width: 575px) {
  .tab-esg {
    width: 80%;
    margin-bottom: 8vw;
  }
}

.esg-block-info {
  width: 54%;
  align-items: center;
}
@media (max-width: 991px) {
  .esg-block-info {
    width: 85%;
  }
}

.esg-food-flex img {
  width: 18.33vw;
  margin-right: 1.5vw;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .esg-food-flex img {
    width: 27vw;
  }
}
@media (max-width: 575px) {
  .esg-food-flex img {
    width: 80vw;
    margin-bottom: 3.5vw;
  }
}

.free-block {
  position: relative;
  z-index: 1;
  padding-top: 3.5vw;
  background-image: url("../images/bg-paper.png");
  background-size: 100vw auto;
  color: #595757;
}
.free-block::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 17.18vw;
  background-image: url("../images/esg/bg-ab-place01-top.png");
  background-position: left top;
  background-size: 100vw auto;
  top: 0;
  z-index: 2;
}
.free-block > .img-title {
  position: relative;
  z-index: 3;
}
@media (max-width: 576px) {
  .free-block {
    padding-top: 0vw;
  }
}

.tours-block {
  width: 73%;
}
@media (max-width: 991px) {
  .tours-block {
    width: 88%;
    padding-bottom: 1.5vw;
  }
}

.tour-b-line {
  border-bottom: 2px solid rgba(78, 174, 215, 0.4);
}

.tour-title {
  display: flex;
}
.tour-title .f-ch {
  display: flex;
}
.tour-title .f-ch span {
  width: 7.2vw;
  height: 7.2vw;
  font-size: 5.4vw;
  display: flex;
  justify-content: center;
  align-items: baseline;
  background-color: #42b2d9;
  border-radius: 999px;
  color: #fff;
}
@media (max-width: 575px) {
  .tour-title .f-ch span {
    width: 9.88vw;
    height: 9.88vw;
    font-size: 7.6vw;
  }
}
.tour-title .f-en {
  color: #42b2d9;
  font-size: 5.75vw;
  font-weight: bold;
}
@media (max-width: 575px) {
  .tour-title .f-en {
    font-size: 6.4vw;
  }
}
.tour-title .info {
  color: #496071;
}
.tour-title .info p.loei {
  width: 60%;
}
@media (max-width: 991px) {
  .tour-title .info p.loei {
    width: 90%;
  }
}
@media (max-width: 575px) {
  .tour-title {
    flex-direction: column;
  }
  .tour-title .info p.loei {
    width: 100%;
  }
}

.tour-title-01 {
  padding-bottom: 2vw;
}

.fs-big-sw-title {
  font-size: var(--fz-big-sw-title);
}

.fs-main-en-title {
  font-size: var(--fz-big-main-title-en);
  color: #4eaed7;
}

.fco-en-sub-title {
  color: #4eaed7;
}

.fco-en-sub-title {
  color: #97d5e7;
}

.sw-tour-main {
  margin-bottom: 4.5vw;
}
.sw-tour-main .sw-tour-main-box {
  width: 38vw;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 991px) {
  .sw-tour-main {
    margin-bottom: 2vw;
  }
  .sw-tour-main .sw-tour-main-box {
    top: 2vw;
    width: 42.5vw;
  }
}
@media (max-width: 767px) {
  .sw-tour-main .sw-tour-main-box {
    top: 0;
    position: relative;
    width: 100%;
  }
}

.block-sw-info-bg-box {
  width: 57%;
  background-color: #97d5e7;
  color: #fff;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .block-sw-info-bg-box {
    width: 100%;
  }
}

.block-sw-info-box {
  width: 45%;
}
@media (max-width: 767px) {
  .block-sw-info-box {
    width: 100%;
  }
}

.tour-park-flex {
  justify-content: space-between;
  margin-bottom: 1.5vw;
}
@media (max-width: 991px) {
  .tour-park-flex {
    align-items: center;
  }
}
@media (max-width: 575px) {
  .tour-park-flex {
    flex-direction: column;
  }
}

.tour-park-photos {
  width: 32vw;
}
@media (max-width: 575px) {
  .tour-park-photos {
    width: auto;
  }
}

.tour-park-info {
  width: 32vw;
}
@media (max-width: 991px) {
  .tour-park-info {
    flex-grow: 1;
  }
}
@media (max-width: 575px) {
  .tour-park-info {
    width: auto;
  }
}

.swiperLines-box {
  background-color: #97d5e7;
  padding: 1.5vw 2.5vw;
  position: relative;
  margin-bottom: 4.5vw;
}
.swiperLines-box .swiperLines {
  width: 75%;
}
.swiperLines-box .title-box {
  width: 25%;
}
@media (max-width: 991px) {
  .swiperLines-box {
    margin-bottom: 8vw;
  }
}
@media (max-width: 767px) {
  .swiperLines-box .swiperLines {
    width: 60%;
  }
  .swiperLines-box .title-box {
    width: 40%;
  }
}
@media (max-width: 575px) {
  .swiperLines-box .swiperLines {
    width: 47%;
  }
  .swiperLines-box .title-box {
    width: 52.5%;
  }
}

.tour-title-02 {
  padding-bottom: 2vw;
}
.tour-title-02 .fs-mid {
  width: 70%;
  margin-left: auto;
  padding-right: 2vw;
}
.tour-title-02 .fs-main-en-title {
  padding-right: 2vw;
}
@media (max-width: 991px) {
  .tour-title-02 .fs-mid {
    width: 100%;
  }
}

.tour-box-03 .img-box {
  padding: 2vw 6.5vw 3.5vw 0;
}
.tour-box-03 .img-box img {
  width: 23vw;
}
.tour-box-03 .font-box {
  padding-top: 2vw;
}
@media (max-width: 991px) {
  .tour-box-03 .img-box {
    padding: 2vw 5vw 0vw 0;
  }
}
@media (max-width: 575px) {
  .tour-box-03 .img-box {
    padding: 2vw 0vw;
  }
  .tour-box-03 .img-box img {
    width: 100%;
  }
}

.title-place-block {
  background-image: url("../images/tour/bg-ab-place02-top.png");
  background-size: 100vw auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.tour-relax-block {
  background-color: #e5f2e8;
}

.green-life-block {
  background: linear-gradient(to bottom, #e5f2e8, #e5f2e8 60%, #fff 100%);
}

.green-life-title {
  font-size: 3.5vw;
}
@media (max-width: 991px) {
  .green-life-title {
    font-size: 4.8125vw;
  }
}
@media (max-width: 767px) {
  .green-life-title {
    font-size: 4.5vw;
  }
}
@media (max-width: 575px) {
  .green-life-title {
    margin-top: 2vw;
    font-size: 7.5vw;
    margin-bottom: 0;
  }
}

.green-life-block-info {
  margin-right: 2vw;
}
.green-life-block-info a.w-fit {
  position: absolute;
}
@media (max-width: 575px) {
  .green-life-block-info a.w-fit {
    margin-top: 2vw;
    position: relative;
  }
}

.green-life-block-img {
  width: 24.5vw;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .green-life-block-img {
    width: 32vw;
  }
}
@media (max-width: 575px) {
  .green-life-block-img {
    width: 100%;
  }
}

.bike-box {
  border-radius: 999px;
  background-color: #a59ecc;
  width: 81.25vw;
}

.title-sub-bike {
  width: 28.8vw;
  display: block;
}

.table.fly {
  width: 53.4375vw;
  font-size: 1.0416666667vw;
  margin-left: auto;
  margin-right: auto;
}
.table.fly .fly-line {
  font-size: 1.3541666667vw;
  font-weight: 600;
  color: #727171;
}
.table.fly th {
  color: #fff;
  background-color: #919cce;
}
.table.fly th,
.table.fly td {
  border-bottom: none;
}
.table.fly td {
  background-color: #e7e7f4;
  padding: 0.15625vw 0;
}
.table.fly tr.top-line > td {
  border-top: 1px solid #fff;
}
@media (max-width: 1399px) {
  .table.fly {
    font-size: 1.5vw;
  }
  .table.fly .fly-line {
    font-size: 2.25vw;
  }
}
@media (max-width: 991px) {
  .table.fly {
    width: 75%;
    font-size: 2vw;
  }
  .table.fly .fly-line {
    font-size: 2.5vw;
  }
}
@media (max-width: 767px) {
  .table.fly {
    width: 88%;
    font-size: 2.75vw;
  }
  .table.fly .fly-line {
    font-size: 3vw;
  }
  .table.fly td {
    background-color: #e7e7f4;
    padding: 1vw 0;
  }
}
@media (max-width: 767px) {
  .table.fly {
    width: 90%;
    font-size: 3.75vw;
  }
  .table.fly .fly-line {
    font-size: 4.25vw;
  }
}

.trtle-trafic {
  font-size: 2.7083333333vw;
  padding-top: 0.2708333333vw;
}
@media (max-width: 991px) {
  .trtle-trafic {
    font-size: var(--fz-mid-title);
  }
}

table.trafic {
  width: 59.4270833333vw;
  margin-left: auto;
  margin-right: auto;
  border-color: #6278ba;
  font-size: 1.0416666667vw;
}
table.trafic .trafic-plane td {
  background-color: #e2e2e3;
  color: #6278ba;
  font-size: 2.0833333333vw;
}
table.trafic .trafic-plane td:nth-child(1) {
  width: 60%;
}
table.trafic .td-rb {
  border-right: 1px solid #6278ba;
}
table.trafic p {
  color: #604c3f;
}
@media (max-width: 991px) {
  table.trafic {
    width: 80.2265625vw;
    font-size: 2vw;
  }
  table.trafic .trafic-plane td {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  table.trafic {
    width: 88%;
    font-size: 2.5vw;
  }
  table.trafic .trafic-plane td {
    font-size: 3.25vw;
  }
}
@media (max-width: 575px) {
  table.trafic {
    width: 90%;
    font-size: 3.75vw;
    margin-bottom: 15vw;
  }
  table.trafic .trafic-plane td {
    font-size: 4vw;
  }
}

.trafic-place-td {
  font-size: 2.34375vw;
  line-height: 2.625vw;
  padding: 0.75vw;
}
@media (max-width: 991px) {
  .trafic-place-td {
    font-size: 3.25vw;
    line-height: 3.64vw;
  }
}
@media (max-width: 575px) {
  .trafic-place-td {
    font-size: 5vw;
    line-height: 5.6vw;
  }
}

.trafic-icon {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media (max-width: 991px) {
  .trafic-icon {
    width: 3vw;
    height: 3vw;
  }
}
@media (max-width: 767px) {
  .trafic-icon {
    width: 3.75vw;
    height: 3.75vw;
    padding-top: 0.5vw;
  }
}
@media (max-width: 575px) {
  .trafic-icon {
    display: none;
  }
}

.ul-trafic {
  padding: 0.25vw;
}
.ul-trafic .trafic-icon {
  margin-right: 0.5vw;
}

.table-block {
  margin-bottom: 4.5vw;
}

.table-price {
  font-size: 2.5vw;
  font-style: italic;
}
.table-price .main-font {
  font-size: 4.1666666667vw;
}
@media (max-width: 575px) {
  .table-price {
    font-size: 4.5vw;
  }
  .table-price .main-font {
    font-size: 6vw;
  }
}

.icon-table-fly {
  display: inline-block;
  width: 1.40625vw;
  margin-left: 0.25vw;
  margin-right: 0.25vw;
}

.table-tab {
  width: 56vw;
  gap: 8px;
}
@media (max-width: 991px) {
  .table-tab {
    width: 76vw;
  }
}
@media (max-width: 767px) {
  .table-tab {
    width: 88%;
  }
}

.btn-table-tab {
  background-color: #e84475;
  font-size: 1.40625vw;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 0.5vw;
  border-radius: 0.75vw;
}
@media (max-width: 991px) {
  .btn-table-tab {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  .btn-table-tab {
    font-size: 2.5vw;
  }
}
@media (max-width: 575px) {
  .btn-table-tab {
    font-size: 3.75vw;
  }
}/*# sourceMappingURL=all.css.map */