@charset "UTF-8";
/* ▼Countdown Timer▼ */
/*------------------------------------*\
    $全域設定
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&display=swap");
html {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
}

video {
  width: 100%;
  height: auto;
}

img {
  border: none;
  vertical-align: bottom;
  display: block;
  max-width: 1000px;
  width: 100%;
  height: auto;
}

section {
  position: relative;
  display: block;
  max-width: 1920px;
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/*------------------------------------*\
    $main
\*------------------------------------*/
.content {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
}

.btn {
  position: absolute;
}

.obj {
  position: absolute;
}

.b1 {
  background: url("../img/b1.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}

.b2 {
  background: url("../img/b2.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.b2 .obj {
  top: 26%;
  left: 8%;
  width: 90%;
}

.b3 {
  background: url("../img/b3.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}

.b4 {
  background: url("../img/b4.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.b4 .obj {
  bottom: 2%;
  width: 90%;
  left: 9%;
  mix-blend-mode: screen;
}

.b5 {
  background: url("../img/b5.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.b5 .obj {
  bottom: 2%;
  width: 90%;
  left: 5%;
  mix-blend-mode: screen;
}

.b6 {
  background: url("../img/b6.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.b6 .obj {
  bottom: 5%;
  width: 95%;
  left: 6%;
  mix-blend-mode: screen;
}

.b7 {
  background: url("../img/b7.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.b7 video {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.b8 {
  background: url("../img/b8.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}

.b9 {
  background: url("../img/b9.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}

.btn {
  position: absolute;
}

.b10 {
  background: url("../img/b10.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.b10 .wrap-btn {
  display: flex;
  justify-content: center;
}
.b10 .btn {
  width: 80%;
  bottom: 2.5%;
}

.b11 {
  background: url("../img/b11.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.b11 .wrap-btn {
  display: flex;
  justify-content: center;
}
.b11 .btn {
  width: 80%;
  bottom: 2%;
}

.b12 {
  background: url("../img/b12.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.b12 .wrap-btn {
  display: flex;
  justify-content: center;
}
.b12 .btn {
  width: 80%;
  bottom: 4%;
}

.b13 {
  background: url("../img/b13.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.b13 .wrap-btn {
  display: flex;
  justify-content: center;
}
.b13 .btn {
  width: 80%;
  bottom: 13%;
}

.info {
  background: url("../img/info.jpg") top center no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.info .obj {
  bottom: 31%;
  right: 26.5%;
  width: 6.5%;
}

.scaleUpDown {
  animation: scaleUpDown 2s infinite;
}

@keyframes scaleUpDown {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/*------------------------------------*\
    匯入機能
\*------------------------------------*/
.w-900 {
  max-width: 1000px;
}

.silde {
  position: absolute;
  top: 35%;
  left: 49%;
  transform: translateX(-50%);
  width: 85%;
}

.silde img {
  width: 100%;
  animation: silde 0.8s;
  display: none;
  height: auto;
}

.a_active {
  display: inline-block !important;
}

.next, .pre {
  position: absolute;
  font-size: 2em;
  top: 58%;
  width: 4%;
  cursor: pointer;
}

.next {
  right: 1%;
}

.pre {
  left: 1.5%;
  z-index: 2;
}

@keyframes silde {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
#load_screen {
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  animation: rotator 1.4s linear infinite;
}
@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}
@keyframes colors {
  0% {
    stroke: #4285F4;
  }
  25% {
    stroke: #DE3E35;
  }
  50% {
    stroke: #F7C223;
  }
  75% {
    stroke: #1B9A59;
  }
  100% {
    stroke: #4285F4;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.at_top {
  visibility: hidden;
}

.countdown {
  position: sticky;
  top: 0;
  background: #FD5D5D;
  background-size: cover;
  padding: 10px 0;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  transition: all 1s;
  z-index: 99;
  display: none;
}

.countdown_content {
  max-width: 900px;
  margin: 0 auto;
  font-family: 微軟正黑體, Meiryo, sans-serif, "Noto Sans TC";
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 5px;
  color: #fff;
  text-shadow: 1px 1px 3px #410412;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  text-align: center;
}

#demo {
  color: #fff;
}

@media screen and (max-width: 900px) {
  .countdown {
    padding: 3% 0;
  }
  .countdown_content {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 600px) {
  .countdown_content {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
}
/* ▲Countdown Timer▲ */
/* 英文版文字設定*/
.to_e .countdown_content {
  font-size: 1.5rem;
}

@media screen and (max-width: 900px) {
  .to_e .countdown {
    padding: 3% 0;
  }
  .to_e .countdown_content {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 600px) {
  .to_e .countdown_content {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
}
/* 下面為個別設定*/
/* ボタン自体のstyle */
.button {
  display: inline-block;
  border-radius: 50px;
  transition: 0.8s;
}

.button:hover {
  transform: translateY(5px);
  opacity: 0.5;
}

/* 光らせるためのstyle */
.shine {
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* 光の疑似要素 */
.shine::before {
  content: "";
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
}

/* 光の動き */
@keyframes shine {
  0% {
    left: -160%;
    opacity: 0;
  }
  70% {
    left: -160%;
    opacity: 0.5;
  }
  71% {
    left: -160%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}
/*     開合面板  start   */
.accordion {
  cursor: pointer;
  transition: 0.4s;
  cursor: pointer;
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/*     開合面板  end  */
.language {
  padding: 0.5em 1em;
  background: #FFFFFF;
  color: #000;
  display: inline-block;
  font-size: 100%;
  position: absolute;
  right: 2%;
  top: 2%;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.5s;
  font-family: "Noto Sans JP", sans-serif;
}

.language:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 900px) {
  .language {
    padding: 0.4em 0.8em;
    font-size: 2.5vmin;
  }
}/*# sourceMappingURL=style.css.map */

.SA_footer {
	text-align: center;
  }