/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
html,
body {
  font-family: "Noto Sans TC", sans-serif;
  overflow-x: hidden;
  min-width: auto;
}

#content {
  color: #876522;
  font-size: 18px;
  line-height: 1.6;
  background: #ad833e;
}
@media screen and (max-width: 640px) {
  #content {
    font-size: 14px;
  }
}
#content .inner {
  width: auto;
  max-width: 1110px;
}
#content .sct:not(#att) {
  margin-right: 1em;
  margin-left: 1em;
}
@media screen and (max-width: 640px) {
  #content .sct:not(#att) {
    margin-right: 0.5em;
    margin-left: 0.5em;
  }
}
#content #headArea .inner {
  white-space: nowrap;
  text-indent: -9999em;
}
#content .fade-enter-active,
#content .fade-leave-active {
  opacity: 1;
  transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
#content .fade-enter,
#content .fade-leave-to {
  opacity: 0;
}
#content .bounce-enter-active,
#content .bounce-leave-active {
  opacity: 1;
  animation: scale 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
#content .bounce-enter,
#content .bounce-leave-to {
  opacity: 0;
  animation: none;
}
#content .slide-in-enter-active {
  animation: slideIn 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
#content #cover,
#content #msg .msg__bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
}
#content #connecting {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9997;
}
#content #connecting div {
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: #fff;
  animation: fade-in 1s infinite alternate;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
#content #msg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#content #msg.open {
  z-index: 9999;
}
#content #msg .msg__bg {
  background: rgba(0, 0, 0, 0.5);
}
#content #msg .msg__main {
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 80%;
  max-width: 500px;
  text-align: center;
}
#content #msg .msg__btn {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 50px;
  width: 50px;
  text-indent: -999em;
  background: none;
}
#content #msg .msg__btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 80%;
  width: 80%;
  margin-top: -20px;
  margin-left: -20px;
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}
#content #msg .msg__btn i::before, #content #msg .msg__btn i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 100%;
  margin-top: -1px;
  margin-left: -20px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}
#content #msg .msg__btn i::after {
  transform: rotate(90deg);
}
#content #msg .msg__btn i:hover {
  transform: rotate(225deg);
}
@media screen and (max-width: 960px) {
  #content #msg .msg__btn {
    height: 25px;
    width: 25px;
  }
  #content #msg .msg__btn i {
    margin-top: -10px;
    margin-left: -10px;
  }
  #content #msg .msg__btn i::before, #content #msg .msg__btn i::after {
    margin-top: -1px;
    margin-left: -10px;
  }
}

a {
  text-decoration: none;
}

i {
  font-style: normal;
}

img {
  max-width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  font-size: inherit;
}

button:disabled {
  cursor: default;
}

.text--white {
  color: #fff !important;
}

.text--black {
  color: #000 !important;
}

.text--red {
  color: #d70000 !important;
}

.text--brown {
  color: #68462c !important;
}

.text--beige {
  color: #ccb381 !important;
}

.text--xs {
  font-size: 0.8em !important;
}

.text--sm {
  font-size: 0.9em !important;
}

.text--md {
  font-size: 1em !important;
}

.text--lg {
  font-size: 1.2em !important;
}

.text--xl {
  font-size: 1.4em !important;
}

.text--xxl {
  font-size: 1.6em !important;
}

.text--serif,
.text--serif * {
  font-family: "Noto Serif TC", serif;
  font-weight: 400;
}

@-webkit-keyframes btn-anime {
  50%, to {
    left: 125%;
  }
}
@keyframes btn-anime {
  50%, to {
    left: 125%;
  }
}
@keyframes kirakira {
  0%, 100% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(150%);
  }
}
@-webkit-keyframes kirakira {
  0%, 100% {
    filter: brightness(100%);
  }
  50% {
    filter: brightness(150%);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
@keyframes vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
body::after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: -1;
  background-image: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/bg_body_1.jpg"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/bg_body_2.jpg"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/bg_body_3.jpg"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/bg_body_sp.jpg"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/main.jpg"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/main_sp.jpg"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/ogImg.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/btn_icon.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/bubble.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/costume.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/frame_bg.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/frame_border.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/frame_eff.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/inner_frame_bg.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/inner_frame_border.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/popup_1.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/popup_2.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/step_ss_1.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/step_ss_2.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/step_ss_3_1.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/step_ss_3_2.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/step_ss_3_3.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/sub_title_kazari.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/title_att.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/title_kazari_left.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/title_kazari_right.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/title_step_1.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/title_step_2.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/title_step_3.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/title_05.png"), url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/title_step_4.png");
}

