@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/**** Variables ****/
:root {
  --footerbg-color: #5e534c;
  --bg-color: #695344;
  --title-color: #ba7e56;
  --titlebg-color: #fff3e4;
  --overlaybg-color: #a2e9fd;
  --numbg-color: #ffe292;
  --lightpoint: #f8787d;
  --sign-but: #f56769;
  --note-but: #ff7ea7;
  --font-color: #77512a;
  --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;
  --body-font: "Noto Sans TC", sans-serif;
  --scrollbar-bg: #695344;
  --scrollbar-thumb: #ba7e56;
  --scrollbar-thumb-hover: #ffe292;
}

/**** 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: var(--scrollbar-bg);
  /* bar 背景色 */
}

::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  /* bar 滑動色 */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

/**** breakpoint ****/
* {
  cursor: url("../img/cusor.png"), default;
}

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

.wrapper {
  margin: 0 auto;
  background-color: #a2e9fd;
  max-width: 2560px;
  position: relative;
}

a {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: pointer;
}

header h1 {
  position: absolute;
  top: 2em;
  left: 1em;
}
@media (max-width: 768px) {
  header h1 {
    top: 28px;
    left: 20px;
  }
}
header h1 a {
  display: inline-block;
  background: url(../img/logo.png) no-repeat;
  width: 20.87rem;
  height: 5.06rem;
  background-size: contain;
  text-indent: 101%;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
}
@media (max-width: 768px) {
  header h1 a {
    height: 4.06rem;
  }
}
@media (max-width: 450px) {
  header h1 a {
    height: 3.5rem;
  }
}

.menuWrapper {
  z-index: 25;
  position: fixed;
  display: inline-block;
  margin: 0 2em;
  max-width: 2560px;
  width: 100%;
}
.menuWrapper .hambugerWrapper {
  position: fixed;
  right: 2em;
  z-index: 25;
  top: 4em;
}
@media (max-width: 768px) {
  .menuWrapper .hambugerWrapper {
    top: 1em;
  }
}
@media (max-width: 450px) {
  .menuWrapper .hambugerWrapper {
    right: 0;
  }
}
.menuWrapper .hambugerWrapper .hambuger {
  background: url("../img/hambuger.png") no-repeat center;
  background-size: cover;
  display: block;
  width: 5.6em;
  height: 5.6em;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  cursor: pointer;
  position: relative;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  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: 0.7em;
  padding-top: 0.7em;
  /* Wobble To Top Right */
}
@media (max-width: 450px) {
  .menuWrapper .hambugerWrapper .hambuger {
    width: 4em;
    height: 4em;
    padding-top: 0.5em;
  }
}
.menuWrapper .hambugerWrapper .hambuger:hover {
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.menuWrapper .hambugerWrapper .hambuger:hover, .menuWrapper .hambugerWrapper .hambuger:focus, .menuWrapper .hambugerWrapper .hambuger:active {
  -webkit-animation-name: hvr-wobble-to-top-right;
  animation-name: hvr-wobble-to-top-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
@-webkit-keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.menuWrapper .hambugerWrapper .bar {
  width: 2.5em;
  height: 0.3em;
  border-radius: 10px;
  background-color: #f0c48d;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.menuWrapper .hambugerWrapper .one {
  width: 1.5em;
}
.menuWrapper .hambugerWrapper .bar.one.active {
  width: 3em;
  -webkit-animation: one 0.7s forwards;
          animation: one 0.7s forwards;
  margin-bottom: -1em;
}
@-webkit-keyframes one {
  0% {
    width: 1.8em;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    width: 3em;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@keyframes one {
  0% {
    width: 1.8em;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    width: 3em;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.menuWrapper .hambugerWrapper .bar.two.active {
  width: 3em;
  -webkit-animation: two 0.7s forwards;
          animation: two 0.7s forwards;
}
@-webkit-keyframes two {
  0% {
    width: 1.8em;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    width: 3em;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@keyframes two {
  0% {
    width: 1.8em;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    width: 3em;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.menuWrapper .hambugerWrapper .bar.one.notActive {
  width: 1.5em;
  -webkit-animation: oneRev 0.7s forwards;
          animation: oneRev 0.7s forwards;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@-webkit-keyframes oneRev {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes oneRev {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.menuWrapper .hambugerWrapper .bar.two.notActive {
  width: 2.5em;
  -webkit-animation: twoRev 0.7s forwards;
          animation: twoRev 0.7s forwards;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@-webkit-keyframes twoRev {
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@keyframes twoRev {
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.menuWrapper .navContent {
  position: fixed;
  z-index: 5;
  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;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.menuWrapper .navContent ul {
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-right: 17rem;
}
@media (max-width: 1024px) {
  .menuWrapper .navContent ul {
    margin-right: 0;
    margin-bottom: 20em;
  }
}
@media (max-width: 450px) {
  .menuWrapper .navContent ul {
    margin-bottom: 15em;
  }
}
@media (max-width: 390px) {
  .menuWrapper .navContent ul {
    margin-bottom: 13em;
  }
}
.menuWrapper .navContent ul li {
  border-left: 5px solid transparent;
  margin-bottom: 2em;
}
@media (max-width: 1024px) {
  .menuWrapper .navContent ul li {
    margin-bottom: 1em;
  }
}
.menuWrapper .navContent ul li a {
  color: #815a52;
  padding: 14px 15px;
  text-transform: uppercase;
  text-align: center;
  font-size: var(--font-size-XL);
  font-weight: 700;
  display: inline-block;
  border-bottom: rgba(255, 243, 105, 0) 5px solid;
  margin-right: 10em;
  text-wrap: nowrap;
}
@media (max-width: 1024px) {
  .menuWrapper .navContent ul li a {
    margin-right: 0;
  }
}
@media (max-width: 320px) {
  .menuWrapper .navContent ul li a {
    font-size: 20px;
  }
}
.menuWrapper .navContent ul li a:hover {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  border-bottom: #fff369 5px solid;
}
.menuWrapper .navContent figure {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65.06rem;
  height: 67.37rem;
}
@media (max-width: 1920px) {
  .menuWrapper .navContent figure {
    width: 52em;
    height: auto;
  }
}
@media (max-width: 1600px) {
  .menuWrapper .navContent figure {
    width: 40em;
    height: auto;
  }
}
@media (max-width: 820px) {
  .menuWrapper .navContent figure {
    width: 32em;
    height: auto;
  }
}
@media (max-width: 650px) {
  .menuWrapper .navContent figure {
    width: 25em;
    height: auto;
  }
}
@media (max-width: 450px) {
  .menuWrapper .navContent figure {
    width: 21em;
    height: auto;
  }
}
@media (max-width: 414px) {
  .menuWrapper .navContent figure {
    width: 19em;
    height: auto;
  }
}
@media (max-width: 390px) {
  .menuWrapper .navContent figure {
    width: 16em;
  }
}
.menuWrapper .navContent ul,
.menuWrapper .navContent figure {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 1.2s cubic-bezier(0.67, 0, 0.33, 1);
  transition: opacity 1.2s cubic-bezier(0.67, 0, 0.33, 1);
}
.menuWrapper .navContent ul.isActive,
.menuWrapper .navContent figure.isActive {
  opacity: 1;
}
.menuWrapper .navWrapper {
  z-index: 0;
  width: 100%;
  position: relative;
}
.menuWrapper .navWrapper nav {
  position: fixed;
  padding-top: 2em;
  background-color: var(--overlaybg-color);
  right: -10em;
  top: 3em;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  overflow: hidden;
}
.menuWrapper .navWrapper nav .navInner {
  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;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.menuWrapper .navWrapper nav.open {
  background: url("../img/navBg.png") no-repeat center left var(--overlaybg-color);
  background-position: 27% 57%;
  right: calc(4.6875vw - 150vmax);
  top: calc(4.375vw - 150vmax);
  width: 300vmax;
  height: 300vmax;
  border-radius: 9999px;
  overflow: hidden;
}

.expDouble {
  position: fixed;
  z-index: 10;
  left: 2em;
  bottom: 24em;
}
@media (max-width: 1024px) {
  .expDouble {
    left: 1em;
  }
}
@media (max-width: 650px) {
  .expDouble {
    bottom: 6em;
    left: 0;
  }
}
.expDouble a {
  background: url("../img/exp.png") no-repeat;
  background-size: contain;
  width: 161px;
  height: 176px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.expDouble a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 650px) {
  .expDouble a {
    height: 102px;
    width: 92px;
  }
}

.sticker {
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: 10em;
}
.sticker a {
  background: url("../img/sticker.gif") no-repeat;
  background-size: contain;
  width: 226px;
  height: 198px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.sticker a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 650px) {
  .sticker {
    display: none;
  }
}

.stickerM {
  display: none;
}
@media (max-width: 650px) {
  .stickerM {
    position: fixed;
    z-index: 10;
    bottom: 0;
    height: 5em;
    background-image: linear-gradient(120deg, #a1c4fd 0%, #95ddff 100%);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -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;
  }
}
.stickerM a {
  display: block;
  color: #ffffff;
  font-size: 25px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-wrap: nowrap;
}
.stickerM a:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.stickerM a::before {
  content: "";
  display: block;
  background: url("../img/stickerM.png") no-repeat;
  background-size: cover;
  width: 116px;
  height: 66px;
  margin-right: 0.5em;
}
.stickerM a img {
  width: 35px;
  height: 35px;
  margin-left: 0.3em;
}

.zoneKv {
  position: fixed;
  height: 1080px;
  width: 2560px;
  max-width: 100%;
  z-index: 1;
  top: 0;
  background: url("../img/kv.jpg") no-repeat top center, -webkit-gradient(linear, left top, left bottom, from(#96e1fd), color-stop(30%, #dcfdff));
  background: url("../img/kv.jpg") no-repeat top center, linear-gradient(to bottom, #96e1fd 0%, #dcfdff 30%);
  background-size: cover;
}
@-webkit-keyframes gradientAnimation {
  0% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 50% 50%;
  }
}
@keyframes gradientAnimation {
  0% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 50% 50%;
  }
}
@media (max-width: 768px) {
  .zoneKv {
    background: url("../img/M_kv.jpg") no-repeat top center #a2e0fc;
    background-size: contain;
    height: 1087px;
    width: 768px;
  }
}
.zoneKv .kvCh {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 8.2%;
}
@media (max-width: 1500px) {
  .zoneKv .kvCh {
    top: 7.8%;
  }
}
@media (max-width: 1400px) {
  .zoneKv .kvCh {
    top: 9.8%;
  }
}
@media (max-width: 1300px) {
  .zoneKv .kvCh {
    top: 12.8%;
  }
}
@media (max-width: 1150px) {
  .zoneKv .kvCh {
    top: 16.8%;
  }
}
@media (max-width: 1024px) {
  .zoneKv .kvCh {
    top: 19.8%;
  }
}
@media (max-width: 860px) {
  .zoneKv .kvCh {
    display: none;
  }
}
.zoneKv .kvChM {
  display: none;
}
@media (max-width: 860px) {
  .zoneKv .kvChM {
    display: block;
    position: relative;
    left: 50%;
    top: 11.2%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 85%;
  }
}
@media (max-width: 768px) {
  .zoneKv .kvChM {
    top: 14.2%;
    width: 100%;
  }
}
@media (max-width: 650px) {
  .zoneKv .kvChM {
    top: 19.2%;
  }
}
@media (max-width: 450px) {
  .zoneKv .kvChM {
    width: 90%;
    top: 9.2%;
  }
}

.mainTitleWrapper {
  position: relative;
  z-index: 5;
  top: 7em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
@media (max-width: 1300px) {
  .mainTitleWrapper {
    top: 9em;
  }
}
@media (max-width: 1150px) {
  .mainTitleWrapper {
    top: 12em;
  }
}
@media (max-width: 768px) {
  .mainTitleWrapper {
    top: 10em;
  }
}
@media (max-width: 650px) {
  .mainTitleWrapper {
    width: 80%;
    top: 11em;
  }
}
@media (max-width: 450px) {
  .mainTitleWrapper {
    width: 85%;
    top: 8em;
  }
}
.mainTitleWrapper .mainTitle {
  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;
}
.mainTitleWrapper .mainTitle::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 149px;
  height: 46px;
  top: -30px;
  right: calc(50vw - 120px - 100px);
  background: url("../img/Let’s-Go!.png") no-repeat;
  background-size: contain;
  -webkit-animation: textFadeIn 5s forwards;
          animation: textFadeIn 5s forwards;
  -webkit-transition: all ease-in-out;
  transition: all ease-in-out;
}
@media (max-width: 450px) {
  .mainTitleWrapper .mainTitle::after {
    width: 98px;
    right: 20px;
    top: -24px;
  }
}
@-webkit-keyframes textFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
@keyframes textFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
.mainTitleWrapper .mainTitle .text {
  position: relative;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}
.mainTitleWrapper .mainTitle .text01 {
  -webkit-animation: textAni01 2s 1 forwards;
          animation: textAni01 2s 1 forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  top: 0;
  left: 0;
}
@-webkit-keyframes textAni01 {
  0% {
    top: -10vw;
    left: 10vw;
    -webkit-transform: scale(1) rotate(180deg);
            transform: scale(1) rotate(180deg);
  }
  40% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.1) rotate(240deg);
            transform: scale(1.1) rotate(240deg);
  }
  90% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.2) rotate(360deg);
            transform: scale(1.2) rotate(360deg);
  }
  100% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
@keyframes textAni01 {
  0% {
    top: -10vw;
    left: 10vw;
    -webkit-transform: scale(1) rotate(180deg);
            transform: scale(1) rotate(180deg);
  }
  40% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.1) rotate(240deg);
            transform: scale(1.1) rotate(240deg);
  }
  90% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.2) rotate(360deg);
            transform: scale(1.2) rotate(360deg);
  }
  100% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
.mainTitleWrapper .mainTitle .text02 {
  -webkit-animation: textAni02 2s 1 forwards;
          animation: textAni02 2s 1 forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  top: 0;
}
@-webkit-keyframes textAni02 {
  0% {
    top: -10vw;
    right: 10;
    -webkit-transform: scale(1) rotate(190deg);
            transform: scale(1) rotate(190deg);
  }
  60% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1.1) rotate(200deg);
            transform: scale(1.1) rotate(200deg);
  }
  90% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1.2) rotate(360deg);
            transform: scale(1.2) rotate(360deg);
  }
  100% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
@keyframes textAni02 {
  0% {
    top: -10vw;
    right: 10;
    -webkit-transform: scale(1) rotate(190deg);
            transform: scale(1) rotate(190deg);
  }
  60% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1.1) rotate(200deg);
            transform: scale(1.1) rotate(200deg);
  }
  90% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1.2) rotate(360deg);
            transform: scale(1.2) rotate(360deg);
  }
  100% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
.mainTitleWrapper .mainTitle .text03 {
  -webkit-animation: textAni03 2s 1 forwards;
          animation: textAni03 2s 1 forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  top: 0;
}
@-webkit-keyframes textAni03 {
  0% {
    top: -20vw;
    right: 10vw;
    -webkit-transform: scale(1) rotate(180deg);
            transform: scale(1) rotate(180deg);
  }
  50% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1.1) rotate(250deg);
            transform: scale(1.1) rotate(250deg);
  }
  90% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1.2) rotate(360deg);
            transform: scale(1.2) rotate(360deg);
  }
  100% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
@keyframes textAni03 {
  0% {
    top: -20vw;
    right: 10vw;
    -webkit-transform: scale(1) rotate(180deg);
            transform: scale(1) rotate(180deg);
  }
  50% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1.1) rotate(250deg);
            transform: scale(1.1) rotate(250deg);
  }
  90% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1.2) rotate(360deg);
            transform: scale(1.2) rotate(360deg);
  }
  100% {
    top: 0;
    right: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
.mainTitleWrapper .mainTitle .text04 {
  -webkit-animation: textAni04 2s 1 forwards;
          animation: textAni04 2s 1 forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  top: 0;
}
@-webkit-keyframes textAni04 {
  0% {
    top: -20vw;
    left: 20vw;
    -webkit-transform: scale(1) rotate(150deg);
            transform: scale(1) rotate(150deg);
  }
  50% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.2) rotate(200deg);
            transform: scale(1.2) rotate(200deg);
  }
  90% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.3) rotate(320deg);
            transform: scale(1.3) rotate(320deg);
  }
  100% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
