@charset "UTF-8";
@-webkit-keyframes shine {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shine {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes AniFloat {
  0% {
    -webkit-transform: translateY(10%) scale(1);
            transform: translateY(10%) scale(1);
  }
  50% {
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
  }
  100% {
    -webkit-transform: translateY(10%) scale(1);
            transform: translateY(10%) scale(1);
  }
}

@keyframes AniFloat {
  0% {
    -webkit-transform: translateY(10%) scale(1);
            transform: translateY(10%) scale(1);
  }
  50% {
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
  }
  100% {
    -webkit-transform: translateY(10%) scale(1);
            transform: translateY(10%) scale(1);
  }
}

:root {
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI",'Microsoft JhengHei',"Noto Sans TC", "微軟正黑體", "Meiryo UI", Roboto, Helvetica, Arial, sans-serif;
  --webtitle: 22px;
  --mainTxt: 16px;
  --mainPrice: 20px;
  --mainNote: 15px;
  --font-color-dark: #fff;
  --font-color-light: #111;
}

@media (min-width: 768px) {
  :root {
    --webtitle: 28px;
    --mainTxt: 20px;
    --mainPrice: 20px;
    --mainNote: 15px;
  }
}

:root html:lang(ja-JP) *:not(.material-icons):not(.fa):not(.buttonicons) {
  --font: -apple-system, BlinkMacSystemFont,"Meiryo UI", Arial, sans-serif;
}

img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#easter {
  background-color: #000;
  min-height: 1000px;
  color: #fff;
  overflow-x: hidden;
}

#easter h2 {
  font-size: var(--webtitle);
}

#easter p {
  font-size: var(--mainTxt);
}

#easter .modal {
  position: relative;
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

#easter .modal__content {
  background-color: #000000;
  margin: 7.5% auto;
  padding: 20px;
  border: 1px solid #e014ff;
  width: 80%;
  text-align: left;
}

#easter .modal__content .close {
  opacity: 1;
  float: right;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  position: absolute;
  top: 2%;
  bottom: unset;
  left: unset;
  right: 2%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#easter .modal__content .close:hover,
#easter .modal__content .close:focus {
  text-decoration: none;
  cursor: pointer;
  opacity: .5;
}

#easter .common__title {
  border-radius: 15px;
  text-align: center;
  padding: 0px 0px;
  margin: 0 auto 25px;
  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;
  font-size: var(--webtitle);
  background: #f65c4f;
  background: linear-gradient(153deg, #f65c4f 0%, #c256ef 100%);
}

#easter .common__title img {
  width: 50px;
  margin: 0 5px;
}

#easter .common__txt {
  margin-bottom: 25px;
}

#easter .common__txt span {
  color: #00f2ff;
}

#easter .common__note {
  margin-bottom: 25px;
  color: #00f2ff;
}

@media (min-width: 768px) {
  #easter .common__title {
    padding: 0px 0px;
    max-width: 450px;
  }
  #easter .common__title img {
    width: 70px;
    margin: 0 25px;
  }
}

#easter .kv {
  position: relative;
}

#easter .kv picture img {
  width: 100%;
}

#easter .kv__btn {
  display: block;
  position: absolute;
  top: 32%;
  bottom: unset;
  left: 50%;
  right: unset;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 40%;
}

@media (min-width: 768px) {
  #easter .kv__btn {
    display: block;
    position: absolute;
    top: 57%;
    bottom: unset;
    left: 16.5%;
    right: unset;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    width: 10%;
    -webkit-animation-name: AniFloat;
            animation-name: AniFloat;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
  #easter .kv__btn img {
    -webkit-transition: .2s;
    transition: .2s;
  }
  #easter .kv__btn:hover {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
    -webkit-filter: drop-shadow(0 0 10px #fff6bd);
            filter: drop-shadow(0 0 10px #fff6bd);
  }
  #easter .kv__btn:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

#easter .nav {
  background: #1e0a0b;
}

#easter .nav__flex {
  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: 20px auto;
}

#easter .nav__title {
  display: block;
  background: #c533e3;
  background: linear-gradient(70deg, #c533e3 0%, #4684fc 100%);
  text-align: center;
  color: #fff;
  padding: 10px 10px;
  border-radius: 50px;
  font-size: 25px;
  font-size: var(--webtitle);
  margin: 10px;
  background-size: 100% 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

#easter .nav__title:hover {
  background: linear-gradient(70deg, #c533e3 30%, #4684fc 80%);
  background-size: 180% 150%;
  -webkit-filter: drop-shadow(0 0 10px #b7f7ff);
          filter: drop-shadow(0 0 10px #b7f7ff);
}

@media (min-width: 996px) {
  #easter .nav__flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  #easter .nav__title {
    width: calc( 100% / 3);
    margin: 0 10px;
    padding: 20px 5px;
    font-size: 18px;
  }
}

@media (min-width: 1250px) {
  #easter .nav__title {
    font-size: 25px;
  }
}

#easter .intro {
  text-align: center;
  padding: 10px 0px;
  background: #1e0a0b;
}

@media (min-width: 768px) {
  #easter .intro {
    padding: 50px 0px;
  }
}

#easter .join {
  text-align: center;
  padding: 50px 0px;
  background: #4c1618;
  background: linear-gradient(146deg, #4c1618 0%, #642d7e 100%);
}

#easter .join__video {
  cursor: pointer;
  text-decoration: underline;
}

#easter .join__note {
  -webkit-animation-name: AniFloat;
          animation-name: AniFloat;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

#easter .join__step {
  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: 50px 0;
}

#easter .join__stepBox {
  position: relative;
  background: #070203;
  background: -webkit-gradient(linear, left top, left bottom, from(#070203), to(#541f41));
  background: linear-gradient(180deg, #070203 0%, #541f41 100%);
  width: calc( 100% / 2);
  padding: 20px 5px;
  margin: 0 0px 30px;
  border: 8px solid #ac5af6;
  border-radius: 25px;
  min-height: 330px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 100;
}

#easter .join__stepBox::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 50;
}

#easter .join__stepBox-title {
  margin-top: 0;
  margin-bottom: 5px;
}

#easter .join__stepBox-txt {
  margin-bottom: 20px;
  min-height: 70px;
}

#easter .join__stepBox-pic {
  position: relative;
  margin: 0 auto;
  display: inline-block;
  max-width: 200px;
  width: 100%;
  z-index: 150;
}

#easter .join__stepBox-link {
  position: relative;
  display: block;
  color: #fff;
  width: 70%;
  margin: 0 auto;
  padding: 5px;
  font-size: var(--mainTxt);
  border-radius: 20px;
  background: #c533e3;
  background: -webkit-gradient(linear, left top, left bottom, from(#c533e3), to(#4684fc));
  background: linear-gradient(180deg, #c533e3 0%, #4684fc 100%);
  background-size: 100% 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 150;
  width: 90%;
}

#easter .join__stepBox-link:hover {
  background-size: 180% 150%;
  -webkit-filter: drop-shadow(0 0 10px #b7f7ff);
          filter: drop-shadow(0 0 10px #b7f7ff);
}

#easter .join__stepBox-form {
  background-color: #ff3a3a;
  display: block;
  color: #fff;
  margin: 0 auto;
  padding: 5px;
  border-radius: 20px;
  font-size: 14px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 150;
  width: 100%;
}

#easter .join__stepBox-form:hover {
  background-color: #ff5959;
  -webkit-filter: drop-shadow(0 0 10px #ff7979);
          filter: drop-shadow(0 0 10px #ff7979);
}

#easter .join__winner {
  margin-bottom: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#easter .join__winnerBox {
  width: 100%;
  margin: 0 auto;
}

#easter .join__winnerBox-title {
  color: #00f2ff;
  margin-bottom: 20px;
}

#easter .join__winnerBox-txt {
  margin-bottom: 20px;
}

#easter .join__winnerBox-gift {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

#easter .join__winnerBox-gift img {
  width: 30px;
  margin: 0 10px;
}

#easter .join__social h3 {
  margin-bottom: 20px;
}

#easter .join__social-icon {
  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;
}

#easter .join__social-icon img {
  max-width: 70px;
  margin: 0 10px;
  -webkit-transition: .2s;
  transition: .2s;
}

#easter .join__social-icon img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#easter .join__form {
  background-color: #000000;
  color: #ffffff;
}

#easter .join__form h2 {
  text-align: center;
}

#easter .join__form p {
  font-size: 14px;
}

#easter .join__form-link {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  width: 100%;
  margin: 15px auto 0;
  margin-text-decoration: underline;
}

#easter .join #ems-form-uid .container {
  width: auto;
}

#easter .join #ems-form-uid .btn {
  background-color: #ff3a3a;
  display: block;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  padding: 10px 20px;
}

