@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
/**** Variables ****/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
:root {
  --body-font: "Noto Sans TC", sans-serif;
  --span: 1.25rem;
  --font-size-XS: 0.95rem;
  --font-size-S: 1rem;
  --font-size-M: 1.1rem;
  --font-size-L: 1.3rem;
  --font-size-XL: 1.56rem;
  --font-size-XXL: 1.8rem;
  --font-size-XXXL: 2.187rem;
  --primary-color:#ffe6f1;
  --accent-color:#ff8fc1;
  --secondary-color:#a17fce;
  --boder-color:#2d2b3f;
  --contentbg-color:#2d2b3f;
}

/**** Font ****/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

h2 {
  font-size: calc(var(--font-size-S) * 2.5);
}

h3 {
  font-size: calc(var(--font-size-S) * 1.88);
}

h4 {
  font-size: calc(var(--font-size-S) * 1.57);
}

p {
  font-size: var(--font-size-S);
  line-height: calc(var(--font-size-S) * 1.75);
}

/**** Scrollbar ****/
::-webkit-scrollbar {
  width: 15px;
  background-color: #e9e8f8;
  /* bar 背景色 */
}

::-webkit-scrollbar-thumb {
  background-color: #6460a4;
  /* bar 滑動色 */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #726bce;
}

/**** breakpoint ****/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  display: block;
}

ul,
li {
  padding: 0;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
  list-style: none;
}

/**** Variables ****/
:root {
  --body-font: "Noto Sans TC", sans-serif;
  --span: 1.25rem;
  --font-size-XS: 0.95rem;
  --font-size-S: 1rem;
  --font-size-M: 1.1rem;
  --font-size-L: 1.3rem;
  --font-size-XL: 1.56rem;
  --font-size-XXL: 1.8rem;
  --font-size-XXXL: 2.187rem;
  --primary-color:#ffe6f1;
  --accent-color:#ff8fc1;
  --secondary-color:#a17fce;
  --boder-color:#2d2b3f;
  --contentbg-color:#2d2b3f;
}

/**** Font ****/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

h2 {
  font-size: calc(var(--font-size-S) * 2.5);
}

h3 {
  font-size: calc(var(--font-size-S) * 1.88);
}

h4 {
  font-size: calc(var(--font-size-S) * 1.57);
}

p {
  font-size: var(--font-size-S);
  line-height: calc(var(--font-size-S) * 1.75);
}

/**** Scrollbar ****/
::-webkit-scrollbar {
  width: 15px;
  background-color: #e9e8f8;
  /* bar 背景色 */
}

::-webkit-scrollbar-thumb {
  background-color: #6460a4;
  /* bar 滑動色 */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #726bce;
}

/**** breakpoint ****/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  display: block;
}

ul,
li {
  padding: 0;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
  list-style: none;
}

/* popup基本預設設定 不用動 */
.popup-wrap {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  content: "";
  background: rgba(26, 25, 25, 0.8);
  z-index: 100;
}
.popup-wrap .popup-box {
  width: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  position: absolute;
  top: 50%;
  left: 50%;
  /* popup自訂設定 */
}
.popup-wrap .popup-box .content {
  position: relative;
  width: 470px;
  height: 700px;
  overflow-y: scroll;
  background: url("../img/bg-lightin.png") no-repeat right #2d2b3f;
  background-size: contain;
  border: 1px solid #2d2b3f;
  padding: 3vw;
  margin: 0 auto;
  /* 關閉按鈕樣式 */
}
.popup-wrap .popup-box .content .popTilte {
  margin-bottom: 1.5vw;
}
.popup-wrap .popup-box .content .popTilte img {
  max-width: 100%;
}
.popup-wrap .popup-box .content .popTilte span {
  display: none;
}
@media (max-width: 576px) {
  .popup-wrap .popup-box .content .popTilte {
    margin-bottom: 5.5vw;
  }
}
@media (max-width: 390px) {
  .popup-wrap .popup-box .content .popTilte {
    margin-bottom: 11.5vw;
  }
}
.popup-wrap .popup-box .content .registerForm .formGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2vw;
}
@media (max-width: 1920px) {
  .popup-wrap .popup-box .content .registerForm .formGroup {
    margin-bottom: 1vw;
  }
}
@media (max-width: 576px) {
  .popup-wrap .popup-box .content .registerForm .formGroup {
    margin-bottom: 6vw;
  }
}
.popup-wrap .popup-box .content .registerForm label {
  margin-bottom: 0.5vw;
  color: var(--secondary-color);
}
.popup-wrap .popup-box .content .registerForm select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #000;
  background-color: #fff;
}
.popup-wrap .popup-box .content .registerForm input,
.popup-wrap .popup-box .content .registerForm select {
  padding: 1vw 0.7vw;
  color: #090909;
  -webkit-text-fill-color: #090909;
  border-radius: 0;
}
@media (max-width: 576px) {
  .popup-wrap .popup-box .content .registerForm input,
  .popup-wrap .popup-box .content .registerForm select {
    padding: 4vw 2vw;
  }
}
.popup-wrap .popup-box .content .registerForm select:disabled {
  opacity: 1;
  -webkit-text-fill-color: currentColor;
  color: black;
  background-color: white;
  pointer-events: none;
}
.popup-wrap .popup-box .content .registerForm .notice {
  font-size: var(--font-size-XS);
  color: var(--accent-color);
  line-height: 1.4;
  margin-bottom: 7vw;
}
.popup-wrap .popup-box .content .registerForm .notice a {
  display: inline-block;
  background-color: #ff8fc1;
  background-image: -webkit-gradient(linear, left top, right top, from(#ff8fc1), to(#cfa9ff));
  background-image: linear-gradient(to right, #ff8fc1 0%, #cfa9ff 100%);
  font-weight: 600;
  color: #23225a;
  margin: 0 1vw;
}
@media (max-width: 1920px) {
  .popup-wrap .popup-box .content .registerForm .notice {
    margin-bottom: 3vw;
  }
}
.popup-wrap .popup-box .content .registerForm .submitBtn {
  all: unset;
  display: block;
  padding: 1.5vw 0;
  background-color: #ff8fc1;
  background-image: -webkit-gradient(linear, left top, right top, from(#ff8fc1), to(#cfa9ff));
  background-image: linear-gradient(to right, #ff8fc1 0%, #cfa9ff 100%);
  font-weight: 600;
  font-size: var(--font-size-M);
  color: #23225a;
  border-bottom: 6px solid #f5b389;
  width: 100%;
  text-align: center;
  cursor: pointer;
  /* 動畫效能 */
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.22, 0.82, 0.22, 1);
  transition: background-color 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.22, 0.82, 0.22, 1);
  transition: transform 0.25s cubic-bezier(0.22, 0.82, 0.22, 1), background-color 0.25s ease;
  transition: transform 0.25s cubic-bezier(0.22, 0.82, 0.22, 1), background-color 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.22, 0.82, 0.22, 1);
}
.popup-wrap .popup-box .content .registerForm .submitBtn:hover {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
@media (max-width: 575px) {
  .popup-wrap .popup-box .content .registerForm .submitBtn {
    padding: 4.5vw 0;
  }
}
.popup-wrap .popup-box .content .form_recaptcha {
  position: relative;
  height: 72px;
  margin: 30px 0;
  border: 1px solid #d3d3d3;
  background: #f9f9f9 url("../img/recaptcaha.jpg") no-repeat right 10px;
}
.popup-wrap .popup-box .content .form_recaptcha > div:not(.g-recaptcha) {
  position: absolute;
  right: 10px;
  bottom: 0;
}
.popup-wrap .popup-box .content .form_recaptcha > div:not(.g-recaptcha) a {
  text-decoration: none;
  color: #999;
  font-size: 12px;
}
.popup-wrap .popup-box .content .form_recaptcha .g-recaptcha > div {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 200px !important;
  height: 66px !important;
  overflow: hidden;
}
.popup-wrap .popup-box .content .close-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #17152d;
  padding: 0.5vw;
}
@media (max-width: 1024px) {
  .popup-wrap .popup-box .content {
    overflow-y: initial;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 576px) {
  .popup-wrap .popup-box .content {
    width: 87%;
    padding: 7vw;
    height: 550px;
    overflow-y: scroll;
  }
}

body {
  font-family: var(--body-font);
  background-color: #090909;
  color: #090909;
  overflow-x: hidden;
}

a {
  color: #090909;
}

.zoneWrap {
  position: relative;
  background: url("../img/bg.jpg") top no-repeat #090909;
  width: 1920px;
  max-width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-size: contain;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .zoneWrap {
    background-size: cover;
  }
}

footer {
  background-color: #1d1138;
}

main {
  position: relative;
}
@media (max-width: 1024px) {
  main {
    padding: 0 7vw;
  }
}
@media (max-width: 575px) {
  main {
    padding: 13vw 7vw 0 7vw;
  }
}
@media (max-width: 390px) {
  main {
    padding: 17vw 7vw 0 7vw;
  }
}

.gotop {
  position: absolute;
  bottom: -3vw;
  right: 10vw;
  border-radius: 10px 10px 0 0;
  padding: 0.8vw 0.4vw;
  background-color: #7c679b;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.gotop:hover {
  background-color: #9e85c3;
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.gotop a {
  display: inline-block;
  background: url("../img/gotop.png") no-repeat center;
  background-size: contain;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  width: 89px;
  aspect-ratio: 89/56;
  height: auto;
}
@media (max-width: 1400px) {
  .gotop {
    display: none;
  }
}
@media (max-width: 1920px) {
  .gotop {
    bottom: -7vw;
  }
}

h1 {
  position: absolute;
  top: 1.5vw;
  left: -1vw;
}
h1 a {
  display: inline-block;
  background: url("../img/trc.png") no-repeat center;
  background-size: contain;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  width: 17vw;
  aspect-ratio: 258/128;
  height: auto;
}
@media (max-width: 1024px) {
  h1 a {
    width: 30vw;
  }
}
@media (max-width: 768px) {
  h1 a {
    width: 37vw;
    left: 0;
  }
}
@media (max-width: 390px) {
  h1 a {
    width: 39vw;
  }
}
@media (max-width: 390px) {
  h1 {
    top: 4.5vw;
  }
}

h2 {
  text-align: center;
  margin-bottom: 3vw;
}
h2 img {
  margin: 0 auto;
  max-width: 100%;
}
h2 span {
  display: none;
}
h2 p {
  margin-top: 1.1vw;
  letter-spacing: 0.2vw;
  color: #6c83a4;
  font-weight: 500;
}
@media (max-width: 575px) {
  h2 p {
    color: #9cb9e1;
  }
}
@media (max-width: 575px) {
  h2 {
    margin-bottom: 12vw;
  }
}

h4 {
  color: #ffe6f1;
}

p {
  color: #ffe6f1;
  font-size: var(--font-size-S);
  line-height: 2.4;
}

.pcShow {
  display: block;
}
@media (max-width: 1024px) {
  .pcShow {
    display: none;
  }
}

.mShow {
  display: none;
}
@media (max-width: 1024px) {
  .mShow {
    display: block;
  }
}

header {
  position: relative;
  /* 粒子飄的範圍 */
}
header img {
  max-width: 100%;
}
header .sky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  z-index: 0;
  pointer-events: none;
}
header .kvLightin {
  -webkit-animation: bounce 3s ease-in-out infinite;
          animation: bounce 3s ease-in-out infinite;
  pointer-events: none;
}
@media (max-width: 1024px) {
  header .kvLightin {
    margin-bottom: 8vw;
  }
}
header .kvpWrap {
  max-width: 1920px;
  margin: 0 auto;
  pointer-events: none;
}
header .kvpWrap img {
  position: absolute;
  top: 2vw;
  max-width: 100%;
}
header .kvpWrap .p01 {
  left: 31%;
  width: 45%;
}
header .kvpWrap .p02 {
  width: 32%;
  left: 5%;
  top: 24%;
}
header .kvpWrap .p03 {
  right: 2%;
  width: 55%;
  top: 10%;
}
header .kvpWrap .p04 {
  width: 28%;
  left: 26%;
  top: 0%;
}
@media (max-width: 1024px) {
  header .kvpWrap .p04 {
    width: 48%;
    left: 11%;
    top: 8%;
  }
}
@media (max-width: 768px) {
  header .kvpWrap .p04 {
    left: 7%;
  }
}
@media (max-width: 575px) {
  header .kvpWrap .p04 {
    display: none;
  }
}
@media (max-width: 1024px) {
  header .kvpWrap .p01M {
    right: 0;
    top: 11%;
    width: 86%;
  }
}
@media (max-width: 860px) {
  header .kvpWrap .p01M {
    width: 89%;
  }
}
@media (max-width: 390px) {
  header .kvpWrap .p01M {
    width: 96%;
    top: 23%;
  }
}
@media (max-width: 1024px) {
  header .kvpWrap .p02M {
    left: 0%;
    top: 34%;
  }
}
@media (max-width: 860px) {
  header .kvpWrap .p02M {
    width: 39%;
  }
}
@media (max-width: 768px) {
  header .kvpWrap .p02M {
    top: 31%;
  }
}
@media (max-width: 390px) {
  header .kvpWrap .p02M {
    top: 35%;
  }
}
@media (max-width: 1024px) {
  header .kvpWrap .p03M {
    right: 0;
    top: 33%;
  }
}
@media (max-width: 860px) {
  header .kvpWrap .p03M {
    width: 80%;
  }
}
@media (max-width: 390px) {
  header .kvpWrap .p03M {
    top: 34%;
    width: 81%;
  }
}
header .slogan {
  position: absolute;
  left: 35%;
  top: 40%;
  max-width: 100%;
  width: 30%;
}
@media (max-width: 1024px) {
  header .slogan {
    left: 21%;
    top: 58%;
    width: 56%;
  }
}
@media (max-width: 575px) {
  header .slogan {
    left: 18%;
    top: 58%;
    width: 66%;
  }
}
@media (max-width: 390px) {
  header .slogan {
    top: 64%;
  }
}

section {
  margin-bottom: 7vw;
  text-align: center;
}
section .wrapBorder {
  border: solid 1px #69677a;
}
section .contentWrap {
  max-width: 900px;
  width: 900px;
  margin: 0 auto;
  background-color: #2d2b3f;
  position: relative;
  z-index: 2;
}
section .contentWrap::after {
  content: "";
  position: absolute;
  background: url("../img/bg-lightin.png") no-repeat;
  background-size: cover;
  width: 22.97vw;
  aspect-ratio: 441/294;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1024px) {
  section .contentWrap::after {
    width: 41.97vw;
  }
}
@media (max-width: 575px) {
  section .contentWrap::after {
    width: 79.97vw;
  }
}
@media (max-width: 1024px) {
  section .contentWrap {
    width: 100%;
  }
}
section .textWrap {
  position: relative;
  z-index: 1;
  padding: 2vw 4vw;
  text-align: left;
}
section .textWrap span {
  color: var(--accent-color);
}
@media (max-width: 575px) {
  section .textWrap {
    padding: 8vw 9vw;
  }
}
section img {
  max-width: 100%;
}
@media (max-width: 1920px) {
  section {
    margin-bottom: 8vw;
  }
}
@media (max-width: 575px) {
  section {
    margin-bottom: 27vw;
  }
}

.info .infoList {
  max-width: 900px;
  width: 900px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  border: 1px solid #0e0d12;
  overflow: hidden;
}
.info .infoList li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 180px 1fr;
  grid-template-columns: 180px 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.info .infoList li:nth-child(odd) {
  background: #201e35;
}
.info .infoList li:nth-child(even) {
  background: #2d2b3f;
}
.info .infoList li .label {
  padding: 16px 18px;
  font-weight: 600;
  border-right: 1px solid #0e0d12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.5px;
  color: #ffe6f1;
}
@media (max-width: 1024px) {
  .info .infoList li .label {
    padding: 16px 0;
  }
}
.info .infoList li .value {
  padding: 16px 0 16px 40px;
  line-height: 1.6;
  text-align: left;
  font-weight: 500;
  color: #cfa9ff;
}
@media (max-width: 1024px) {
  .info .infoList li .value {
    text-align: center;
    padding: 16px 0;
  }
}
@media (max-width: 575px) {
  .info .infoList li .value {
    padding: 16px 8vw;
  }
}
.info .infoList li .reminders {
  font-size: var(--font-size-XS);
  color: #ffe6f1;
  font-weight: 400;
}
.info .infoList li + li .label, .info .infoList li + li .value {
  border-top: 1px solid #0e0d12;
}
@media (max-width: 1024px) {
  .info .infoList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 5vw;
    background: none;
  }
  .info .infoList li .label {
    background: #201e35;
  }
  .info .infoList li .value {
    background: #2d2b3f;
  }
}
@media (max-width: 1024px) {
  .info .infoList {
    width: 100%;
  }
}

.join .joinWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1vw;
}
.join .register {
  position: relative;
  margin-bottom: 2vw;
}
.join .register .contentWrap {
  padding-top: 1.5vw;
}
@media (max-width: 575px) {
  .join .register .contentWrap {
    padding-top: 5.5vw;
  }
}
.join .register span {
  color: #ff8fc1;
}
@media (max-width: 390px) {
  .join .register p {
    padding: 0 11vw;
  }
}
.join .register ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1vw;
}
.join .register ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  max-width: 100%;
  background-color: #0f0d1e;
  padding-bottom: 0.7vw;
}
.join .register ul li img {
  width: auto;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-bottom: 1.5vw;
}
@media (max-width: 1024px) {
  .join .register ul li img {
    margin-bottom: 2vw;
  }
}
@media (max-width: 860px) {
  .join .register ul li img {
    margin-bottom: 2.5vw;
  }
}
.join .register ul li p {
  line-height: 1.6;
}
@media (max-width: 390px) {
  .join .register ul li p {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .join .register ul li {
    margin-bottom: 2vw;
    padding-bottom: 1.5vw;
  }
}
@media (max-width: 860px) {
  .join .register ul li {
    padding-bottom: 2.5vw;
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .join .register ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 860px) {
  .join .register ul {
    gap: 2vw;
  }
}
@media (max-width: 575px) {
  .join .register ul {
    gap: 4vw;
    padding: 8vw;
  }
}
@media (max-width: 1024px) {
  .join .register {
    margin-bottom: 7vw;
    width: 100%;
  }
}
.join .signWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1vw;
  max-width: 100%;
  width: 900px;
}
@media (max-width: 1024px) {
  .join .signWrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2vw;
  }
}
@media (max-width: 575px) {
  .join .signWrap {
    gap: 5vw;
  }
}
.join .signUpWrap,
.join .giftWrap {
  position: relative;
  z-index: 1;
  padding: 1vw 0;
  background-color: #23225a;
  width: 50%;
}
.join .signUpWrap::after,
.join .giftWrap::after {
  content: "";
  position: absolute;
  background: url("../img/gift-bg.png") no-repeat;
  background-size: cover;
  width: 20vw;
  height: 20vw;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.join .signUpWrap p,
.join .giftWrap p {
  margin-bottom: 2vw;
  font-size: var(--font-size-L);
}
@media (max-width: 1400px) {
  .join .signUpWrap,
  .join .giftWrap {
    padding: 2vw 0;
  }
}
@media (max-width: 1024px) {
  .join .signUpWrap,
  .join .giftWrap {
    width: 100%;
    padding: 3vw 0 6vw 0;
  }
}
.join .signUpWrap .buttonAllWrap {
  width: 14vw;
  margin: 0 auto;
  margin-top: 3vw;
}
@media (max-width: 1400px) {
  .join .signUpWrap .buttonAllWrap {
    width: 20vw;
    margin-top: 4vw;
  }
}
@media (max-width: 1024px) {
  .join .signUpWrap .buttonAllWrap {
    width: 36vw;
  }
}
@media (max-width: 575px) {
  .join .signUpWrap .buttonAllWrap {
    width: 65vw;
  }
}
.join .signUpWrap .buttonWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1vw;
}
.join .signUpWrap button {
  width: 65px;
  height: 65px;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: #d4b1ff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: background-color 0.25s ease, border-radius 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, border-radius 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, border-radius 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  transition: background-color 0.25s ease, border-radius 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  /* 互動狀態 */
}
.join .signUpWrap button:hover {
  background-color: #dec2ff;
  border-radius: 10px;
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  /* 漸漸變大 */
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.join .signUpWrap button:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  /* 按下回饋 */
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.join .signUpWrap button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.join .signUpWrap button.google {
  background-image: url("../img/google.png");
}
.join .signUpWrap button.ios {
  background-image: url("../img/ios.png");
}
.join .signUpWrap button.facebook {
  background-image: url("../img/facebook.png");
}
.join .signUpWrap button:hover {
  background-color: #dec2ff;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .join .signUpWrap button {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .join .signUpWrap button {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 390px) {
  .join .signUpWrap button {
    width: 65px;
    height: 65px;
  }
}
.join .signUpWrap a {
  margin-top: 2vw;
  display: block;
  padding: 1vw 0;
  background-color: #ff8fc1;
  background-image: -webkit-gradient(linear, left top, right top, from(#ff8fc1), to(#cfa9ff));
  background-image: linear-gradient(to right, #ff8fc1 0%, #cfa9ff 100%);
  font-weight: 600;
  font-size: var(--font-size-M);
  color: #23225a;
  border-bottom: 6px solid #f5b389;
  -webkit-transition: background-color 0.25s ease, border-radius 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, border-radius 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: background-color 0.25s ease, border-radius 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  transition: background-color 0.25s ease, border-radius 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.join .signUpWrap a:hover {
  border-radius: 10px;
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.join .signUpWrap a:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.join .signUpWrap a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
@media (max-width: 1400px) {
  .join .signUpWrap a {
    margin-top: 5vw;
    padding: 2vw 0;
  }
}
@media (max-width: 575px) {
  .join .signUpWrap a {
    padding: 3vw 0;
  }
}
@media (max-width: 390px) {
  .join .signUpWrap a {
    padding: 4vw 0;
    margin-top: 6vw;
  }
}
.join .signUpWrap .signOutWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2vw;
}
.join .signUpWrap .signOutWrap button {
  padding: 0.3vw 2vw;
  white-space: nowrap;
  width: auto;
  height: auto;
  background-color: var(--accent-color);
  font-size: var(--font-size-S);
  font-weight: 500;
  color: #090909;
}
@media (max-width: 575px) {
  .join .signUpWrap .signOutWrap button {
    padding: 3.3vw 6vw;
  }
}
.join .signUpWrap .signOutWrap p {
  margin-bottom: 0;
}
.join .giftWrap img {
  margin: 0 auto;
}
.join .giftWrap span {
  color: var(--accent-color);
}

.note {
  margin-bottom: 3vw;
}
.note .contentWrap {
  padding: 2vw 4vw;
}
.note .noteContent ul {
  height: 380px;
  overflow-y: scroll;
  padding: 0 2vw 0 0;
}
.note .noteContent li {
  text-align: left;
  color: var(--primary-color);
  margin-bottom: 2vw;
}
.note .noteContent li p {
  font-size: var(--font-size-L);
}
@media (max-width: 860px) {
  .note .noteContent li {
    margin-bottom: 3vw;
  }
}
@media (max-width: 575px) {
  .note .noteContent li {
    margin-bottom: 10vw;
    line-height: 1.8;
  }
}
.note .noteContent ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.note .noteContent ol li {
  counter-increment: step;
  font-size: var(--font-size-XS);
  margin: 0 0 0.5vw 0;
}
.note .noteContent ol li::before {
  content: counter(step);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background-color: #a17fce;
  color: #2d2b3f;
  font-size: 14px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  margin-right: 0.5vw;
}
@media (max-width: 575px) {
  .note .noteContent ol li::before {
    margin-right: 1vw;
  }
}
.note .noteContent ol li span {
  color: var(--accent-color);
}
.note .noteContent ol li a {
  display: inline-block;
  background-color: var(--accent-color);
  color: #2d2b3f;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
  will-change: transform;
}
.note .noteContent ol li a:hover, .note .noteContent ol li a:focus-visible {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
.note .noteContent ol li a:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
@media (max-width: 860px) {
  .note .noteContent ol li {
    margin: 0 0 2vw 0;
  }
}
@media (max-width: 575px) {
  .note .noteContent ol li {
    margin: 0 0 4vw 0;
  }
}
@media (max-width: 1920px) {
  .note {
    margin-bottom: 7vw;
  }
}

.lightinBgWrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.lightinBgWrap img {
  position: absolute;
  display: block;
  opacity: 0.08;
  mix-blend-mode: screen;
  /* 太亮可拿掉 */
  -webkit-filter: blur(0.45vw) drop-shadow(0 0 0.6vw rgba(255, 255, 255, 0.28));
          filter: blur(0.45vw) drop-shadow(0 0 0.6vw rgba(255, 255, 255, 0.28));
  will-change: opacity, filter;
}
.lightinBgWrap .lightinBg01 {
  right: 5%;
  top: 1%;
}
.lightinBgWrap .lightinBg02 {
  right: 2%;
  top: 21%;
}
.lightinBgWrap .lightinBg03 {
  right: 10%;
  top: 58%;
}
.lightinBgWrap .lightinBg04 {
  right: 3%;
  bottom: 5%;
}
.lightinBgWrap .lightinBg05 {
  left: 9%;
  top: 28%;
}
.lightinBgWrap .lightinBg06 {
  left: 5%;
  top: 44%;
}
.lightinBgWrap .lightinBg07 {
  left: 3%;
  top: 71%;
}
.lightinBgWrap .lightinBg01,
.lightinBgWrap .lightinBg03 {
  -webkit-animation: zapA 5s infinite;
          animation: zapA 5s infinite;
}
.lightinBgWrap .lightinBg02,
.lightinBgWrap .lightinBg04 {
  -webkit-animation: zapB 3s infinite;
          animation: zapB 3s infinite;
}
.lightinBgWrap .lightinBg05 {
  -webkit-animation: zapB 3.2s 0.2s infinite;
          animation: zapB 3.2s 0.2s infinite;
}
.lightinBgWrap .lightinBg06 {
  -webkit-animation: zapA 3.4s 0.4s infinite;
          animation: zapA 3.4s 0.4s infinite;
}
.lightinBgWrap .lightinBg07 {
  -webkit-animation: zapB 3s 0.2s infinite;
          animation: zapB 3s 0.2s infinite;
}
@media (max-width: 1024px) {
  .lightinBgWrap {
    display: none;
  }
}

@-webkit-keyframes zapA {
  0%, 9% {
    opacity: 0.06;
    -webkit-filter: blur(0) drop-shadow(0 0 0.4vw rgba(255, 255, 255, 0.18));
            filter: blur(0) drop-shadow(0 0 0.4vw rgba(255, 255, 255, 0.18));
  }
  14% {
    opacity: 0.95;
    -webkit-filter: blur(0) drop-shadow(0 0 1.9vw rgba(255, 255, 255, 0.9));
            filter: blur(0) drop-shadow(0 0 1.9vw rgba(255, 255, 255, 0.9));
  }
  18%, 69% {
    opacity: 0.08;
    -webkit-filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
            filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
  }
  70% {
    opacity: 1;
    -webkit-filter: blur(0.2vw) drop-shadow(0 0 1.8vw rgba(255, 255, 255, 0.85));
            filter: blur(0.2vw) drop-shadow(0 0 1.8vw rgba(255, 255, 255, 0.85));
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
            filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
  }
}

@keyframes zapA {
  0%, 9% {
    opacity: 0.06;
    -webkit-filter: blur(0) drop-shadow(0 0 0.4vw rgba(255, 255, 255, 0.18));
            filter: blur(0) drop-shadow(0 0 0.4vw rgba(255, 255, 255, 0.18));
  }
  14% {
    opacity: 0.95;
    -webkit-filter: blur(0) drop-shadow(0 0 1.9vw rgba(255, 255, 255, 0.9));
            filter: blur(0) drop-shadow(0 0 1.9vw rgba(255, 255, 255, 0.9));
  }
  18%, 69% {
    opacity: 0.08;
    -webkit-filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
            filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
  }
  70% {
    opacity: 1;
    -webkit-filter: blur(0.2vw) drop-shadow(0 0 1.8vw rgba(255, 255, 255, 0.85));
            filter: blur(0.2vw) drop-shadow(0 0 1.8vw rgba(255, 255, 255, 0.85));
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
            filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
  }
}
@-webkit-keyframes zapB {
  0%, 14% {
    opacity: 1;
    -webkit-filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
            filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
  }
  22% {
    opacity: 0.9;
    -webkit-filter: blur(0.1vw) drop-shadow(0 0 1.9vw rgba(255, 255, 255, 0.9));
            filter: blur(0.1vw) drop-shadow(0 0 1.9vw rgba(255, 255, 255, 0.9));
  }
  26%, 79% {
    opacity: 0.08;
    -webkit-filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
            filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
  }
  80% {
    opacity: 1;
    -webkit-filter: blur(0.3vw) drop-shadow(0 0 1.7vw rgba(255, 255, 255, 0.82));
            filter: blur(0.3vw) drop-shadow(0 0 1.7vw rgba(255, 255, 255, 0.82));
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
            filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
  }
}
@keyframes zapB {
  0%, 14% {
    opacity: 1;
    -webkit-filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
            filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
  }
  22% {
    opacity: 0.9;
    -webkit-filter: blur(0.1vw) drop-shadow(0 0 1.9vw rgba(255, 255, 255, 0.9));
            filter: blur(0.1vw) drop-shadow(0 0 1.9vw rgba(255, 255, 255, 0.9));
  }
  26%, 79% {
    opacity: 0.08;
    -webkit-filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
            filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
  }
  80% {
    opacity: 1;
    -webkit-filter: blur(0.3vw) drop-shadow(0 0 1.7vw rgba(255, 255, 255, 0.82));
            filter: blur(0.3vw) drop-shadow(0 0 1.7vw rgba(255, 255, 255, 0.82));
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
            filter: blur(0.5vw) drop-shadow(0 0 0.5vw rgba(255, 255, 255, 0.22));
  }
}
/* 無動畫偏好 */
@media (prefers-reduced-motion: reduce) {
  .lightinBgWrap img {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 0.2;
    -webkit-filter: blur(0.3vw);
            filter: blur(0.3vw);
  }
}
/*飄動態*/
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}