@keyframes textAni04 {
  0% {
    top: -20vw;
    left: 20vw;
    -webkit-transform: scale(1) rotate(150deg);
            transform: scale(1) rotate(150deg);
  }
  50% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.2) rotate(200deg);
            transform: scale(1.2) rotate(200deg);
  }
  90% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.3) rotate(320deg);
            transform: scale(1.3) rotate(320deg);
  }
  100% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
.mainTitleWrapper .mainTitle .text05 {
  -webkit-animation: textAni05 2s 1 forwards;
          animation: textAni05 2s 1 forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  top: 0;
  left: 15vw;
}
@-webkit-keyframes textAni05 {
  0% {
    top: -20vw;
    left: 20vw;
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
  50% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.1) rotate(220deg);
            transform: scale(1.1) rotate(220deg);
  }
  90% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.2) rotate(360deg);
            transform: scale(1.2) rotate(360deg);
  }
  100% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
@keyframes textAni05 {
  0% {
    top: -20vw;
    left: 20vw;
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
  }
  50% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.1) rotate(220deg);
            transform: scale(1.1) rotate(220deg);
  }
  90% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.2) rotate(360deg);
            transform: scale(1.2) rotate(360deg);
  }
  100% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
.mainTitleWrapper .mainTitle .text06 {
  -webkit-animation: textAni06 2s 1 forwards;
          animation: textAni06 2s 1 forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  top: 0;
}
@-webkit-keyframes textAni06 {
  0% {
    top: -15vw;
    left: 10;
    -webkit-transform: scale(1) rotate(180deg);
            transform: scale(1) rotate(180deg);
  }
  50% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.2) rotate(250deg);
            transform: scale(1.2) rotate(250deg);
  }
  90% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.3) rotate(360deg);
            transform: scale(1.3) rotate(360deg);
  }
  100% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
@keyframes textAni06 {
  0% {
    top: -15vw;
    left: 10;
    -webkit-transform: scale(1) rotate(180deg);
            transform: scale(1) rotate(180deg);
  }
  50% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.2) rotate(250deg);
            transform: scale(1.2) rotate(250deg);
  }
  90% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1.3) rotate(360deg);
            transform: scale(1.3) rotate(360deg);
  }
  100% {
    top: 0;
    left: 0;
    -webkit-transform: scale(1) rotate(360deg);
            transform: scale(1) rotate(360deg);
  }
}
.mainTitleWrapper .subTitle {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 372px;
  height: 60px;
}
@media (max-width: 450px) {
  .mainTitleWrapper .subTitle {
    width: 70%;
    left: 37%;
    margin: 0 auto;
  }
}

