@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
select,
textarea,
p,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
  border-style: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-weight: normal;
  font-style: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

q:before, q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button,
textarea,
select,
option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

*:focus {
  outline: none;
}

/* bounceInRight */
@-webkit-keyframes bounceInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-3%, 0, 0);
            transform: translate3d(-3%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(1%, 0, 0);
            transform: translate3d(1%, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-1%, 0, 0);
            transform: translate3d(-1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes bounceInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-3%, 0, 0);
            transform: translate3d(-3%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(1%, 0, 0);
            transform: translate3d(1%, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-1%, 0, 0);
            transform: translate3d(-1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
.ani--bounceInRight {
  -webkit-animation: bounceInRight 1s cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: bounceInRight 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -6vh, 0);
            transform: translate3d(0, -6vh, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -3vh, 0);
            transform: translate3d(0, -3vh, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -1vh, 0);
            transform: translate3d(0, -1vh, 0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -6vh, 0);
            transform: translate3d(0, -6vh, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -3vh, 0);
            transform: translate3d(0, -3vh, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -1vh, 0);
            transform: translate3d(0, -1vh, 0);
  }
}
.ani--bounce {
  -webkit-animation: bounce 1s cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: bounce 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.ani--pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
          animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
            transform: scale(2, 2);
    -webkit-filter: blur(70px);
            filter: blur(70px);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
            transform: scale(2, 2);
    -webkit-filter: blur(70px);
            filter: blur(70px);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
.ani--vanishIn {
  -webkit-animation: vanishIn 1s ease-in-out both;
          animation: vanishIn 1s ease-in-out both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.ani--fadeInUp {
  -webkit-animation: fadeInUp 0.5s ease-in;
          animation: fadeInUp 0.5s ease-in;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  45% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  45% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
.ani--float {
  -webkit-animation: float 1.8s ease-in-out infinite;
          animation: float 1.8s ease-in-out infinite;
}

@-webkit-keyframes toRegisterBtn {
  5%, 50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  15% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  20% {
    -webkit-transform: scale(1.15) rotate(-5deg);
            transform: scale(1.15) rotate(-5deg);
  }
  25% {
    -webkit-transform: scale(1.15) rotate(5deg);
            transform: scale(1.15) rotate(5deg);
  }
  30% {
    -webkit-transform: scale(1.15) rotate(-3deg);
            transform: scale(1.15) rotate(-3deg);
  }
  35% {
    -webkit-transform: scale(1.15) rotate(2deg);
            transform: scale(1.15) rotate(2deg);
  }
  40% {
    -webkit-transform: scale(1.15) rotate(0);
            transform: scale(1.15) rotate(0);
  }
}

@keyframes toRegisterBtn {
  5%, 50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  15% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  20% {
    -webkit-transform: scale(1.15) rotate(-5deg);
            transform: scale(1.15) rotate(-5deg);
  }
  25% {
    -webkit-transform: scale(1.15) rotate(5deg);
            transform: scale(1.15) rotate(5deg);
  }
  30% {
    -webkit-transform: scale(1.15) rotate(-3deg);
            transform: scale(1.15) rotate(-3deg);
  }
  35% {
    -webkit-transform: scale(1.15) rotate(2deg);
            transform: scale(1.15) rotate(2deg);
  }
  40% {
    -webkit-transform: scale(1.15) rotate(0);
            transform: scale(1.15) rotate(0);
  }
}
@-webkit-keyframes poring {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 50%, 0);
            transform: translate3d(-50%, 50%, 0);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes poring {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 50%, 0);
            transform: translate3d(-50%, 50%, 0);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes decoImg_01 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes decoImg_01 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@-webkit-keyframes decoImg_02 {
  0%, 100% {
    -webkit-transform: rotate(0) translate3d(0, 0, 0) scale3d(1, 1, 1);
            transform: rotate(0) translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: rotate(2deg) translate3d(0, 15px, 0) scale3d(1, 0.95, 1);
            transform: rotate(2deg) translate3d(0, 15px, 0) scale3d(1, 0.95, 1);
  }
}
@keyframes decoImg_02 {
  0%, 100% {
    -webkit-transform: rotate(0) translate3d(0, 0, 0) scale3d(1, 1, 1);
            transform: rotate(0) translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: rotate(2deg) translate3d(0, 15px, 0) scale3d(1, 0.95, 1);
            transform: rotate(2deg) translate3d(0, 15px, 0) scale3d(1, 0.95, 1);
  }
}
@-webkit-keyframes decoImg_03 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}
@keyframes decoImg_03 {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}
@-webkit-keyframes decoImg_04 {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-30px) rotate(-2deg);
            transform: translateY(-30px) rotate(-2deg);
  }
}
@keyframes decoImg_04 {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-30px) rotate(-2deg);
            transform: translateY(-30px) rotate(-2deg);
  }
}
@-webkit-keyframes decoImg_10 {
  0%, 10% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  12% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  14% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  16% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  18% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  20% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  22% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  24% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  26%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes decoImg_10 {
  0%, 10% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  12% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  14% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  16% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  18% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  20% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  22% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  24% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  26%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
img {
  max-width: 100%;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 900;
}

.swal2-container * {
  font-family: "Noto Sans TC", sans-serif;
}

.text-red {
  color: #dc5984;
}

.snowfall-flakes {
  z-index: 1 !important;
}

p, li {
  font-size: 1rem;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  html, body {
    font-size: 14px;
  }
}

a:has(> img) {
  display: block;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: overlay;
  font-weight: 500;
  color: #313131;
  background-color: #cfeefd;
}
body.scrollbarHidden {
  overflow-y: hidden;
}

main {
  overflow: hidden;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

section {
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  z-index: 1;
  padding: 48px 0 180px;
}
@media only screen and (max-width: 1200px) {
  section {
    padding: 8vw 0 18vw;
  }
}

footer {
  background-color: #22293b;
}

.container {
  max-width: 1224px;
  padding: 0 12px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1366px) {
  .container {
    max-width: 984px;
  }
}

.container-fluid {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.kv {
  position: relative;
  background-image: url(../img/kv_bg.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 52vw;
  max-height: 987px;
}
.kv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../img/mainBg_01.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 20vw;
  pointer-events: none;
  z-index: 1;
}
.kv .container-fluid {
  height: 100%;
}
.kv .kvCha {
  position: absolute;
}
.kv .kvCha_01 {
  width: 31.6%;
  left: 10%;
  bottom: 10%;
  -webkit-animation: fadeInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: fadeInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.kv .kvCha_02 {
  width: 27.86%;
  left: 27%;
  bottom: 4%;
  -webkit-animation: fadeInUp 0.4s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: fadeInUp 0.4s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.kv .kvCha_03 {
  width: 23.7%;
  left: 26%;
  bottom: 19%;
  -webkit-animation: fadeInUp 0.4s 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: fadeInUp 0.4s 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.kv .kvCha_04 {
  width: 10%;
  left: 7%;
  top: 10%;
  -webkit-animation: poring 0.4s 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: poring 0.4s 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.kv .logo {
  position: absolute;
  right: 1%;
  top: 0;
  margin-top: 1%;
  width: 12vw;
  max-width: 229px;
}
.kv .slogan-wrapper {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 44%;
  right: 15%;
}
.kv .slogan {
  margin-bottom: 5%;
  width: 30.3vw;
  max-width: 581px;
  -webkit-animation: vanishIn 1s 0.5s ease both;
          animation: vanishIn 1s 0.5s ease both;
}
.kv .slogan img {
  display: block;
  margin: 0 auto;
}
.kv .slogan .slogan-img2 {
  margin-top: -5%;
}
.kv .slogan .slogan-img1 {
  width: 79%;
}
.kv .toRegisterBtn {
  cursor: pointer;
  text-align: center;
  width: 16.2vw;
  max-width: 310px;
  margin-left: 23%;
  -webkit-animation: toRegisterBtn 2s infinite;
          animation: toRegisterBtn 2s infinite;
}
.kv .toRegisterBtn:hover {
  -webkit-animation: pulse 0.5s infinite;
          animation: pulse 0.5s infinite;
}
@media only screen and (max-width: 768px) {
  .kv {
    background-image: url(../img/kv_bg_m.jpg);
    height: 125vw;
  }
  .kv::after {
    background-size: 140%;
  }
  .kv .logo {
    right: 36%;
    width: 28vw;
    margin-top: 4%;
  }
  .kv .slogan-wrapper {
    top: 14%;
    right: 11%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .kv .slogan {
    width: 78vw;
  }
  .kv .toRegisterBtn {
    width: 35vw;
    margin-left: 29%;
  }
  .kv .kvCha_01 {
    width: 62%;
    left: -9%;
    bottom: -2%;
  }
  .kv .kvCha_02 {
    width: 53%;
    left: 42%;
    bottom: 1%;
  }
  .kv .kvCha_03 {
    width: 39.7%;
    left: 70%;
    bottom: 9%;
  }
  .kv .kvCha_04 {
    width: 18%;
    left: 6%;
    top: 7%;
  }
}

.title {
  margin-bottom: 80px;
  text-align: center;
}
.title img {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .title img {
    height: 9vw;
    max-height: 97px;
  }
}
@media only screen and (max-width: 768px) {
  .title {
    margin-bottom: 7vw;
  }
  .title img {
    height: 11vw;
  }
}

.register::after, .appstore::after, .rewards::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 126px;
  pointer-events: none;
}
@media only screen and (max-width: 1200px) {
  .register::after, .appstore::after, .rewards::after {
    background-size: 100%;
    height: 6.3vw;
  }
}

.register {
  background-image: url(../img/mainBg_02.jpg);
}
.register::after {
  background-image: url(../img/mainBg_03.png);
}
.register-contentWrapper {
  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;
  gap: 50px;
}
.register .step {
  font-size: 36px;
  text-align: center;
}
.register .step1 {
  margin-bottom: 20px;
}
.register .step2 a {
  display: inline;
}
.register .number {
  margin-right: 8px;
  position: relative;
  top: -3px;
}
.register .registerForm {
  text-align: center;
}
.register picture {
  text-align: center;
}
.register .underline {
  position: relative;
}
.register .underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24px;
  border-radius: 12px;
  background-color: #faf281;
  z-index: -1;
}
.register .form-row {
  font-size: 20px;
  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;
  gap: 8px;
}
.register .input-row {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  .register .step {
    font-size: 32px;
  }
  .register .underline::before {
    height: 16px;
  }
  .register .number {
    height: 28px;
  }
  .register .iphone {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .register .step {
    font-size: 24px;
  }
  .register .form-row {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .register .number {
    display: block;
    top: 0;
    margin: 0 auto 3vw;
    height: 34px;
  }
  .register .input-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .register .input-row img.btn {
    margin: 0 auto;
    height: 40px;
  }
  .register .check-row {
    display: block;
  }
  .register .check-row input {
    margin-right: 4px;
  }
  .register .step {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .register .step a img {
    margin: 0 auto;
  }
  .register .step2 a {
    display: block;
    width: 110px;
    margin: 10px auto 0;
  }
  .register .step2 img.btn {
    height: 40px;
  }
}

.appstore {
  background-image: url(../img/mainBg_04.jpg);
}
.appstore::after {
  background-image: url(../img/mainBg_05.png);
}
.appstore .title img:first-child {
  margin-bottom: 20px;
}
.appstore-contentWrapper {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
  padding-right: 80px;
}
.appstore .storeLink {
  position: relative;
}
.appstore .storeIcons {
  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;
  gap: 1%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.appstore .storeIcons a {
  width: 30%;
}
.appstore .decoImg_gift {
  right: -104px;
  bottom: -59px;
}
@media only screen and (max-width: 1366px) {
  .appstore-contentWrapper {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1200px) {
  .appstore-contentWrapper {
    width: 70%;
    margin: 0 auto;
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
    gap: 2vw;
  }
  .appstore .title img:first-child {
    max-height: 125px;
    height: 11.4vw;
  }
  .appstore .title img:last-child {
    height: 3vw;
  }
  .appstore .decoImg_gift {
    right: -13%;
    bottom: -32%;
    width: 35%;
  }
}
@media only screen and (max-width: 768px) {
  .appstore-contentWrapper {
    width: 90%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .appstore .title img:first-child {
    margin-bottom: 2vw;
    height: 13vw;
  }
  .appstore .title img:last-child {
    height: 4vw;
  }
  .appstore .decoImg_gift {
    right: -10%;
    bottom: -23%;
    width: 28%;
  }
}
@media only screen and (max-width: 576px) {
  .appstore .decoImg_gift {
    right: -14%;
    bottom: -60%;
    width: 37%;
  }
}

.rewards {
  background-image: url(../img/mainBg_06.jpg);
}
.rewards::after {
  background-image: url(../img/mainBg_07.png);
  z-index: 2;
}
.rewards .rewardsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
}
.rewards .rewardsList li {
  position: relative;
}
.rewards .rewardsList li::after {
  content: "";
  position: absolute;
  background-image: url(../img/registerReward_arrow.png);
  background-repeat: no-repeat;
  width: 18px;
  height: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -38px;
}
.rewards .rewardsList li:nth-child(3)::after {
  display: none;
}
.rewards .rewardsList li:nth-child(5)::after {
  background-image: url(../img/registerReward_arrow2.png);
  width: 46px;
  height: 40px;
  right: -60px;
}
.rewards .stamp {
  position: absolute;
  right: -15px;
  top: -2px;
  z-index: 2;
}
@media only screen and (max-width: 1200px) {
  .rewards .rewardsList {
    gap: 3vw;
  }
  .rewards .rewardsList li {
    width: 25%;
  }
  .rewards .rewardsList li::after {
    width: 1.5vw;
    height: 2.8vw;
    background-size: contain;
    right: -2.3vw;
  }
  .rewards .rewardsList li:nth-child(5)::after {
    width: 4vw;
    height: 3.5vw;
    right: -5vw;
  }
  .rewards .stamp {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .rewards .rewardsList li {
    width: 27%;
  }
  .rewards .stamp {
    right: -6%;
  }
}
@media only screen and (max-width: 576px) {
  .rewards .rewardsList {
    gap: 0;
    width: 96%;
    margin: 0 auto;
  }
  .rewards .rewardsList li {
    width: 50%;
    padding: 2vw 2%;
  }
  .rewards .rewardsList li::after {
    display: none;
  }
  .rewards .rewardsList li:last-child {
    width: 60%;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    margin-top: 3vw;
  }
  .rewards .stamp {
    right: -3%;
  }
}

.feature {
  background-image: url(../img/mainBg_08.jpg);
}
.feature .title {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1200px) {
  .feature .title {
    margin-bottom: 10vw;
  }
}

.decoImg {
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.decoImg_01 {
  width: 18%;
  max-width: 288px;
  left: 0;
  top: 100px;
}
.decoImg_02 {
  left: calc(50% - 761px);
  top: 40px;
  -webkit-animation: decoImg_02 3s infinite ease-in-out;
          animation: decoImg_02 3s infinite ease-in-out;
}
.decoImg_03 {
  left: calc(50% - 668px);
  top: 165px;
  -webkit-animation: decoImg_03 3s infinite ease-in-out;
          animation: decoImg_03 3s infinite ease-in-out;
}
.decoImg_04 {
  right: -200px;
  top: 60px;
  -webkit-animation: decoImg_04 5s infinite ease-in-out;
          animation: decoImg_04 5s infinite ease-in-out;
}
.decoImg_05 {
  left: calc(50% - 891px);
  top: 236px;
}
.decoImg_08 {
  right: calc(50% - 900px);
  bottom: 0;
}
.decoImg_09 {
  left: calc(50% - 858px);
  bottom: 120px;
  -webkit-animation: decoImg_04 4s infinite ease-in-out;
          animation: decoImg_04 4s infinite ease-in-out;
}
.decoImg_10 {
  right: calc(50% - 794px);
  top: 200px;
  -webkit-animation: decoImg_10 2.5s infinite ease-in-out both;
          animation: decoImg_10 2.5s infinite ease-in-out both;
}
.decoImg_11 {
  left: -129px;
  top: -23px;
}
.decoImg_12 {
  right: -53px;
  bottom: 15px;
}
@media only screen and (max-width: 1200px) {
  .decoImg_01 {
    top: -60px;
  }
  .decoImg_02 {
    width: 23%;
    left: -6%;
    top: 7vw;
  }
  .decoImg_03 {
    left: -1%;
    top: 18vw;
    width: 34%;
  }
  .decoImg_04 {
    right: -9%;
    top: -6vw;
    width: 16%;
  }
  .decoImg_05 {
    left: -13%;
    top: 29vw;
    width: 29%;
  }
  .decoImg_08 {
    width: 34%;
    right: -12%;
  }
  .decoImg_09 {
    left: -9%;
    bottom: 4vw;
    width: 24%;
  }
  .decoImg_10 {
    right: 4%;
    top: 1vw;
    width: 27%;
  }
  .decoImg_11 {
    left: 1%;
    top: -27%;
    width: 23%;
  }
}
@media only screen and (max-width: 768px) {
  .decoImg_03 {
    left: -8%;
    z-index: 2;
    top: 52vw;
    width: 30%;
  }
  .decoImg_04 {
    width: 18%;
  }
  .decoImg_05 {
    left: 1%;
    top: 13vw;
    width: 17%;
  }
  .decoImg_09 {
    left: -9%;
    bottom: 4vw;
    width: 24%;
  }
  .decoImg_10 {
    right: -6%;
    top: 14vw;
    width: 31%;
  }
  .decoImg_11 {
    left: 5%;
    top: -16vw;
    width: 25%;
  }
  .decoImg_12 {
    right: 6%;
    bottom: -8vw;
    width: 19%;
  }
}
@media only screen and (max-width: 576px) {
  .decoImg_02 {
    width: 31%;
    left: -6%;
    top: 24vw;
  }
  .decoImg_03 {
    display: none;
  }
  .decoImg_04 {
    display: none;
  }
  .decoImg_05 {
    left: -3%;
    width: 21%;
  }
  .decoImg_08 {
    width: 51%;
    right: -17%;
    bottom: -8vw;
    -webkit-transform: rotate(17deg);
            transform: rotate(17deg);
  }
  .decoImg_09 {
    left: -2%;
    bottom: 64vw;
    width: 29%;
  }
  .decoImg_10 {
    right: -4%;
    top: 73vw;
    width: 35%;
  }
  .decoImg_11, .decoImg_12 {
    display: none;
  }
}

img.btn {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  height: 50px;
  cursor: pointer;
}
img.btn:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
img.btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

input[type=text], select {
  font-size: 20px;
  border-radius: 0.5vw;
  border-style: none;
  padding: 0 20px;
  border: 2px solid #76bcdb;
  height: 50px;
  background-color: #fff;
  color: #313131;
}
input[type=text]:focus, select:focus {
  border: 2px solid #589bb8;
}
@media only screen and (max-width: 768px) {
  input[type=text], select {
    font-size: 16px;
    padding: 0 16px;
  }
}

select {
  width: 160px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/select_arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
}
@media only screen and (max-width: 576px) {
  select {
    width: 100%;
  }
}

button[type=submit] {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 768px) {
  input[type=checkbox] {
    width: initial;
    height: initial;
  }
}

::-webkit-input-placeholder {
  color: #d4d4d4;
  opacity: 1;
}

::-moz-placeholder {
  color: #d4d4d4;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #d4d4d4;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #d4d4d4;
  opacity: 1;
}

::placeholder {
  color: #d4d4d4;
  opacity: 1;
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: #d4d4d4;
}

.swiper-arrow {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  right: 3%;
  top: 0;
  margin-top: -6%;
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .swiper-arrow {
    gap: 1.5vw;
  }
  .swiper-arrow > div {
    width: 3vw;
  }
}
@media only screen and (max-width: 768px) {
  .swiper-arrow {
    display: none;
  }
}

.swiper-frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}
.swiper-frame .frame {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  -webkit-transform: translateY(-6%);
          transform: translateY(-6%);
}
.swiper-frame .swiper-pagination {
  top: initial;
  bottom: -10%;
}
@media only screen and (max-width: 768px) {
  .swiper-frame .swiper-pagination {
    bottom: -6vw;
  }
}

.featureSwiper {
  width: 93.4%;
  border-radius: 5%;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #fff;
  opacity: 1;
  border: 3px solid #594aa8;
  margin: 0 4px;
}
@media only screen and (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border: 2px solid #594aa8;
  }
}

.swiper-pagination-bullet-active {
  background-color: #a490f4;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}
@media only screen and (max-width: 768px) {
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px;
  }
}

.menu {
  position: fixed;
  top: 175px;
  z-index: 2;
  width: 141px;
  height: 254px;
  margin-left: calc(100% - 141px - 20px);
  background-image: url(../img/menu_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.menu ul {
  padding-top: 106px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.menu ul li {
  cursor: pointer;
}
.menu ul li img {
  display: block;
}
@media screen and (min-width: 1920px) {
  .menu {
    margin-left: 1759px;
  }
}
@media only screen and (max-width: 1200px) {
  .menu {
    width: 10vw;
    height: 18vw;
    margin-left: calc(90vw - 20px);
  }
  .menu ul {
    padding-top: 72%;
    gap: 0.5vw;
  }
  .menu ul li {
    width: 84%;
  }
}
@media only screen and (max-width: 768px) {
  .menu {
    display: none;
  }
}

.notice-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
}
.notice-popup.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.notice-popup ol {
  position: relative;
}
.notice-popup ol li {
  counter-increment: notice;
  padding-left: 28px;
  position: relative;
}
.notice-popup ol li::before {
  content: counter(notice);
  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;
  margin-top: 2px;
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background-color: #fce1a6;
  text-align: center;
}
.notice-popup ol li:not(:last-child) {
  margin-bottom: 5px;
}
.notice-popup .popupContainer {
  width: 100%;
  max-width: 900px;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.notice-popup.show .popupContainer {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.notice-popup .close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  right: -20px;
  top: -20px;
}
.notice-popup .close:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.notice-popup .popup-body {
  background: #f2f9ff;
  border-radius: 20px;
  border: solid 2px #1b7ebf;
  outline: solid 4px #8cbafa;
  padding: 60px 92px;
  background-image: url(../img/notice_bg_left.png), url(../img/notice_bg_right.png);
  background-repeat: no-repeat;
  background-position: left bottom, right top;
}
.notice-popup .popup-title {
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .notice-popup .popupContainer {
    margin-right: 12px;
    margin-left: 12px;
  }
  .notice-popup .popup-body {
    padding: 8vw 6vw;
    max-height: 80dvh;
    overflow-y: scroll;
  }
  .notice-popup .popup-title {
    margin-bottom: 6vw;
  }
  .notice-popup .popup-title img {
    width: 70%;
    max-width: 253px;
  }
}