@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: 80px;
    right: 30px;
  }
}

@keyframes buy-now {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
}
/*
@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;
}

.nav-item {
  margin-bottom: 8px;
}
.nav-item a {
  color: #fff;
  font-weight: normal;
  font-size: 22px;
  text-align: center;
  margin: 0 8px;
  padding: 2px 16px;
  text-decoration: none;
  display: block;
  background-color: #5a93ca;
  border-radius: 32px;
}
.nav-item a:hover {
  color: #5a93ca;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .nav-item a {
    font-size: 18px;
    margin: 4px 8px;
    padding: 2px 16px;
  }
}

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

.logos img {
  height: 5vw;
  width: auto;
  margin-left: 1vw;
}
@media (max-width: 991px) {
  .logos img {
    width: auto;
    height: 7.6vw;
  }
}
@media (max-width: 575px) {
  .logos img {
    height: 12vw;
  }
}

.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 */
@media (max-width: 991px) {
  .menu-box.menu-add-bg {
    top: 0px;
  }
  .nav-item {
    width: 100%;
    text-align: center;
  }
  .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%);
    background: #ddd;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .menu-link {
    width: 35vw;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .menu-link {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .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%;
  }
}
.kv {
  height: 56.25vw;
  background-image: url("../images/kv/kv-bg.jpg?052902");
  background-size: auto 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .kv {
    background-image: url("../images/bg-temp.jpg");
    background-size: auto;
    height: 156.4537157757vw;
  }
}

.outer-box {
  width: 100vw;
  height: 56.25vw;
  animation: outer-box 2s ease-in-out infinite alternate;
  bottom: 0;
  position: relative;
}
@media (max-width: 767px) {
  .outer-box {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 62.3958333333vw;
  }
}

.bg-looping {
  width: 100vw;
  height: 31.1979166667vw;
  overflow: hidden;
  position: absolute;
  bottom: 0;
}
.bg-looping img {
  animation: bg-looping 1s steps(5) infinite;
  position: absolute;
  left: 0;
  top: 0;
}
.bg-looping {
  transform: translate3d(0, 0, 0);
}
@media (max-width: 767px) {
  .bg-looping {
    width: 200vw;
    background-size: 100% auto;
    left: -100vw;
    height: 62.3958333333vw;
    background-position: 0 0;
  }
}

@keyframes bg-looping {
  0% {
    top: 0%;
  }
  100% {
    top: -500%;
  }
}
@keyframes music-looping {
  0% {
    top: 0%;
  }
  100% {
    top: -300%;
  }
}
@keyframes outer-box {
  0% {
    transform: translateY(0.5vw);
  }
  100% {
    transform: translateY(-0.5vw);
  }
}
@keyframes outer-box-m-train {
  0% {
    transform: translateY(0.5vw) rotate(-5deg);
  }
  100% {
    transform: translateY(-0.5vw) rotate(-5deg);
  }
}
@keyframes photos {
  0% {
    transform: translateY(0.75%);
  }
  100% {
    transform: translateY(-0.75%);
  }
}
.kv-photo1 {
  top: 36%;
  animation: photos 2s ease-in-out infinite alternate;
  animation-delay: -0.75s;
}

.kv-photo2 {
  width: 34.9479166667vw;
  top: 39%;
  left: 34%;
  animation: photos 2s ease-in-out infinite alternate;
  animation-delay: -2s;
}

.kv-train-box {
  position: absolute;
  width: 30vw;
  left: 39%;
  bottom: 5%;
  z-index: 9;
  animation: outer-box 2s ease-in-out infinite alternate;
}
.kv-train-box > img {
  animation: photos 0.3s linear infinite alternate;
  transform-origin: left 75%;
}
@media (max-width: 767px) {
  .kv-train-box {
    width: 60vw;
    left: 19%;
    bottom: 3%;
    z-index: 9;
    animation: outer-box-m-train 2s ease-in-out infinite alternate;
    transform: rotate(-3.5deg);
  }
}

.kv-train-box-02 {
  position: absolute;
  width: 30vw;
  left: 39%;
  bottom: 5%;
  z-index: 9;
  animation: outer-box 2s ease-in-out infinite alternate;
}
.kv-train-box-02 > img {
  animation: trains 6s linear infinite;
  transform-origin: left 75%;
}
@media (max-width: 767px) {
  .kv-train-box-02 {
    animation: outer-box-m-train 2s ease-in-out infinite alternate;
    width: 60vw;
    left: 19%;
    bottom: 3%;
    z-index: 9;
    transform: rotate(-3.5deg);
  }
}

@keyframes trains {
  0%, 10% {
    transform: translateX(0%) translateY(0%) rotate(-2.5deg);
  }
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    transform: translateX(40%) translateY(10%) rotate(-5deg);
  }
  100% {
    transform: translateX(200%) translateY(-24%) rotate(-2.5deg);
  }
}
.kv-mountain {
  width: 18.6458333333vw;
  position: absolute;
  left: 8%;
  top: 79%;
  z-index: 9;
}

.kv-music {
  z-index: 9;
  position: absolute;
  top: 70%;
  left: 79%;
  width: 18.75vw;
  height: 11.1979166667vw;
  overflow: hidden;
}
.kv-music img {
  position: absolute;
  width: 100%;
  top: 0;
  animation: music-looping 1s steps(3) infinite alternate;
}

.kv-plane {
  width: 12.7604166667vw;
  position: absolute;
  left: calc(50% - 6.3802083333vw);
  top: 5%;
  animation: outer-box 2s linear infinite alternate;
}
@media (max-width: 767px) {
  .kv-plane {
    width: 35vw;
    left: calc(50% - 17.5vw);
    top: 10%;
  }
}

.kv-milk {
  width: 8.59375vw;
  position: absolute;
  z-index: 9;
}
@media (max-width: 767px) {
  .kv-milk {
    width: 22.5vw;
  }
}

.m-milk {
  top: 34%;
  left: 14%;
}
@media (max-width: 767px) {
  .m-milk {
    top: 47%;
    left: -4%;
  }
}

.m-cake {
  top: 38%;
  left: 41%;
}
@media (max-width: 767px) {
  .m-cake {
    top: 59%;
    left: 82%;
  }
}

.link-more {
  top: 56%;
  left: 56%;
  width: 12%;
  height: 4%;
  opacity: 0;
}
@media (max-width: 767px) {
  .link-more {
    top: 31%;
    left: 33%;
    width: 38%;
    height: 4%;
  }
}

.link-form {
  top: 80%;
  left: 56%;
  width: 12%;
  height: 4%;
  opacity: 0;
}
@media (max-width: 767px) {
  .link-form {
    top: 87%;
    left: 16%;
    width: 38%;
    height: 4%;
  }
}

body {
  background-color: #f4f4f4;
}
:root {
  --bs-box-shadow: rgba(144, 137, 126, 0.87);
  --bs-primary-rgb: 13, 100, 202;
  --color-primary: #5a93ca;
  --color-secondry: #ff57a1;
  --fz-normal: 1.1vw;
}

@media (max-width: 1199px) {
  :root {
    --fz-normal: 1.4vw;
  }
}
@media (max-width: 991px) {
  :root {
    --fz-normal: 1.75vw;
  }
}
@media (max-width: 575px) {
  :root {
    --fz-normal: 3.5vw;
  }
}
img {
  display: block;
}

p {
  font-size: 1.1458333333vw;
  line-height: 2.0052083333vw;
  font-weight: 500;
}
p .map-biger {
  font-size: 1.6666666667vw;
}
@media (max-width: 1199px) {
  p {
    font-size: 1.25vw;
    line-height: 2.1875vw;
  }
  p .map-biger {
    font-size: 1.875vw;
  }
}
@media (max-width: 991px) {
  p {
    font-size: 1.5vw;
    line-height: 2.625vw;
  }
  p .map-biger {
    font-size: 2.25vw;
  }
}
@media (max-width: 575px) {
  p {
    font-size: 3.5vw;
    line-height: 6.125vw;
  }
  p .map-biger {
    font-size: 5.25vw;
  }
}

.title-sub-ff {
  font-family: tt-zhihei-chs-variable, sans-serif;
  font-style: normal;
  font-weight: 600;
}

.title-ff {
  font-family: "Noto Serif TC", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.table-block {
  background-image: url("../images/bg-temp.jpg");
  padding-top: 3.5vw;
  background-position: left top;
}

span.pink {
  color: var(--color-secondry);
}

.title-font {
  font-size: 3.0208333333vw;
  color: var(--color-primary);
  font-weight: 800;
  padding-bottom: 1.25vw;
  margin-bottom: 0.625vw;
}
.title-font span.cirs {
  display: inline-flex;
  margin-left: 0.78125vw;
  margin-right: 0.78125vw;
}
.title-font span.cirs span {
  display: flex;
  color: #fff;
  width: 4.375vw;
  height: 4.375vw;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  margin-left: -0.3645833333vw;
  margin-right: -0.3645833333vw;
  padding-bottom: 0.3645833333vw;
}
.title-font span.cirs.span-b-blue span {
  background-color: var(--color-primary);
}
.title-font span.cirs.span-b-pink span {
  background-color: var(--color-secondry);
}
@media (max-width: 1199px) {
  .title-font {
    font-size: 3.75vw;
  }
  .title-font span.cirs span {
    width: 4.5vw;
    height: 4.8vw;
    margin-left: -0.1vw;
    margin-right: -0.1vw;
    padding-bottom: 0.2vw;
  }
}
@media (max-width: 575px) {
  .title-font {
    font-size: 6vw;
  }
  .title-font span.cirs span {
    width: 8vw;
    height: 8vw;
    margin-left: -0.3vw;
    margin-right: -0.3vw;
    padding-bottom: 0.5vw;
  }
}
.title-font span.under-dot {
  position: relative;
}
.title-font span.under-dot::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.8854166667vw;
  height: 0.7291666667vw;
  width: 100%;
  background-image: url("../images/bg-desh-02.svg");
}
.title-font.table-title {
  color: #fff;
  padding-top: 4.1666666667vw;
}
.title-font.table-title span.cirs.span-b-blue span {
  background-color: #256fac;
}
.title-font.table-title span.pink {
  color: #ffb6d7;
}
.title-font.table-title span.under-dot::after {
  background-image: url("../images/bg-desh-02-2.svg");
}
@media (max-width: 575px) {
  .title-font.table-title {
    margin-bottom: 2vw;
  }
}

.table-tabs {
  gap: 1.25vw;
  margin-bottom: 1.25vw;
}
.table-tabs img {
  width: 9.0625vw;
  height: auto;
}

.table-ill {
  width: 100vw;
  position: absolute;
  bottom: 5vw;
  left: 0;
  pointer-events: none;
}
@media (max-width: 575px) {
  .table-ill {
    display: none;
  }
}

.img-table {
  width: 45.3645833333vw;
  margin-bottom: 0.8333333333vw;
}

