@charset "UTF-8";
/* CSS Document */
@import url("reset.css");
@import url(https://fonts.googleapis.com/earlyaccess/cwtexyen.css);
html * {
  font-weight: 400;
}

body,
ul,
li {
  margin: 0px;
  padding: 0px;
  font-family: "cwTeXYen", "微軟正黑體", "新細明體", "細明體", Arial, "Arial Black";
  color: #333;
  letter-spacing: 1px;
  box-sizing: border-box;
}

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

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

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

button {
  display: none;
}

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

p {
  font-size: 1.5vw;
  font-weight: 500;
  line-height: 2vw;
  color: #fff;
}
@media (max-width: 992px) {
  p {
    font-size: 1.75vw;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  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);
}

header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
}
header .logo_box {
  width: 100%;
}
header .logo_box img {
  width: 13.2%;
  margin: 1%;
}
@media (max-width: 767px) {
  header .logo_box img {
    width: 34%;
    margin: 1% 0 0 2%;
  }
}

nav {
  width: 64%;
  position: absolute;
  left: 18%;
  bottom: 2%;
  z-index: 10;
}
@media (max-width: 767px) {
  nav {
    left: 0;
  }
}
nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}
nav ul li {
  padding: 0% 2%;
  margin: 2% 0 4% 0;
  border-right: 1px solid #444444;
}
@media (max-width: 767px) {
  nav ul li {
    border-right: none;
    border-bottom: 1px solid #444444;
  }
}
nav ul li:last-child {
  border-right: none;
  border-bottom: none;
}
nav ul li a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 1.2vw;
}
nav ul li a::after {
  content: "";
  display: none;
  width: 100%;
  height: 3px;
  background: #ffeb00;
  position: absolute;
  left: 0;
  bottom: -18%;
}
nav ul li a:hover::after {
  display: block;
}
@media (max-width: 767px) {
  nav ul li a {
    font-size: 5vw;
  }
}
nav ul li a:hover {
  color: #ffeb00;
}

.price {
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .price {
    width: 84%;
    position: absolute;
    left: 8%;
    bottom: 2%;
    z-index: 5;
  }
}

/*---KV---*/
.kv_w {
  position: relative;
}
.kv_w .black_w {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 6;
  background: #000;
  opacity: 0.7;
  animation: black_w 0.5s ease-in-out 1s forwards;
}

.kv_box {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.kv_box .title_w {
  width: 42.7%;
  position: absolute;
  left: 28.65%;
  top: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .kv_box .title_w {
    width: 63.5%;
    left: 18.25%;
  }
}
.kv_box .title_w .title_box {
  width: 100%;
  position: relative;
}
.kv_box .title_w .title_box .airplane {
  width: 34%;
  position: absolute;
  left: -13.2%;
  top: 27.5%;
  z-index: 5;
  opacity: 0;
  animation: airplane 1s ease-in-out 1.5s forwards;
}
.kv_box .title_w .title_box .title03 {
  position: absolute;
  z-index: 4;
  opacity: 0;
  animation: title_light 0.5s ease-in-out 1.5s forwards;
}
.kv_box .title_w .title_box .title02 {
  position: absolute;
  z-index: 3;
  opacity: 0;
  animation: title_light 0.5s ease-in-out 1.25s forwards;
}
.kv_box .title_w .title_box .title01 {
  position: absolute;
  z-index: 2;
  opacity: 0;
  animation: title_light 0.5s ease-in-out 1s forwards;
}
.kv_box .title_w img.title_bg {
  pointer-events: none;
  animation: title_bg 0.5s ease-in-out 1s forwards;
}

.title01 img,
.title02 img,
.title03 img {
  pointer-events: none;
}

@keyframes black_w {
  0% {
    opacity: 0.7;
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 0.7;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 0.7;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes airplane {
  0% {
    opacity: 0;
    left: -33.2%;
    top: 32.5%;
  }
  100% {
    opacity: 1;
    left: -13.2%;
    top: 27.5%;
  }
}
@keyframes title_light {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes title_bg {
  0% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.btn_buy_box {
  display: block;
  width: 9.3%;
  position: fixed;
  right: 2%;
  bottom: 5%;
  z-index: 8;
}
.btn_buy_box .btn_buy {
  position: relative;
}
.btn_buy_box .btn_buy img.btn_buy_bg {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  transform-origin: center;
  animation: btn_buy_ani 2s ease-in-out infinite;
}
@media (max-width: 992px) {
  .btn_buy_box {
    width: 15%;
  }
}
@media (max-width: 768px) {
  .btn_buy_box {
    width: 20%;
    bottom: 3%;
  }
}

@keyframes btn_buy_ani {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(0deg);
  }
  75% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
main,
section {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.box-w {
  display: block;
  width: 100%;
  position: relative;
}

@media (max-width: 768px) {
  main {
    margin-top: -1%;
  }
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: -50px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: -50px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 5px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
  margin-top: 2%;
}

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

/*-------------------------------------------------------------*/
.overlay {
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.overlay nav {
  top: 0vh;
  height: 95vh;
}
.overlay nav ul {
  display: block;
  width: 80%;
  max-width: 700px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 5% 10%;
}
.overlay nav ul a li {
  width: 100%;
  display: flex;
}
.overlay nav ul a li span {
  width: 100%;
  font-weight: 600;
  line-height: 2;
  color: #fff;
  position: relative;
}
.overlay nav ul a li span::before, .overlay nav ul a li span::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  width: 6%;
  height: calc(100% - 4px);
  border: 2px solid #fff;
  border-right: 0;
  transition: all 0.25s ease-in-out;
}
.overlay nav ul a li span::before {
  left: 0;
}
.overlay nav ul a li span::after {
  right: 0;
  transform: rotateY(180deg);
}
.overlay nav ul a:hover li span::before, .overlay nav ul a:hover li span::after {
  width: 50%;
}

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

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

button.menu_m {
  display: none;
  position: fixed;
  top: 0.5%;
  right: 2%;
  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;
}
@media (max-width: 768px) {
  button.menu_m {
    display: block;
    width: 45px;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */