@charset "UTF-8";
/* CSS Document */
@import url("reset.css");
html {
  font-size: 16px;
}

html * {
  font-size: 1rem;
  font-weight: 400;
}

body, ul, li {
  margin: 0px;
  padding: 0px;
  font-family: Arial, "Arial Black", "Noto Sans TC", "微軟正黑體", "新細明體", "細明體";
  font-display: swap;
  font-size: 16px;
  line-height: 25px;
  color: #595757;
  letter-spacing: 1px;
  box-sizing: border-box;
}

body {
  position: relative;
  background: #f7b500;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

div, span {
  display: block;
  width: 100%;
}

button {
  display: none;
}

*:focus {
  outline: none;
} /*解決滾動到區塊時出現框線問題*/
h3 {
  font-size: 2vw;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  h3 {
    font-size: 5vw;
    letter-spacing: 0;
  }
}

h4 {
  font-size: 3vw;
}
@media (max-width: 768px) {
  h4 {
    font-size: 6vw;
  }
}

p {
  font-size: 1.15vw;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
  letter-spacing: 2px;
}
@media (max-width: 992px) {
  p {
    font-size: 1.5vw;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  p {
    font-size: 3.5vw;
    line-height: 1.5;
  }
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block;
  }
}

.pad-pc {
  display: block;
}
@media (min-width: 992px) {
  .pad-pc {
    display: none;
  }
}

.pad-h {
  display: none;
}
@media (max-width: 992px) {
  .pad-h {
    display: block;
  }
}

.btn_style {
  transform-origin: center;
  transform: scale(1);
  transition: all 0.15s ease-in-out;
}
.btn_style:hover {
  cursor: pointer;
  transform: scale(0.9);
}

.ajax_loading {
  background: #000 url("../images/loader.gif") center center no-repeat;
}

/*---KV---*/
.kv_w {
  width: 100%;
  position: relative;
}

.kv_box {
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: 3.25%;
}
@media (max-width: 768px) {
  .kv_box {
    margin-top: 16%;
  }
}
.kv_box .kv_ps {
  position: relative;
  font-size: 1vw;
  color: #fff;
  line-height: 2;
  text-align: center;
  background: #000;
  letter-spacing: 0.2vw;
}

.kv_box_m {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 5;
  background: #fff;
}
header .head_w {
  width: 97%;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5% 1.5%;
}
@media (max-width: 768px) {
  header .head_w {
    justify-content: center;
  }
}
header .head_w .logo_box {
  width: 3.5%;
  position: relative;
}
@media (max-width: 992px) {
  header .head_w .logo_box {
    width: 6%;
  }
}
@media (max-width: 768px) {
  header .head_w .logo_box {
    width: 20.6%;
    margin: 1% 0;
  }
}
header .head_w nav {
  width: auto;
  position: relative;
}
@media (max-width: 768px) {
  header .head_w nav {
    display: none;
  }
}
header .head_w nav ul {
  list-style-type: none;
}
header .head_w nav ul li {
  display: inline-block;
  width: auto;
  position: relative;
  padding: 0 0.5vw;
  margin-right: 0.75vw;
}
header .head_w nav ul li a {
  color: #0072a6;
  text-decoration: none;
}
header .head_w nav ul li a div {
  display: inline;
  font-size: 1.05vw;
  font-weight: 500;
  color: #0072a6;
  position: relative;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  header .head_w nav ul li a div {
    font-size: 1.5vw;
  }
}
header .head_w nav ul li a div::after {
  display: block;
  content: "";
  width: 0.75vw;
  height: 0.75vw;
  background: #f7b500;
  border-radius: 50%;
  position: absolute;
  right: -1.35vw;
  top: 0.15vw;
  z-index: 2;
}
@media (max-width: 992px) {
  header .head_w nav ul li a div::after {
    width: 1vw;
    height: 1vw;
  }
}
header .head_w nav ul li a:hover div {
  color: #f7b500;
}
header .head_w nav ul li:last-child {
  margin-right: 0;
}
header .head_w nav ul li:last-child div::after {
  display: none;
}

.btn_list {
  display: block;
  width: 10%;
  position: fixed;
  right: 1.5%;
  bottom: 15%;
  z-index: 8;
  transform-origin: center;
  animation: buy_ani 1s ease-in-out infinite;
}
@media (max-width: 768px) {
  .btn_list {
    width: 20%;
  }
}
.btn_list .btn_buy {
  display: block;
  position: relative;
}

@keyframes buy_ani {
  0% {
    bottom: 15%;
  }
  50% {
    bottom: 17%;
  }
  100% {
    bottom: 15%;
  }
}
.swiper-button-prev {
  left: -20%;
}

.swiper-button-next {
  right: -20%;
}

.swiper-button-prev, .swiper-button-next {
  color: #333;
}

.swiper-pagination-bullet {
  width: 1.05vw;
  height: 1.05vw;
  margin: 0.5vw;
  background: #fff;
  opacity: 1;
  margin-top: 2%;
}
@media (max-width: 992px) {
  .swiper-pagination-bullet {
    width: 2vw;
    height: 2vw;
    margin: 5px;
  }
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 5vw;
    height: 5vw;
    margin: 5px;
  }
}

.swiper-pagination-bullet-active {
  background: #23569d;
}

.swiper-pagination {
  text-align: right;
}

main, section {
  display: block;
  width: 100%;
  position: relative;
}

main {
  overflow: hidden;
}

.yt_box {
  width: 100%;
  margin: -1px auto 0;
  position: relative;
}

.vidbacking {
  display: block;
}

.video-back {
  display: block; /*padding:200px 0px;*/
  text-align: center;
}

.video-back img { /*width:150px;*/
  width: 100%;
  height: auto;
}

img.vediobg_img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  z-index: -101;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#background-video > .ytplayer-container > iframe {
  top: 0 !important;
  z-index: -1;
}

.placeholder-image {
  z-index: 100;
  top: 0;
}

@media (max-width: 767px) {
  .ytplayer-player {
    top: 0 !important;
  }
}

.box_w {
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

/*---s01---*/
#s01 {
  position: relative;
}

.about_w {
  position: relative;
}
.about_w .about_info_w {
  width: 83.3%;
  position: absolute;
  left: 8.3%;
  top: 12.7%;
  z-index: 2;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .about_w .about_info_w {
    left: 8.3%;
    top: 8%;
  }
}
.about_w .about_info_w .about_info {
  width: 45%;
  position: relative;
  padding: 2.5%;
}
@media (max-width: 768px) {
  .about_w .about_info_w .about_info {
    width: 95%;
  }
}
.about_w .about_info_w .about_info h2 {
  font-size: 5.4vw;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 5%;
}
@media (max-width: 768px) {
  .about_w .about_info_w .about_info h2 {
    font-size: 11vw;
    margin-bottom: 2%;
  }
}
.about_w .about_info_w .about_info h3 {
  font-size: 2.8vw;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 768px) {
  .about_w .about_info_w .about_info h3 {
    font-size: 6.5vw;
  }
}
.about_w .about_info_w .about_info_p {
  margin-top: 10%;
}
@media (max-width: 768px) {
  .about_w .about_info_w .about_info_p {
    margin-top: 70%;
  }
}
.about_w .about_info_w .about_info_p p {
  font-weight: 300;
  line-height: 2;
  color: #fff;
  text-align: right;
  margin: 2.5% 0;
}
@media (max-width: 992px) {
  .about_w .about_info_w .about_info_p p {
    font-size: 1.35vw;
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  .about_w .about_info_w .about_info_p p {
    font-size: 3vw;
    margin: 5% 0;
  }
}

/*---s02---*/
#s02 {
  position: relative;
  padding: 5% 0;
}

.facility_w {
  width: 66.6%;
  position: relative;
  margin: 0% auto;
}
@media (max-width: 992px) {
  .facility_w {
    width: 76.6%;
  }
}
@media (max-width: 768px) {
  .facility_w {
    width: 92%;
    margin: 10% auto;
  }
}
.facility_w h2 {
  width: 100%;
  margin: 0 auto;
}
.facility_w .view_w {
  width: 100%;
  position: relative;
  margin: 0.15% auto 5%;
}
.facility_w .view_w .view_all {
  width: 100%;
  position: relative;
  z-index: 4;
}
.facility_w .view_w .view_all .view_list {
  position: relative;
  overflow: hidden;
}
.facility_w .view_w .view_all_txt {
  display: inline;
  writing-mode: vertical-rl;
  font-size: 0.72vw;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.2vw;
  position: absolute;
  right: -1.5vw;
  top: 0;
  z-index: 2;
}
@media (max-width: 992px) {
  .facility_w .view_w .view_all_txt {
    height: 92%;
    font-size: 1.5vw;
    letter-spacing: 0vw;
    right: -5vw;
  }
}
@media (max-width: 768px) {
  .facility_w .view_w .view_all_txt {
    display: inline-block;
    position: relative;
    writing-mode: horizontal-tb;
    font-size: 3vw;
    line-height: 1.5;
    right: 0vw;
    text-align: center;
  }
}

.view_text {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.view_text .view_tp01 {
  display: flex;
  width: auto;
  align-items: center;
}
.view_text .view_tp01 span.tp {
  display: inline-block;
  width: 3.5vw;
  margin-right: 0.5vw;
}
@media (max-width: 768px) {
  .view_text .view_tp01 span.tp {
    width: 4.5vw;
  }
}
.view_text .view_tp01 .tp_text {
  display: inline-block;
  font-family: "Noto Sans TC";
  font-size: 2.3vw;
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 768px) {
  .view_text .view_tp01 .tp_text {
    font-size: 4vw;
  }
}
.view_text .view_tp02 {
  display: flex;
  width: auto;
  align-items: center;
}
.view_text .view_tp02 span.tp {
  display: inline-block;
  width: 2.5vw;
  margin-right: 0.5vw;
}
@media (max-width: 768px) {
  .view_text .view_tp02 span.tp {
    width: 5vw;
  }
}
.view_text .view_tp02 .tp_text {
  display: inline;
  font-family: "Noto Sans TC";
  font-size: 2.3vw;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 768px) {
  .view_text .view_tp02 .tp_text {
    font-size: 4vw;
  }
}

@media (max-width: 992px) {
  .sp01 {
    bottom: -0.25% !important;
  }
}
@media (max-width: 768px) {
  .sp01 {
    position: relative;
    text-align: center;
    bottom: 0 !important;
    margin: 2% 0;
  }
}

/*---befor/after------*/
.cd-image-container {
  position: relative;
  width: 100%;
  /*max-width: 768px;*/
  margin: 0em auto;
}

.cd-image-container img {
  display: block;
}

.cd-image-label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
  padding: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
}

.cd-image-label.is-hidden {
  visibility: hidden;
}

.is-visible .cd-image-label {
  opacity: 1;
  transform: translateY(0);
}

.cd-resize-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  /* Force Hardware Acceleration in WebKit */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.cd-resize-img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}

.cd-resize-img .cd-image-label {
  right: auto;
  left: 0;
}

.is-visible .cd-resize-img {
  width: 5%;
  /* bounce in animation of the modified image */
  animation: cd-bounce-in 1s ease-in-out;
}
@keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  35% {
    width: 50%;
  }
  70% {
    width: 50%;
  }
  100% {
    width: 5%;
  }
}
.cd-handle {
  position: absolute;
  /*height: 44px;
  width: 44px;*/
  /* center the element */
  width: 100px;
  height: 100px;
  left: 5%;
  top: 50%;
  /*margin-left: -22px;
  margin-top: -22px;*/
  margin-left: -45px;
  margin-top: -45px;
  border-radius: 50%;
  background: url("../images/s02/view_photo_btn.png") no-repeat center center;
  background-size: 80%;
  /*background: #dc717d url("../img/cd-arrows.svg") no-repeat center center;*/
  cursor: move;
  /*box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);*/
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0);
}

/*.cd-handle.draggable {
  /change background color when element is active /
  background-color: #445b7c;
}*/
.is-visible .cd-handle {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 0.3s 0.7s, opacity 0s 0.7s;
}

/*---手機版---------------------*/
@media (max-width: 768px) {
  .cd-handle {
    width: 50px;
    height: 50px;
    margin-left: -25px;
    margin-top: -25px;
  }
}
/*--------------*/
#swiper-container01 .cd-handle {
  touch-action: pan-y;
}

/* 確保整個對比元件區域都被隔離 */
.cd-image-container {
  touch-action: none !important;
  -ms-touch-action: none !important;
}

/* 確保拖曳把手也絕對禁用 */
.cd-handle {
  touch-action: none !important;
  -ms-touch-action: none !important;
  animation: touch_icon 1s ease-in-out infinite;
}

@keyframes touch_icon {
  0% {
    margin-left: -5%;
  }
  50% {
    margin-left: -3.5%;
  }
  100% {
    margin-left: -5%;
  }
}
@media (max-width: 768px) {
  @keyframes touch_icon {
    0% {
      margin-left: -6%;
    }
    50% {
      margin-left: -3%;
    }
    100% {
      margin-left: -6%;
    }
  }
}
/*---s03---*/
#s03 {
  background: url(../images/s03/s03_bg.png) no-repeat center;
  background-size: cover;
  padding: 5% 0;
}
@media (max-width: 768px) {
  #s03 {
    background: url(../images/s03/s03_bg_m.png) no-repeat center;
    background-size: cover;
    padding: 10% 0;
  }
}

.feature_w {
  width: 66.6%;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .feature_w {
    width: 80.8%;
  }
}
.feature_w .feature_box {
  width: 49.3%;
  position: relative;
  margin: 1% 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .feature_w .feature_box {
    width: 100%;
  }
}
.feature_w .feature_box::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 70%;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .feature_w .feature_box::before {
    width: 50%;
    left: 50%;
    top: 0%;
  }
}
.feature_w .feature_box img {
  width: 100%;
}
@media (max-width: 768px) {
  .feature_w .feature_box img {
    width: 50%;
  }
}
.feature_w .feature_box .feature_info {
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  top: 70%;
  z-index: 3;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .feature_w .feature_box .feature_info {
    width: 50%;
    height: 100%;
    left: 50%;
    top: 0;
    opacity: 1;
  }
}
.feature_w .feature_box .feature_info .feature_g {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}
@media (max-width: 768px) {
  .feature_w .feature_box .feature_info .feature_g {
    display: block;
    width: auto;
  }
}
.feature_w .feature_box .feature_info .feature_g h4 {
  font-size: 2.1vw;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}
@media (max-width: 768px) {
  .feature_w .feature_box .feature_info .feature_g h4 {
    font-size: 5vw;
  }
}
.feature_w .feature_box .feature_info .feature_g p {
  font-size: 2.1vw;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin: 2% 0;
}
@media (max-width: 768px) {
  .feature_w .feature_box .feature_info .feature_g p {
    font-size: 4vw;
  }
}
.feature_w .feature_box .feature_info .feature_g .btn_more {
  display: inline-block;
  width: auto;
  font-size: 2vw;
  line-height: 1;
  margin: 10% 0;
}
.feature_w .feature_box .feature_info .feature_g .btn_more span {
  display: inline-block;
  width: auto;
  font-family: Arial, "Noto Sans TC";
  font-size: 2vw;
  font-weight: 200;
  line-height: 1;
  color: #fff;
  padding: 0vw 0.5vw 2%;
  border: 1px solid #fff;
  position: relative;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 768px) {
  .feature_w .feature_box .feature_info .feature_g .btn_more span {
    font-size: 4vw;
    padding: 0vw 1vw 2%;
  }
}
.feature_w .feature_box .feature_info .feature_g .btn_more span::after {
  display: block;
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.25s ease-in-out;
}

.feature_box > a:hover > .feature_info > .feature_g > .btn_more01 > span {
  color: #f0b61d !important;
}
.feature_box > a:hover > .feature_info > .feature_g > .btn_more01 > span::after {
  width: 100%;
}

.feature_box > a:hover > .feature_info > .feature_g > .btn_more02 > span {
  color: #ea5532 !important;
}
.feature_box > a:hover > .feature_info > .feature_g > .btn_more02 > span::after {
  width: 100%;
}

.feature_box > a:hover > .feature_info > .feature_g > .btn_more03 > span {
  color: #ea6da5 !important;
}
.feature_box > a:hover > .feature_info > .feature_g > .btn_more03 > span::after {
  width: 100%;
}

.feature_box > a:hover > .feature_info > .feature_g > .btn_more04 > span {
  color: #333333 !important;
}
.feature_box > a:hover > .feature_info > .feature_g > .btn_more04 > span::after {
  width: 100%;
}

.feature01::before {
  background: rgba(247, 181, 0, 0.83);
}

.feature02::before {
  background: rgba(234, 85, 50, 0.83);
}

.feature03::before {
  background: rgba(234, 109, 165, 0.83);
}

.feature04::before {
  background: rgba(51, 51, 51, 0.83);
}

.feature_box:hover::before {
  top: 0;
}
.feature_box:hover .feature_info {
  height: 100%;
  top: 0;
  opacity: 1;
}

/*---s04---*/
.day_w {
  width: 66.6%;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .day_w {
    width: 76.6%;
  }
}
@media (max-width: 768px) {
  .day_w {
    width: 92%;
    margin: 10% auto;
  }
}
.day_w h2 {
  position: relative;
  margin: 0.25% auto;
}
.day_w p {
  color: #fff;
  text-align: left;
  margin: 2.5% 0;
}
@media (max-width: 768px) {
  .day_w p {
    text-align: center;
  }
}

.day_list {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 5%;
}
.day_list .day_box {
  display: block;
  width: 32.7%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .day_list .day_box {
    width: 88%;
    margin: 2% auto;
  }
}
.day_list .day_box::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 70%;
  z-index: 2;
  background: rgba(0, 114, 166, 0.83);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .day_list .day_box::before {
    width: 50%;
    left: 50%;
    top: 0;
    background: rgb(0, 114, 166);
  }
}
.day_list .day_box img {
  width: 100%;
}
@media (max-width: 768px) {
  .day_list .day_box img {
    width: 50%;
  }
}
.day_list .day_box .prd {
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  top: 70%;
  z-index: 3;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 768px) {
  .day_list .day_box .prd {
    width: 50%;
    height: 100%;
    left: 50%;
    top: 0;
    opacity: 1;
    justify-content: center;
    align-items: center;
    background: none;
  }
}
.day_list .day_box .prd .prd_info {
  width: auto;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-end;
  padding: 2.5%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .day_list .day_box .prd .prd_info {
    width: 90%;
    flex-flow: column wrap;
    justify-content: flex-start;
  }
}
.day_list .day_box .prd .prd_info .prd_day {
  width: 50%;
}
.day_list .day_box .prd .prd_info .prd_day img {
  width: 100%;
}
@media (max-width: 768px) {
  .day_list .day_box .prd .prd_info .prd_day {
    width: auto;
  }
}
.day_list .day_box .prd .prd_info .btn_link {
  display: inline-block;
  width: 40%;
  font-size: 2vw;
  line-height: 1;
  margin: 0 0 2% 0%;
  text-align: right;
}
@media (max-width: 768px) {
  .day_list .day_box .prd .prd_info .btn_link {
    width: auto;
    margin: 2.5% 5% 10% 0;
  }
}
.day_list .day_box .prd .prd_info .btn_link span {
  display: inline-block;
  width: auto;
  font-family: Arial, "Noto Sans TC";
  font-size: 1.5vw;
  font-weight: 200;
  line-height: 1;
  color: #fff;
  padding: 0vw 0.5vw 2%;
  border: 1px solid #fff;
  position: relative;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 768px) {
  .day_list .day_box .prd .prd_info .btn_link span {
    font-size: 4vw;
    padding: 0vw 1vw 2%;
  }
}
.day_list .day_box .prd .prd_info .btn_link span::after {
  display: block;
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.25s ease-in-out;
}

.day:hover::before {
  top: 0;
}
.day:hover .prd {
  height: 100%;
  top: 0;
  opacity: 1;
}
.day:hover .prd .prd_info .btn_link span {
  color: #0072a6;
}
.day:hover .prd .prd_info .btn_link span::after {
  width: 100%;
}

/*---s05---*/
#s05 {
  background: rgb(0, 114, 166);
  padding: 5% 0;
}
@media (max-width: 768px) {
  #s05 {
    padding: 5% 0 15%;
  }
}