#content #headArea {
  height: 1000px;
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/main.jpg") center top no-repeat;
}
@media screen and (max-width: 1200px) {
  #content #headArea {
    background-size: cover;
    height: 110vw;
    max-height: 1000px;
  }
}
@media screen and (max-width: 640px) {
  #content #headArea {
    height: 150vw;
    background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/main_sp.jpg") center top/cover no-repeat;
  }
}
#content #bodyArea {
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/bg_body_1.jpg") center top no-repeat, url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/bg_body_2.jpg") center 2000px no-repeat, url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/bg_body_3.jpg") center 4000px no-repeat;
}
@media screen and (max-width: 640px) {
  #content #bodyArea {
    background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/bg_body_sp.jpg") center top/contain no-repeat, #a78741;
  }
}
#content #att {
  background: linear-gradient(to bottom, rgba(117, 80, 24, 0) 0%, rgb(117, 80, 24) 32%, rgb(117, 80, 24) 100%);
  padding: 4em 1em 6em;
}
#content #att .att__list {
  color: #ccb381;
}
@media screen and (max-width: 640px) {
  #content .text--lg {
    font-size: 1em !important;
  }
}
#content .frame {
  padding: 3em;
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/frame_bg.png") center;
  border-radius: 25px;
}
#content .frame::before, #content .frame::after {
  content: "";
  pointer-events: none;
}
#content .frame::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  height: calc(100% + 16px);
  width: calc(100% + 16px);
  border-image: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/frame_border.png") 33.333%/60px 60px;
}
@media screen and (max-width: 640px) {
  #content .frame::before {
    position: absolute;
    top: -4px;
    left: -4px;
    height: calc(100% + 8px);
    width: calc(100% + 8px);
    border-image-width: 30px 30px;
  }
}
#content .frame::after {
  position: absolute;
  top: -25px;
  left: 0;
  height: 90px;
  width: 100%;
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/frame_eff.png") center/contain no-repeat;
  mix-blend-mode: screen;
}
@media screen and (max-width: 640px) {
  #content .frame::after {
    top: -12px;
    height: 45px;
  }
}
@media screen and (max-width: 960px) {
  #content .frame {
    padding: 2em;
  }
}
@media screen and (max-width: 640px) {
  #content .frame {
    padding: 1em;
  }
}
#content .text-frame {
  padding: 2em;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(221, 210, 198, 0.7);
}
@media screen and (max-width: 960px) {
  #content .text-frame {
    padding: 1em;
  }
}
#content .inner-frame {
  position: relative;
  padding: 2em;
  border-image: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/inner_frame_border.png") 33.333%/50px 50px;
  background: #ddcfb1;
}
#content .inner-frame .inner-box {
  padding: 1em;
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/inner_frame_bg.png") center;
  border: 6px solid #cfbc7b;
}
@media screen and (max-width: 640px) {
  #content .inner-frame {
    padding: 1em;
  }
  #content .inner-frame .inner-box {
    border-width: 3px;
  }
}
#content .title,
#content .sub-title {
  font-size: 2em;
  color: #68462c;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
}
#content .title p,
#content .sub-title p {
  position: relative;
  display: inline-block;
}
#content .title p::before, #content .title p::after,
#content .sub-title p::before,
#content .sub-title p::after {
  content: "";
  position: absolute;
  top: 0;
}
#content .title p::before, #content .title p::after {
  height: 100%;
  width: 28px;
}
#content .title p::before {
  right: calc(-0.5em - 28px);
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/title_kazari_right.png") center/contain no-repeat;
}
#content .title p::after {
  left: calc(-0.5em - 28px);
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/title_kazari_left.png") center/contain no-repeat;
}
@media screen and (max-width: 640px) {
  #content .title {
    font-size: 1.5em;
  }
  #content .title p::before, #content .title p::after {
    height: 100%;
    width: 14px;
  }
  #content .title p::before {
    right: calc(-0.5em - 14px);
  }
  #content .title p::after {
    left: calc(-0.5em - 14px);
  }
}
#content .sub-title {
  font-size: 1.5em;
}
#content .sub-title p::before, #content .sub-title p::after {
  height: 100%;
  width: 16px;
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/sub_title_kazari.png") center/contain no-repeat;
}
#content .sub-title p::before {
  right: calc(-0.5em - 16px);
}
#content .sub-title p::after {
  left: calc(-0.5em - 16px);
}
@media screen and (max-width: 640px) {
  #content .sub-title {
    font-size: 1.25em;
  }
  #content .sub-title p::before, #content .sub-title p::after {
    height: 100%;
    width: 6px;
  }
  #content .sub-title p::before {
    right: calc(-0.5em - 8px);
  }
  #content .sub-title p::after {
    left: calc(-0.5em - 8px);
  }
}
#content .step__box {
  display: flex;
  align-items: center;
}
#content .step__box .step__ss {
  width: 400px;
}
#content .step__box .step__text {
  width: calc(100% - 400px);
  padding-left: 1.5em;
}
@media screen and (max-width: 960px) {
  #content .step__box {
    display: block;
  }
  #content .step__box .step__ss {
    width: 100%;
  }
  #content .step__box .step__text {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5em;
  }
}
#content .step__box.is-list {
  display: flex;
  align-items: flex-start;
}
#content .step__box.is-list .list-box {
  position: relative;
  width: 33.33%;
  padding: 0 0.5em;
}
#content .step__box.is-list .list-box .sub-title {
  font-size: 1.25em;
}
#content .step__box.is-list .list-box .step__ss {
  width: 100%;
}
#content .step__box.is-list .list-box .step__btn {
  position: relative;
  display: inline-block;
  color: #fff;
  background: #b68648;
  padding: 0.35em 3em 0.35em 2em;
  border-radius: 3em;
  box-shadow: 0 0 1em #e8aa62 inset, 0 0 1em #e8aa62 inset;
  border-bottom: 2px solid #7f521f;
}
#content .step__box.is-list .list-box .step__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  margin-top: -0.75em;
  height: 1.5em;
  width: 1.5em;
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/btn_icon.png") center no-repeat;
}
#content .step__box.is-list .list-box .step__btn:hover {
  filter: brightness(120%);
  text-decoration: none;
}
#content .step__box.is-list .list-box .step__msg {
  position: absolute;
  top: 0;
  left: 50%;
  height: 196px;
  width: 301px;
  color: #68462c;
  padding: 2em 2em 2em 3em;
  margin-top: -85px;
  margin-left: 70px;
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/bubble.png") center/contain no-repeat;
}
@media screen and (max-width: 1200px) {
  #content .step__box.is-list .list-box .step__msg {
    position: static;
    height: auto;
    width: 100%;
    max-width: 350px;
    font-size: 0.9em;
    color: #68462c;
    padding: 1em;
    margin-top: 1em;
    margin-right: auto;
    margin-left: auto;
    background: rgba(199, 142, 65, 0.7);
    border-radius: 2em;
    box-shadow: 0 0 10px #fff78e inset, 0 0 20px #fff78e inset, 0 0 30px #fff78e inset;
  }
}
@media screen and (max-width: 960px) {
  #content .step__box.is-list {
    display: block;
  }
  #content .step__box.is-list .list-box {
    width: 100%;
  }
  #content .step__box.is-list .list-box + .list-box {
    margin-top: 2em;
    padding: 1em 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 960px) {
  #content .table-area.is-scroll {
    overflow-x: auto;
  }
  #content .table-area.is-scroll th,
  #content .table-area.is-scroll td {
    white-space: nowrap;
  }
  #content .table-area.is-scroll::before {
    content: "SCROLL >";
    display: inline-block;
    width: 100%;
    text-align: left;
  }
}
#content .table-area .table {
  width: 100%;
  border-bottom: solid 1px #000000;
  border-left: solid 1px #000000;
}
#content .table-area .table th,
#content .table-area .table td {
  color: #68462c;
  border-top: solid 1px #000000;
  border-right: solid 1px #000000;
  padding: 0.5em 1em;
}
@media screen and (max-width: 640px) {
  #content .table-area .table th,
  #content .table-area .table td {
    font-size: 0.8em;
    padding: 0.25em 0.5em;
  }
  #content .table-area .table th img,
  #content .table-area .table td img {
    width: 1em;
  }
}
#content .table-area .table thead th {
  height: 2.5em;
  color: #fff;
  text-shadow: 0 1px 1px #000;
  background: linear-gradient(to bottom, rgb(255, 248, 144) 2%, rgb(181, 120, 69) 2%, rgb(171, 114, 64) 51%, rgb(181, 120, 69) 100%);
}
#content .table-area .table tbody th {
  background: #f9d9ba;
}
#content .table-area .table tbody td {
  background: #f9d9ba;
}
#content .table-area .table tbody td:nth-child(2n) {
  background: #edc7a5;
}

.popup {
  width: 494px;
  padding: 6em 1em 3em;
}
.popup .popup__item {
  padding: 1.5em 0;
  font-size: 18px;
  color: #ccb381;
  text-align: center;
}
.popup .popup__item li + li {
  margin-top: 0.25em;
}
.popup .fancybox-button {
  right: 20px;
  color: #fff;
  height: 60px;
  width: 60px;
}
.popup#popup1 {
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/popup_1.png") center/contain no-repeat;
}
.popup#popup2 {
  background: url("https://image.tw.ncsoft.com/bns/pc/event/2402/ingame/img/popup_2.png") center/contain no-repeat;
}
@media screen and (max-width: 640px) {
  .popup {
    width: 350px;
    padding: 4em 1em 2em;
  }
  .popup .popup__item {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */