@charset "UTF-8";
@font-face {
  font-family: Sans-Bold;
  src: local("../fonts/SnowflakeSans-Bold.otf"), url(../fonts/SnowflakeSans-Bold.otf);
}
.hidden-sm {
  display: block;
}
@media all and (max-width: 768px) {
  .hidden-sm {
    display: none;
  }
}

.hidden-md {
  display: none;
}
@media all and (max-width: 768px) {
  .hidden-md {
    display: block;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  font-size: 16px;
  overflow: hidden;
  -webkit-overflow-scrolling: none;
}
html *,
body * {
  font-family: "Sans-Bold";
}

.fp-watermark {
  opacity: 0;
}

.bg_block {
  background-color: rgb(22, 18, 18) !important;
}

#fp-nav {
  visibility: hidden;
}
#fp-nav.visible {
  visibility: visible;
  margin-top: -50px;
}
@media all and (max-width: 768px) {
  #fp-nav.visible {
    top: 100%;
  }
}
#fp-nav ul li, #fp-nav ul li:hover {
  height: 50px;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
#fp-nav ul li .fp-tooltip, #fp-nav ul li:hover .fp-tooltip {
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 2px;
  overflow: visible;
  opacity: 1;
  position: relative;
  z-index: 10;
  width: -moz-max-content;
  width: max-content;
  height: 50px;
  left: 50% !important;
  top: 50%;
  transform: translate(-50%, -90%);
  transition: none;
}
@media all and (max-width: 768px) {
  #fp-nav ul li .fp-tooltip, #fp-nav ul li:hover .fp-tooltip {
    letter-spacing: 1px;
    font-size: 2.3vw;
  }
}
@media all and (max-width: 450px) {
  #fp-nav ul li .fp-tooltip, #fp-nav ul li:hover .fp-tooltip {
    letter-spacing: 0px;
    font-size: 2.6vw;
  }
}
#fp-nav ul li .fp-tooltip .fp-left, #fp-nav ul li:hover .fp-tooltip .fp-left {
  left: 50% !important;
  top: 50%;
  transform: translate(-50%, -50%);
}
#fp-nav ul li a, #fp-nav ul li:hover a {
  position: relative;
  width: 100%;
}
#fp-nav ul li a span + span, #fp-nav ul li:hover a span + span {
  width: 0;
  height: 0;
  transition: none;
}
#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span {
  width: 40px;
  height: 40px;
  border-radius: 0;
  z-index: -1;
  top: 1em;
  left: 0;
  top: 11px;
  left: 5px;
  background: rgb(237, 99, 176);
  background: linear-gradient(145deg, rgb(237, 99, 176) 0%, rgb(65, 22, 147) 50%);
}
@media all and (max-width: 768px) {
  #fp-nav ul li a.active span, #fp-nav ul li:hover a.active span {
    width: 70px;
    height: 70px;
    top: -15px;
  }
}
@media all and (max-width: 450px) {
  #fp-nav ul li a.active span, #fp-nav ul li:hover a.active span {
    width: 25px;
    height: 25px;
    top: 20px;
  }
}
#fp-nav ul li:nth-child(1), #fp-nav ul li:nth-child(2), #fp-nav ul li:nth-child(8), #fp-nav ul li:hover:nth-child(1), #fp-nav ul li:hover:nth-child(2), #fp-nav ul li:hover:nth-child(8) {
  opacity: 0;
}
#fp-nav ul li:nth-child(4) a.active span, #fp-nav ul li:hover:nth-child(4) a.active span {
  background: rgb(0, 181, 203);
  background: linear-gradient(145deg, rgb(0, 181, 203) 0%, rgb(0, 42, 129) 50%);
}
#fp-nav ul li:nth-child(5) a.active span, #fp-nav ul li:hover:nth-child(5) a.active span {
  background: rgb(241, 156, 0);
  background: linear-gradient(145deg, rgb(241, 156, 0) 0%, rgb(235, 92, 0) 50%);
}
#fp-nav ul li:nth-child(6) a.active span, #fp-nav ul li:hover:nth-child(6) a.active span {
  background: rgb(235, 199, 28);
  background: linear-gradient(145deg, rgb(235, 199, 28) 30%, rgb(55, 83, 32) 95%);
}
#fp-nav ul li:nth-child(7) a.active span, #fp-nav ul li:hover:nth-child(7) a.active span {
  background: rgb(248, 136, 219);
  background: linear-gradient(160deg, rgb(248, 136, 219) 0%, rgb(229, 89, 139) 60%);
}
@media all and (max-width: 768px) {
  #fp-nav ul {
    display: flex;
    margin-left: -145px;
    gap: 10px;
  }
}
@media all and (max-width: 450px) {
  #fp-nav ul {
    display: flex;
    margin-left: -100px;
    gap: 0px;
  }
}

#loading {
  position: absolute;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0;
  z-index: -10;
  transition: all 0.5;
  /* X-ROTATING BOXES */
}
#loading.active {
  opacity: 1;
  z-index: 10000;
}
#loading .spinner-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading .configure-border-1 {
  width: 115px;
  height: 115px;
  padding: 3px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fb5b53;
  background: #fff;
  animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
}
@media all and (max-width: 450px) {
  #loading .configure-border-1 {
    width: 70px;
    height: 70px;
  }
}
#loading .configure-border-2 {
  width: 115px;
  height: 115px;
  padding: 3px;
  left: -115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(63, 249, 220);
  background: #ddd;
  transform: rotate(45deg);
  animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
}
@media all and (max-width: 450px) {
  #loading .configure-border-2 {
    width: 70px;
    height: 70px;
  }
}
#loading .configure-core {
  width: 100%;
  height: 100%;
  background-color: #1d2630;
  background-color: #000;
}
@keyframes configure-clockwise {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes configure-xclockwise {
  0% {
    transform: rotate(45deg);
  }
  25% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(-135deg);
  }
  75% {
    transform: rotate(-225deg);
  }
  100% {
    transform: rotate(-315deg);
  }
}

/* Styles for the demo */
h1 {
  font-size: 6em;
  font-size: calc(2em + 2vw);
  font-family: arial, helvetica;
  margin: 0;
}

.intro p {
  width: 50%;
  margin: 0.5em auto;
  font-size: 1.65em;
}

.section {
  color: #fff;
  text-align: center;
}

/* Backgrounds colors for sections */
/* Overwriting styles for the navigation dots */
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  background: white;
}

:root {
  --color-bg1: rgb(8, 10, 15);
  --color-bg2: rgb(0, 17, 32);
  --color1: 18, 113, 255;
  --color2: 107, 74, 255;
  --color3: 100, 100, 255;
  --color4: 50, 160, 220;
  --color5: 80, 47, 122;
  --color-interactive: 140, 100, 255;
  --circle-size: 80%;
  --blending: hard-light;
  --color1_purple: 148, 69, 152;
  --color2_purple: 135, 64, 153;
  --color3_purple: 69, 63, 134;
  --color4_purple: 64, 27, 128;
  --color5_purple: 44, 15, 101;
  --color-interactive_purpl: 143, 68, 152;
  --color1_blue: 0, 41, 199;
  --color2_blue: 0, 41, 122;
  --color3_blue: 0, 62, 135;
  --color4_blue: 0, 83, 115;
  --color5_blue: 0, 76, 106;
  --color-interactive_blue: 0, 89, 126;
  --color1_brown: 146, 69, 0;
  --color2_brown: 158, 75, 0;
  --color3_brown: 147, 68, 22;
  --color4_brown: 135, 61, 31;
  --color5_brown: 109, 48, 28;
  --color-interactive_brown: 157, 75, 0;
  --color1_yellow: 126, 113, 29;
  --color2_yellow: 152, 138, 38;
  --color3_yellow: 124, 127, 52;
  --color4_yellow: 96, 144, 56;
  --color5_yellow: 65, 82, 42;
  --color-interactive_yellow: 164, 145, 34;
  --color1_pink: 162, 87, 151;
  --color2_pink: 172, 68, 119;
  --color3_pink: 162, 78, 119;
  --color4_pink: 189, 79, 107;
  --color5_pink: 111, 44, 57;
  --color-interactive_pink: 207, 111, 192;
}

h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

p {
  line-height: 1.6;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
.gradient-bg {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
}
.gradient-bg .svgBlur {
  display: none;
}
.gradient-bg .noiseBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0.3;
}
.gradient-bg .gradients-container {
  filter: url(#goo) blur(40px);
  width: 100%;
  height: 100%;
}
.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}
.gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}
.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}
.gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}
.gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
}
.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}
.gradient-bg_purple .g1 {
  background: radial-gradient(circle at center, rgba(var(--color1_purple), 0.8) 0, rgba(var(--color1_purple), 0) 50%) no-repeat;
}
.gradient-bg_purple .g2 {
  background: radial-gradient(circle at center, rgba(var(--color2_purple), 0.8) 0, rgba(var(--color2_purple), 0) 50%) no-repeat;
}
.gradient-bg_purple .g3 {
  background: radial-gradient(circle at center, rgba(var(--color3_purple), 0.8) 0, rgba(var(--color3_purple), 0) 50%) no-repeat;
}
.gradient-bg_purple .g4 {
  background: radial-gradient(circle at center, rgba(var(--color4_purple), 0.8) 0, rgba(var(--color4_purple), 0) 50%) no-repeat;
}
.gradient-bg_purple .g5 {
  background: radial-gradient(circle at center, rgba(var(--color5_purple), 0.8) 0, rgba(var(--color5_purple), 0) 50%) no-repeat;
}
.gradient-bg_purple .interactive {
  background: radial-gradient(circle at center, rgba(var(--color-interactive_purple), 0.8) 0, rgba(var(--color-interactive_purple), 0) 50%) no-repeat;
}
.gradient-bg_blue .g1 {
  background: radial-gradient(circle at center, rgba(var(--color1_blue), 0.8) 0, rgba(var(--color1_blue), 0) 50%) no-repeat;
}
.gradient-bg_blue .g2 {
  background: radial-gradient(circle at center, rgba(var(--color2_blue), 0.8) 0, rgba(var(--color2_blue), 0) 50%) no-repeat;
}
.gradient-bg_blue .g3 {
  background: radial-gradient(circle at center, rgba(var(--color3_blue), 0.8) 0, rgba(var(--color3_blue), 0) 50%) no-repeat;
}
.gradient-bg_blue .g4 {
  background: radial-gradient(circle at center, rgba(var(--color4_blue), 0.8) 0, rgba(var(--color4_blue), 0) 50%) no-repeat;
}
.gradient-bg_blue .g5 {
  background: radial-gradient(circle at center, rgba(var(--color5_blue), 0.8) 0, rgba(var(--color5_blue), 0) 50%) no-repeat;
}
.gradient-bg_blue .interactive {
  background: radial-gradient(circle at center, rgba(var(--color-interactive_blue), 0.8) 0, rgba(var(--color-interactive_blue), 0) 50%) no-repeat;
}
.gradient-bg_brown .g1 {
  background: radial-gradient(circle at center, rgba(var(--color1_brown), 0.8) 0, rgba(var(--color1_brown), 0) 50%) no-repeat;
}
.gradient-bg_brown .g2 {
  background: radial-gradient(circle at center, rgba(var(--color2_brown), 0.8) 0, rgba(var(--color2_brown), 0) 50%) no-repeat;
}
.gradient-bg_brown .g3 {
  background: radial-gradient(circle at center, rgba(var(--color3_brown), 0.8) 0, rgba(var(--color3_brown), 0) 50%) no-repeat;
}
.gradient-bg_brown .g4 {
  background: radial-gradient(circle at center, rgba(var(--color4_brown), 0.8) 0, rgba(var(--color4_brown), 0) 50%) no-repeat;
}
.gradient-bg_brown .g5 {
  background: radial-gradient(circle at center, rgba(var(--color5_brown), 0.8) 0, rgba(var(--color5_brown), 0) 50%) no-repeat;
}
.gradient-bg_brown .interactive {
  background: radial-gradient(circle at center, rgba(var(--color-interactive_brown), 0.8) 0, rgba(var(--color-interactive_brown), 0) 50%) no-repeat;
}
.gradient-bg_yellow .g1 {
  background: radial-gradient(circle at center, rgba(var(--color1_yellow), 0.8) 0, rgba(var(--color1_yellow), 0) 50%) no-repeat;
}
.gradient-bg_yellow .g2 {
  background: radial-gradient(circle at center, rgba(var(--color2_yellow), 0.8) 0, rgba(var(--color2_yellow), 0) 50%) no-repeat;
}
.gradient-bg_yellow .g3 {
  background: radial-gradient(circle at center, rgba(var(--color3_yellow), 0.8) 0, rgba(var(--color3_yellow), 0) 50%) no-repeat;
}
.gradient-bg_yellow .g4 {
  background: radial-gradient(circle at center, rgba(var(--color4_yellow), 0.8) 0, rgba(var(--color4_yellow), 0) 50%) no-repeat;
}
.gradient-bg_yellow .g5 {
  background: radial-gradient(circle at center, rgba(var(--color5_yellow), 0.8) 0, rgba(var(--color5_yellow), 0) 50%) no-repeat;
}
.gradient-bg_yellow .interactive {
  background: radial-gradient(circle at center, rgba(var(--color-interactive_yellow), 0.8) 0, rgba(var(--color-interactive_yellow), 0) 50%) no-repeat;
}
.gradient-bg_pink .g1 {
  background: radial-gradient(circle at center, rgba(var(--color1_pink), 0.8) 0, rgba(var(--color1_pink), 0) 50%) no-repeat;
}
.gradient-bg_pink .g2 {
  background: radial-gradient(circle at center, rgba(var(--color2_pink), 0.8) 0, rgba(var(--color2_pink), 0) 50%) no-repeat;
}
.gradient-bg_pink .g3 {
  background: radial-gradient(circle at center, rgba(var(--color3_pink), 0.8) 0, rgba(var(--color3_pink), 0) 50%) no-repeat;
}
.gradient-bg_pink .g4 {
  background: radial-gradient(circle at center, rgba(var(--color4_pink), 0.8) 0, rgba(var(--color4_pink), 0) 50%) no-repeat;
}
.gradient-bg_pink .g5 {
  background: radial-gradient(circle at center, rgba(var(--color5_pink), 0.8) 0, rgba(var(--color5_pink), 0) 50%) no-repeat;
}
.gradient-bg_pink .interactive {
  background: radial-gradient(circle at center, rgba(var(--color-interactive_pink), 0.8) 0, rgba(var(--color-interactive_pink), 0) 50%) no-repeat;
}

.popup {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: inline-block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  z-index: 101;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease-in;
}
.popup.popup-hidden {
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.popup_content {
  background-color: #fff;
  color: #000;
  width: 85%;
  min-width: 230px;
  max-width: -moz-max-content;
  max-width: max-content;
  height: auto;
  padding: 4% 4% 3%;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: min(1.3vw, 18px);
}
@media all and (max-width: 768px) {
  .popup_content {
    font-size: 2.2vw;
  }
}
@media all and (max-width: 450px) {
  .popup_content {
    padding: 6% 4% 5%;
    font-size: 3.5vw;
    max-width: 60vw;
  }
}
.popup .btn_sure {
  padding: 7px 35px;
  background: #000;
  color: #fff;
  display: inline-block;
  margin-top: 8%;
  font-size: min(1.3vw, 18px);
  cursor: pointer;
}
@media all and (max-width: 768px) {
  .popup .btn_sure {
    font-size: 2vw;
  }
}
@media all and (max-width: 768px) {
  .popup .btn_sure {
    font-size: 3.5vw;
  }
}

.page1 {
  font-family: "Sans-Bold";
  text-align: left;
  overflow: hidden;
}
.page1 .t1 {
  font-size: min(9vw, 100px);
  line-height: 0.9;
  margin-bottom: 0.5em;
  font-weight: bolder;
}
@media all and (max-width: 768px) {
  .page1 .t1 {
    line-height: 1.5;
  }
}
.page1 .t2 {
  font-size: min(4.5vw, 28px);
  line-height: 1.2;
  margin-bottom: 0.8em;
}
@media all and (max-width: 768px) {
  .page1 .t2 {
    text-align: center;
  }
}
.page1 .t3 {
  font-size: 16px;
  font-size: min(3.2vw, 18px);
  line-height: 1.8;
}
@media all and (max-width: 768px) {
  .page1 .t3 {
    text-align: center;
  }
}
.page1 .s1_1 {
  padding: 0 3%;
  width: 40%;
}
@media all and (max-width: 768px) {
  .page1 .s1_1 {
    width: 100%;
    height: 40vh;
  }
}
@media all and (max-width: 450px) {
  .page1 .s1_1 {
    height: 45vh;
  }
}
@media all and (max-width: 320px) {
  .page1 .s1_1 {
    height: 40vh;
  }
}
.page1 .s1_1 .kv_text {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  display: inline-block;
  z-index: 1;
}
@media all and (max-width: 768px) {
  .page1 .s1_1 .kv_text {
    transform: translate(-50%, -50%);
  }
}
.page1 .s1_2 {
  width: 60%;
}
@media all and (max-width: 768px) {
  .page1 .s1_2 {
    width: 100%;
    text-align: center;
    height: 60vh;
  }
}
@media all and (max-width: 450px) {
  .page1 .s1_2 {
    height: 55vh;
  }
}
@media all and (max-width: 320px) {
  .page1 .s1_2 {
    height: 60vh;
  }
}
.page1 .kv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  overflow-y: hidden;
}
@media all and (max-width: 768px) {
  .page1 .kv {
    flex-direction: column;
    max-height: 100vh;
    overflow: hidden;
  }
}
.page1 .grid-container {
  display: grid;
  grid-template-columns: repeat(10, 6vw); /* 10列 ，每列寬度為65vw的1/10 */
  grid-template-rows: repeat(9, 6vw); /* 9行 */
  gap: 0px; /* 每個格子的間距 */
}
@media all and (max-width: 768px) {
  .page1 .grid-container {
    grid-template-columns: repeat(10, 10vw); /* 10列 ，每列寬度為65vw的1/10 */
    grid-template-rows: repeat(9, 10vw); /* 9行 */
  }
}
.page1 .grid-container .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page1 .grid-container .grid-item.noRotate {
  cursor: pointer;
}
.page1 .grid-container .grid-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 確保圖片適應格子大小 */
  transition: transform 0.3s ease; /* 平滑過渡效果 */
  opacity: 0; /* 初始時格子不可見 */
  animation: fadeInOut 5s ease-in-out infinite; /* 默認動畫 */
}
.page1 .grid-container .grid-item.img1::after {
  content: "";
  width: 200%;
  height: 200%;
  display: inline-block;
  background-image: url(../images/kv_img_1.jpg);
  background-size: contain;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 1;
  display: none;
}
.page1 .grid-container .grid-item.img1.show::after {
  display: block;
}
.page1 .grid-container .grid-item.img2::after {
  content: "";
  width: 200%;
  height: 200%;
  display: inline-block;
  background-image: url(../images/kv_img_2.jpg);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 1;
  display: none;
}
.page1 .grid-container .grid-item.img2.show::after {
  display: block;
}
.page1 .grid-container .grid-item.img3::after {
  content: "";
  width: 200%;
  height: 200%;
  display: inline-block;
  background-image: url(../images/kv_img_3.jpg);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 1;
  display: none;
}
.page1 .grid-container .grid-item.img3.show::after {
  display: block;
}
.page1 .grid-container .grid-item.img4::after {
  content: "";
  width: 200%;
  height: 200%;
  display: inline-block;
  background-image: url(../images/kv_img_4.jpg);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: 1;
  display: none;
}
.page1 .grid-container .grid-item.img4.show::after {
  display: block;
}
.page1 .grid-container .grid-item.img5::after {
  content: "";
  width: 200%;
  height: 200%;
  display: inline-block;
  background-image: url(../images/kv_img_5.jpg);
  background-size: contain;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 1;
  display: none;
}
.page1 .grid-container .grid-item.img5.show::after {
  display: block;
}
.page1 .grid-container .grid-item .scrolldownImg {
  display: block;
  transform: scale(2);
  transform-origin: top left;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 1;
  animation-play-state: paused;
}
.page1 .grid-container .grid-item.snowClick .snow {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  letter-spacing: 1px;
  width: 200%;
  height: 50px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}