.table-bg-font {
  position: absolute;
  width: 8.3854166667vw;
  display: none;
}
.table-bg-font.table-bg-01-font, .table-bg-font.table-bg-02-font {
  top: 19vw;
  right: 15vw;
}
.table-bg-font.table-bg-03-font {
  top: 19vw;
  left: 15vw;
}
@media (max-width: 575px) {
  .table-bg-font {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .table-tabs img {
    width: 10.875vw;
  }
  .img-table {
    width: 52.1692708333vw;
    margin-bottom: 0.8333333333vw;
  }
  .table-ill {
    width: 110vw;
    left: -5vw;
  }
  .table-bg-font {
    width: 8.3854166667vw;
  }
  .table-bg-font.table-bg-01-font, .table-bg-font.table-bg-02-font {
    top: 18vw;
    right: 15vw;
  }
  .table-bg-font.table-bg-03-font {
    top: 18vw;
    left: 15vw;
  }
}
@media (max-width: 1199px) and (max-width: 1199px) {
  .table-bg-font {
    width: 9.2239583333vw;
  }
  .table-bg-font.table-bg-01-font, .table-bg-font.table-bg-02-font {
    top: 19vw;
    right: 12vw;
  }
  .table-bg-font.table-bg-03-font {
    top: 19vw;
    left: 12vw;
  }
}
@media (max-width: 575px) {
  .table-tabs {
    margin-bottom: 3vw;
  }
  .table-tabs img {
    width: 20vw;
  }
  .img-table {
    width: 85vw;
    margin-bottom: 3vw;
  }
}
.table-box {
  position: relative;
  overflow: hidden;
  height: 59.1666666667vw;
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
}
.table-box.box-0 {
  background-image: url(../images/table/table-bg-01.png), url(../images/table/table-bg-02.png), url(../images/table/table-bg-03.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, cover, cover;
  background-position: top center, top center, top center;
}
.table-box.box-0 .table-bg-01-font {
  display: block;
}
.table-box.box-1 {
  background-image: url(../images/table/table-bg-01.png);
}
.table-box.box-1 .table-bg-01-font {
  display: block;
}
.table-box.box-2 {
  background-image: url(../images/table/table-bg-02.png);
}
.table-box.box-2 .table-bg-02-font {
  display: block;
}
.table-box.box-3 {
  background-image: url(../images/table/table-bg-03.png);
}
.table-box.box-3 .table-bg-03-font {
  display: block;
}
@media (max-width: 1199px) {
  .table-box {
    background-size: 120%;
    background-position: top center;
    height: 71vw;
    background-position: top center;
  }
  .table-box.box-0 {
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 120%, 120%, 120%;
  }
}
@media (max-width: 991px) {
  .table-box {
    background-size: 140%;
    background-position: top center;
    height: 82.8333333333vw;
  }
  .table-box.box-0 {
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 150%, 150%, 150%;
  }
}
@media (max-width: 575px) {
  .table-box {
    padding-top: 5vw;
    background-size: 250%;
    background-position: top center;
    height: 147.9166666667vw;
  }
  .table-box.box-0 {
    background-size: 250%, 250%, 250%;
  }
}

.table-link {
  position: relative;
  z-index: 9;
  font-size: 1.0416666667vw;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}
@media (max-width: 575px) {
  .table-link {
    font-size: 3.5vw;
  }
  .table-link img {
    width: 3vw;
    height: auto;
  }
}

.map-block {
  background-image: url("../images/map/mop-line.png");
  background-repeat: no-repeat;
  background-position: 0% 24vw;
  background-size: 100vw auto;
  position: relative;
}
.map-block::after {
  content: "";
  position: absolute;
  z-index: 9;
  bottom: 0;
  width: 100%;
  height: 4.7395833333vw;
  background-image: url("../images/train/bg_01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media (max-width: 1199px) {
  .map-block {
    background-image: unset;
  }
}

.top-bar-train {
  width: 37.8645833333vw;
  margin-top: -9.1145833333vw;
  margin-right: 2.5vw;
  margin-left: auto;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .top-bar-train {
    width: 34vw;
  }
}

.map-info-box {
  margin-top: -5.7291666667vw;
  width: 82.5%;
  display: flex;
  justify-content: end;
}
@media (max-width: 1199px) {
  .map-info-box {
    width: 90%;
  }
}
@media (max-width: 575px) {
  .map-info-box {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

.btn-map {
  width: 14.1666666667vw;
}
@media (max-width: 1199px) {
  .btn-map {
    width: 17vw;
  }
}
@media (max-width: 991px) {
  .btn-map {
    width: 17vw;
  }
}
@media (max-width: 575px) {
  .btn-map {
    width: 30vw;
  }
}

.map-box {
  padding-top: 3.4375vw;
  position: relative;
}

.img-map {
  width: 26.875vw;
}
@media (max-width: 1199px) {
  .img-map {
    width: 30vw;
  }
}
@media (max-width: 991px) {
  .img-map {
    width: 35vw;
  }
}
@media (max-width: 575px) {
  .img-map {
    width: 60vw;
    margin-left: 35vw;
  }
}

.map-side {
  margin-left: 0;
}
@media (max-width: 1199px) {
  .map-side {
    margin-left: -5vw;
  }
}
@media (max-width: 991px) {
  .map-side {
    margin-left: -8vw;
  }
}
@media (max-width: 575px) {
  .map-side {
    margin-left: 0;
  }
}

.map-routes-box {
  position: absolute;
  top: 24vw;
  left: -30%;
}
@media (max-width: 991px) {
  .map-routes-box {
    top: 32vw;
    left: -22%;
  }
}
@media (max-width: 575px) {
  .map-routes-box {
    top: unset;
    left: 10%;
    bottom: 5vw;
  }
}

.map-girl {
  margin-right: 12.5vw;
  margin-left: auto;
  width: 12.03125vw;
  position: relative;
  height: 20.3125vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin-top: -10.4166666667vw;
}
@media (max-width: 1199px) {
  .map-girl {
    width: 14vw;
    margin-top: -12vw;
    margin-right: 5vw;
  }
}
@media (max-width: 575px) {
  .map-girl {
    width: 36vw;
    height: 41vw;
    margin-top: -5vw;
    margin-right: 31vw;
  }
}

.go-rounte {
  width: 10.625vw;
}
@media (max-width: 1199px) {
  .go-rounte {
    width: 12.5vw;
  }
}
@media (max-width: 991px) {
  .go-rounte {
    width: 13.5vw;
  }
}
@media (max-width: 575px) {
  .go-rounte {
    width: 28.5vw;
  }
}

.train-block {
  padding-top: 7vw;
  position: relative;
  z-index: 3;
  background-color: #cedfec;
  background-image: url("../images/train/bg-line.png"), url("../images/train/bg_02.png");
  background-size: 71.875vw auto, cover;
  background-position: center, top;
  background-repeat: no-repeat, no-repeat;
}
.train-block .title-ff {
  padding-bottom: 3vw;
}
.train-block::after {
  content: "";
  display: block;
  width: 100%;
  height: 8.3333333333vw;
  background-image: url("../images/train/bg-bottom.png");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .train-block {
    background-image: url("../images/train/bg_02.png");
    background-size: contain;
    background-position: top;
    background-repeat: repeat;
  }
  .train-block .title-ff {
    padding-bottom: 6vw;
  }
}

.icon-train {
  width: 2.4479166667vw;
}
@media (max-width: 575px) {
  .icon-train {
    width: 6vw;
  }
}

.line-title-box {
  width: 20.8333333333vw;
  position: relative;
}
.line-title-box + p {
  padding: 0vw 0.4vw 0.2vw 0.4vw;
  background-color: #e9f6ff;
  position: relative;
  color: #256fac;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 0;
}
.line-title-box + p::after {
  content: "";
  bottom: 0px;
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.15625vw;
  background-image: url("../images/bg-desh-train.svg");
  background-size: auto 0.5208333333vw;
}
@media (max-width: 575px) {
  .line-title-box {
    width: auto;
  }
}

.line-title {
  font-family: "tt-zhihei-chs-variable", sans-serif;
  font-variation-settings: "wght" 600;
  color: #4e77ab;
}
.line-title h4 {
  font-size: 1.1458333333vw;
  margin-bottom: 0;
}
.line-title h3 {
  font-size: 2.6041666667vw;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .line-title h4 {
    font-size: 2.5vw;
    margin-bottom: 0.5vw;
  }
  .line-title h3 {
    font-size: 5vw;
    margin-bottom: 0;
  }
}

.line-card-fonts {
  font-size: 1.0677083333vw;
  line-height: 1.8684895833vw;
  margin-bottom: 10px;
  margin-top: 0.5vw;
}
@media (max-width: 1199px) {
  .line-card-fonts {
    font-size: 1.35vw;
    line-height: 2.3625vw;
  }
}
@media (max-width: 991px) {
  .line-card-fonts {
    font-size: 1.5vw;
    line-height: 2.25vw;
  }
}
@media (max-width: 575px) {
  .line-card-fonts {
    font-size: 3.25vw;
    line-height: 5.25vw;
    margin-bottom: 1vw;
  }
}

.photo-title-train {
  width: 23.2291666667vw;
}
@media (max-width: 575px) {
  .photo-title-train {
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    margin-right: 2vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.train-flex-box {
  position: relative;
  overflow: hidden;
  align-items: start;
  padding-bottom: 5vw;
}
.train-flex-box .line-card {
  position: relative;
  z-index: 2;
  margin-top: 4.6875vw;
  max-width: 34.1145833333vw;
  border-radius: 11.40625vw;
  padding: 5.2083333333vw 4.6875vw;
}
.train-flex-box .line-card.card-l {
  margin-left: -6.25vw;
}
.train-flex-box.left-box > * {
  transform: translateX(10.4166666667vw);
}
@media (max-width: 1199px) {
  .train-flex-box.left-box > * {
    transform: translateX(5vw);
  }
}
@media (max-width: 575px) {
  .train-flex-box.left-box > * {
    transform: translateX(0);
  }
}
.train-flex-box.right-box > * {
  transform: translateX(-10.4166666667vw);
}
@media (max-width: 1199px) {
  .train-flex-box.right-box > * {
    transform: translateX(-5vw);
  }
}
@media (max-width: 575px) {
  .train-flex-box.right-box > * {
    transform: translateX(0);
  }
}
@media (max-width: 575px) {
  .train-flex-box {
    flex-direction: column-reverse;
    align-items: center;
  }
  .train-flex-box .line-card {
    position: relative;
    z-index: 2;
    margin-top: -5vw;
    max-width: 100%;
    border-radius: 0vw;
    padding: 2vw;
    display: flex;
    flex-direction: row-reverse;
  }
  .train-flex-box .line-card.card-l {
    margin-left: 0;
  }
}

.line-photo {
  width: 70.7291666667vw;
  position: relative;
}
.line-photo.photo-l {
  margin-left: -6.25vw;
}
.line-photo img {
  width: 100%;
}
@media (max-width: 575px) {
  .line-photo {
    width: 120vw;
  }
  .line-photo p {
    font-size: 3vw;
  }
  .line-photo.photo-l {
    margin-left: 0vw;
  }
}

.photo-font-lt {
  position: absolute;
  top: 3vw;
  right: 15vw;
}

.photo-font-lb {
  position: absolute;
  bottom: 2vw;
  right: 15vw;
}

.photo-font-lt2 {
  position: absolute;
  top: 3vw;
  right: 10vw;
}

.photo-font-lb2 {
  position: absolute;
  bottom: 2vw;
  left: 13vw;
}

.train-ill {
  position: absolute;
  width: 18.2291666667vw;
  z-index: 9;
}
@media (max-width: 575px) {
  .train-ill {
    display: none;
  }
}

@media (max-width: 991px) {
  .photo-font-lt,
  .photo-font-lb {
    right: 10vw;
  }
  .photo-font-lb2 {
    left: 10vw;
  }
}
@media (max-width: 575px) {
  .photo-font-lt,
  .photo-font-lb,
  .photo-font-lt2,
  .photo-font-lb2 {
    top: unset;
    right: 50%;
    bottom: 2vw;
    left: unset;
    text-align: center;
    transform: translateX(50%);
    text-shadow: 0px 0px 5px #000000;
  }
}
.ill-1a {
  left: 27%;
  bottom: 0;
}

.ill-2a {
  left: 55%;
  bottom: 0;
}

.trian-ill {
  position: absolute;
  width: 45.0520833333vw;
  z-index: 9;
}
.trian-ill.train-1a {
  right: -2%;
  bottom: 1vw;
}
.trian-ill.train-2a {
  left: 10%;
  bottom: 0vw;
}
@media (max-width: 575px) {
  .trian-ill.train-1a {
    right: 50%;
    bottom: -1vw;
  }
  .trian-ill.train-2a {
    left: 0%;
    bottom: 0vw;
  }
}

.sw-train {
  padding-bottom: 5vw;
}
@media (max-width: 575px) {
  .sw-train {
    padding-bottom: 5vw;
    margin-bottom: 5vw;
  }
}

.trip-block {
  padding-top: 3vw;
  padding-bottom: 5vw;
  background-color: #f4f4f4;
  background-image: url("../images/trip/bg-de.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.trip-block .title-ff {
  padding-bottom: 2vw;
}
.trip-block .title-ff + p {
  padding-bottom: 3vw;
}
@media (max-width: 575px) {
  .trip-block {
    background-image: unset;
    padding-bottom: 15vw;
  }
}

.trip-op {
  width: 13.4375vw;
}
@media (max-width: 1199px) {
  .trip-op {
    width: 16vw;
  }
}
@media (max-width: 991px) {
  .trip-op {
    width: 20vw;
  }
}
@media (max-width: 575px) {
  .trip-op {
    width: 33vw;
  }
}

.trip-day-block {
  position: relative;
  margin-top: -4vw;
  background-image: url("../images/trip/bg-trip-block.png");
  background-size: 69.6354166667vw;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  gap: 3.125vw;
  padding-top: 5vw;
}
.trip-day-block .info-p {
  color: #6e6e6e;
}
@media (max-width: 575px) {
  .trip-day-block {
    background-size: 120vw;
    background-repeat: repeat;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.125vw;
  }
}
.trip-day-block > div {
  position: relative;
  width: 35.5208333333vw;
}
@media (max-width: 1199px) {
  .trip-day-block > div {
    width: 40vw;
  }
}
@media (max-width: 991px) {
  .trip-day-block > div {
    width: 46vw;
  }
}
@media (max-width: 575px) {
  .trip-day-block > div {
    width: 76vw;
  }
}
.trip-day-block .day-tab {
  width: 13.0208333333vw;
  position: absolute;
  right: 0;
}
.trip-day-block .day-tab.tab-1 {
  top: 5%;
}
.trip-day-block .day-tab.tab-2 {
  top: 18%;
}
@media (max-width: 1199px) {
  .trip-day-block .day-tab {
    width: 15vw;
  }
}
@media (max-width: 991px) {
  .trip-day-block .day-tab {
    width: 20vw;
  }
}
@media (max-width: 575px) {
  .trip-day-block .day-tab {
    width: 35vw;
  }
  .trip-day-block .day-tab.tab-2 {
    top: 10%;
  }
}

.trip-day-arr {
  position: absolute;
  width: 3.90625vw;
  z-index: 9;
}
.trip-day-arr.arr-01 {
  left: 48%;
  top: 56%;
}
.trip-day-arr.arr-02 {
  left: 50%;
  bottom: 0;
}
.trip-day-arr.arr-03 {
  left: 48%;
  top: 50%;
}
.trip-day-arr.arr-04 {
  left: 50%;
  bottom: 0;
}
@media (max-width: 575px) {
  .trip-day-arr {
    display: none;
  }
}

.day-box-2 {
  padding-top: 4vw;
}

.trip-info {
  padding-bottom: 1.5vw;
  background-image: url("../images/trip/place-bottom-right.png");
  background-position: 75% bottom;
  background-repeat: no-repeat;
}
@media (max-width: 575px) {
  .trip-info {
    padding-bottom: 3.5vw;
    background-size: 25% auto;
  }
  .trip-info img {
    width: 3vw;
    height: auto;
    margin: 0 0.5vw;
  }
}

.trip-info-1 {
  margin-top: -2vw;
  transform: rotate(-2deg);
}

.trip-info-2 {
  transform: rotate(2deg);
}

.trip-info-3 {
  margin-top: -1vw;
  transform: rotate(3deg);
}

.trip-info-4 {
  margin-top: 0vw;
  transform: rotate(-4deg);
}

.trip-info-5 {
  margin-top: 0vw;
  transform: rotate(-3deg);
}/*# sourceMappingURL=all.css.map */