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

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

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

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

.btn {
  position: absolute;
}

.bg {
  background-size: cover;
  background-position: center;
  margin: 0 auto;
}
.c-bg{
  opacity: 0;
}

.btn {
  position: absolute;
}


.b5 .btn{
  width: 80%;
  bottom:23%;
  left: 50%;
  transform: translateX(-50%);
  
}


.off01 .btn {
  width: 80%;
  bottom:18%;
  left: 10%;

  animation:  ease-in-out size-off 2s infinite;
}

.off02 .btn {
  width: 80%;
  bottom:22%;
  left: 10%;

  animation:  ease-in-out size-off 2s infinite;
}

.off03 .btn {
  width: 80%;
  bottom:18%;
  left: 10%;

  animation:  ease-in-out size-off 2s infinite;
}
.off04 .btn {
  width: 80%;
  bottom:25%;
  left: 10%;

  animation:  ease-in-out size-off 2s infinite;
}
.fb{
  position: absolute;
  top:21%;
  left: 43%;
  width: 6.5%;

}
@keyframes size-off {
    0%{transform: scale(1);}
    50%{transform: scale(1.1);}
    100%{transform: scale(1);}
}


/*------------------------------------*\
    匯入機能
\*------------------------------------*/
.w-900 {
  max-width: 997px;
}

.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: 99700;
  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);
  }
}
.at_top {
  visibility: hidden;
}

.countdown {
  position: sticky;
  top: 0;
  background-image: url(../img/header.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  transition: all 1s;
  z-index: 99;
  display: none;
}


.text-t {
  position: absolute;
  left: 48%;
  top: 26%;
}
@media screen and (max-width:969px) {
  .text-t{
    left: 45%;
    top: 26%;
  }
}

.countdown_content {
  max-width: 969x;
  position: relative;
  margin: 0 auto;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 5vw, 3rem);
  color: #000;
  text-align: center;
}

.countdown_content img {
  width: 100%;
  max-width: 1001px !important;
}
/* ボタン自体のstyle */
.button {
  display: inline-block;
  border-radius: 10px;
  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 */
.foot_txt {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	text-decoration: none;
	color: rgb(0, 0, 0);
	line-height: 1.5em;
	font-size: 15px;
}
