@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;
  padding-top: 1.5vw;
  padding-left: 1.5vw;
  padding-right: 1.5vw;
}
.menu-box.show-menu {
  position: fixed;
}

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

.nav-item {
  margin-bottom: 8px;
}
.nav-item a {
  color: #ec5938;
  font-weight: normal;
  font-size: 22px;
  text-align: center;
  margin: 0 8px;
  padding: 2px 16px;
  text-decoration: none;
  display: block;
  background-color: #ffffff;
}
.nav-item a:hover {
  color: #ffffff;
  background-color: #ec5938;
}
@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: auto;
  height: 4vw;
  margin-left: 1vw;
}
@media (max-width: 575px) {
  .logos img {
    width: auto;
    height: 14.5vw;
  }
}

.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;
  left: 0;
  width: 30vw;
  padding-top: 90px;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  transform: translateX(-100%);
  background: #ffffff;
}
@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: unset;
  margin-right: unset;
}

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

.hide-nottarget .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}

.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%;
  }
}
.miniViweSwiper2 {
  height: 100%;
  width: 100%;
}

.viweSwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.viweSwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.viweSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.video-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 56vw;
  z-index: -1; /* 確保背景不遮擋其他內容 */
  overflow: hidden;
}

@media (max-width: 575px) {
  .video-background {
    height: 176vw;
  }
}
.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101vw; /* 確保影片覆蓋整個背景 */
  height: 56vw;
  transform: translate(-50%, -50%);
  pointer-events: none; /* 防止用戶點擊影片 */
}

@media (max-width: 575px) {
  .video-background iframe {
    height: 180vw;
  }
}
.mute-button {
  background-size: cover;
  position: absolute;
  z-index: 3;
  background-image: url("../images/music-op.png");
  opacity: 0.75;
  right: 2.5vw;
  bottom: 45%;
  cursor: pointer;
  width: 3vw;
  height: 3vw;
}
@media (max-width: 575px) {
  .mute-button {
    width: 8vw;
    height: 8vw;
    bottom: 40%;
  }
}

/*
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>
</section>
*/
body {
  background-color: #f2f2f2;
  color: #4D4D4D;
  text-align: justify;
}
img {
  display: block;
}

p {
  margin-bottom: 0;
}

:root {
  --bs-box-shadow: rgba(144, 137, 126, 0.87);
  --bs-primary-rgb: 13, 100, 202;
  --index-primary: #5a93ca;
  --index-secondry: #f789ab;
  --fz-19: 19px;
  --fz-20: 20px;
  --fz-21: 21px;
  --fz-22: 22px;
  --fz-32: 32px;
  --fz-40: 40px;
  --w-tip: 60px;
}

@media (max-width: 1399px) {
  :root {
    --fz-19: 19px;
    --fz-20: 19px;
    --fz-21: 20px;
    --fz-22: 20px;
    --fz-32: 26px;
    --fz-40: 32px;
  }
}
@media (max-width: 1199px) {
  :root {
    --fz-40: 30px;
  }
}
@media (max-width: 991px) {
  :root {
    --fz-normal: 1.75vw;
  }
}
@media (max-width: 575px) {
  :root {
    --fz-19: 15px;
    --fz-20: 16px;
    --fz-21: 16px;
    --fz-22: 17px;
    --fz-32: 22px;
    --fz-40: 24px;
    --w-tip: 36px;
  }
}
section {
  overflow: hidden;
}

.table-block {
  padding: 3.125vw 0 2.0833333333vw 0;
  background-image: linear-gradient(to bottom, #dddddd, #f2f2f2);
}
@media (max-width: 1199px) {
  .table-block {
    margin-bottom: 4vw;
  }
}
@media (max-width: 767px) {
  .table-block {
    padding-top: 4vw;
    margin-bottom: 8vw;
  }
}
@media (max-width: 767px) {
  .table-block {
    padding-top: 9vw;
    margin-bottom: 12vw;
  }
}

.img-table {
  display: block;
  width: 65.2083333333vw;
}
@media (max-width: 1399px) {
  .img-table {
    width: auto;
  }
}

.title-table {
  max-width: 721px;
  margin: auto;
  margin-bottom: 1.5625vw;
}
@media (max-width: 1399px) {
  .title-table {
    max-width: unset;
    width: 612.85px;
  }
}
@media (max-width: 991px) {
  .title-table {
    max-width: unset;
    width: 540.75px;
  }
}
@media (max-width: 576px) {
  .title-table {
    max-width: unset;
    width: 75.1041666667vw;
  }
}

.table-box {
  max-width: 870px;
}
.icon-fly {
  width: 15px;
  height: 15px;
}

.table td,
.table th {
  font-weight: normal;
  text-align: center;
  border: 4px solid #e8e8e8;
}

.table th {
  font-size: var(--fz-21);
  color: #ffffff;
  background-color: #82A9DA;
}
@media (max-width: 576px) {
  .table th {
    font-size: 3.75vw;
  }
}

.table td {
  font-size: var(--fz-22);
  color: #4D4D4D;
  background-color: #fff;
  padding: 6px 0;
}
@media (max-width: 576px) {
  .table td {
    font-size: 4.25vw;
  }
}

.table-ps {
  font-size: var(--fz-20);
}
.table-ps a {
  color: #FF7BAC;
}

.table-plane {
  display: block;
  width: 22.0833333333vw;
  padding-bottom: 1.875vw;
  position: relative;
}
@media (max-width: 1399px) {
  .table-plane {
    width: 26.5vw;
  }
}
@media (max-width: 991px) {
  .table-plane {
    width: 30.9166666667vw;
  }
}
@media (max-width: 576px) {
  .table-plane {
    width: 38.6458333333vw;
  }
}

.w-map {
  width: 75%;
  position: relative;
}
@media (max-width: 1399px) {
  .w-map {
    width: 90%;
  }
}
@media (max-width: 991px) {
  .w-map {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .w-map {
    width: 90%;
  }
}
@media (max-width: 575px) {
  .w-map {
    width: 100%;
  }
}

.map-block {
  padding-bottom: 4vw;
}
@media (max-width: 575px) {
  .map-block {
    padding-bottom: 15vw;
  }
}

.map-link {
  width: 22.3958333333vw;
  top: 43%;
  left: 67%;
}
@media (max-width: 1399px) {
  .map-link {
    top: 56%;
  }
}
@media (max-width: 991px) {
  .map-link {
    width: 40vw;
    top: 77%;
    left: 45%;
  }
}
@media (max-width: 767px) {
  .map-link {
    width: 45vw;
    top: 78%;
    left: 40%;
  }
}
@media (max-width: 575px) {
  .map-link {
    width: 70vw;
    top: 70%;
    left: 25%;
  }
}

.bg-could-01 {
  width: 26.6145833333vw;
  position: absolute;
  left: 55%;
  animation: could 10s linear infinite;
  animation-delay: -3.5s;
}

.bg-could-02 {
  width: 22.5vw;
  position: absolute;
  left: 25%;
  animation: could 10s linear infinite;
}

.drive-block {
  padding: 40px 0;
}
@media (max-width: 1399px) {
  .drive-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .drive-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .drive-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.title-car {
  max-width: 690px;
  margin-bottom: 36px;
}
@media (max-width: 1399px) {
  .title-car {
    max-width: unset;
    width: 586.5px;
  }
}
@media (max-width: 991px) {
  .title-car {
    max-width: unset;
    width: 517.5px;
  }
}
@media (max-width: 576px) {
  .title-car {
    max-width: unset;
    width: 71.875vw;
  }
}

.car-img {
  width: 46.875vw;
}
@media (max-width: 1199px) {
  .car-img {
    width: 100%;
    height: 50vw;
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .car-img {
    height: 60vw;
  }
}

.car-outer-box > img {
  -o-object-fit: cover;
     object-fit: cover;
}

.color-car-blue {
  color: #82A9DA;
}

.color-car-dark-blue {
  color: rgb(70.9722222222, 128.3888888889, 200.5277777778);
}

.btn-car-blue {
  display: block;
  border: none;
  font-size: var(--fz-22);
  background-color: #82A9DA;
  padding: 0px 24px;
  width: -moz-fit-content;
  width: fit-content;
}

.car-info {
  width: 44.7916666667vw;
  margin-left: 40px;
}
.car-info > li {
  display: flex;
  align-items: start;
  justify-content: start;
  border-bottom: 1px #ccc solid;
  margin-bottom: calc(var(--fz-21) * 0.6);
}
.car-info > li:last-child {
  border-bottom: 0;
}
.car-info .label {
  font-family: "source-han-serif-sc", serif;
  font-weight: 700;
  font-style: normal;
  font-size: var(--fz-32);
  line-height: calc(var(--fz-32) * 1.25);
  color: #82A9DA;
  padding: 0 calc(var(--fz-21) * 2) calc(var(--fz-21) * 0.8) calc(var(--fz-21) * 0.2);
  margin-bottom: 0;
  flex-shrink: 0;
}
.car-info ul.outer li {
  font-size: var(--fz-21);
}
.car-info ul.outer > li {
  list-style: url("../images/car/list-dot-car-outer.svg");
  margin-bottom: calc(var(--fz-21) * 0.2);
}
.car-info ul.outer > li:last-child {
  margin-bottom: calc(var(--fz-21) * 0.8);
}
.car-info ul.outer > li:first-child {
  margin-top: calc(var(--fz-21) * 0.1);
}
.car-info ul.inter > li {
  list-style: disc;
}
@media (max-width: 1599px) {
  .car-info {
    width: auto;
    padding-right: 16px;
  }
}
@media (max-width: 1399px) {
  .car-info {
    margin-left: 24px;
  }
  .car-info .label {
    padding: 0 calc(var(--fz-21) * 0.8) calc(var(--fz-21) * 0.8) calc(var(--fz-21) * 0.2);
  }
}
@media (max-width: 576px) {
  .car-info {
    margin-left: 16px;
  }
  .car-info .label {
    padding: 0 0 calc(var(--fz-21) * 0.8) calc(var(--fz-21) * 0.2);
  }
}

.wrap {
  position: relative;
}
.wrap > * {
  position: relative;
  z-index: 2;
}
.wrap div.bg-color {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #cae0ee;
  opacity: 0;
}

@keyframes could {
  0% {
    opacity: 0;
    transform: translateX(20%);
  }
  15%, 85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%);
  }
}
.img-title {
  display: block;
  width: 41.6666666667vw;
}

.img-title-0326 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(var(--fz-21) * 0.85);
}
@media (max-width: 1399px) {
  .img-title-0326 {
    max-width: unset;
    width: 425px;
  }
}
@media (max-width: 991px) {
  .img-title-0326 {
    max-width: unset;
    width: 375px;
  }
}
@media (max-width: 576px) {
  .img-title-0326 {
    max-width: unset;
    width: 52.0833333333vw;
  }
}

.img-title-about {
  font-size: var(--fz-21);
  text-align: center;
  font-weight: 300;
  margin-bottom: calc(var(--fz-21) * 0.85);
}
@media (max-width: 991px) {
  .img-title-about {
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  .img-title-about {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.red-block,
.gold-block {
  padding: 60px 0;
}
@media (max-width: 576px) {
  .red-block,
  .gold-block {
    padding: 40px 0;
  }
}

.img-info-red {
  width: 89.84375vw;
  display: block;
}

.main-sw-box {
  width: 1200px;
  display: flex;
}
.main-sw-box > div.swiper {
  max-width: 977px;
  padding-bottom: calc(var(--fz-21) * 1.5);
}
@media (max-width: 1599px) {
  .main-sw-box {
    width: 62.5vw;
  }
}
@media (max-width: 1199px) {
  .main-sw-box {
    width: 95vw;
  }
  .main-sw-box .main-img {
    height: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .main-sw-box {
    width: 97.5vw;
  }
  .main-sw-box .main-img {
    height: auto;
  }
}

.red-sw-box {
  padding: calc(var(--fz-21) * 1) calc(var(--fz-21) * 1) calc(var(--fz-21) * 0.5) 0;
  background-color: #F7651E;
  flex-direction: row-reverse;
}
@media (max-width: 1199px) {
  .red-sw-box .main-img {
    width: 100%;
  }
}

.wine-sw-box {
  padding: calc(var(--fz-21) * 1) calc(var(--fz-21) * 1) calc(var(--fz-21) * 0.5) 0;
  background-color: #C1272D;
  flex-direction: row-reverse;
}
@media (max-width: 1199px) {
  .wine-sw-box .main-img {
    width: 100%;
  }
}

.blue-sw-box {
  padding: calc(var(--fz-21) * 1) calc(var(--fz-21) * 1) calc(var(--fz-21) * 0.5) 0;
  background-color: #29ABE2;
  flex-direction: row-reverse;
}

.gold-sw-box {
  padding: calc(var(--fz-21) * 1) 0 calc(var(--fz-21) * 0.5) calc(var(--fz-21) * 1);
  background-color: #FBCF00;
}
.gold-sw-box .swiper {
  position: relative;
  max-width: 978px;
}
@media (max-width: 1599px) {
  .gold-sw-box .main-img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1199px) {
  .gold-sw-box .main-img {
    width: 100%;
    -o-object-position: bottom;
       object-position: bottom;
  }
}

.blue-block {
  padding-top: 6.25vw;
  background-color: #cae0ee;
  background-image: url("../images/1x/bg-blue-top.png");
  background-position: left -1px;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .blue-block {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .blue-block {
    padding-top: 70px;
  }
}

.white-block {
  padding-top: 7.5vw;
  background-color: #cae0ee;
}

.white-mountain {
  background-image: url("../images/1x/bg-white-mountain.png");
  height: 46.875vw;
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .white-mountain {
    height: auto;
  }
}

.sub-title-ski {
  display: block;
  width: 33.8541666667vw;
  position: absolute;
  left: 10%;
  bottom: 0;
}
@media (max-width: 1599px) {
  .sub-title-ski {
    width: 36.3932291667vw;
  }
}
@media (max-width: 1399px) {
  .sub-title-ski {
    width: 38.9322916667vw;
    left: 36px;
  }
}
@media (max-width: 991px) {
  .sub-title-ski {
    width: 45.703125vw;
    position: relative;
    padding-top: 36px;
  }
}
@media (max-width: 767px) {
  .sub-title-ski {
    width: 59.2447916667vw;
    left: unset;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .sub-title-ski {
    width: 76.171875vw;
  }
}

.ski-bg-box {
  background-image: url("../images/white/bg-bottom.png");
  background-color: #ffffff;
  padding: 0 7.8125vw 60px 7.8125vw;
  background-position: left bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media (max-width: 1399px) {
  .ski-bg-box {
    padding: 0 36px 60px 36px;
  }
}
@media (max-width: 991px) {
  .ski-bg-box > div {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .ski-bg-box {
    padding: 0 20% 60px 20%;
  }
}
@media (max-width: 575px) {
  .ski-bg-box {
    padding: 0 10% 40px 10%;
  }
}

.ski-sw-box {
  width: 39.3229166667vw;
}
@media (max-width: 1599px) {
  .ski-sw-box {
    width: 42.2721354167vw;
  }
}
@media (max-width: 1399px) {
  .ski-sw-box {
    width: 45.2213541667vw;
  }
}
@media (max-width: 767px) {
  .ski-sw-box {
    width: 100%;
  }
}
.ski-sw-box .swiper {
  padding-bottom: 2vw;
}
.ski-sw-box.ski-01 {
  right: 7.5%;
  top: -2vw;
}
.ski-sw-box.ski-02 {
  left: 8%;
  top: 26vw;
}
.ski-sw-box.ski-03 {
  right: 7.5%;
  top: 54vw;
}

.light-point-no {
  font-size: var(--fz-32);
  color: #B3B3B3;
}

.light-point {
  font-size: 57px;
  font-weight: 800;
}
@media (max-width: 1399px) {
  .light-point {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .light-point {
    font-size: 32px;
  }
}

.light-point-val {
  font-size: var(--fz-22);
  max-width: 392px;
  padding-bottom: 32px;
}
@media (max-width: 1199px) {
  .light-point-val {
    max-width: unset;
  }
}

.ski-ab {
  width: 350px;
}
@media (max-width: 1199px) {
  .ski-ab {
    width: 22.7864583333vw;
  }
}
@media (max-width: 991px) {
  .ski-ab {
    width: 18.2291666667vw;
  }
}
@media (max-width: 767px) {
  .ski-ab {
    display: none;
  }
}

.ski-box-01 .light-point,
.ski-box-03 .light-point,
.ski-box-01 .light-point-no,
.ski-box-03 .light-point-no {
  text-align: right;
}
@media (max-width: 767px) {
  .ski-box-01 .light-point,
  .ski-box-03 .light-point,
  .ski-box-01 .light-point-no,
  .ski-box-03 .light-point-no {
    text-align: justify;
  }
}

.ski-box-01 .ski-ab,
.ski-box-03 .ski-ab {
  left: 10%;
  top: 5%;
}

.ski-box-02 .ski-ab {
  right: 15%;
  top: 10%;
}

.ski-tip-box {
  width: 1200px;
  font-size: var(--fz-22);
}
.ski-tip-box > img {
  flex-shrink: 0;
  width: var(--w-tip);
  height: var(--w-tip);
}
@media (max-width: 1399px) {
  .ski-tip-box {
    width: 90%;
  }
}
@media (max-width: 1199px) {
  .ski-tip-box {
    width: 100%;
  }
}

.wine-block {
  background-color: #fbdddd;
  padding-top: 60px;
  padding-bottom: 9vw;
  background-size: cover;
  background-image: url("../images/1x/bg-play-bottom.png");
  background-size: 100% auto;
  background-position: left bottom;
  background-repeat: no-repeat;
}
@media (max-width: 1399px) {
  .wine-block {
    padding-bottom: calc(9vw + 24px);
  }
}
.play-sw-box {
  width: 42.1354166667vw;
}
@media (max-width: 1199px) {
  .play-sw-box {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .play-sw-box {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .play-sw-box {
    width: 90%;
  }
}

.enjoy-block {
  background-image: url("../images/food/sw-bg-food.png?0327");
  background-size: 100% auto;
  background-position: left top 360px;
  background-repeat: no-repeat;
  background-color: #f0f8ff;
  padding-bottom: 120px;
  padding-top: 60px;
}
@media (max-width: 1199px) {
  .enjoy-block {
    background-image: unset;
  }
}

.enjoy-sw-box {
  width: 100%;
}
.enjoy-sw-box .swiper-slide {
  flex-direction: column;
  align-items: end;
}
.enjoy-sw-box .swiper-slide img,
.enjoy-sw-box .swiper-slide .d-flex {
  width: 55.7291666667vw;
}
.enjoy-sw-box .swiper-slide .d-flex {
  margin-top: 1.6666666667vw;
  font-size: var(--fz-21);
}
.enjoy-sw-box .swiper-pagination {
  width: 44.2708333333vw;
  left: 0;
  transform: translateY(-4vw);
}
@media (max-width: 1199px) {
  .enjoy-sw-box {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .enjoy-sw-box .swiper-slide img,
  .enjoy-sw-box .swiper-slide .d-flex {
    width: 100%;
  }
  .enjoy-sw-box .swiper-slide .d-flex {
    margin-top: 1.6666666667vw;
  }
  .enjoy-sw-box .swiper-pagination {
    width: unset;
    left: unset;
    transform: unset;
  }
}
@media (max-width: 575px) {
  .enjoy-sw-box {
    width: 90%;
  }
}

.food-title-box {
  width: 44.2708333333vw;
  position: absolute;
}
@media (max-width: 1399px) {
  .food-title-box {
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.food-label {
  font-size: 3.4375vw;
  font-weight: 700;
  color: #8070AE;
  flex-shrink: 0;
  margin-right: 0.8333333333vw;
}
@media (max-width: 767px) {
  .food-label {
    font-size: 28px;
  }
}

.food-date {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7.03125vw;
  height: 7.03125vw;
  border-radius: 999px;
  color: #fff;
  font-size: 1.5625vw;
  font-weight: 700;
  background-color: #8070AE;
  margin-right: 0.8333333333vw;
  text-align: center;
}
@media (max-width: 767px) {
  .food-date {
    width: 12vw;
    height: 12vw;
    font-size: 3vw;
  }
}

.sw-tab {
  font-size: var(--fz-40);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0.5vw;
  border: none;
  min-width: 12.1354166667vw;
}
.sw-tab.sw-tab-red {
  padding: 0.2vw 2vw;
  background-color: #f7651e;
}
.sw-tab.sw-tab-red.active {
  background-color: #9c181c;
}
.sw-tab.sw-tab-bule {
  padding: 0.2vw 2vw;
  background-color: #29abe2;
}
.sw-tab.sw-tab-bule.active {
  background-color: #0773c8;
}
@media (max-width: 575px) {
  .sw-tab {
    font-weight: 600;
  }
}

.sw-tab-box {
  margin-bottom: 3vw;
}

.red12-sw-box {
  position: relative;
  width: 50.9375vw;
  left: 10vw;
}

.tip-box {
  padding: calc(var(--fz-19) * 0.5) var(--fz-19);
  font-size: var(--fz-21);
  color: #fff;
  padding-left: 100px;
  position: relative;
}
.tip-box::before {
  content: "";
  position: absolute;
  display: block;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: var(--w-tip);
  height: var(--w-tip);
  background-image: url("../images/SVG/info-box-tip.svg");
  background-size: cover;
}
@media (max-width: 575px) {
  .tip-box {
    padding-left: calc(var(--w-tip) * 2);
  }
}

.gold-info .tip-box::before {
  background-image: url("../images/SVG/info-box-tip-gold.svg");
}

.info-about {
  font-size: var(--fz-20);
}

.info-about {
  margin-bottom: calc(var(--fz-19) * 0.75);
}

.info-box .item-title {
  width: 100%;
}
.red-info {
  margin-left: 24px;
  width: 500px;
}
.red-info .tip-box {
  background: #f7651e;
}
@media (max-width: 1199px) {
  .red-info {
    width: 90%;
    margin-left: unset;
    align-self: center;
  }
  .red-info .item-title {
    margin-top: 16px;
    width: 425px;
  }
}
@media (max-width: 575px) {
  .red-info {
    width: 95%;
  }
  .red-info .item-title {
    margin-top: 16px;
    width: 71.6145833333vw;
  }
}

.blue-info {
  margin-left: 24px;
  width: 554px;
}
.blue-info .tip-box {
  background: #29ABE2;
}
@media (max-width: 1199px) {
  .blue-info {
    width: 90%;
    margin-left: unset;
    align-self: center;
  }
  .blue-info .item-title {
    margin-top: 16px;
    width: 425px;
  }
}
@media (max-width: 575px) {
  .blue-info {
    width: 95%;
  }
  .blue-info .item-title {
    margin-top: 16px;
    width: 71.6145833333vw;
  }
}

.gold-info {
  margin-right: 24px;
  width: 500px;
}
@media (max-width: 1199px) {
  .gold-info {
    width: 90%;
    margin-left: unset;
    align-self: center;
    margin-right: 0px;
  }
  .gold-info .item-title {
    margin-top: 16px;
    width: 425px;
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  .gold-info {
    width: 95%;
  }
  .gold-info .item-title {
    width: 71.6145833333vw;
  }
}
.gold-info .info-about {
  font-size: var(--fz-22);
  line-height: calc(var(--fz-21) * 1.75);
}
.gold-info .tip-box {
  font-size: var(--fz-22);
  background: #FBCF00;
  color: #AC6C28;
}

.green-info {
  width: 550px;
}
@media (max-width: 1199px) {
  .green-info {
    width: 90%;
    margin-left: unset;
    align-self: center;
    margin-right: 0px;
  }
  .green-info .item-title {
    margin-top: 16px;
    width: 467.5px;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .green-info {
    width: 95%;
  }
  .green-info .item-title {
    width: 71.6145833333vw;
  }
}
.green-info .tip-box {
  background: #5B8E30;
}

.swiper-slide .main-green {
  width: 1000px;
  height: 666px;
}
@media (max-width: 1599px) {
  .swiper-slide .main-green {
    width: 52.0833333333vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1199px) {
  .swiper-slide .main-green {
    width: 95vw;
    height: 40vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.title-white-box {
  position: relative;
  max-width: 640px;
  margin-left: 14%;
  z-index: 5;
}
@media (max-width: 1399px) {
  .title-white-box {
    max-width: 760px;
  }
}
@media (max-width: 1199px) {
  .title-white-box {
    max-width: unset;
    margin-left: unset;
    padding-left: 10%;
    padding-right: 10%;
  }
}

.wine-flex {
  gap: 76px;
  padding-left: 90px;
}
@media (max-width: 1199px) {
  .wine-flex {
    gap: 0px;
    padding-left: unset;
    padding: 0 36px;
  }
}

.wine-main-box {
  margin-bottom: 76px;
}
.wine-play-info {
  width: 730px;
}
.wine-play-info > img {
  max-width: 400px;
}
@media (max-width: 1399px) {
  .wine-play-info > img {
    max-width: unset;
    width: 340px;
  }
}
@media (max-width: 991px) {
  .wine-play-info > img {
    width: 300px;
  }
}
@media (max-width: 576px) {
  .wine-play-info > img {
    width: 41.6666666667vw;
  }
}
@media (max-width: 767px) {
  .wine-play-info {
    width: 80%;
  }
  .wine-play-info .img-title-about {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .wine-play-info {
    width: 100%;
  }
}

.play-3-days {
  font-size: 35px;
  color: #C1272D;
  font-style: italic;
}
.play-3-days span {
  font-size: 60px;
  color: #9c181c;
}
.play-3-days::after {
  content: "";
  margin-left: 12px;
  display: inline-block;
  width: 140px;
  height: 36px;
  background-image: url("../images/wine/3days-arr.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .play-3-days::after {
    display: none;
  }
}

.green-block {
  padding-bottom: 76px;
}
@media (max-width: 1199px) {
  .green-block {
    padding-top: 36px;
  }
}/*# sourceMappingURL=all.css.map */