@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: "Noto Sans TC", "Noto Serif TC", "微軟正黑體", "新細明體", "細明體", Arial, "Arial Black";
  font-size: 16px;
  line-height: 25px;
  color: #595757;
  letter-spacing: 1px;
  box-sizing: border-box;
}

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

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: 300;
  line-height: 1.7;
  color: #595757;
  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;
}

.bgm {
  display: block;
  width: 0;
  height: 0;
}

.music_box {
  display: block;
  width: 2.25%;
  position: absolute;
  z-index: 500;
  left: 2%;
  top: 75%;
  opacity: 0.9;
}
@media (max-width: 991px) {
  .music_box {
    width: 6%;
  }
}
@media (max-width: 767px) {
  .music_box {
    width: 10%;
    max-width: 59px;
  }
}

.music_box img {
  display: block;
  width: 3.1%;
  height: auto;
  margin: 1%;
  opacity: 1;
}

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

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

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

.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;
  }
}

.yt_box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.yt_box img {
  position: relative;
  z-index: 2;
}

/* png 當作比例容器 */
.placeholder-image {
  width: 100%;
  height: auto; /* 讓 png 自己決定高度 */
  display: block;
}

/* YouTube API 會塞的 iframe，讓它鋪滿當背景 */
.yt_box iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 用 CSS 撐滿比例容器 */
  z-index: -1;
}

header {
  width: 95.8%;
  position: absolute;
  left: 2.1%;
  top: 2%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 0vw;
}
header .logo_box {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  header .logo_box {
    justify-content: center;
  }
}
header .logo_box .logo_ci {
  width: 12.8%;
}
@media (max-width: 767px) {
  header .logo_box .logo_ci {
    width: 28%;
    margin: 0 3%;
  }
}
header .logo_box .logo_sydney {
  width: 6.7%;
}
@media (max-width: 767px) {
  header .logo_box .logo_sydney {
    width: 17%;
    margin: 0 3%;
  }
}
header nav {
  position: relative;
  width: 90%;
  float: right;
}
header nav ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin-right: 5%;
}
header nav ul li {
  display: inline-block;
  width: auto;
  padding: 0 1vw;
  border-left: 1px solid #333;
}
header nav ul li a {
  text-decoration: none;
}
header nav ul li a div {
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  letter-spacing: 2px;
  transition: all 0.25s ease-in-out;
}
header nav ul li a div:hover {
  transform: scale(1.1);
}

.prd_box {
  width: 23.5%;
  position: absolute;
  right: 8.75%;
  bottom: 2.4%;
  z-index: 2;
}
@media (max-width: 768px) {
  .prd_box {
    width: 61.9%;
    right: 19%;
    bottom: 5%;
  }
}

.kv_info_m {
  position: relative;
}

.kvm_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}

.btn_buy {
  display: block;
  width: 15.1%;
  position: fixed;
  right: 1%;
  bottom: 25%;
  z-index: 50;
  transform-origin: center;
  animation: buy_ani 1s ease-in-out infinite;
}
@media (max-width: 992px) {
  .btn_buy {
    width: 8%;
  }
}
@media (max-width: 768px) {
  .btn_buy {
    width: 32%;
    right: 1%;
    bottom: 2%;
  }
}

@keyframes buy_ani {
  0% {
    margin-bottom: 0;
  }
  50% {
    margin-bottom: 1%;
  }
  100% {
    margin-bottom: 0;
  }
}
.swiper-button-prev {
  left: 0px;
}

.swiper-button-next {
  right: 0px;
}

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

.swiper-pagination-bullet {
  width: 0.75vw;
  height: 0.75vw;
  margin: 5px;
  background: none;
  border: 1px solid #23569d;
  opacity: 1;
  margin-top: 2%;
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 3vw;
    height: 3vw;
    margin: 3px;
  }
}

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

.swiper-pagination {
  position: relative;
  text-align: center;
}

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

main {
  overflow: hidden;
}

/*---s01---*/
#s01 {
  position: relative;
  z-index: 2;
}

.about_vivid {
  position: relative;
  overflow: hidden;
}
.about_vivid .about_info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.about_vivid .about_info .about_text {
  position: relative;
  z-index: 3;
}
.about_vivid .about_info .about_text_g {
  font-size: 1.3vw;
  line-height: 1.5;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 47%;
  letter-spacing: 0.2vw;
}
@media (max-width: 767px) {
  .about_vivid .about_info .about_text_g {
    font-size: 3.4vw;
    line-height: 1.3;
    top: 46%;
  }
}
.about_vivid .about_info .bbg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

/*---s02---*/
.view_w {
  position: relative;
}
.view_w .view_info {
  width: 30%;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .view_w .view_info {
    width: 31%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .view_w .view_info {
    width: 32%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .view_w .view_info {
    width: 29%;
  }
}
@media (max-width: 767px) {
  .view_w .view_info {
    width: 90%;
    margin: 48% auto 0;
  }
}
.view_w .view_info1 {
  position: absolute;
  left: 14%;
  top: 9%;
  z-index: 2;
}
@media (max-width: 767px) {
  .view_w .view_info1 {
    left: 5%;
  }
}
.view_w .view_info1 h2 {
  width: 67%;
}
@media (max-width: 767px) {
  .view_w .view_info1 h2 {
    width: 71%;
  }
}
.view_w .view_info2 {
  position: absolute;
  left: 57.6%;
  top: 22.5%;
  z-index: 2;
}
@media (max-width: 767px) {
  .view_w .view_info2 {
    left: 5%;
    top: 14.5%;
  }
}
.view_w .view_info2 h2 {
  width: 72%;
}
@media (max-width: 767px) {
  .view_w .view_info2 h2 {
    width: 75%;
  }
}
.view_w .view_info3 {
  position: absolute;
  left: 14.3%;
  top: 25.4%;
  z-index: 2;
}
@media (max-width: 767px) {
  .view_w .view_info3 {
    left: 5%;
    top: 14.7%;
  }
}
.view_w .view_info3 h2 {
  width: 71%;
}
@media (max-width: 767px) {
  .view_w .view_info3 h2 {
    width: 76%;
  }
}
.view_w .view_info4 {
  position: absolute;
  left: 57.6%;
  top: 25.5%;
  z-index: 2;
}
@media (max-width: 767px) {
  .view_w .view_info4 {
    left: 5%;
    top: 14.5%;
  }
}
.view_w .view_info4 h2 {
  width: 63%;
}
@media (max-width: 767px) {
  .view_w .view_info4 h2 {
    width: 67%;
  }
}

.view_info_box {
  position: relative;
  text-align: left;
}
.view_info_box p {
  padding-top: 0.5vw;
  font-size: 1.15vw;
  font-weight: 300;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 2px;
  text-align: justify;
}
@media (max-width: 767px) {
  .view_info_box p {
    font-size: 3.5vw;
    line-height: 1.5;
    margin-top: 3vw;
  }
}

/*---s03---*/
/*---s04---*/
/*---s05---*/
/*---s06---*/
#s06 {
  position: relative;
}

.view02_w {
  position: absolute;
  z-index: 2;
  overflow: hidden;
}
.view02_w h2 {
  position: relative;
  width: 20.4%;
  margin: 4.5% auto 2%;
}
@media (max-width: 767px) {
  .view02_w h2 {
    width: 57%;
    margin: 10.5% auto 7%;
  }
}
.view02_w .view_list_box {
  width: 76%;
  position: relative;
  margin: 2% auto 12%;
}
@media (max-width: 767px) {
  .view02_w .view_list_box {
    width: 73%;
  }
}

.view_list {
  position: relative;
}

.view_box {
  text-align: left;
}
.view_box .view_pic {
  width: 100%;
}
.view_box h3 {
  font-size: 2vw;
  font-weight: 600;
  margin-top: 1.7vw;
  color: #05e1dc;
}
@media (max-width: 767px) {
  .view_box h3 {
    font-size: 6vw;
    margin-top: 4vw;
  }
}
.view_box h4 {
  font-size: 1.5vw;
  font-weight: 300;
  color: #fff;
}
@media (max-width: 767px) {
  .view_box h4 {
    font-size: 5vw;
  }
}
.view_box p {
  font-size: 1.1vw;
  color: #fff;
  margin-top: 1vw;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .view_box p {
    font-size: 3.5vw;
    margin-top: 4vw;
  }
}

/*---s07---*/
#s07 {
  position: relative;
  margin-top: -7%;
  z-index: 3;
}

.time_w {
  position: relative;
}
.time_w .airplane {
  width: 15%;
  position: absolute;
  left: 42.5%;
  top: 18%;
  z-index: 3;
}
@media (max-width: 767px) {
  .time_w .airplane {
    width: 27%;
    top: 13%;
    left: 36.5%;
  }
}
.time_w .time_info {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.swiper-container {
  overflow: hidden;
}

.arrow_box {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  color: #05e1dc;
  left: -8%;
}
@media (max-width: 767px) {
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: -12%;
  }
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  color: #05e1dc;
  right: -8%;
}
@media (max-width: 767px) {
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: -12%;
  }
}

.swiper-button-prev, .swiper-button-next {
  transform: scale(1.5);
}
@media (max-width: 767px) {
  .swiper-button-prev, .swiper-button-next {
    transform: scale(1);
  }
}

/*---s05--*/
/*---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: #fff;
}

.modally-wrap .modally-underlay {
  background: rgba(0, 18, 93, 0.9);
  background-size: 100%;
}

/*popup / 分享圖*/
.event-w {
  width: 60.2%;
  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: 25%;
  background: linear-gradient(to right, rgba(235, 118, 157, 0.9) 0%, rgba(55, 147, 207, 0.9) 70%);
}
@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;
}
.overlay nav ul a li div {
  display: inline;
  width: 100%;
  font-family: "Noto Serif TC";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  letter-spacing: 5px;
}

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

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

button.menu_m {
  display: block;
  width: 4.3%;
  position: relative;
  border: none;
  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;
}/*# sourceMappingURL=style.css.map */