.zoneWrap {
  position: sticky;
  top: 0;
  min-width: 100%;
  width: 100%;
  z-index: 2;
  margin-top: 990px;
}
@media (max-width: 768px) {
  .zoneWrap {
    margin-top: 1030px;
  }
}
@media (max-width: 450px) {
  .zoneWrap {
    margin-top: 585px;
  }
}
@media (max-width: 414px) {
  .zoneWrap {
    margin-top: 573px;
  }
}
@media (max-width: 390px) {
  .zoneWrap {
    margin-top: 535px;
  }
}
@media (max-width: 375px) {
  .zoneWrap {
    margin-top: 517px;
  }
}
@media (max-width: 360px) {
  .zoneWrap {
    margin-top: 493px;
  }
}
@media (max-width: 344px) {
  .zoneWrap {
    margin-top: 485px;
  }
}
.zoneWrap .star {
  -webkit-transform: scale(1);
          transform: scale(1);
  position: absolute;
  -webkit-animation: shining 2s ease-in-out infinite;
          animation: shining 2s ease-in-out infinite;
}
@media (max-width: 820px) {
  .zoneWrap .star {
    display: none;
  }
}
@-webkit-keyframes shining {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes shining {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.zoneWrap .sl01 {
  top: 5em;
  left: 8em;
}
@media (max-width: 1400px) {
  .zoneWrap .sl01 {
    left: 1em;
    top: -5em;
  }
}
.zoneWrap .sl02 {
  bottom: 18em;
  left: 8em;
}
@media (max-width: 860px) {
  .zoneWrap .sl02 {
    left: 1em;
  }
}
.zoneWrap .sl03 {
  bottom: 128em;
  left: 15em;
}
@media (max-width: 1400px) {
  .zoneWrap .sl03 {
    bottom: 138em;
    left: 6em;
  }
}
@media (max-width: 860px) {
  .zoneWrap .sl03 {
    left: 1em;
  }
}
.zoneWrap .sl04 {
  bottom: 100em;
  left: 15em;
}
@media (max-width: 1400px) {
  .zoneWrap .sl04 {
    left: 1em;
    bottom: 89em;
  }
}
.zoneWrap .sr01 {
  top: 5em;
  right: 8em;
}
@media (max-width: 860px) {
  .zoneWrap .sr01 {
    right: 1em;
  }
}
.zoneWrap .sr02 {
  bottom: 60em;
  right: 8em;
}
@media (max-width: 1200px) {
  .zoneWrap .sr02 {
    right: 2em;
  }
}
@media (max-width: 860px) {
  .zoneWrap .sr02 {
    right: 1em;
  }
}
.zoneWrap .sr03 {
  bottom: 10em;
  right: 15em;
}
@media (max-width: 1400px) {
  .zoneWrap .sr03 {
    right: 2em;
  }
}
@media (max-width: 860px) {
  .zoneWrap .sr03 {
    right: 1em;
  }
}
.zoneWrap .dot {
  position: absolute;
  -webkit-animation: shining 1s ease-in-out infinite;
          animation: shining 1s ease-in-out infinite;
}
@media (max-width: 820px) {
  .zoneWrap .dot {
    display: none;
  }
}
@keyframes shining {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.zoneWrap .dl01 {
  left: 15em;
  top: 7em;
}
@media (max-width: 1400px) {
  .zoneWrap .dl01 {
    left: 6em;
    top: 2em;
  }
}
.zoneWrap .dl02 {
  left: 7em;
  top: 25em;
}
@media (max-width: 1400px) {
  .zoneWrap .dl02 {
    top: 31em;
    left: 2em;
  }
}
.zoneWrap .dl03 {
  left: 21em;
  top: 82em;
}
@media (max-width: 1400px) {
  .zoneWrap .dl03 {
    top: 89em;
    left: 6em;
  }
}
@media (max-width: 1150px) {
  .zoneWrap .dl03 {
    left: 2em;
  }
}
.zoneWrap .dl04 {
  left: 20em;
  top: 40em;
}
@media (max-width: 860px) {
  .zoneWrap .dl04 {
    left: 1em;
  }
}
.zoneWrap .dr01 {
  right: 5em;
  top: 25em;
}
@media (max-width: 860px) {
  .zoneWrap .dr01 {
    right: 1em;
  }
}
.zoneWrap .dr02 {
  right: 5em;
  top: 55em;
}
@media (max-width: 1400px) {
  .zoneWrap .dr02 {
    right: 1em;
    top: 108em;
  }
}
.zoneWrap .dr03 {
  right: 5em;
  top: 90em;
}
@media (max-width: 860px) {
  .zoneWrap .dr03 {
    right: 1em;
  }
}
.zoneWrap .dr04 {
  right: 10em;
  bottom: 30em;
}
@media (max-width: 860px) {
  .zoneWrap .dr04 {
    bottom: 16em;
    right: 0em;
  }
}

.zoneMap {
  position: relative;
  background-image: url("../img/island.png"), -webkit-gradient(linear, left bottom, left top, color-stop(50%, #96e1fd), to(#c3f0fd));
  background-image: url("../img/island.png"), linear-gradient(to top, #96e1fd 50%, #c3f0fd 100%);
  background-position: center right;
  background-size: contain;
  width: 100%;
  height: 596px;
  padding-top: 55px;
}
.zoneMap::before {
  content: "";
  background: url(../img/zonetop.png) top no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  top: -181px;
  height: 182px;
}
.zoneMap::after {
  content: "";
  background: url(../img/zonebottom.png) top no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  bottom: -181px;
  height: 182px;
}
.zoneMap h3 {
  background: url("../img/H3.png") no-repeat center;
  background-size: contain;
  width: 20.31rem;
  height: 3.18rem;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (max-width: 320px) {
  .zoneMap h3 {
    width: 9em;
  }
}
.zoneMap p {
  font-size: 20px;
  color: #77512a;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 450px) {
  .zoneMap p {
    padding: 0 2em;
  }
}
.zoneMap .mapWrap {
  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: 5em;
  position: relative;
}
@media (max-width: 768px) {
  .zoneMap .mapWrap {
    gap: 3em;
  }
}
@media (max-width: 650px) {
  .zoneMap .mapWrap {
    gap: 2em;
  }
}
@media (max-width: 450px) {
  .zoneMap .mapWrap {
    gap: 1em;
  }
}
@media (max-width: 390px) {
  .zoneMap .mapWrap {
    gap: 0;
  }
}
.zoneMap .mapWrap::after {
  content: "";
  background: url("../img/map.png") no-repeat;
  background-size: contain;
  position: absolute;
  width: 55.81rem;
  height: 8.68rem;
}
@media (max-width: 860px) {
  .zoneMap .mapWrap::after {
    width: 47.81rem;
    height: 7.43rem;
  }
}
@media (max-width: 768px) {
  .zoneMap .mapWrap::after {
    width: 42.81rem;
    height: 6.67rem;
  }
}
@media (max-width: 650px) {
  .zoneMap .mapWrap::after {
    display: none;
  }
}
.zoneMap .mapWrap a {
  display: block;
  position: relative;
  background: url(../img/punchOut.png) no-repeat top center;
  background-size: contain;
  width: 10.87rem;
  height: 15.37rem;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 650px) {
  .zoneMap .mapWrap a {
    width: 9.8818181818rem;
    height: 13.9727272727rem;
    background-size: contain;
  }
}
@media (max-width: 450px) {
  .zoneMap .mapWrap a {
    width: 7.2466666667rem;
    height: 10.2466666667rem;
    background-size: contain;
  }
}
@media (max-width: 320px) {
  .zoneMap .mapWrap a {
    width: 6.0388888889rem;
    height: 8.5388888889rem;
    background-size: contain;
  }
}
.zoneMap .mapWrap a:hover {
  background: url(../img/punchIn.png) no-repeat top center;
}
@media (max-width: 650px) {
  .zoneMap .mapWrap a:hover {
    width: 9.8818181818rem;
    height: 13.9727272727rem;
    background-size: contain;
  }
}
@media (max-width: 450px) {
  .zoneMap .mapWrap a:hover {
    width: 7.2466666667rem;
    height: 10.2466666667rem;
    background-size: contain;
  }
}
@media (max-width: 320px) {
  .zoneMap .mapWrap a:hover {
    width: 6.0388888889rem;
    height: 8.5388888889rem;
    background-size: contain;
  }
}
.zoneMap .mapWrap a.active {
  background: url(../img/punchIn.png) no-repeat top center;
}
@media (max-width: 650px) {
  .zoneMap .mapWrap a.active {
    width: 9.8818181818rem;
    height: 13.9727272727rem;
    background-size: contain;
  }
}
@media (max-width: 450px) {
  .zoneMap .mapWrap a.active {
    width: 7.2466666667rem;
    height: 10.2466666667rem;
    background-size: contain;
  }
}
@media (max-width: 320px) {
  .zoneMap .mapWrap a.active {
    width: 6.0388888889rem;
    height: 8.5388888889rem;
    background-size: contain;
  }
}
.zoneMap .mapWrap a::before {
  content: "";
  position: absolute;
  background: url("../img/mapCh01.png") no-repeat top center;
  background-size: contain;
  width: 9.75rem;
  height: 10.87rem;
  top: 2em;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 650px) {
  .zoneMap .mapWrap a::before {
    background-size: contain;
    width: 8.8636363636rem;
    height: 9.8818181818rem;
  }
}
@media (max-width: 450px) {
  .zoneMap .mapWrap a::before {
    background-size: contain;
    width: 6.5rem;
    height: 7.2466666667rem;
  }
}
@media (max-width: 320px) {
  .zoneMap .mapWrap a::before {
    width: 5.4166666667rem;
    height: 6.0388888889rem;
    background-size: contain;
  }
}
.zoneMap .mapWrap a:hover::before {
  -webkit-animation: shake 0.5s ease-in-out 3;
          animation: shake 0.5s ease-in-out 3;
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25%, 75% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25%, 75% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
.zoneMap .mapWrap a .mapBut {
  text-wrap: nowrap;
  display: block;
  left: calc(var(--font-size-XL) / 1.5);
  font-size: var(--font-size-XL);
  background-color: #555555;
  color: white;
  padding: 0.1em 0.8em;
  font-weight: 500;
  border-radius: 5px;
  margin-bottom: -0.5em;
  cursor: pointer;
}
@media (max-width: 450px) {
  .zoneMap .mapWrap a .mapBut {
    font-size: 20px;
    margin-bottom: -1.5em;
  }
}
@media (max-width: 320px) {
  .zoneMap .mapWrap a .mapBut {
    font-size: 18px;
  }
}
.zoneMap .mapWrap a .mapBut.active {
  background-color: #9b7669;
}
.zoneMap .mapWrap a .mapBut:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.zoneMap .mapWrap a:nth-child(2) {
  margin-top: 6.25rem;
}
.zoneMap .mapWrap a:nth-child(2)::before {
  content: "";
  background: url("../img/mapCh02.png") no-repeat center top;
  background-size: contain;
}
@media (max-width: 650px) {
  .zoneMap .mapWrap a:nth-child(2)::before {
    background-size: contain;
    width: 8.8636363636rem;
    height: 9.8818181818rem;
  }
}
@media (max-width: 450px) {
  .zoneMap .mapWrap a:nth-child(2)::before {
    background-size: contain;
    width: 6.5rem;
    height: 7.2466666667rem;
  }
}
@media (max-width: 320px) {
  .zoneMap .mapWrap a:nth-child(2)::before {
    width: 5.4166666667rem;
    height: 6.0388888889rem;
    background-size: contain;
  }
}
.zoneMap .mapWrap a:nth-child(3)::before {
  content: "";
  background: url("../img/mapCh03.png") no-repeat center top;
  background-size: contain;
}
@media (max-width: 650px) {
  .zoneMap .mapWrap a:nth-child(3)::before {
    background-size: contain;
    width: 8.8636363636rem;
    height: 9.8818181818rem;
  }
}
@media (max-width: 450px) {
  .zoneMap .mapWrap a:nth-child(3)::before {
    background-size: contain;
    width: 6.5rem;
    height: 7.2466666667rem;
  }
}
@media (max-width: 320px) {
  .zoneMap .mapWrap a:nth-child(3)::before {
    width: 5.4166666667rem;
    height: 6.0388888889rem;
    background-size: contain;
  }
}
.zoneMap .mapBgCh {
  position: relative;
}
@media (max-width: 1150px) {
  .zoneMap .mapBgCh {
    display: none;
  }
}
.zoneMap .mapBgChR {
  left: 76vw;
  bottom: 50%;
  -webkit-animation: bounceR 3s ease-in-out infinite;
          animation: bounceR 3s ease-in-out infinite;
  /*飄動態*/
}
@-webkit-keyframes bounceR {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@keyframes bounceR {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@media (max-width: 1700px) {
  .zoneMap .mapBgChR {
    left: 85vw;
  }
}
@media (max-width: 1300px) {
  .zoneMap .mapBgChR {
    left: 88vw;
  }
}
@media (max-width: 1024px) {
  .zoneMap .mapBgChR {
    display: none;
  }
}
.zoneMap .mapBgChL {
  left: 11vw;
  bottom: 50%;
  -webkit-animation: bounceL 3s ease-in-out infinite;
          animation: bounceL 3s ease-in-out infinite;
  /*飄動態*/
}
@-webkit-keyframes bounceL {
  0%, 100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bounceL {
  0%, 100% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 1700px) {
  .zoneMap .mapBgChL {
    left: 5vw;
  }
}
@media (max-width: 1500px) {
  .zoneMap .mapBgChL {
    left: 2vw;
  }
}
@media (max-width: 1300px) {
  .zoneMap .mapBgChL {
    left: 0;
  }
}
@media (max-width: 1024px) {
  .zoneMap .mapBgChL {
    display: none;
  }
}

.zone {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 300px 0 120px 0;
}
.zone .loginWrap {
  text-align: center;
  font-weight: 600;
  color: var(--font-color);
}
.zone .loginWrap a {
  color: white;
  display: inline-block;
  padding: 0.7em 2.5em 0.7em 5.2em;
  border-radius: 5rem;
  border: 3px solid #ff9d9e;
  -webkit-box-shadow: -0.1vw 0 0 #f56769, 0.1vw 0 0 #f56769, 0 -0.1vw 0 #f56769, 0 0.1vw 0 #f56769;
          box-shadow: -0.1vw 0 0 #f56769, 0.1vw 0 0 #f56769, 0 -0.1vw 0 #f56769, 0 0.1vw 0 #f56769;
  position: relative;
  font-size: var(--font-size-XXL);
}
@media (max-width: 450px) {
  .zone .loginWrap a {
    padding: 0.7em 1em 0.7em 5.5em;
    font-size: 23px;
  }
}
.zone .loginWrap a::after {
  content: "";
  background: url("../img/but.png") no-repeat;
  background-size: contain;
  width: 6.5rem;
  height: 5.3rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 1rem;
}
@media (max-width: 320px) {
  .zone .loginWrap a::after {
    left: -1rem;
  }
}
.zone .loginWrap .loginIn {
  background-color: var(--sign-but);
}
.zone .loginWrap .logOut {
  background-color: var(--sign-but);
}
.zone .loginWrap .logOutWrap {
  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;
  font-size: var(--font-size-XL);
}
.zone .loginWrap .logOutWrap span {
  color: var(--title-color);
  font-size: var(--font-size-L);
}
.zone .loginWrap form select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0.2vw;
  width: 15rem;
  padding: 1rem 30px 1rem 15px;
  background: url(../img/select_arrow.png) no-repeat right 0.07rem center;
  background-color: #ffffff;
  margin-bottom: 0.8vw;
  font-weight: 600;
  text-align: left;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  color: var(--font-color);
  border: 1px solid var(--font-color);
  margin: 0.5em 0 1em 0;
}
.zone .loginWrap form option {
  font-weight: 600;
}
.zone .loginWrap .signWrap {
  margin-bottom: 2em;
}
.zone .loginWrap .signWrap a {
  margin: 0.2em 0 1em 0;
  display: block;
  padding: 0.5rem 2em;
  background-color: #98776a;
  border: 3px solid #f2bd94;
  -webkit-box-shadow: -0.1vw 0 0 #98776a, 0.1vw 0 0 #98776a, 0 -0.1vw 0 #98776a, 0 0.1vw 0 #98776a;
          box-shadow: -0.1vw 0 0 #98776a, 0.1vw 0 0 #98776a, 0 -0.1vw 0 #98776a, 0 0.1vw 0 #98776a;
}
.zone .loginWrap .signWrap a::after {
  content: "";
  display: none;
}
.zone .loginWrap .signWrap a:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.zone .loginWrap .sign {
  font-size: var(--font-size-L);
  background-color: var(--numbg-color);
  padding: 0.3em 2em;
  margin: 0.5em 0;
  border-radius: 0.2vw;
}
.zone .noteBut {
  display: inline-block;
  text-align: center;
  padding: 1.1em 8em;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 500;
  font-size: var(--font-size-XXL);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#f6d365), color-stop(51%, #fda085), to(#f6d365));
  background-image: linear-gradient(to right, #f6d365 0%, #fda085 51%, #f6d365 100%);
  background-size: 200% auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #ffffff;
  text-wrap: nowrap;
}
@media (max-width: 650px) {
  .zone .noteBut {
    padding: 1.1em 7em;
  }
}
@media (max-width: 450px) {
  .zone .noteBut {
    padding: 1.1em 3em;
    font-size: 23px;
  }
}
@media (max-width: 320px) {
  .zone .noteBut {
    padding: 1.1em 2em;
  }
}
.zone .noteBut:hover {
  background-position: right center;
}
.zone .noteBut span {
  background-color: white;
  border-radius: 50%;
  margin-left: 10px;
  width: 1em;
  height: 1em;
  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;
}
.zone .noteBut span::before {
  content: "";
  background: url("../img/plus.svg") no-repeat;
  background-size: cover;
  width: 0.5em;
  height: 0.5em;
  display: block;
}
.zone .giftch {
  position: absolute;
  display: block;
}

.content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  background-color: white;
  border-radius: 25px;
  margin-bottom: 15rem;
}
@media (max-width: 860px) {
  .content {
    width: 760px;
  }
}
@media (max-width: 820px) {
  .content {
    max-width: 750px;
  }
}
@media (max-width: 768px) {
  .content {
    max-width: 700px;
  }
}
@media (max-width: 650px) {
  .content {
    max-width: 600px;
  }
}
@media (max-width: 576px) {
  .content {
    max-width: 510px;
  }
}
@media (max-width: 550px) {
  .content {
    max-width: 500px;
  }
}
@media (max-width: 450px) {
  .content {
    max-width: 400px;
  }
}
@media (max-width: 414px) {
  .content {
    max-width: 370px;
  }
}
@media (max-width: 390px) {
  .content {
    max-width: 340px;
  }
}
@media (max-width: 375px) {
  .content {
    max-width: 320px;
  }
}
@media (max-width: 320px) {
  .content {
    max-width: 300px;
  }
}
.content .title {
  position: relative;
  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;
  background-color: var(--titlebg-color);
  border-radius: 25px 25px 0 0;
  padding-top: 92px;
}
.content .title img {
  position: absolute;
  top: -92px;
}
.content .title span {
  display: block;
  color: #88613a;
  font-weight: 600;
  margin-bottom: 28px;
  font-size: var(--font-size-L);
}
@media (max-width: 450px) {
  .content .title span {
    padding: 0 2em;
  }
}
.content .title span::before {
  content: "#打卡活動";
  background-color: #88613a;
  color: white;
  padding: 0.1em 0.5em;
  border-radius: 5px;
  margin-right: 0.5em;
}
.content .prizeTitle {
  font-size: var(--font-size-XXXL);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  color: #88613a;
  padding: 58px 0 50px 0;
}
.content .prizeTitle::after {
  content: "";
  background: url("../img/prizeborder.png") no-repeat;
  background-size: contain;
  width: 10.56rem;
  height: 0.875rem;
  display: block;
  margin: 0 auto;
  margin-top: 1rem;
}
.content ul {
  padding: 2.5em 3em 2.5em 3em;
}
@media (max-width: 1024px) {
  .content ul {
    padding: 2.5em 3.75em 2.5em 1.6em;
  }
}
@media (max-width: 650px) {
  .content ul {
    padding: 2em 2em;
  }
}
@media (max-width: 320px) {
  .content ul {
    padding: 2em 1em;
  }
}
.content ul li {
  color: var(--font-color);
  font-weight: 500;
  font-size: var(--font-size-M);
  margin-bottom: 1rem;
}
.content ul li h4 {
  margin-bottom: 1rem;
  color: var(--title-color);
  letter-spacing: 3px;
}
.content ul .contentInner {
  padding: 0;
}
.content ul .contentInner li {
  margin-bottom: 1.2rem;
}
.content ul .contentInner li:last-child {
  margin-bottom: 0;
}
.content ul .contentInner i {
  background-color: var(--numbg-color);
  border-radius: 50% 50%;
  width: 25px;
  height: 25px;
  display: inline-block;
  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;
  margin-right: 0.52rem;
}
.content ul .contentInner span {
  color: var(--note-but);
  font-weight: 600;
}
.content .npcWrapper {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1em;
  gap: 1em;
}
@media (max-width: 768px) {
  .content .npcWrapper {
    padding: 0 1em;
  }
}
.content .npcWrapper .npc {
  position: relative;
}
.content .npcWrapper .npc p {
  position: absolute;
  bottom: 0;
  background-color: #bddcff;
  color: var(--font-color);
  font-weight: 700;
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.2em 0;
  font-size: var(--font-size-Ms);
}
.content .mission {
  padding: 0 4.7em 2em 4.7em;
}
@media (max-width: 450px) {
  .content .mission {
    padding: 0 2em 2em 2em;
  }
}
@media (max-width: 390px) {
  .content .mission {
    padding: 0 1em 2em 1em;
  }
}
.content .mission p {
  background-color: #f3f3f3;
  color: var(--font-color);
  font-size: var(--font-size-M);
  font-weight: 600;
  padding: 1em 2em;
}
@media (max-width: 390px) {
  .content .mission p {
    padding: 1em 1em;
  }
}
.content .zoneCh {
  position: absolute;
}
.content .chR {
  right: -52.9%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1700px) {
  .content .chR {
    right: -39.9%;
    width: 40%;
  }
}
@media (max-width: 1500px) {
  .content .chR {
    right: -34.9%;
    width: 35%;
  }
}
@media (max-width: 1400px) {
  .content .chR {
    right: -30.9%;
    width: 31%;
  }
}
@media (max-width: 1350px) {
  .content .chR {
    display: none;
  }
}
.content .chL {
  left: -52.8%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1700px) {
  .content .chL {
    left: -39.9%;
    width: 40%;
  }
}
@media (max-width: 1500px) {
  .content .chL {
    left: -34.9%;
    width: 35%;
  }
}
@media (max-width: 1400px) {
  .content .chL {
    left: -31%;
    width: 31%;
  }
}
@media (max-width: 1350px) {
  .content .chL {
    display: none;
  }
}
.content .lineL {
  left: -21.8%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .content .lineL {
    display: none;
  }
}
.content .lineL02 {
  left: -37.8%;
  top: 89%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .content .lineL02 {
    display: none;
  }
}
.content .lineR {
  right: -25.8%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .content .lineR {
    display: none;
  }
}

.content:has(.prizeTitle) {
  position: relative;
  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;
  margin-bottom: 156px;
}
.content:has(.prizeTitle)::before {
  content: "";
  background: url("../img/giftTop.png") no-repeat top;
  background-size: contain;
  width: 369px;
  height: 115px;
  display: block;
  position: absolute;
  top: -115px;
  left: calc(50% - 184.5px);
}
@media (max-width: 450px) {
  .content:has(.prizeTitle)::before {
    top: -113px;
    margin-bottom: 80px;
  }
}
@media (max-width: 375px) {
  .content:has(.prizeTitle)::before {
    width: 320px;
    height: 100px;
    top: -98px;
    left: calc(50% - 160px);
  }
}
@media (max-width: 375px) {
  .content:has(.prizeTitle)::before {
    width: 280px;
    top: -86px;
    left: calc(50% - 140px);
  }
}
.content:has(.prizeTitle) .punchInPrize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 320px) {
  .content:has(.prizeTitle) .punchInPrize {
    gap: 0;
  }
}
@media (max-width: 320px) {
  .content:has(.prizeTitle) .punchInPrize ul {
    padding: 2em 0em;
  }
}
.content:has(.prizeTitle) .punchInPrize li {
  width: 281px;
  height: 291px;
  border-radius: 15px;
  background: url("../img/punchCat.png") no-repeat top, -webkit-gradient(linear, left top, left bottom, from(#cfb5ff), to(#a8d1ff));
  background: url("../img/punchCat.png") no-repeat top, linear-gradient(to bottom, #cfb5ff 0%, #a8d1ff 100%);
  background-size: contain;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px;
}
.content:has(.prizeTitle) .punchInPrize .In {
  background: url("../img/punchCat.png") no-repeat top, -webkit-gradient(linear, left top, left bottom, from(#ffd1d6), to(#f8bbf8));
  background: url("../img/punchCat.png") no-repeat top, linear-gradient(to bottom, #ffd1d6 0%, #f8bbf8 100%);
}
.content:has(.prizeTitle) .punchInPrize .In .check {
  cursor: pointer;
}
.content:has(.prizeTitle) .punchInPrize .In .check::before {
  content: "";
  display: none;
}
.content:has(.prizeTitle) .punchInPrize .End .check {
  cursor: not-allowed;
}
.content:has(.prizeTitle) .punchInPrize .Out::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  width: 281px;
  height: 291px;
  display: block;
  border-radius: 15px;
  z-index: 3;
}
.content:has(.prizeTitle) .punchInPrize .Out .check::before {
  content: "";
  display: none;
}
.content:has(.prizeTitle) .punchInPrize .day {
  margin-bottom: 10px;
}
.content:has(.prizeTitle) .punchInPrize .prize {
  margin-bottom: 15px;
  position: relative;
}
.content:has(.prizeTitle) .punchInPrize .prize .more {
  display: block;
  z-index: 4;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 3%;
  right: 3%;
  background-color: #d7a1a2;
  color: white;
  font-size: 18px;
  border-radius: 50%;
  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;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.content:has(.prizeTitle) .punchInPrize .prize .more:hover {
  font-size: 22px;
  width: 28px;
  height: 28px;
  background-color: var(--lightpoint);
}
.content:has(.prizeTitle) .punchInPrize .nameWrap {
  text-wrap: nowrap;
  max-width: 220px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #694098;
}
.content:has(.prizeTitle) .punchInPrize .nameWrap .check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: white;
  border: 4px solid #ffcd48;
}
.content:has(.prizeTitle) .punchInPrize .nameWrap .check::before {
  content: "";
  background: url("../img/punchCheck.png") no-repeat;
  background-size: cover;
  width: 52px;
  height: 38px;
  position: absolute;
}
.content:has(.prizeTitle) .dayMission {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content:has(.prizeTitle) .dayMission .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1em;
  border-bottom: 1px solid #ffd987;
}
@media (max-width: 450px) {
  .content:has(.prizeTitle) .dayMission .menu {
    overflow-x: scroll;
    width: 350px;
  }
}
@media (max-width: 390px) {
  .content:has(.prizeTitle) .dayMission .menu {
    width: 300px;
  }
}
@media (max-width: 320px) {
  .content:has(.prizeTitle) .dayMission .menu {
    width: 275px;
  }
}
.content:has(.prizeTitle) .dayMission .menu div {
  text-align: center;
  padding: 0.2em 0.7em;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  color: var(--font-color);
  font-size: var(--font-size-XXXL);
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 450px) {
  .content:has(.prizeTitle) .dayMission .menu div {
    font-size: 25px;
    padding: 0.2em 0.5em;
    text-wrap: nowrap;
  }
}
.content:has(.prizeTitle) .dayMission .menu div.active {
  background-color: #ffd987;
}
.content:has(.prizeTitle) .dayMission .menu div span {
  display: block;
  font-size: var(--font-size-S);
  font-weight: 500;
}
.content:has(.prizeTitle) .dayMission .PrizeWrap ul {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 0.7em;
  padding: 1em 6em;
}
@media (max-width: 1500px) {
  .content:has(.prizeTitle) .dayMission .PrizeWrap ul {
    padding: 1em 4em;
  }
}
@media (max-width: 650px) {
  .content:has(.prizeTitle) .dayMission .PrizeWrap ul {
    padding: 1em 1em;
  }
}
.content:has(.prizeTitle) .dayMission .PrizeWrap 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #f8f7f7;
  width: 115px;
  height: 150px;
  padding: 0.7em 0;
  font-size: var(--font-size-XS);
  text-align: center;
  position: relative;
}
@media (max-width: 414px) {
  .content:has(.prizeTitle) .dayMission .PrizeWrap ul li {
    width: 140px;
  }
}
.content:has(.prizeTitle) .dayMission .PrizeWrap ul li img {
  margin-bottom: 10px;
}
.content:has(.prizeTitle) .dayMission .PrizeWrap ul li span {
  position: absolute;
  right: 10px;
  top: 60px;
  display: block;
  background-color: var(--numbg-color);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-weight: 600;
  line-height: 25px;
  font-size: var(--font-size-S);
}
.content:has(.prizeTitle) .specialPrize li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-size: var(--font-size-S);
  margin-bottom: 6em;
}
@media (max-width: 650px) {
  .content:has(.prizeTitle) .specialPrize li {
    -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;
  }
}
.content:has(.prizeTitle) .specialPrize li .item {
  position: absolute;
  width: 272px;
  height: 272px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/prizedeco.png") no-repeat center, -webkit-gradient(linear, left bottom, left top, from(#ffd1d6), to(#f7b7fd));
  background: url("../img/prizedeco.png") no-repeat center, linear-gradient(to top, #ffd1d6 0%, #f7b7fd 100%);
  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;
  cursor: pointer;
}
@media (max-width: 650px) {
  .content:has(.prizeTitle) .specialPrize li .item {
    top: 25%;
  }
}
.content:has(.prizeTitle) .specialPrize li .item img {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.content:has(.prizeTitle) .specialPrize li .item img:hover {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.content:has(.prizeTitle) .specialPrize li img {
  cursor: pointer;
}
.content:has(.prizeTitle) .specialPrize li .features {
  border-radius: 200px 10px 10px 200px;
  border: 2px solid #f3f3f3;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 20px 30px 20px 304px;
}
@media (max-width: 650px) {
  .content:has(.prizeTitle) .specialPrize li .features {
    padding: 250px 30px 20px 30px;
    border-radius: 50px 50px 0 0;
  }
}
@media (max-width: 450px) {
  .content:has(.prizeTitle) .specialPrize li .features {
    padding: 300px 20px 20px 20px;
  }
}
.content:has(.prizeTitle) .specialPrize li .features h6 {
  font-size: var(--font-size-XL);
  font-weight: 500;
  color: var(--title-color);
}
.content:has(.prizeTitle) .specialPrize li .features p {
  margin-top: 20px;
}

.zone01 {
  background: url("../img/indexbg.jpg") repeat-y #e0daff bottom center;
  background-size: contain;
}
.zone01 .giftch {
  background: url("../img/zone03gift.png") no-repeat;
  background-size: contain;
  width: 208px;
  height: 201px;
  left: 5%;
  top: -3%;
}
@media (max-width: 650px) {
  .zone01 .giftch {
    height: 173.3333333333px;
    width: 167.5px;
    left: 2%;
  }
}
@media (max-width: 450px) {
  .zone01 .giftch {
    top: -8%;
    left: -4%;
  }
}
.zone01 .giftch:hover {
  background: url("../img/zone03gift01.png") no-repeat;
}
@media (max-width: 650px) {
  .zone01 .giftch:hover {
    background-size: contain;
    width: 167.5px;
    height: 173.3333333333px;
  }
}

.zone02 {
  background: url("../img/travelbg.jpg") repeat-y #b9ead4 top center;
  background-size: contain;
}
.zone02 .title span::before {
  content: "#每日任務";
}
.zone02 .giftch {
  background: url("../img/zone02gift.png") no-repeat;
  background-size: contain;
  width: 127px;
  height: 183px;
  left: 12%;
  top: -3%;
}
@media (max-width: 650px) {
  .zone02 .giftch {
    background-size: contain;
    height: 158.75px;
    width: 228.75px;
    left: 2%;
  }
}
@media (max-width: 450px) {
  .zone02 .giftch {
    background-size: contain;
    height: 115.4545454545px;
    width: 166.3636363636px;
  }
}
@media (max-width: 320px) {
  .zone02 .giftch {
    left: 2%;
    top: -2%;
  }
}
.zone02 .giftch:hover {
  background: url("../img/zone02gift01.png") no-repeat;
}
@media (max-width: 650px) {
  .zone02 .giftch:hover {
    background-size: contain;
    height: 158.75px;
    width: 228.75px;
    left: 2%;
  }
}
@media (max-width: 450px) {
  .zone02 .giftch:hover {
    background-size: contain;
    height: 115.4545454545px;
    width: 166.3636363636px;
  }
}
@media (max-width: 320px) {
  .zone02 .giftch:hover {
    left: 2%;
    top: -2%;
  }
}
.zone02 .giftch02 {
  background: url("../img/zone02gift-2.png") no-repeat center;
  background-size: contain;
  width: 152px;
  height: 186px;
  left: 72%;
  top: -3%;
}
@media (max-width: 650px) {
  .zone02 .giftch02 {
    background-size: contain;
    width: 138.1818181818px;
    height: 169.0909090909px;
    left: 76%;
  }
}
@media (max-width: 450px) {
  .zone02 .giftch02 {
    background-size: contain;
    width: 95px;
    height: 116.25px;
  }
}
@media (max-width: 375px) {
  .zone02 .giftch02 {
    left: 68%;
  }
}
@media (max-width: 320px) {
  .zone02 .giftch02 {
    left: 62%;
    top: -2%;
  }
}
.zone02 .giftch02:hover {
  background: url("../img/zone02gift01-2.png") no-repeat center;
  background-size: contain;
}
@media (max-width: 650px) {
  .zone02 .giftch02:hover {
    background-size: contain;
    width: 138.1818181818px;
    height: 169.0909090909px;
    left: 76%;
  }
}
@media (max-width: 450px) {
  .zone02 .giftch02:hover {
    background-size: contain;
    width: 95px;
    height: 116.25px;
  }
}
@media (max-width: 320px) {
  .zone02 .giftch02:hover {
    left: 62%;
    top: -2%;
  }
}

.zone03 {
  background: url("../img/presentbg.jpg") repeat-y #ffd6e6 top center;
  background-size: contain;
}
.zone03 .title span::before {
  content: "#每日任務";
}
@media (max-width: 450px) {
  .zone03 .content:has(.prizeTitle) .menu {
    overflow-x: auto;
    width: auto;
  }
}
.zone03 .content:has(.prizeTitle) .menu div {
  font-weight: 500;
  font-size: 1.95rem;
  padding: 0.4em 1em;
}
@media (max-width: 450px) {
  .zone03 .content:has(.prizeTitle) .menu div {
    font-size: 25px;
  }
}
.zone03 .giftch {
  background: url("../img/zone01gift.png") no-repeat;
  background-size: contain;
  width: 138px;
  height: 145px;
  left: 14%;
  top: -3%;
}
.zone03 .giftch:hover {
  background: url("../img/zone01gift01.png") no-repeat;
}
@media (max-width: 650px) {
  .zone03 .giftch {
    left: 3%;
  }
}
@media (max-width: 450px) {
  .zone03 .giftch {
    top: -5%;
  }
}
@media (max-width: 375px) {
  .zone03 .giftch {
    top: -3%;
  }
}

footer {
  z-index: 5;
  background-color: var(--footerbg-color);
}