@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: 16px;
}
.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 {
  width: 15vw;
  height: 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 */
.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: 120px;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  transform: translateX(100%);
  background-color: rgba(51, 51, 51, 0.6);
}
@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%;
  }
}
:root {
  --bs-box-shadow: rgba(144, 137, 126, 0.87);
  --bs-primary-rgb: 13, 100, 202;
  --index-primary: #5a93ca;
  --index-secondry: #f789ab;
  --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.25vw;
  }
}
h3 {
  font-size: 2.8vw;
  font-weight: 900;
  color: #4646ac;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  h3 {
    font-size: 3.15vw;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 5vw;
  }
}

p {
  font-size: 1.3vw;
  color: #403f5b;
  line-height: 2vw;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  p {
    font-size: 1.6vw;
    line-height: 2.4vw;
  }
}
@media (max-width: 767px) {
  p {
    font-size: 3.75vw;
    line-height: 6vw;
  }
}

.kv {
  background-color: #f789ab;
}

section {
  position: relative;
}

.table-block {
  background-image: url("../images/table/bg-table.png");
  background-size: 100% auto;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-color: #ecf1ff;
  position: relative;
  padding-bottom: 5.2vw;
}
.table-block::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 3.1vw;
  top: -3vw;
  background-image: url("../images/table/bg-table_01.png");
  background-size: 100% auto;
  background-position: left bottom;
  z-index: 9;
}
@media (max-width: 767px) {
  .table-block {
    padding-bottom: 12.2vw;
  }
}

.table-date p {
  font-size: 1vw;
  background-color: rgb(97, 96, 194);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 16px;
  margin: auto;
  border: #b0b7ed 1px solid;
  border-radius: 999px;
}
@media (max-width: 767px) {
  .table-date p {
    padding: 4px 16px;
  }
}

.btn-table {
  width: 22.7vw;
}
@media (max-width: 767px) {
  .btn-table {
    width: 40vw;
  }
}

.img-title {
  width: 46.875vw;
}
@media (max-width: 767px) {
  .img-title {
    width: 86vw;
  }
}

.table-title-box {
  padding: 2vw 0;
  width: 88.5vw;
  position: relative;
}
.table-title-box .img-title {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
}
@media (max-width: 767px) {
  .table-title-box .img-title {
    position: relative;
    top: unset;
    transform: unset;
  }
}
.table-title-box .table-map {
  display: block;
  position: relative;
  width: 46.875vw;
  margin-left: auto;
}
@media (max-width: 767px) {
  .table-title-box .table-map {
    width: 80vw;
  }
}
@media (max-width: 767px) {
  .table-title-box {
    padding-top: 5vw;
  }
}

.table-outer-box,
.table-box {
  width: 64vw;
}

.table-box {
  border: 1px solid #6160c2;
  border-radius: 8px;
  overflow: hidden;
}

.table-tabs {
  gap: 0.5vw;
  margin-bottom: 0.5vw;
  font-size: 1.15vw;
}
.table-tabs div {
  padding: 0.75vw 1.5vw;
  border: 1px solid #6160c2;
  color: #6160c2;
  border-radius: 8px;
}
.table-tabs div.active {
  background-color: #6160c2;
  color: #fff;
}
@media (max-width: 767px) {
  .table-tabs {
    font-size: 3vw;
  }
  .table-tabs div {
    padding: 2vw 3.5vw;
  }
}

table.table {
  font-size: 1.46vw;
  vertical-align: middle !important;
}
table.table th,
table.table td {
  text-align: center !important;
  padding: unset;
  height: 3.96vw;
}
table.table.table-wifi th,
table.table.table-wifi td {
  height: 3.2vw;
}
table.table td {
  color: #424249;
}
table.table td.wifi-bl {
  border-left: 1px solid rgba(97, 96, 194, 0.6);
}
table.table th {
  font-weight: 400;
  background-color: #6160c2 !important;
  color: #fff !important;
  vertical-align: middle;
}
table.table th p {
  font-size: 1.1vw;
  color: rgba(255, 255, 255, 0.8);
}
table.table .bk td {
  background-color: #ececf9;
}
@media (max-width: 767px) {
  table.table {
    font-size: 3.3vw;
  }
  table.table th {
    font-size: 2.75vw;
  }
  table.table th p {
    font-size: 2.2vw;
    line-height: 2.5vw;
  }
  table.table th {
    padding: 1.75vw 0 0.25vw 0;
  }
  table.table td {
    height: 8vw;
    padding: 1.5vw 0;
  }
}

.table-ps {
  font-size: 1.125vw;
  margin-bottom: 2vw;
}

@media (max-width: 767px) {
  .table-outer-box,
  .table-box {
    width: 90vw;
  }
  .table-date > p,
  .table-ps {
    font-size: 3vw !important;
  }
  .table-ps {
    margin-bottom: 4vw;
  }
}
.park-block {
  background-color: #c6b5e5;
  background-image: url("../images/park/bg-part-PHOENIX.png"), url("../images/park/park-bg.png");
  background-size: 100% auto, 100% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: left 3vw, left bottom;
  padding-top: 12.5vw;
  padding-bottom: 25vw;
}
.park-block::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 3.1vw;
  top: -3.05vw;
  background-image: url("../images/park/bg-park-top.png");
  background-size: 100% auto;
  background-position: left bottom;
  z-index: 9;
}
@media (max-width: 767px) {
  .park-block {
    background-image: url("../images/park/bg-part-PHOENIX.png"), url("../images/park/park-bg.png");
    background-size: 100% auto, 160% auto;
    padding-bottom: 32vw;
  }
}

.park-title-box {
  width: 75.5vw;
  position: relative;
}
.park-title-box .img-title {
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
}
.park-title-box .park-map {
  display: block;
  position: relative;
  width: 31.3vw;
  margin-right: auto;
}
@media (max-width: 767px) {
  .park-title-box {
    width: 100%;
  }
  .park-title-box .img-title {
    right: 0;
    position: relative;
    top: unset;
    transform: translateY(-20%);
  }
  .park-title-box .park-map {
    width: 33vw;
    position: absolute;
    margin-right: unset;
    right: 2%;
    top: 0vw;
  }
}

.park-items-01,
.park-items-02 {
  position: relative;
}
.park-items-01 > div,
.park-items-02 > div {
  margin-top: 5vw;
  width: 94.6%;
  background-color: #f7f4fe;
  padding: 3.1vw 1.83vw;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.park-items-01 > div p,
.park-items-02 > div p {
  width: 27.6vw;
}
@media (max-width: 767px) {
  .park-items-01 > div p,
  .park-items-02 > div p {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .park-items-01 > div,
  .park-items-02 > div {
    width: 100%;
    padding: 3.1vw;
  }
}
.park-items-01 > img,
.park-items-02 > img {
  bottom: 3.1vw;
  position: absolute;
  display: block;
  width: 37.5vw;
  height: auto;
  z-index: 9;
}

.park-items-01 {
  width: 68.75vw;
  margin-bottom: 11.4vw;
}
@media (max-width: 767px) {
  .park-items-01 {
    width: 88vw;
  }
}
.park-items-01 > img {
  right: 0;
}
.park-items-01::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 12vw;
  height: 3.34vw;
  pointer-events: none;
  left: -0.5vw;
  top: -1vw;
  background-size: contain;
  background-image: url("../images/park/tab-canyon-01.png");
}
@media (max-width: 767px) {
  .park-items-01::before {
    width: 33vw;
    height: 9.185vw;
    top: -2.75vw;
    left: -1.375vw;
  }
}
.park-items-01::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 6.4vw;
  height: 10vw;
  background-image: url("../images/park/canyon-ad-lb.png");
  background-size: contain;
  left: -5.5vw;
  bottom: -2vw;
}
@media (max-width: 767px) {
  .park-items-01::after {
    content: none;
  }
}
@media (max-width: 767px) {
  .park-items-01 {
    margin-bottom: 8vw;
  }
}

.park-items-02 {
  width: 68.75vw;
  margin-bottom: 3.75vw;
}
@media (max-width: 767px) {
  .park-items-02 {
    width: 88vw;
  }
}
.park-items-02 > div {
  position: relative;
  left: 5.4%;
  padding-left: 35.5vw;
}
@media (max-width: 767px) {
  .park-items-02 > div {
    left: unset;
    padding-left: 3.1vw;
  }
}
.park-items-02 h3 {
  position: relative;
}
.park-items-02 h3::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 12vw;
  height: 3.34vw;
  pointer-events: none;
  left: -0.5vw;
  top: -1vw;
  background-size: contain;
  left: 0vw;
  top: -5vw;
  background-image: url("../images/park/tab-canyon-02.png");
}
@media (max-width: 767px) {
  .park-items-02 h3::before {
    width: 33vw;
    height: 9.185vw;
    top: -2.75vw;
    left: -1.375vw;
  }
}
@media (max-width: 767px) {
  .park-items-02 h3::before {
    content: unset;
  }
}
@media (max-width: 767px) {
  .park-items-02 {
    margin-bottom: 8vw;
  }
  .park-items-02::before {
    content: "";
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    width: 12vw;
    height: 3.34vw;
    pointer-events: none;
    left: -0.5vw;
    top: -1vw;
    background-size: contain;
    left: 0vw;
    top: -5vw;
    background-image: url("../images/park/tab-canyon-02.png");
    z-index: 9;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .park-items-02::before {
    width: 33vw;
    height: 9.185vw;
    top: -2.75vw;
    left: -1.375vw;
  }
}

.park-items-034 {
  width: 68.75vw;
  display: flex;
  gap: 2.3vw;
}
@media (max-width: 767px) {
  .park-items-034 {
    width: 88vw;
  }
}
.park-items-034 div {
  position: relative;
  width: calc(50% - 1.15vw);
}
.park-items-034 div::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 12vw;
  height: 3.34vw;
  pointer-events: none;
  left: -0.5vw;
  top: -1vw;
  background-size: contain;
}
@media (max-width: 767px) {
  .park-items-034 div::before {
    width: 33vw;
    height: 9.185vw;
    top: -2.75vw;
    left: -1.375vw;
  }
}
.park-items-034 div.park-items-03::before {
  background-image: url("../images/park/tab-canyon-03.png");
}
.park-items-034 div.park-items-04::before {
  background-image: url("../images/park/tab-canyon-04.png");
}
@media (max-width: 767px) {
  .park-items-034 div {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.park-items-034 img {
  margin-bottom: 1.75vw;
}
.park-items-034 h3 {
  margin-bottom: 0.75vw;
}
@media (max-width: 767px) {
  .park-items-034 {
    flex-wrap: wrap;
  }
}

.canyon-block {
  background-color: #eff1ff;
  position: relative;
  padding-top: 8.35vw;
}
.canyon-block > * {
  position: relative;
  z-index: 3;
}
.canyon-block::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  z-index: 2;
  width: 100%;
  height: 53vw;
  top: -3.2vw;
  background-image: url("../images/canyon/bg-ab.png?1203");
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .canyon-block::before {
    background-size: 130% auto;
    height: 75vw;
    background-position: right top;
  }
}

.title-canyon-box {
  width: 87.5vw;
}
@media (max-width: 767px) {
  .title-canyon-box {
    padding-top: 30vw;
  }
}

.sw-canyon {
  width: 80.2vw;
  padding: 1vw 1vw 3vw 1vw;
  margin-top: 7.5vw;
  overflow: hidden;
  /* 為了讓效果更明顯，設定輪播容器的高度和 Slides 的樣式 */
  /* 核心位移 CSS */
  /* 確保非 prev/active/next 的 slides 回到原位，以防 loop 模式出錯 */
}
.sw-canyon .swiper {
  width: 100%;
  /* 容器要有足夠高度來容納位移 */
  padding-top: 3vw;
  padding-bottom: 4vw;
  /* 給予上下邊距，確保位移不會被切掉 */
  overflow: visible;
}
.sw-canyon .swiper-slide {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 核心樣式：確保過渡平滑 */
  transition: transform 0.3s ease-out;
}
.sw-canyon .swiper-slide-prev {
  transform: translateY(-2.1vw);
  /* 第一個項目，往上 50px */
}
.sw-canyon .swiper-slide-active {
  transform: translateY(0);
  /* 中間項目，維持原位 */
}
.sw-canyon .swiper-slide-next {
  transform: translateY(2.1vw);
  /* 第三個項目，往下 50px */
}
.sw-canyon .swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) {
  transform: translateY(4.2vw);
}

.canyon-sw-box::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  width: 12vw;
  height: 3.34vw;
  pointer-events: none;
  left: -0.5vw;
  top: -1vw;
  background-size: contain;
  width: 12.16vw;
  height: 3.47vw;
}
@media (max-width: 767px) {
  .canyon-sw-box::before {
    width: 33vw;
    height: 9.185vw;
    top: -2.75vw;
    left: -1.375vw;
  }
}
@media (max-width: 767) {
  .canyon-sw-box::before {
    width: 18.24vw;
    height: 5.205vw;
  }
}
.canyon-sw-box.canyon-01::before {
  background-image: url("../images/canyon/tab-canyon-01.png");
}
.canyon-sw-box.canyon-02::before {
  background-image: url("../images/canyon/tab-canyon-02.png");
}
.canyon-sw-box.canyon-03::before {
  background-image: url("../images/canyon/tab-canyon-03.png");
}
.canyon-sw-box.canyon-04::before {
  background-image: url("../images/canyon/tab-canyon-04.png");
}
.canyon-sw-box.canyon-05::before {
  background-image: url("../images/canyon/tab-canyon-05.png");
}
.canyon-sw-box.canyon-06::before {
  background-image: url("../images/canyon/tab-canyon-06.png");
}
.canyon-sw-box > img {
  margin-bottom: 0.75vw;
}
.canyon-sw-box > h3 {
  margin-bottom: 0.75vw;
}

.global-block {
  background-color: #393291;
  padding-bottom: 3vw;
}
@media (max-width: 767px) {
  .global-block {
    padding-bottom: 6vw;
  }
}

.global-title-box {
  top: 3vw;
}
@media (max-width: 767px) {
  .global-title-box {
    top: 12.5vw;
  }
}

ul.global-ul {
  gap: 1.5vw;
  margin-bottom: 3vw;
}
ul.global-ul li {
  width: 18.85vw;
}

.globalSwiper-box {
  width: 82.3vw;
  margin-bottom: 3vw;
}
@media (max-width: 767px) {
  .globalSwiper-box {
    margin-bottom: 5vw;
  }
}

.btn-global-box {
  width: 20.2vw;
}
@media (max-width: 767px) {
  .btn-global-box {
    width: 40vw;
  }
}

.yt-block {
  background-image: url("../images/park/bg-part-PHOENIX.png"), url("../images/yt/bg-02.png");
  background-position: left top, left bottom;
  background-size: 100% auto, 100% auto;
  background-repeat: no-repeat, no-repeat;
  padding: 5vw 0;
}
@media (max-width: 767px) {
  .yt-block {
    background-image: url("../images/park/bg-part-PHOENIX.png");
    background-position: left top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}

.yt-box {
  width: 52.1354166667vw;
  margin-top: 4vw;
  margin-bottom: 1vw;
  outline: 0.52vw solid #4646ac;
}
@media (max-width: 767px) {
  .yt-box {
    width: 90vw;
  }
}

.food-block {
  background-color: #eff1ff;
  background-image: url("../images/food/bg.png");
  background-size: 100% auto;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 5vw;
}

.title-food-box {
  width: 81vw;
  padding: 4vw 0;
}
@media (max-width: 767px) {
  .title-food-box {
    width: 85vw;
    padding: 12vw 0 6vw 0;
  }
}

.title-food-photo {
  width: 32.6vw;
}
@media (max-width: 767px) {
  .title-food-photo {
    width: 80vw;
    margin-bottom: 3vw;
  }
}

ul.food-ul {
  width: 85.6vw;
  justify-content: center;
  gap: 1%;
  margin-bottom: 1vw;
}
ul.food-ul li {
  width: 32.5%;
  padding-bottom: 2vw;
}
ul.food-ul li img {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  ul.food-ul li {
    width: 49%;
  }
}
@media (max-width: 767px) {
  ul.food-ul {
    width: 95vw;
  }
}

.wifi-block {
  background-color: #b0b7ed;
  padding-bottom: 6.4vw;
  background-image: url(../images/wifi/bg-wifi_02.png);
  background-position: left bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .wifi-block {
    padding-top: 8vw;
    padding-bottom: 12vw;
  }
}

.title-wifi {
  margin-bottom: 2.5vw;
}

.wifi-font-xl {
  margin-bottom: 2vw;
}

.wifi-ul li {
  margin-bottom: 0.75vw;
}
@media (max-width: 767px) {
  .wifi-ul li {
    font-size: 3.5vw;
    line-height: 5vw;
  }
}

.bottom-ad-block {
  margin-top: -2.5vw;
}
@media (max-width: 767px) {
  .bottom-ad-block {
    margin-top: -4.75vw;
  }
}/*# sourceMappingURL=all.css.map */