@media all and (max-width: 1024px) {
  .page1 .grid-container .grid-item.snowClick .snow {
    font-size: 12px;
    letter-spacing: 0;
    height: 40px;
  }
}
@media all and (max-width: 450px) {
  .page1 .grid-container .grid-item.snowClick .snow {
    height: 25px;
    font-size: 3vw;
  }
}
.page1 .grid-container .grid-item.snowClick .snow::before {
  content: "點擊雪花看驚喜";
  font-size: 1vw;
}
@media all and (max-width: 1024px) {
  .page1 .grid-container .grid-item.snowClick .snow::before {
    font-size: 1.7vw;
  }
}
@media all and (max-width: 450px) {
  .page1 .grid-container .grid-item.snowClick .snow::before {
    content: "點擊雪花";
    font-size: 2.5vw;
  }
}
.page1 .grid-container .grid-item.snowClick .snow::after {
  content: "";
  background: url(../images/tap.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 100%;
  display: inline-block;
  position: relative;
  top: -15px;
  right: 0px;
}
@media all and (max-width: 1024px) {
  .page1 .grid-container .grid-item.snowClick .snow::after {
    width: 40px;
    top: -14px;
  }
}
@media all and (max-width: 450px) {
  .page1 .grid-container .grid-item.snowClick .snow::after {
    width: 26px;
    top: -7px;
    right: -3px;
  }
}
@media all and (max-width: 768px) {
  .page1 .grid-container .grid-item.snowClick span {
    display: none;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1080deg); /* 3圈 = 360度 * 3 */
  }
}
.page2 {
  /* The typing effect */
  /* The typewriter cursor effect */
  /* 以上是1行的打字特效 */
  /* 以下是2行的打字特效 */
}
.page2 .typewriter {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.page2 .typewriter p {
  color: #fff;
  font-family: "Sans-Bold";
  font-size: 20px;
  font-size: 2vw;
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid orange;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 auto;
  /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em;
  /* Adjust as needed */
  width: -moz-max-content;
  width: max-content;
}
.page2 .typewriter.active p {
  animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
.page2 .typing-container {
  font-size: 2vw;
  overflow: hidden;
  white-space: nowrap;
  animation: caret-blink 1s step-end infinite;
  text-align: center;
  display: inline-block;
  width: 30ch;
  /* 第一行動畫 */
  /* 第二行動畫，延遲4秒開始 */
}
.page2 .typing-container .typing-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 1px;
}
.page2 .typing-container .line1 {
  width: 0;
  border-right: 2px solid white;
  display: block;
}
.page2 .typing-container .line2 {
  width: 0;
  border-right: 2px solid transparent;
  display: block;
}
.page2 .typing-container .line3 {
  width: 0;
  border-right: 2px solid transparent;
  display: block;
}
.page2 .typing-container.active .line1 {
  width: 0;
  /* 顯示光標 */
  animation: typing1 1.5s steps(14) 1s forwards, caret-blink 1s step-end infinite 0.5s, caret-hide 0.5s forwards 3s;
  /* caret-hide 讓光標在5秒後消失 */
}
.page2 .typing-container.active .line2 {
  width: 0;
  /* 初始隱藏光標 */
  animation: typing2 1.5s steps(17) 3s forwards, caret-blink 5.5s step-end infinite 0.5s, caret-hide 0.5s forwards 5s;
  /* 延遲5秒光標才開始閃爍 */
}
.page2 .typing-container.active .line3 {
  width: 0;
  /* 初始隱藏光標 */
  animation: typing3 1.5s steps(17) 5s forwards, caret-blink 10s step-end infinite, caret-hide 0.5s forwards infinite 5s;
  /* 延遲5秒光標才開始閃爍 */
}

/* 光標閃爍效果 */
@keyframes caret-blink {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: white;
    border-color: orange;
  }
}
/* 光標消失效果 */
@keyframes caret-hide {
  from {
    border-color: white;
    border-color: orange;
  }
  to {
    border-color: transparent;
  }
}
/* 第一行的打字效果 */
@keyframes typing1 {
  from {
    width: 0;
  }
  to {
    width: 10ch;
    /* 根據第一行的字元長度調整 */
  }
}
/* 第二行的打字效果 */
@keyframes typing2 {
  from {
    width: 0;
  }
  to {
    width: 14ch;
    /* 根據第二行的字元長度調整 */
  }
}
/* 第二行的打字效果 */
@keyframes typing3 {
  from {
    width: 0;
  }
  to {
    width: 14.2ch;
    /* 根據第二行的字元長度調整 */
  }
}
.page3 .checkIn {
  position: absolute;
  position: relative;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page3 .checkIn .search_name {
  border: 1px solid #fff;
  display: inline-block;
  padding: 3px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  display: inline-flex;
  flex-direction: row;
}
@media all and (max-width: 450px) {
  .page3 .checkIn .search_name {
    top: 6%;
  }
}
.page3 .checkIn .search_name input {
  font-size: 16px;
  background-color: transparent !important;
  border: 0px;
  outline: 0px;
  padding: 7px 10px;
  letter-spacing: 2px;
  color: gold;
  color: #fff;
  -webkit-text-fill-color: white;
}
.page3 .checkIn .search_name input::-moz-placeholder {
  color: #9a9a9a;
}
.page3 .checkIn .search_name input::placeholder {
  color: #9a9a9a;
}
.page3 .checkIn .search_name input::-webkit-input-placeholder {
  text-shadow: none;
  -webkit-text-fill-color: initial;
}
.page3 .checkIn .search_name input:-webkit-autofill,
.page3 .checkIn .search_name input:-webkit-autofill:hover,
.page3 .checkIn .search_name input:-webkit-autofill:focus,
.page3 .checkIn .search_name input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
}
.page3 .checkIn .search_name .btn {
  font-size: 14px;
  border: 0px;
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 6px 30px 5px;
  cursor: pointer;
  letter-spacing: 1px;
}
@media all and (max-width: 450px) {
  .page3 .checkIn .search_name .btn {
    width: -moz-max-content;
    width: max-content;
  }
}
.page3 .content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%) scale(0.8);
}
@media only screen and (max-width: 1280px) {
  .page3 .content {
    transform: translate(-45%, -50%) scale(0.7);
  }
}
@media all and (max-width: 1024px) {
  .page3 .content {
    transform: translate(-45%, -50%) scale(0.52);
  }
}
@media all and (max-width: 768px) {
  .page3 .content {
    transform: translate(-50%, -50%) scale(0.5);
  }
}
@media all and (max-width: 450px) {
  .page3 .content {
    transform: translate(-50%, -50%) scale(0.33);
  }
}
.page3 .grid-container {
  display: grid;
  grid-template-columns: repeat(29, 50px); /* 15列 */
  grid-template-rows: repeat(6, 78px); /* 6行 */
}
.page3 .grid-container.mask {
  -webkit-mask-image: url(../images/svg/VML.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.page3 .grid-container .grid-item {
  width: 50px;
  height: 70px;
  height: -moz-max-content;
  height: max-content;
  background-color: transparent; /* 預設背景色為透明 */
}
.page3 .grid-container .image-cell {
  background-color: #e91e63; /* 粉紅色背景 */
  position: relative;
}
.page3 .grid-container .image-cell > span::after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page3 .grid-container .image-cell.show > span::after {
  opacity: 0;
}
.page3 .grid-item {
  width: 50px;
  height: 80px;
  height: -moz-max-content;
  height: max-content;
  height: 100%;
  background-color: transparent; /* 預設背景色為透明 */
}
.page3 .image-cell {
  position: relative;
  background-color: #fff;
}
.page3 .image-cell > span img {
  visibility: hidden;
}
.page3 .image-cell > span::after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page3 .image-cell.show > span::after {
  opacity: 0;
}
.page3 .grid-container_wrapper {
  display: flex;
  gap: 20px;
}
@media all and (max-width: 768px) {
  .page3 .grid-container_wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.page3 .grid-container_wrapper.mask {
  -webkit-mask-image: url(../images/svg/VML.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.page3 .grid-container_1 {
  display: grid;
  grid-template-columns: repeat(9, 50px); /* 9列 */
  grid-template-rows: repeat(6, 80px); /* 6行 */
}
.page3 .grid-container_2 {
  display: grid;
  grid-template-columns: repeat(13, 50px); /* 13列 */
  grid-template-rows: repeat(6, 80px); /* 6行 */
}
.page3 .grid-container_3 {
  display: grid;
  grid-template-columns: repeat(10, 50px); /* 10列 */
  grid-template-rows: repeat(6, 80px); /* 6行 */
}
.page3 .card {
  width: 200px;
  height: 300px;
  perspective: 1000px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 3D 視角 */
  width: 280px;
  height: 432px;
}
@media all and (max-width: 450px) {
  .page3 .card {
    width: 60vw;
    height: 92.5vw;
  }
}
.page3 .card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  position: relative;
}
.page3 .card-front,
.page3 .card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  /* 隱藏背面 */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
  flex-direction: column;
}
.page3 .card-front {
  border: 1px solid #9a53b0;
  box-shadow: 0 0 10px #7e3f91, 0 0 10px #7e3f91, 0 0 10px #7e3f91;
  cursor: pointer;
}
@media all and (max-width: 450px) {
  .page3 .card-front {
    box-shadow: 0 0 5px #7e3f91, 0 0 5px #7e3f91, 0 0 5px #7e3f91;
  }
}
.page3 .card-front::before {
  z-index: 10;
  content: "請點擊卡片";
  color: #fff;
  font-size: 0.9vw;
  letter-spacing: 1px;
  position: absolute;
  bottom: -3.5em;
  left: 50%;
  transform: translate(-50%, 0%);
  padding: 5px 15px;
  width: -moz-max-content;
  width: max-content;
}
@media all and (max-width: 768px) {
  .page3 .card-front::before {
    font-size: 2.5vw;
    bottom: -3em;
  }
}
@media all and (max-width: 450px) {
  .page3 .card-front::before {
    font-size: 3.5vw;
  }
}
.page3 .card-front::after {
  content: "";
  background-image: url(../images/rotate.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 350px;
  width: 170%;
  height: 30%;
  display: inline-block;
  position: absolute;
  z-index: 1;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.page3 .card-back {
  border: 1px solid #9a53b0;
  box-shadow: 0 0 10px #7e3f91, 0 0 10px #7e3f91, 0 0 10px #7e3f91;
  transform: rotateY(180deg);
  position: relative;
  z-index: 1;
}
@media all and (max-width: 450px) {
  .page3 .card-back {
    box-shadow: 0 0 5px #7e3f91, 0 0 5px #7e3f91, 0 0 5px #7e3f91;
  }
}
.page3 .flipped .card-inner {
  transform: rotateY(180deg);
}
.page3 .flipped .card-front::before {
  display: none;
}
.page3 .badge {
  width: 100%;
  height: 100%;
}
.page3 .badge img {
  display: block;
}
.page3 .arrive {
  background: #d3d3d5;
  height: 100%;
}
.page3 .arrive_name {
  color: #000;
  font-weight: bold;
  font-size: min(2.2vw, 32px);
  padding: 10% 0 3%;
}
@media all and (max-width: 450px) {
  .page3 .arrive_name {
    padding-top: 7vw;
    font-size: 6vw;
    padding-bottom: 2vw;
  }
}
.page3 .arrive_status {
  color: #000;
  font-size: 16px;
  font-size: min(1.3vw, 18px);
  letter-spacing: 1px;
  font-weight: bold;
  font-family: "Sans-Bold";
}
@media all and (max-width: 450px) {
  .page3 .arrive_status {
    font-size: 5vw;
  }
}
.page3 .arrive_qrcode {
  width: 80%;
  width: 85%;
  margin: 5% auto;
  position: relative;
}
.page3 .arrive_qrcode::before {
  content: "";
  background-image: url(../images/stamp_1.png);
}
.page3 .arrive_btn {
  color: #fff;
  background: #000;
  font-size: min(1.5vw, 20px);
  font-weight: bold;
  letter-spacing: 1px;
  padding: 7px 35px;
  display: inline-block;
  font-family: sans-serif;
  max-width: 150px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media all and (max-width: 450px) {
  .page3 .arrive_btn {
    font-size: 4vw;
  }
}
.page3 .arrive_tag {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.page3 .arrive_tag::before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background: #fad4f6;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.79;
}
.page3 .arrive_tag img {
  position: absolute;
  z-index: 1;
  width: 85%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page3 .countDown {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 80%);
  z-index: 100;
}
.page3 .countDown_content {
  display: inline-block;
  text-align: center;
  position: relative;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
}
@media all and (max-width: 768px) {
  .page3 .countDown_content {
    transform: translate(0%, -50%) scale(0.85);
  }
}
.page3 .countDown .logo {
  max-width: 80px;
  margin: 0 auto 10%;
}
.page3 .countDown .text {
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 2%;
}
@media all and (max-width: 768px) {
  .page3 .countDown .text {
    margin-bottom: 5%;
  }
}
.page3 .countDown .scrolldown_pink {
  max-width: 18%;
  margin: 15% auto 0;
  cursor: pointer;
}
@media all and (max-width: 450px) {
  .page3 .countDown .scrolldown_pink {
    max-width: 35%;
    margin: 20% auto 0;
  }
}
.page3_full .content {
  transform: translate(-50%, -50%) scale(1);
}
.page3 .person {
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page4 .wrapper {
  position: absolute;
  position: relative;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page4 .agenda {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 40%;
}
@media all and (max-width: 768px) {
  .page4 .agenda {
    max-width: 80%;
  }
}
@media all and (max-width: 450px) {
  .page4 .agenda {
    max-width: 90%;
  }
}
.page4 .agenda_title {
  color: #00b7cc;
  font-size: 2vw;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
  padding: 17px 15px 15px;
  display: block;
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-bottom: 30px;
}
@media all and (max-width: 768px) {
  .page4 .agenda_title {
    font-size: 3.2vw;
  }
}
@media all and (max-width: 450px) {
  .page4 .agenda_title {
    font-size: 4.5vw;
  }
}
.page4 .agenda ul li {
  padding: 15px;
  display: flex;
  background-color: rgba(0, 183, 204, 0.2);
  margin-bottom: 10px;
  font-size: 1.2vw;
  letter-spacing: 1px;
}
@media all and (max-width: 768px) {
  .page4 .agenda ul li {
    font-size: 2.5vw;
  }
}
@media all and (max-width: 450px) {
  .page4 .agenda ul li {
    font-size: 3.5vw;
    font-size: 4vw;
  }
}
.page4 .agenda ul li span {
  font-family: "Sans-Bold";
}
.page4 .agenda ul li span:first-child {
  width: 50%;
}
@media all and (max-width: 450px) {
  .page4 .agenda ul li span:first-child {
    width: 45%;
  }
}
.page4 .agenda ul li span:last-child {
  width: 50%;
  text-align: left;
}
@media all and (max-width: 450px) {
  .page4 .agenda ul li span:last-child {
    width: 55%;
  }
}

.page5 .wrapper {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page5 .performer {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.page5 .performer .container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page5 .performer .title {
  display: flex;
  justify-content: center;
  color: #eb5c00;
  font-size: 2vw;
  letter-spacing: 1px;
  font-family: "Sans-Bold";
  font-weight: bold;
  position: relative;
  height: 25%;
  align-items: flex-end;
  margin-bottom: 5%;
  text-shadow: 1px 2px 5px #2b201c;
}
@media all and (max-width: 768px) {
  .page5 .performer .title {
    font-size: 3.2vw;
  }
}
@media all and (max-width: 450px) {
  .page5 .performer .title {
    font-size: 4.5vw;
  }
}
.page5 .performer .speakers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  gap: 5%;
}
@media all and (max-width: 450px) {
  .page5 .performer .speakers {
    flex-direction: column;
    gap: 20px;
  }
}
.page5 .performer .speakers .speaker {
  position: relative;
  margin: 0 1vw;
  transition: all 1s;
  animation: centerOut 1s ease-in-out;
}
.page5 .performer .speakers.moveIn .speaker {
  animation: centerIn 1s ease-in-out;
}
.page5 .performer .speaker-info {
  position: absolute;
  top: 20%;
  left: -15%;
  z-index: 1;
  text-align: left;
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
}
.page5 .performer .speaker-name,
.page5 .performer .speaker-title {
  color: #fff;
}
.page5 .performer .speaker-name {
  font-size: 1.4vw;
  font-size: 1.7vw;
  font-weight: bold;
}
@media all and (max-width: 768px) {
  .page5 .performer .speaker-name {
    font-size: 3vw;
  }
}
@media all and (max-width: 450px) {
  .page5 .performer .speaker-name {
    font-size: 4vw;
  }
}
.page5 .performer .speaker-title {
  font-size: 1vw;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 5px;
}
@media all and (max-width: 768px) {
  .page5 .performer .speaker-title {
    font-size: 2vw;
  }
}
@media all and (max-width: 450px) {
  .page5 .performer .speaker-title {
    font-size: 2.8vw;
  }
}
.page5 .performer .speaker-circle {
  position: relative;
  width: 20vw;
  height: 20vw;
  -webkit-clip-path: circle(50%);
          clip-path: circle(50%);
  background: #000;
  z-index: 0;
}
@media all and (max-width: 768px) {
  .page5 .performer .speaker-circle {
    width: 35vw;
    height: 35vw;
  }
}
@media all and (max-width: 450px) {
  .page5 .performer .speaker-circle {
    width: 55vw;
    height: 55vw;
  }
}
.page5 .performer .speaker-circle img {
  position: absolute;
  width: 86%;
  right: -4%;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.page5 .performer .btn_and_more {
  max-width: 150px;
  width: 150px;
  margin: 5% 5% 0 auto;
  cursor: pointer;
}
.page5 .performance {
  animation: centerOut 1s ease-in-out;
}
.page5 .performance.moveIn {
  animation: centerIn 1s ease-in-out;
}
.page5 .performance .performance-circle {
  position: relative;
  width: 50vw;
  height: 50vw;
  -webkit-clip-path: circle(50%);
          clip-path: circle(50%);
  background: #000;
  z-index: 0;
}
@media all and (max-width: 768px) {
  .page5 .performance .performance-circle {
    width: 75vw;
    height: 75vw;
  }
}
@media all and (max-width: 450px) {
  .page5 .performance .performance-circle {
    width: 85vw;
    height: 85vw;
  }
}
.page5 .performance .performance-circle img {
  position: absolute;
  width: 90%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 15%;
  left: 5%;
}
.page5 .performance .performance {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.page5 .performance .performance-detail {
  position: relative;
  width: -moz-fit-content;
  width: -moz-max-content;
  width: max-content;
  bottom: 22%;
  color: #eb5c00;
  font-size: 1.7vw;
  font-weight: bold;
  margin: 0% auto 0;
  top: -8em;
  height: 0;
}
@media all and (max-width: 768px) {
  .page5 .performance .performance-detail {
    font-size: 2.5vw;
  }
}
@media all and (max-width: 450px) {
  .page5 .performance .performance-detail {
    font-size: 3vw;
  }
}

@keyframes centerIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
    transform-origin: center;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    transform-origin: center;
  }
}
@keyframes centerOut {
  0% {
    opacity: 1;
    transform: scale(1);
    transform-origin: center;
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
    transform-origin: center;
  }
}
.page6 .wrapper {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page6 .vision {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.page6 .vision .header {
  margin-top: 5%;
}
.page6 .vision .header .title-box .title {
  display: flex;
  justify-content: center;
  color: #ecc81c;
  font-size: 2vw;
  letter-spacing: 1px;
  font-family: "Sans-Bold";
  font-weight: bold;
  position: relative;
  align-items: flex-end;
}
@media all and (max-width: 768px) {
  .page6 .vision .header .title-box .title {
    font-size: 3.2vw;
  }
}
@media all and (max-width: 450px) {
  .page6 .vision .header .title-box .title {
    font-size: 4.5vw;
  }
}
.page6 .vision .header .title-box .sub {
  font-size: 1.3vw;
  display: flex;
  flex-direction: column;
  letter-spacing: 1px;
  margin-top: 5px;
  margin-bottom: 20px;
}
@media all and (max-width: 768px) {
  .page6 .vision .header .title-box .sub {
    font-size: 2vw;
  }
}
@media all and (max-width: 450px) {
  .page6 .vision .header .title-box .sub {
    font-size: 3vw;
  }
}
.page6 .vision .header .title-box .sub span {
  font-size: 90%;
  margin-top: 5px;
  color: #9a9a9a;
}
.page6 .vision .header .vision_input {
  border: 1px solid #fff;
  display: inline-block;
  padding: 3px;
  position: relative;
  top: 8%;
  left: 0%;
  z-index: 1;
  display: inline-flex;
  flex-direction: row;
  width: 30%;
  justify-content: space-between;
}
@media all and (max-width: 1024px) {
  .page6 .vision .header .vision_input {
    width: 40%;
  }
}
@media all and (max-width: 768px) {
  .page6 .vision .header .vision_input {
    width: 65%;
  }
}
@media all and (max-width: 450px) {
  .page6 .vision .header .vision_input {
    width: 88%;
  }
}
.page6 .vision .header .vision_input input {
  font-size: 16px;
  background-color: transparent !important;
  border: 0px;
  outline: 0px;
  padding: 7px 10px;
  letter-spacing: 2px;
  width: 70%;
  color: gold;
  color: #fff;
  -webkit-text-fill-color: white;
}
@media all and (max-width: 768px) {
  .page6 .vision .header .vision_input input {
    width: 65%;
  }
}
@media all and (max-width: 450px) {
  .page6 .vision .header .vision_input input {
    width: 62%;
  }
}
.page6 .vision .header .vision_input input::-moz-placeholder {
  color: #9a9a9a;
}
.page6 .vision .header .vision_input input::placeholder {
  color: #9a9a9a;
}
.page6 .vision .header .vision_input input::-webkit-input-placeholder {
  text-shadow: none;
  -webkit-text-fill-color: initial;
}
.page6 .vision .header .vision_input input:-webkit-autofill,
.page6 .vision .header .vision_input input:-webkit-autofill:hover,
.page6 .vision .header .vision_input input:-webkit-autofill:focus,
.page6 .vision .header .vision_input input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
}
.page6 .vision .header .vision_input .btn {
  font-size: 14px;
  border: 0px;
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 6px 30px 5px;
  cursor: pointer;
  letter-spacing: 1px;
}
@media all and (max-width: 450px) {
  .page6 .vision .header .vision_input .btn {
    width: 12%;
  }
}
.page6 .vision .content .screen {
  position: relative;
  margin: 2vw 0;
  padding: 2vw 0;
  width: 100%;
  height: 450px;
  height: 60vh;
  border: 2px dashed #ddd;
  overflow: hidden;
  box-sizing: border-box;
  width: 80%;
  margin: 2vw 5% 2vw auto;
  overflow: hidden;
}
@media all and (max-width: 1024px) {
  .page6 .vision .content .screen {
    width: 75%;
  }
}
@media all and (max-width: 768px) {
  .page6 .vision .content .screen {
    margin: 5vw auto;
    height: 60vh;
  }
}
@media all and (max-width: 450px) {
  .page6 .vision .content .screen {
    margin: 20px auto 0;
    width: 90%;
    height: 55vh;
  }
}
.page6 .vision .content .message {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  font-family: sans-serif;
  font-size: 1.2vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.075em;
  background: rgba(255, 232, 125, 0.15);
  border-radius: 0;
  padding: 0.7vw 1.5vw;
  color: #fff;
  word-break: keep-all;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  animation-fill-mode: none;
  opacity: 0;
}
@media all and (max-width: 1024px) {
  .page6 .vision .content .message {
    font-size: 2vw;
  }
}
@media all and (max-width: 768px) {
  .page6 .vision .content .message {
    font-size: 3vw;
  }
}
@media all and (max-width: 450px) {
  .page6 .vision .content .message {
    font-size: 3.8vw;
  }
}
.page6 .vision .content .message.show {
  opacity: 1;
  animation: moveMessage 25s linear infinite;
}
@media all and (max-width: 450px) {
  .page6 .vision .content .message.show {
    animation: moveMessage 15s linear infinite;
  }
}
.page6 .three-char {
  width: 4vw;
  text-align: center;
}
.page6 .multi-char {
  width: 18.8vw;
  text-align: left;
}
.page6 .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.page6 .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fefefe;
  margin: auto;
  padding: 2vw;
  border: 1px solid #888;
  width: 25%;
}
.page6 .modal-content p {
  text-align: center;
}
.page6 .close-btn {
  position: absolute;
  top: 0;
  right: 2%;
  color: #aaa;
  float: right;
  font-size: 2vw;
  font-weight: lighter;
}
.page6 .close-btn:hover,
.page6 .close-btn:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

@keyframes moveMessage {
  from {
    left: 100%; /* 從容器的右邊開始 */
  }
  to {
    left: -100%; /* 移動到容器的左邊 */
  }
}
.page7 .wrapper {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page7 .information {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
@media all and (max-width: 768px) {
  .page7 .information {
    width: auto;
  }
}
.page7 .information .row {
  display: flex;
  align-items: stretch;
  gap: 2%;
}
@media all and (max-width: 768px) {
  .page7 .information .row {
    flex-direction: column;
    align-items: center;
  }
}
.page7 .information .row_content {
  width: 50%;
}
@media all and (max-width: 768px) {
  .page7 .information .row_content {
    width: 50vw;
  }
}
@media all and (max-width: 450px) {
  .page7 .information .row_content {
    width: 65vw;
  }
}
.page7 .information .row #map {
  height: inherit;
  width: 50%;
}
@media all and (max-width: 768px) {
  .page7 .information .row #map {
    width: 50vw;
    height: 50vw;
  }
}
@media all and (max-width: 450px) {
  .page7 .information .row #map {
    width: 65vw;
    height: 65vw;
  }
}
.page7 .information .row .location {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 50%;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 768px) {
  .page7 .information .row .location {
    height: 45vw;
  }
}
@media all and (max-width: 450px) {
  .page7 .information .row .location {
    height: 60vw;
  }
}
.page7 .information .row iframe {
  width: 50%;
}
.page7 .information .title {
  display: flex;
  justify-content: center;
  color: #f889dd;
  font-size: 2vw;
  letter-spacing: 1px;
  font-family: "Sans-Bold";
  font-weight: bold;
  position: relative;
  align-items: flex-start;
  justify-content: start;
}
@media all and (max-width: 768px) {
  .page7 .information .title {
    font-size: 3.2vw;
  }
}
@media all and (max-width: 450px) {
  .page7 .information .title {
    font-size: 4.5vw;
  }
}
.page7 .information .data {
  text-align: left;
}
.page7 .information .data span {
  width: -moz-max-content;
  width: max-content;
  letter-spacing: 1px;
  text-shadow: 0 0 15px black;
}
@media all and (max-width: 768px) {
  .page7 .information .data span {
    text-shadow: 0 0 5px black;
  }
}
.page7 .information .data span small {
  font-size: 15px;
  display: block;
  letter-spacing: 1px;
  text-align: left;
}
@media all and (max-width: 450px) {
  .page7 .information .data span small {
    font-size: 2.5vw;
  }
}
.page7 .information .data svg {
  width: 30px;
  height: auto;
}
@media all and (max-width: 450px) {
  .page7 .information .data svg {
    width: 20px;
  }
}
.page7 .information .data .time {
  display: inline-flex;
  height: 50px;
  align-items: center;
  gap: 15px;
  font-size: 1.8vw;
  font-weight: bold;
}
@media all and (max-width: 768px) {
  .page7 .information .data .time {
    font-size: 2.7vw;
  }
}
@media all and (max-width: 450px) {
  .page7 .information .data .time {
    font-size: 4vw;
  }
}
.page7 .information .data .site {
  display: inline-flex;
  height: 50px;
  align-items: start;
  gap: 15px;
  font-size: 1.6vw;
  font-weight: bold;
  text-align: left;
  height: -moz-max-content;
  height: max-content;
}
@media all and (max-width: 768px) {
  .page7 .information .data .site {
    font-size: 2.7vw;
  }
}
@media all and (max-width: 450px) {
  .page7 .information .data .site {
    font-size: 4vw;
  }
}
.page7 .information .data .site svg {
  width: 35px;
  margin-left: -3px;
}
@media all and (max-width: 450px) {
  .page7 .information .data .site svg {
    width: 25px;
  }
}

.page8 .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
}
.page8 .content video {
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}/*# sourceMappingURL=style.css.map */