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

body {
  position: relative;
}

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-family: "Chiron GoRound TC", "Noto Sans TC";
  font-size: 1.15vw;
  font-weight: 500;
  line-height: 1.7;
  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;
  right: 2%;
  top: 0.1%;
  opacity: 0.9;
}
@media (max-width: 991px) {
  .music_box {
    width: 6%;
    right: 2%;
    top: 12%;
  }
}
@media (max-width: 767px) {
  .music_box {
    width: 10%;
    max-width: 59px;
    right: 4%;
    top: 7%;
  }
}

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

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

header {
  width: 94.7%;
  position: absolute;
  left: 2.6%;
  top: 2.6%;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
header .logo_box {
  width: 20.6%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo_box .logo_ci {
  width: 47.8%;
}
header .logo_box .logo_kto {
  width: 47.8%;
}
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);
}
header .logo_box02 {
  width: 10.8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo_box02 .logo_korea {
  width: 57.3%;
}

.kv_box {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.kv_box h1 {
  width: 39.5%;
  position: absolute;
  left: 30.2%;
  top: 6.7%;
  z-index: 5;
}
.kv_box .kv_text {
  width: 38.8%;
  position: absolute;
  left: 30.2%;
  top: 40.2%;
  z-index: 4;
  opacity: 0;
  animation: kv_text 1s ease-in-out 1s forwards;
}
.kv_box .kv_airline {
  width: 10.5%;
  position: absolute;
  right: 17.6%;
  top: 5%;
  z-index: 6;
  opacity: 0;
  animation: kv_airline 1s ease-in-out 0.5s forwards;
}
.kv_box .kv_airline img {
  animation: kv_airline_pic 1s ease-in-out 1.5s infinite;
}
.kv_box .kv_layout {
  position: relative;
  z-index: 3;
}
.kv_box .kv_photo {
  width: 101%;
  position: absolute;
  left: -0.5%;
  top: 7%;
  z-index: 2;
  transform-origin: center;
  animation: kv_photo 20s linear infinite;
}

@keyframes kv_text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes kv_airline {
  0% {
    right: 0%;
    opacity: 0;
  }
  100% {
    right: 17.6%;
    opacity: 1;
  }
}
@keyframes kv_airline_pic {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 2.5%;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes kv_photo {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.btn_fixed {
  width: 5.4%;
  position: fixed;
  right: 1%;
  bottom: 0%;
  z-index: 8;
  transform-origin: center;
  animation: buy_ani 1s ease-in-out infinite;
}
@media (max-width: 992px) {
  .btn_fixed {
    width: 8%;
  }
}
@media (max-width: 768px) {
  .btn_fixed {
    width: 15%;
    right: 2%;
    bottom: 6%;
  }
}
.btn_fixed .btn_buy {
  position: relative;
  margin: 5% 0;
}
.btn_fixed .btn_login {
  position: relative;
  margin: 5% 0;
}

@keyframes buy_ani {
  0% {
    margin-bottom: 0;
  }
  50% {
    margin-bottom: 1%;
  }
  100% {
    margin-bottom: 0;
  }
}
.swiper-pagination {
  position: relative;
  text-align: center;
}

main, section {
  display: block;
  width: 100%;
  position: relative;
  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;
}

main {
  background: url(../images/main_bg.png) repeat-y center top;
  background-size: 100%;
}

/*---s01---*/
#s01 {
  position: relative;
  z-index: 2;
}
#s01::after {
  display: block;
  content: "";
  width: 100%;
  height: 46px;
  position: relative;
  background: url(../images/s01/layout_wave.png) repeat-x left top;
  background-size: 4.9%;
}

.about_w {
  position: relative;
  padding: 5% 0;
  background: #53b5ea;
}
.about_w::before {
  display: block;
  content: "";
  width: 28.6%;
  height: 125%;
  background: url(../images/s01/pattern_L.png) repeat-y left -5%;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: -25%;
  z-index: 2;
}
.about_w::after {
  display: block;
  content: "";
  width: 28.6%;
  height: 125%;
  background: url(../images/s01/pattern_R.png) repeat-y left top;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: -25%;
  z-index: 2;
}
.about_w .layout_bottom {
  width: 100%;
  height: 15%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(83, 181, 234, 0) 0%, rgba(83, 181, 234, 0) 5%, rgb(83, 181, 234) 80%, rgb(83, 181, 234) 100%);
}
.about_w h2 {
  width: 41.1%;
  position: relative;
  margin: 0 auto;
}
.about_w .about_info {
  width: 90%;
  text-align: center;
  color: #fff;
  margin: 1.5% auto;
}
.about_w .idol_L {
  width: 10.6%;
  position: absolute;
  right: 5.9%;
  top: 4.2%;
  z-index: 2;
}
.about_w .idol_R {
  width: 22.1%;
  position: absolute;
  left: -1%;
  top: 28.1%;
  z-index: 2;
}

.btn_more {
  width: auto;
  position: relative;
  text-align: center;
  margin: 1% auto;
  z-index: 3;
}
.btn_more a {
  text-decoration: none;
}
.btn_more a span {
  display: inline-block;
  width: auto;
  font-size: 2vw;
  font-weight: bold;
  line-height: 1.5;
  color: #53b5ea;
  background: #fff000;
  border: 2px solid #fff;
  border-radius: 5vw;
  padding: 0 1.5vw;
  transition: all 0.25s ease-in;
}
.btn_more a:hover span {
  background: #fff;
}

/*---s02---*/
#s02 {
  position: relative;
  padding: 5% 0 0%;
  line-height: 0;
  box-sizing: border-box;
}

.time_w {
  position: relative;
  overflow: hidden;
}
.time_w h2 {
  width: 41.1%;
  position: relative;
  margin: 0 auto;
}
.time_w .time_info {
  width: 90%;
  text-align: center;
  margin: 1.5% auto;
}
.time_w .time_list {
  position: relative;
  z-index: 3;
}
.time_w .city_p {
  width: 50.6%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.time_w .btn_more {
  margin-bottom: 15%;
}
.time_w .airplane {
  width: 17.8%;
  position: absolute;
  right: 4.3%;
  top: 0.9%;
  z-index: 4;
}
.time_w .idol_L {
  width: 21.1%;
  position: absolute;
  left: 2.3%;
  top: 0%;
  z-index: 4;
}
.time_w .idol_R {
  width: 22.6%;
  position: absolute;
  right: 4.3%;
  top: 45%;
  z-index: 4;
}

#swiper-container01 .swiper-slide {
  width: 66.7%;
}

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

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: -8%;
}
.swiper-button-prev::after, .swiper-container-rtl .swiper-button-next::after {
  display: none;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: -8%;
}
.swiper-button-next::after, .swiper-container-rtl .swiper-button-prev::after {
  display: none;
}

.swiper-button-prev, .swiper-button-next {
  transform: scale(1.5);
}

.swiper-pagination {
  bottom: 0;
}

.swiper-pagination-bullet {
  width: 3em;
  height: 1em;
  margin: 5px;
  background: #fff;
  border-radius: 3em;
  opacity: 1;
  margin: 0.5em !important;
}

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

.swiper-container {
  overflow: hidden;
}

/*---s03---*/
#s03 {
  position: relative;
  margin-top: -46px;
  z-index: 3;
}
#s03::before {
  display: block;
  content: "";
  width: 100%;
  height: 46px;
  position: relative;
  background: url(../images/s03/layout_wave_top.png) repeat-x left bottom;
  background-size: 4.9%;
}
#s03::after {
  display: block;
  content: "";
  width: 100%;
  height: 46px;
  position: relative;
  background: url(../images/s03/layout_wave_bottom.png) repeat-x left top;
  background-size: 4.9%;
}

.shop_w {
  position: relative;
  margin-top: -1px;
  padding-bottom: 15%;
  background: #ffeb51;
  overflow: hidden;
}
.shop_w::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../images/s03/pattern_bg.png) repeat-y center top;
  background-size: 100%;
}
.shop_w h2 {
  width: 41.1%;
  position: relative;
  margin: 5% auto 0;
}
.shop_w .shop_info {
  width: 66.6%;
  text-align: center;
  margin: 1.5% auto;
}
.shop_w .idol_L {
  width: 13.4%;
  position: absolute;
  left: 1.5%;
  top: 30%;
  z-index: 2;
}
.shop_w .idol_R {
  width: 15.6%;
  position: absolute;
  right: 0%;
  top: 60%;
  z-index: 2;
}