.tour_w {
  width: 76.1%;
  position: relative;
  margin: 2.5% auto;
}
@media (max-width: 992px) {
  .tour_w {
    width: 86.1%;
  }
}
@media (max-width: 768px) {
  .tour_w {
    width: 76.1%;
  }
}
.tour_w h2 {
  width: 33.6%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .tour_w h2 {
    width: 56%;
  }
}
@media (max-width: 768px) {
  .tour_w h2 {
    width: 100%;
  }
}
.tour_w .tour_list {
  position: relative;
  margin: 5% auto;
}
.tour_w .tour_list ul {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.tour_w .tour_list ul li {
  width: 16.6%;
}
@media (max-width: 768px) {
  .tour_w .tour_list ul li {
    width: 50%;
  }
}
.tour_w .tour_list ul li a {
  text-decoration: none;
}
.tour_w .tour_list ul li a span {
  display: block;
  position: relative;
  width: 90%;
  font-size: 1.8vw;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  padding: 0.5vw 0;
  text-align: center;
  border: 2px solid #f7b500;
  margin: 2.5% auto;
  z-index: 3;
}
@media (max-width: 768px) {
  .tour_w .tour_list ul li a span {
    font-size: 5vw;
  }
}
.tour_w .tour_list ul li a span::after {
  display: block;
  content: "";
  width: 0%;
  height: 100%;
  background: #f7b500;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.25s ease-in-out;
}
.tour_w .tour_list ul li a span:hover::after {
  width: 100%;
}
.tour_w .costa_en {
  width: 59%;
  margin: 2% auto;
}
@media (max-width: 768px) {
  .tour_w .costa_en {
    width: 100%;
  }
}

/*---popup / 注意事項---*/
/*---popup---*/
.modally {
  width: 70.3%;
  background: none;
  box-shadow: none;
  padding: 4px;
}
@media (max-width: 991px) {
  .modally {
    width: 90%;
  }
}

.modally .modally-close-button {
  display: block;
  font-size: 50px;
  color: #333;
}

.modally-wrap .modally-underlay {
  background: url(../images/bg.png) repeat-y center top;
  background-size: 100%;
}

/*popup / 分享圖*/
.event-w {
  width: 95%;
  margin: 0% auto;
  padding: 5% 0;
  position: relative;
}

/*popup / 活動辦法*/
.rules-w {
  width: 90%;
  margin: 0% auto;
  padding: 5% 0;
  position: relative;
}
.rules-w h2 {
  display: block;
  width: 100%;
  font-size: 2vw;
  font-weight: bold;
  line-height: 1.5;
  color: #00a0df;
  text-align: center;
  margin: 0 auto 2%;
}
@media (max-width: 992px) {
  .rules-w h2 {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  .rules-w h2 {
    font-size: 5vw;
  }
}

ul.ps_text {
  list-style-type: none;
  display: flex;
  flex-flow: column wrap;
  font-size: 1vw;
  line-height: 1.5;
  margin: 0 auto 0%;
  padding-left: 2.5%;
}
ul.ps_text li {
  width: 100%;
  list-style-type: disc;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  color: #333;
  margin: 1% 0 1% 0%;
}
@media (max-width: 992px) {
  ul.ps_text li {
    width: 100%;
    margin: 1% 0 1% 0%;
    font-size: 3vw;
  }
}
ul.ps_text li a {
  color: #333;
  text-decoration: underline;
}
@media (max-width: 992px) {
  ul.ps_text li a {
    font-size: 3vw;
  }
}
ul.ps_text li ol {
  list-style-type: decimal-leading-zero;
  padding-left: 5%;
}
ul.ps_text li ol li {
  width: 100%;
  list-style-type: decimal-leading-zero;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
  color: #333;
  margin: 1% 0 1% 0%;
}
@media (max-width: 992px) {
  ul.ps_text li ol li {
    width: 100%;
    font-size: 3vw;
    margin: 2% 0;
  }
}

/*-------------------------------------------------------------*/
.overlay {
  width: 20%;
  background: rgba(247, 181, 0, 0.9);
}
@media (max-width: 768px) {
  .overlay {
    width: 100%;
  }
}

.overlay nav {
  top: 0vh;
  height: 95vh;
}
.overlay nav ul {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 10%;
}
.overlay nav ul a {
  text-decoration: none;
}
.overlay nav ul a li {
  width: 100%;
  display: flex;
  margin: 1% 0;
}
.overlay nav ul a li div {
  display: inline;
  width: 100%;
  font-family: "Noto Sans TC";
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 2;
  color: #0072a6;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  letter-spacing: 5px;
  text-align: right;
  background: #fff;
  transition: all 0.25s ease-in-out;
}
.overlay nav ul a li div:hover {
  color: #fff;
  background: #23569d;
}
@media (max-width: 768px) {
  .overlay nav ul a li div {
    text-align: center;
  }
}

.overlay .overlay-close {
  top: 0;
}

.overlay .overlay-close {
  max-width: 58px;
  max-height: 58px;
}

button.menu_m {
  display: none;
  width: 5%;
  position: relative;
  border: none;
  background-image: url(../images/menu_mobile22.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 0;
  background-color: transparent;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 990;
  outline: 0;
  order: 3;
}
@media (max-width: 768px) {
  button.menu_m {
    display: block;
    width: 16%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }
}/*# sourceMappingURL=style.css.map */