@media (min-width: 768px) {
  #easter .join {
    padding: 50px 20px;
  }
  #easter .join__stepBox {
    width: calc( 100% / 4);
    width: 250px;
    padding: 20px 15px;
    margin: 0 30px 30px;
    min-height: 350px;
  }



  #easter .join__stepBox-form {
    background-color: #ff3a3a;
    display: block;
    color: #fff;
    margin: 0 auto;
    padding: 5px;
    border-radius: 20px;
    font-size: var(--mainTxt);
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 150;
    width: 100%;
  }
  #easter .join__winner {
    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;
  }
  #easter .join__winnerBox {
    width: calc( 100% / 2);
    margin: 0 30px;
  }
  
}

#easter .pick {
  text-align: center;
  padding: 50px 20px 30px;
}

#easter .pick__pd {
  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;
}

#easter .pick__pdBox {
  width: 100%;
  min-width: 315px;
  margin: 0 auto 35px;
}

#easter .pick__pdBox a:focus {
  outline: none;
  outline: none;
  outline-offset: none;
}

#easter .pick__pdBox-pd {
  display: block;
  position: relative;
  background-image: url("https://storage-asset.msi.com/event/2023/CND/play-with-gamer-bunny/images/product-box-1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: contain;
  height: 370px;
  -webkit-transition: .2s all;
  transition: .2s all;
}

#easter .pick__pdBox-pd img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 230px;
  top: 62%;
  left: 51%;
}

#easter .pick__pdBox-pd:hover {
  background-image: url("https://storage-asset.msi.com/event/2023/CND/play-with-gamer-bunny/images/product-box-mouse-over.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: contain;
}

#easter .pick__pdBox-txt {
  margin-bottom: 0px;
  font-size: 18px;
}

#easter .pick__pdBox-note {
  color: #ff3737;
  font-size: 18px;
  margin-bottom: 10px;
}

#easter .pick__pdBox-link {
  background: #c533e3;
  background: -webkit-gradient(linear, left top, left bottom, from(#c533e3), to(#4684fc));
  background: linear-gradient(180deg, #c533e3 0%, #4684fc 100%);
  padding: 7px 15px;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  background-size: 100% 100%;
  font-size: var(--mainTxt);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 70%;
}

#easter .pick__pdBox-link:hover {
  background-size: 180% 150%;
  -webkit-filter: drop-shadow(0 0 10px #de0aff);
          filter: drop-shadow(0 0 10px #de0aff);
}

#easter .pick__link {
  display: inline-block;
  color: #ff3737;
  text-decoration: underline;
}

@media (min-width: 768px) {
  #easter .pick__pdBox {
    width: 25%;
    margin: 0 10px 35px;
  }
}

#easter .faq {
  padding: 50px 0px;
  text-align: center;
  background: #4c1618;
  background: linear-gradient(146deg, #4c1618 0%, #642d7e 100%);
}

#easter .faq__block {
  margin-bottom: 40px;
}

#easter .faq__list {
  background: #c533e3;
  background: -webkit-gradient(linear, left top, left bottom, from(#bd31da), to(#2550a7));
  background: linear-gradient(180deg, #bd31da 0%, #2550a7 100%);
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
}

#easter .faq__list-title {
  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;
  padding: 15px;
  text-align: left;
}

#easter .faq__list-title h3 {
  font-size: var(--mainTxt);
}

#easter .faq__list-title .arrow {
  max-width: 20px;
  -webkit-transition: .5s;
  transition: .5s;
}

#easter .faq__list-title .arrow--active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#easter .faq__listBox {
  background: #391c4c;
  background: -webkit-gradient(linear, left top, left bottom, from(#391c4c), to(#0d2146));
  background: linear-gradient(180deg, #391c4c 0%, #0d2146 100%);
  padding: 30px;
  text-align: left;
  display: none;
}

#easter .faq__listBox ul {
  font-size: var(--mainTxt);
}

#easter .faq__listBox ul li {
  list-style-type: decimal;
  margin: 5px 0 0 1.8%;
}

#easter .faq__listBox a {
  color: #00f2ff;
}

#easter .faq__link {
  color: #fff;
  text-decoration: underline;
  margin-bottom: 40px;
  display: inline-block;
}

#easter .faq__notice {
  width: 90%;
  margin: 0 auto 40px;
}

#easter .faq__notice h3 {
  margin-bottom: 10px;
}

#easter .faq__notice a {
  color: #00f2ff;
  text-decoration: underline;
}

#easter .faq__logo {
  display: inline-block;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #easter .faq__list {
    width: 90%;
  }
  #easter .faq__list-title {
    padding: 15px 30px;
  }
  #easter .faq__list-title h3 {
    font-size: 22px;
  }
}
/*# sourceMappingURL=main-customized.css.map */