.shop_list {
  width: 66.6%;
  position: relative;
  margin: 1.5% auto;
  padding: 5% 0;
  z-index: 3;
}
.shop_list .shop_box {
  width: 97.6%;
  position: relative;
  float: right;
  background: #fffbd8;
  border-radius: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5% 0;
}
.shop_list .shop_box .shop_photo {
  width: 36%;
  position: relative;
  margin: -5% 0 5% -2.5%;
}
.shop_list .shop_box .shop_photo .shop_p {
  width: 91.6%;
  position: relative;
  transform-origin: center;
  transform: rotate(-10deg);
}
.shop_list .shop_box .shop_photo .shop_p::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff000;
  border-radius: 2vw;
  position: absolute;
  left: 5%;
  top: 8%;
  z-index: -1;
}
.shop_list .shop_box .shop_photo .shop_p span.shop_img {
  border-radius: 2vw;
  overflow: hidden;
}
.shop_list .shop_box .shop_content {
  width: 64%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.shop_list .shop_box .shop_content .shop_info {
  width: 83.4%;
  position: relative;
}
.shop_list .shop_box .shop_content .shop_info h3 {
  font-size: 1.8vw;
  font-weight: 800;
  color: #5ec7ff;
  line-height: 1.5;
  text-align: left;
}
.shop_list .shop_box .shop_content .shop_info h4 {
  font-size: 1.8vw;
  font-weight: 800;
  color: #f19ca6;
  line-height: 1.5;
  text-align: left;
}
.shop_list .shop_box .shop_content .shop_info p {
  text-align: justify;
}
.shop_list .shop_box .shop_content .shop_more {
  width: 16.5%;
  position: relative;
}
.shop_list .shop_box .shop_content .shop_more a {
  text-decoration: none;
}
.shop_list .shop_box .shop_content .shop_more a span {
  display: block;
  width: 5vw;
  height: 5vw;
  font-size: 1.5vw;
  font-weight: 800;
  color: #fff;
  line-height: 5vw;
  text-align: center;
  background: #5ec7ff;
  border-radius: 1.5vw;
  transition: all 0.5s ease-in-out;
  margin: 0 auto;
}
.shop_list .shop_box .shop_content .shop_more a:hover span {
  border-radius: 5vw;
  background: #f19ca6;
}

.layout_bottom02 {
  width: 100%;
  height: 15%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(252, 234, 64, 0) 0%, rgba(252, 234, 64, 0) 5%, rgb(252, 234, 64) 80%, rgb(252, 234, 64) 100%);
}

/*---s04---*/
#s04 {
  position: relative;
  padding: 10% 0;
}

.yt_all {
  position: relative;
}
.yt_all h2 {
  width: 46.3%;
  position: relative;
  margin: 0% auto 0;
}
.yt_all .yt_info {
  width: 66.6%;
  text-align: center;
  margin: 1.5% auto;
}

.yt_w {
  width: 70%;
  position: relative;
  z-index: 3;
  margin: 0% auto;
}
.yt_w .yt_box {
  position: relative;
}
.yt_w .yt_box .yt_g {
  position: relative;
  border-radius: 2.5vw;
  overflow: hidden;
}
.yt_w .yt_box .yt_idol {
  width: 18.7%;
  position: absolute;
  right: -18.7%;
  top: 15%;
  z-index: -1;
}

/*---s05--*/
/*---s06--*/
/*---s07--*/
/*---popup / 注意事項---*/
/*---popup---*/
.modally {
  width: 100%;
  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: #fff000;
}

.modally .modally-close-button {
  font-size: 3.5vw;
  width: 3.5vw;
  height: 3.5vw;
  background: #53b5ea;
  border-radius: 50%;
  box-sizing: border-box;
}

/*popup / 分享圖*/
.event-wrapper {
  width: 85%;
  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: rgba(56, 161, 219, 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: flex-start;
  align-items: flex-end;
  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: "Chiron GoRound TC";
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  color: #38a1db;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 50vw;
  justify-content: flex-start;
  align-items: center;
  padding: 0.15em 1.5em;
  letter-spacing: 2px;
  margin: 5% 0;
  transition: all 0.25s ease-in-out;
}

.overlay nav ul a li div:hover {
  color: #fff;
  background: #f19ca6;
}

/*
.overlay nav ul a:nth-child(even) li div{color:#f19ca6;}
.overlay nav ul a li div:hover{
  color:#fff;
  background:#38a1db;
}
.overlay nav ul a:nth-child(even) li div:hover{
  color:#fff;
  background:#f19ca6;
}
*/
.overlay .overlay-close {
  top: 0;
}

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

button.menu_m {
  display: block;
  width: 33.6%;
  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 */