@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html * {
  font-family: "Microsoft JhengHei";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  background-color: #fbf6e0;
  color: #373737;
  font-size: 18px;
  font-weight: bold;
}

* {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}

.wrap {
  width: 100%;
  min-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.header {
  width: 100%;
  height: 981px;
  background: url(../images/header-bg.jpg) no-repeat center top;
}

.promo-btn {
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 100;
  width: 185px;
  height: 206px;
  background: url(../images/promo-btn.png) no-repeat center top;
  -webkit-animation: gacha-turn 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: gacha-turn 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes gacha-turn {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  5% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  10% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  15% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  20% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  55% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  60% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  65% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  70% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes gacha-turn {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  5% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  10% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  15% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  20% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  55% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  60% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  65% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  70% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.main-menu {
  width: 100%;
  height: 281px;
  background-image: url("../images/wave-pat.png");
  background-repeat: repeat-x;
  background-position: 0 bottom;
  -webkit-animation: waveMove 8s linear infinite;
          animation: waveMove 8s linear infinite;
  top: -50px;
  padding: 70px 0 60px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-menu.is-fixed {
  position: fixed;
  top: -100px;
  left: 0;
  z-index: 999;
}
.main-menu.is-fixed .main-menu-inner {
  top: 50px;
  width: 1280px;
  height: 122px;
  gap: 0;
}
.main-menu.is-fixed a, .main-menu.is-fixed button {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.main-menu-inner {
  width: 1280px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  gap: 10px;
}
.main-menu-inner a, .main-menu-inner button {
  display: block;
  width: 246px;
  height: 61px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-menu-inner a::before, .main-menu-inner button::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  width: 46px;
  height: 46px;
  background: url("../images/menu-deco.png") center no-repeat;
  opacity: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-menu-inner a:hover::before, .main-menu-inner a.active::before, .main-menu-inner button:hover::before, .main-menu-inner button.active::before {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  right: 7px;
}
.main-menu-inner .main-menu-btn1 {
  background: url("../images/menu-btn1.png") center no-repeat;
}
.main-menu-inner .main-menu-btn1:hover, .main-menu-inner .main-menu-btn1.active {
  background: url("../images/menu-btn1-ac.png") center no-repeat;
}
.main-menu-inner .main-menu-btn2 {
  background: url("../images/menu-btn2.png") center no-repeat;
}
.main-menu-inner .main-menu-btn2:hover, .main-menu-inner .main-menu-btn2.active {
  background: url("../images/menu-btn2-ac.png") center no-repeat;
}
.main-menu-inner .main-menu-btn3 {
  background: url("../images/menu-btn3.png") center no-repeat;
}
.main-menu-inner .main-menu-btn3:hover, .main-menu-inner .main-menu-btn3.active {
  background: url("../images/menu-btn3-ac.png") center no-repeat;
}
.main-menu-inner .main-menu-btn4 {
  background: url("../images/menu-btn4.png") center no-repeat;
}
.main-menu-inner .main-menu-btn4:hover, .main-menu-inner .main-menu-btn4.active {
  background: url("../images/menu-btn4-ac.png") center no-repeat;
}
.main-menu-inner .main-menu-btn5 {
  background: url("../images/menu-btn5.png") center no-repeat;
}
.main-menu-inner .main-menu-btn5:hover, .main-menu-inner .main-menu-btn5.active {
  background: url("../images/menu-btn5-ac.png") center no-repeat;
}
.main-menu-inner .main-menu-btn6 {
  background: url("../images/menu-btn6.png") center no-repeat;
}
.main-menu-inner .main-menu-btn6:hover, .main-menu-inner .main-menu-btn6.active {
  background: url("../images/menu-btn6-ac.png") center no-repeat;
}
.main-menu-inner .main-menu-btn7 {
  background: url("../images/menu-btn7.png") center no-repeat;
}
.main-menu-inner .main-menu-btn7:hover, .main-menu-inner .main-menu-btn7.active {
  background: url("../images/menu-btn7-ac.png") center no-repeat;
}
.main-menu-inner .main-menu-btn8 {
  background: url("../images/menu-btn8.png") center no-repeat;
}
.main-menu-inner .main-menu-btn8:hover, .main-menu-inner .main-menu-btn8.active {
  background: url("../images/menu-btn8-ac.png") center no-repeat;
}
.main-menu-inner .main-menu-btn9 {
  background: url("../images/menu-btn9.png") center no-repeat;
}
.main-menu-inner .main-menu-btn9:hover, .main-menu-inner .main-menu-btn9.active {
  background: url("../images/menu-btn9-ac.png") center no-repeat;
}
.main-menu-inner .main-menu-btn10 {
  background: url("../images/menu-btn10.png") center no-repeat;
}
.main-menu-inner .main-menu-btn10:hover, .main-menu-inner .main-menu-btn10.active {
  background: url("../images/menu-btn10.png") center no-repeat;
}

@-webkit-keyframes waveMove {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 550px;
  }
}

@keyframes waveMove {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 550px;
  }
}
.menu-link-btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#f7e7a3), color-stop(30%, #f0d97a), color-stop(55%, #e2c15a), color-stop(75%, #d4ac3f), to(#c89c2f));
  background: linear-gradient(to bottom, #f7e7a3 0%, #f0d97a 30%, #e2c15a 55%, #d4ac3f 75%, #c89c2f 100%);
  border-radius: 0 !important;
}

.logout-btn {
  position: absolute;
  top: 136px;
  right: 77px;
  width: 200px;
  height: 40px;
  background: #bcad99;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.logout-btn:hover {
  background: #ddcbb3;
}

.social-btns {
  position: absolute;
  z-index: 100;
  top: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.social-btns a {
  display: block;
  width: 57px;
  height: 57px;
}
.social-btns a.mem_btn {
  background: url("../images/mem-btn.png") center no-repeat;
}
.social-btns a.home_btn {
  background: url("../images/home-btn.png") center no-repeat;
}
.social-btns a.fb_btn {
  background: url("../images/fb-btn.png") center no-repeat;
}

.m-social-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.m-social-btns a {
  display: block;
  width: 57px;
  height: 57px;
  border-bottom: none !important;
}
.m-social-btns a.mem_btn {
  background: url("../images/mem-btn.png") center no-repeat;
}
.m-social-btns a.home_btn {
  background: url("../images/home-btn.png") center no-repeat;
}
.m-social-btns a.fb_btn {
  background: url("../images/fb-btn.png") center no-repeat;
}

.logo {
  position: absolute;
  left: 20px;
  top: 10px;
  display: block;
  width: 195px;
  height: 163px;
  background: url("../images/logo.png") center no-repeat;
}

.container {
  width: 100%;
  height: auto;
  background: url("../images/flower.png") repeat-y top;
  padding-bottom: 30px;
  background-image: url("../images/paw-pattern.png");
  background-repeat: repeat;
  -webkit-animation: bgMove 25s linear infinite;
          animation: bgMove 25s linear infinite;
  background-attachment: fixed;
}

.add-pd {
  padding-top: 281px;
}

@-webkit-keyframes bgMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px -200px;
  }
}

@keyframes bgMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px -200px;
  }
}
.sec {
  margin-bottom: 80px;
}

.inner {
  width: 1280px;
  margin: 0 auto;
}

.main-tit {
  text-align: center;
  margin-bottom: 20px;
}

.content {
  width: 1024px;
  height: auto;
  margin: 20px auto 0px auto;
  padding: 50px;
  background: #fffbf6;
  border: 5px solid #fff;
  border-radius: 18px;
  -webkit-box-shadow: 0px 10px 20px rgba(169, 120, 48, 0.5);
          box-shadow: 0px 10px 20px rgba(169, 120, 48, 0.5);
}

.sec1-gift-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.sec1-gift1 {
  width: 583px;
  height: 713px;
  background: url("../images/sec1-gift1.png") no-repeat center;
}

.sec1-gift2 {
  width: 583px;
  height: 713px;
  background: url("../images/sec1-gift2.png") no-repeat center;
}

.sec1-button {
  display: block;
  width: 229px;
  height: 68px;
  outline: none;
  border: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 73px;
  cursor: pointer;
}

.is-reward {
  background: url("../images/reward-btn.png") no-repeat center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.is-reward:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.is-received {
  background: url("../images/received-btn.png") no-repeat center;
  cursor: default;
}

.is-noreward {
  background: url("../images/noreward-btn.png") no-repeat center;
  cursor: default;
}

.is-login {
  background: url("../images/login-btn.png") no-repeat center;
}
.is-login:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.sec1-notice-tit {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -25px;
  width: 1068px;
  height: 43px;
  background: url("../images/sec1-notice.png") no-repeat center;
}

.notice-list {
  padding-left: 1em;
  font-size: 18px;
  color: #89715d;
}

.sub-tit {
  width: 100%;
  height: 40px;
  border-radius: 19px;
  background: -webkit-gradient(linear, left top, right top, from(#f07c58), to(#f2ce9a));
  background: linear-gradient(90deg, #f07c58 0%, #f2ce9a 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding-left: 30px;
  margin-bottom: 10px;
}
.sub-tit img {
  margin-right: 5px;
}
.sub-tit::after {
  content: "";
  width: 26px;
  height: 29px;
  background: url("../images/subtitle-deco-left.png") no-repeat center;
  position: absolute;
  top: 0px;
  left: 1px;
}
.sub-tit::before {
  content: "";
  width: 26px;
  height: 29px;
  background: url("../images/subtitle-deco-right.png") no-repeat center;
  position: absolute;
  bottom: 0px;
  right: 1px;
}

.sub-notice-tit {
  background: #957143;
}

.cont-d-list {
  padding-left: 2em;
  color: #574a3e;
  line-height: 24px;
}
.cont-d-list li {
  margin-bottom: 5px;
}

.word {
  color: #574a3e;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 1em;
  vertical-align: middle;
}
.word img {
  vertical-align: middle;
  margin: 0 5px;
}

.sec2-gift {
  width: 646px;
  height: 301px;
  background: url("../images/sec2-gift.png") no-repeat center;
  margin: 20px auto;
}

.sec3-pic {
  width: 656px;
  height: 306px;
  margin: 30px auto;
  background: url("../images/sec3-pic.png") no-repeat center;
}

.sec4-pic {
  width: 735px;
  height: 1117px;
  margin: 30px auto;
  background: url("../images/sec4-pic.png") no-repeat center;
}

.sec5-pic {
  width: 785px;
  height: 597px;
  margin: 30px auto;
  background: url("../images/sec5-pic.png") no-repeat center;
}

.sec7-pic {
  width: 571px;
  height: 654px;
  margin: 30px auto;
  background: url("../images/sec7-gift.png") no-repeat center;
}

.sec9-pic {
  width: 739px;
  height: 254px;
  margin: 30px auto;
  background: url("../images/sec9-pic.png") no-repeat center;
}

.w-o {
  color: #f07c58;
}

.flex-boxes {
  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;
}

.flex-box-left {
  width: 50%;
}

.flex-box-right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.link-style {
  color: #f07c58;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link-style:hover {
  color: #d15e3a;
}

.serial-box {
  width: 500px;
  margin: 0 auto;
}

.code-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border: 2px solid #D4A017;
  border-radius: 50px;
  padding: 0 20px 0 5px;
  margin-bottom: 15px;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.label {
  background: #f0c969;
  color: #78622c;
  width: 110px;
  height: 64px;
  font-size: 24px;
  font-weight: bold;
  padding: 0 15px;
  margin-right: 10px;
  min-width: 50px;
  text-align: center;
  border-radius: 50px;
  line-height: 64px;
}

.code {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 20px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.copy-btn {
  background: #ccc;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.copy-btn:hover {
  background: #aaa;
}

.copy-btn:active {
  background: #888;
}

.copied {
  background: #3fa8ae !important;
  color: white;
}

.sec6-content {
  width: 1068px;
  height: 703px;
  margin: 0 auto;
}

.swiper {
  width: 1068px;
  height: 703px;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  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;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  width: 44px !important;
  height: 74px !important;
  right: -50px !important;
  background: url("../images/arrow-next.png") center no-repeat;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -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;
}
.swiper-button-next:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-button-prev {
  width: 44px !important;
  height: 74px !important;
  left: -50px !important;
  background: url("../images/arrow-prev.png") center no-repeat;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -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;
}
.swiper-button-prev:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination {
  bottom: -20px !important;
  left: 50%;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}
.swiper-pagination span {
  margin: 0 5px;
}

.swiper-pagination-bullet {
  width: 60px !important;
  height: 10px !important;
  background: #fff !important;
  border-radius: 20px !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  width: 60px !important;
  height: 10px !important;
  background: #3fa8ae !important;
  border-radius: 20px !important;
}

/* 漢堡選單按鈕 */
.hamburger {
  display: none;
  position: fixed;
  top: 15px;
  right: -100%;
  opacity: 0;
  width: 40px;
  height: 40px;
  background: #684d08;
  border-radius: 5px;
  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;
  cursor: pointer;
  z-index: 1000;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger div::before,
.hamburger div::after {
  content: "";
  width: 25px;
  height: 3px;
  background: white;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger div::before {
  top: -8px;
}

.hamburger div::after {
  top: 8px;
}

/* 漢堡選單開啟時變叉叉 */
.hamburger.active div {
  background: transparent;
}

.hamburger.active div::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}

.hamburger.active div::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

.gold-btn {
  overflow: hidden;
  -webkit-transition: all 3.5s ease-in-out;
  transition: all 3.5s ease-in-out;
  border-radius: 25px;
}
.gold-btn:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

/* 亮光動畫 */
.gold-btn::after {
  content: "";
  position: absolute;
  width: 503px;
  height: 348px;
  background: url("../images/gold_btn_light.png") center no-repeat;
  top: -200%;
  left: -700%;
  -webkit-transition: all 3.5s ease-in-out;
  transition: all 3.5s ease-in-out;
}

/* 添加閃爍動畫 */
@-webkit-keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 100%;
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 100%;
  }
}
.gold-btn::after {
  -webkit-animation: shimmer 2s infinite linear;
          animation: shimmer 2s infinite linear;
}

/* 側邊選單 */
.menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: rgba(36, 28, 10, 0.9);
  color: white;
  padding-top: 20px;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  z-index: 999;
}

.menu.active {
  left: 0;
}

.menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px;
  font-size: 16px;
  border-bottom: 1px solid #555;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.menu a:hover {
  background: #555;
}

/* 內部滾動按鈕 */
.scroll-btn {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px;
  font-size: 16px;
  border-bottom: 1px solid #555;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
}

.scroll-btn:hover {
  background: #555;
}

.footer {
  width: 100%;
  height: 233px;
  padding-top: 17px;
  background-image: url("../images/footer-wave-pat.png");
  background-repeat: repeat-x;
  background-position: 0 bottom;
  -webkit-animation: waveMove 8s linear infinite;
          animation: waveMove 8s linear infinite;
  padding-top: 80px;
}

.footer-inner {
  width: 1280px;
  margin: 10px auto 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
}

.footer-left, .footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}

.lager-logo {
  width: 143px;
  height: 40px;
  margin-right: 10px;
  background: url("../images/lager-logo.png") center no-repeat;
}

.class-level {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .promo-btn {
    display: none;
  }
  .wrap {
    min-width: 0;
  }
  .header {
    height: auto;
    padding-top: 132.29%;
    background: url("../images/header-bg-m.png") no-repeat center;
    background-size: cover;
  }
  .logo {
    display: none;
  }
  .social-btns {
    display: none;
  }
  .container {
    padding: 30px 3% 0 3%;
  }
  .inner {
    width: 100%;
  }
  .main-tit {
    padding: 0 2%;
  }
  .main-tit img {
    max-width: 100%;
  }
  .content {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 5%;
    font-size: 16px;
  }
  .main-menu {
    display: none;
  }
  .sec1-gift-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    margin-bottom: 20px;
  }
  .sec1-gift1, .sec1-gift2 {
    width: 100%;
    height: auto;
    aspect-ratio: 583/713;
    background-size: contain;
  }
  .sec1-button {
    width: 50%;
    height: auto;
    aspect-ratio: 229/68;
    background-size: contain;
    bottom: 8%;
  }
  .notice-list {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }
  .sec2-gift {
    width: 100%;
    height: auto;
    aspect-ratio: 629/779;
    background: url("../images/sec2-gift-m.png") center no-repeat;
    background-size: contain;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .sec3-pic {
    width: 100%;
    height: auto;
    aspect-ratio: 306/610;
    background: url("../images/sec3-pic-m.png") center no-repeat;
    background-size: contain;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .word {
    padding-left: 0;
  }
  .cont-d-list {
    padding-left: 1.5em;
  }
  .sec4-pic {
    width: 100%;
    height: auto;
    aspect-ratio: 735/1117;
    background-size: contain;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .sec5-pic {
    width: 100%;
    height: auto;
    aspect-ratio: 785/597;
    background-size: contain;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .sec7-pic {
    width: 100%;
    height: auto;
    aspect-ratio: 571/654;
    background-size: contain;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .sec9-pic {
    width: 100%;
    height: auto;
    aspect-ratio: 595/543;
    background: url("../images/sec9-pic-m.png") center no-repeat;
    background-size: contain;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .flex-boxes {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex-box-left, .flex-box-right {
    width: 100%;
  }
  .flex-box-left img, .flex-box-right img {
    max-width: 100%;
  }
  .sec6-content {
    width: 100%;
    height: auto;
  }
  .swiper {
    width: 100%;
    height: auto;
  }
  .swiper img {
    max-width: 100%;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none !important;
  }
  .serial-box {
    width: 100%;
  }
  .serial-box .code-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
  }
  .serial-box .label {
    width: 100%;
    padding: 2% 0;
    display: block;
    margin-right: 0;
    border-radius: 0;
    height: auto;
    line-height: 1;
  }
  .serial-box span {
    font-size: 0.8em;
  }
  .serial-box .code {
    font-size: 1em;
    width: 100%;
    display: block;
    padding: 20px 0;
    text-align: center;
  }
  .serial-box .copy-btn {
    display: block;
    width: 100%;
    border-radius: 0;
  }
  .hamburger {
    right: 15px;
    opacity: 1;
  }
  #J-sparks {
    display: none;
  }
  .logout-btn {
    width: 100%;
    height: 50px;
    position: relative;
    margin: 0 auto;
    top: 0;
    right: 0;
    margin-bottom: 20px;
    background: #8d857b;
    color: #fff;
    font-size: 18px;
    text-indent: 0; /* 將文字推到可視範圍外 */
  }
  .footer {
    width: 100%;
    height: auto;
    padding: 7% 5%;
    line-height: 1.5;
    background: #3fa8ae;
  }
  .footer .footer-inner {
    width: 100%;
    display: block;
  }
  .footer .footer-left {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  .footer .lager-logo, .footer .class-level {
    margin-bottom: 10px;
  }
}