@charset "UTF-8";
@keyframes horizental {
  0% {
    transform: translateY(0px) rotate(0);
  }
  30% {
    transform: translateY(20px) rotate(-90deg);
  }
  40% {
    transform: translateY(18px) rotate(-88deg);
  }
  48% {
    transform: translateY(20px) rotate(-90deg);
  }
  100% {
    transform: translateY(20px) rotate(-90deg);
  }
}
@keyframes selfRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shaking {
  0% {
    margin-left: -2px;
  }
  0.1% {
    margin-left: 0;
  }
  24.9% {
    margin-left: 1px;
  }
  25% {
    margin-left: 0;
  }
  50% {
    margin-top: -1px;
  }
  50.1% {
    margin-top: 0;
  }
  75% {
    margin-top: 1px;
  }
  75.1% {
    margin-top: 0;
  }
  99% {
    margin-left: -2px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes pumping {
  0% {
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-animation-fill-mode: forwards;
  }
  50% {
    -ms-transform: translate(-5px, 0);
    -webkit-transform: translate(-5px, 0);
    transform: translate(-5px, 0);
    -webkit-animation-fill-mode: forwards;
  }
  100% {
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-animation-fill-mode: forwards;
  }
}
@keyframes washing {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.05);
  }
}
@keyframes skewing {
  0% {
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-animation-fill-mode: forwards;
  }
  50% {
    -ms-transform: translate(-5px, 0);
    -webkit-transform: translate(-5px, 0);
    transform: translate(-5px, 0);
    -webkit-animation-fill-mode: forwards;
  }
  100% {
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-animation-fill-mode: forwards;
  }
}
@keyframes floating {
  0% {
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-animation-fill-mode: forwards;
  }
  50% {
    -ms-transform: translate(0, 20px);
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
    -webkit-animation-fill-mode: forwards;
  }
}
@keyframes floatingReverse {
  0% {
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-animation-fill-mode: forwards;
  }
  50% {
    -ms-transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
    -webkit-animation-fill-mode: forwards;
  }
}
@keyframes growing {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes growingLarge {
  0% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes popIn {
  0% {
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -ms-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  75% {
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  85% {
    -ms-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  95% {
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes cardFlip {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
  }
  60.01% {
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes cardFlipV {
  from {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 90deg);
    transform: rotate3d(1, 0, 0, 90deg);
  }
  60.01% {
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
}
@keyframes cardFlipBack {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  60.01% {
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes cardContentFlip {
  from {
    opacity: 0 !important;
    -moz-opacity: 0 !important;
    -khtml-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
  }
  60% {
    opacity: 0 !important;
    -moz-opacity: 0 !important;
    -khtml-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
  }
  60.01% {
    opacity: 1 !important;
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
    filter: alpha(opacity=100) !important;
  }
  to {
    opacity: 1 !important;
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
    filter: alpha(opacity=100) !important;
  }
}
@keyframes cardContentFlipBack {
  from {
    opacity: 0 !important;
    -moz-opacity: 0 !important;
    -khtml-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
  }
  60% {
    opacity: 0 !important;
    -moz-opacity: 0 !important;
    -khtml-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
  }
  60.01% {
    opacity: 1 !important;
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
    filter: alpha(opacity=100) !important;
  }
  to {
    opacity: 1 !important;
    -moz-opacity: 1 !important;
    -khtml-opacity: 1 !important;
    filter: alpha(opacity=100) !important;
  }
}
@keyframes flashing {
  from {
    opacity: 0.5 !important;
    -moz-opacity: 0.5 !important;
    -khtml-opacity: 0.5 !important;
    filter: alpha(opacity=50) !important;
  }
  50% {
    opacity: 0 !important;
    -moz-opacity: 0 !important;
    -khtml-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
  }
  to {
    opacity: 0.5 !important;
    -moz-opacity: 0.5 !important;
    -khtml-opacity: 0.5 !important;
    filter: alpha(opacity=50) !important;
  }
}
@keyframes climbing {
  from {
    -ms-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  50% {
    -ms-transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    -ms-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}
@keyframes flyaway {
  to {
    margin-top: -500px;
    opacity: 0 !important;
    -moz-opacity: 0 !important;
    -khtml-opacity: 0 !important;
    filter: alpha(opacity=0) !important;
  }
}
@keyframes pageFlip2Right {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    filter: brightness(0.4);
  }
  61% {
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    filter: brightness(0.4);
  }
  to {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}
@keyframes pageFlip2Left {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    filter: brightness(0.4);
  }
  61% {
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    filter: brightness(0.4);
  }
  to {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
}
@keyframes page2Top {
  from {
    z-index: 1;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    z-index: 1;
  }
  61% {
    z-index: 100;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    z-index: 100;
  }
}
@keyframes page2Bottom {
  from {
    z-index: 100;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    z-index: 100;
  }
  61% {
    z-index: 1;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    z-index: 1;
  }
}
body:focus-within .notice {
  display: none !important;
}

:root {
  --flip-speed: 0.9s;
  --flip-delay: 0.3s;
}

.steps .hint {
  position: absolute;
  z-index: 10;
  top: 30%;
  left: 66%;
  animation: float 1s infinite both;
}
.steps > div > img {
  display: none;
}
.steps > div > img.selected {
  display: block;
  animation: fadeIn 0.5s both;
}

.qualified {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
}
.qualified.active {
  display: flex;
}
.qualified .close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  cursor: pointer;
}
.qualified .bg {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  padding: 30px 50px 20px;
}
.qualified .bg > * {
  margin-bottom: 20px;
}
.qualified .bg img:first-child {
  animation: climbing 0.8s both infinite;
}

.certificate {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.notice {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 3000;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  flex-direction: column;
  font-size: 22px;
}
.notice::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7dccf3;
  opacity: 0.7;
  z-index: -1;
}
.notice img {
  transform-origin: center;
  width: 50px;
  margin-bottom: 10px;
  animation: horizental 1.5s ease-out both infinite;
}

@media (max-aspect-ratio: 1/1) {
  .notice {
    display: flex;
  }
}
.landing_wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../images/landing/bg.webp") center center no-repeat;
  background-size: cover;
}
.landing_wrapper.loaded .kv {
  display: block;
}
.landing_wrapper.enter .kumonLogo {
  display: none;
}
.landing_wrapper.enter .kv {
  transition: all 1s;
  transform-origin: center right;
  animation: pageInto 1.5s ease-in-out both;
}
.landing_wrapper.enter .kv .logo,
.landing_wrapper.enter .kv .slider,
.landing_wrapper.enter .kv .intro,
.landing_wrapper.enter .kv .btn_enter {
  visibility: hidden;
  display: none;
}
.landing_wrapper .kumonLogo {
  position: absolute;
  z-index: 2;
  bottom: -1px;
  left: -3px;
  width: 181px;
}
.landing_wrapper .kumonLogo img {
  width: 100%;
  height: auto;
}
.landing_wrapper .pages {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.landing_wrapper .pages .inpage {
  pointer-events: auto;
  display: none;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
}
.landing_wrapper .pages .inpage.selected {
  display: flex;
}
.landing_wrapper .pages .inpage .board_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.landing_wrapper .pages .inpage .board_wrapper .board_close {
  animation: bounceIn 0.8s both;
  animation-delay: 1s;
  position: absolute;
  z-index: 10;
  top: 50px;
  right: 90px;
  cursor: pointer;
  pointer-events: auto;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  background: #c8a062 url("../images/common/btn_close.svg") center center no-repeat;
  background-size: 60% 60%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.landing_wrapper .pages .inpage .board_wrapper .board_close.brown {
  background-color: #c8a062;
}
.landing_wrapper .pages .inpage .board_wrapper .board_close.blue {
  background-color: #0e6eb8;
}
.landing_wrapper .pages .inpage .board_wrapper .board_close.pink {
  background-color: #e6269a;
}
.landing_wrapper .pages .inpage .board_wrapper .board_close.green {
  background-color: #14ae66;
}
.landing_wrapper .pages .inpage .board_wrapper .board_header {
  animation: flipInX 1s both;
  transform-origin: bottom center;
  animation-delay: 0.5s;
  padding: 2.5px 7.5px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 14px;
  font-weight: 700;
  color: #fff;
  background: url("../images/common/header_brown.svg") top center no-repeat;
  background-size: 100% auto;
  margin-bottom: -17px;
}
.landing_wrapper .pages .inpage .board_wrapper .board_header.brown {
  background-image: url("../images/common/header_brown.svg");
}
.landing_wrapper .pages .inpage .board_wrapper .board_header.blue {
  background-image: url("../images/common/header_blue.svg");
}
.landing_wrapper .pages .inpage .board_wrapper .board_header.pink {
  background-image: url("../images/common/header_pink.svg");
}
.landing_wrapper .pages .inpage .board_wrapper .board_header.green {
  background-image: url("../images/common/header_green.svg");
}
.landing_wrapper .pages .inpage .board_wrapper .board {
  animation: slideInDown 0.6s both;
  padding: 17px 17px;
  width: 505px;
  height: 275px;
  background: url("../images/common/board_brown.svg") center center no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.landing_wrapper .pages .inpage .board_wrapper .board.brown {
  background-image: url("../images/common/board_brown.svg");
}
.landing_wrapper .pages .inpage .board_wrapper .board.blue {
  background-image: url("../images/common/board_blue.svg");
}
.landing_wrapper .pages .inpage .board_wrapper .board.pink {
  background-image: url("../images/common/board_pink.svg");
}
.landing_wrapper .pages .inpage .board_wrapper .board.green {
  background-image: url("../images/common/board_green.svg");
}
.landing_wrapper .pages .inpage .board_wrapper .grid2 {
  width: 100%;
  display: flex;
}
.landing_wrapper .pages .inpage .board_wrapper .grid2 > div {
  width: 100%;
  display: flex;
  flex: 0 0 50%;
  flex-direction: column;
  align-items: center;
}
.landing_wrapper .pages .inpage .board_wrapper .grid2 > div:first-child {
  border-right: 2px dashed #0e6eb8;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper {
  width: 167px;
  height: 133px;
  margin-bottom: 17px;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper.active .avatar {
  display: none;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper.active .avatar_picker {
  display: flex;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper .avatar {
  width: 100%;
  height: 100%;
  display: block;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper .avatar img {
  margin-top: 15%;
  pointer-events: auto;
  cursor: pointer;
  width: 100%;
  height: 70%;
  object-fit: contain;
  animation: fadeInDown 0.8s both;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper .avatar_picker {
  width: 100%;
  height: 100%;
  display: none;
  flex-wrap: wrap;
  gap: 5%;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper .avatar_picker img {
  pointer-events: auto;
  cursor: pointer;
  width: 30%;
  height: 45%;
  object-fit: contain;
  object-position: center bottom;
  animation: bounceIn 0.8s both;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper .avatar_picker img:nth-child(2) {
  animation-delay: 0.1s;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper .avatar_picker img:nth-child(3) {
  animation-delay: 0.2s;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper .avatar_picker img:nth-child(4) {
  animation-delay: 0.3s;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper .avatar_picker img:nth-child(5) {
  animation-delay: 0.4s;
}
.landing_wrapper .pages .inpage .board_wrapper .avatar_wrapper .avatar_picker img:nth-child(6) {
  animation-delay: 0.5s;
}
.landing_wrapper .pages .inpage .board_wrapper .form_input {
  position: relative;
  margin-bottom: 5px;
}
.landing_wrapper .pages .inpage .board_wrapper .form_input label {
  position: absolute;
  font-size: 12px;
  color: #0e6eb8;
  line-height: 25px;
  top: 0;
  left: 7px;
}
.landing_wrapper .pages .inpage .board_wrapper .form_input input[type=text],
.landing_wrapper .pages .inpage .board_wrapper .form_input input[type=tel],
.landing_wrapper .pages .inpage .board_wrapper .form_input input[type=email],
.landing_wrapper .pages .inpage .board_wrapper .form_input input[type=number] {
  width: 222px;
  height: 26px;
  font-size: 12px;
  border: 1px solid #0e6eb8;
  border-radius: 13px;
  background: #fff;
  padding: 0 10px 0 48px;
}
.landing_wrapper .pages .inpage .board_wrapper .form_input input[type=text]:disabled,
.landing_wrapper .pages .inpage .board_wrapper .form_input input[type=tel]:disabled,
.landing_wrapper .pages .inpage .board_wrapper .form_input input[type=email]:disabled,
.landing_wrapper .pages .inpage .board_wrapper .form_input input[type=number]:disabled {
  border: none;
  background: none;
}
.landing_wrapper .pages .inpage .board_wrapper .form_input .code {
  width: 50px;
  height: 20px;
  position: absolute;
  z-index: 3;
  pointer-events: none;
  right: 4px;
  bottom: 3px;
}
.landing_wrapper .pages .inpage .board_wrapper .logout {
  position: absolute;
  top: 31px;
  left: 189px;
  display: inline-block;
}
.landing_wrapper .pages .inpage .board_wrapper .chestnut_wrapper {
  display: flex;
  width: 150px;
  justify-content: space-between;
  margin: 10px auto;
}
.landing_wrapper .pages .inpage .board_wrapper .chestnut_wrapper img {
  opacity: 0.3;
}
.landing_wrapper .pages .inpage .board_wrapper .chestnut_wrapper img.active {
  animation: bounceIn 1s both;
  opacity: 1;
}
.landing_wrapper .pages .inpage .board_wrapper .award_wrapper {
  margin-bottom: 5px;
}
.landing_wrapper .pages .inpage .board_wrapper .award_wrapper .award {
  margin-bottom: 5px;
  position: relative;
  cursor: pointer;
}
.landing_wrapper .pages .inpage .board_wrapper .award_wrapper .award::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 2.5px;
  left: 10px;
  width: 30px;
  height: 25px;
  background: url("../images/common/unlock.svg") center center no-repeat;
  background-size: contain;
}
.landing_wrapper .pages .inpage .board_wrapper .award_wrapper .award.locked {
  pointer-events: none;
}
.landing_wrapper .pages .inpage .board_wrapper .award_wrapper .award.locked::before {
  width: 25px;
  filter: saturate(0.3);
  background-image: url("../images/common/lock.svg");
}
.landing_wrapper .pages .inpage .board_wrapper .award_wrapper .award.locked > img {
  opacity: 0.4;
}
.landing_wrapper .pages .inpage .board_wrapper .deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 5px;
  left: 5px;
  -webkit-mask-image: url("../images/common/mask_board.png");
  mask-image: url("../images/common/mask_board.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: 495px 265px;
  -webkit-mask-size: 495px 265px;
}
.landing_wrapper .pages .inpage .board_wrapper .deco.deco_animals {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.landing_wrapper .pages .inpage .board_wrapper .deco.deco_animals img {
  width: 15%;
  height: 100px;
  object-fit: contain;
  object-position: bottom center;
  animation: floating 0.8s both infinite;
}
.landing_wrapper .pages .inpage .board_wrapper .deco.deco_animals img:nth-child(2) {
  animation-delay: 0.2s;
}
.landing_wrapper .pages .inpage .board_wrapper .deco.deco_animals img:nth-child(3) {
  animation-delay: 0.4s;
}
.landing_wrapper .pages .inpage .board_wrapper .deco.deco_animals img:nth-child(4) {
  animation-delay: 0.6s;
}
.landing_wrapper .pages .inpage .board_wrapper .deco.deco_animals img:nth-child(5) {
  animation-delay: 0.8s;
}
.landing_wrapper .pages .inpage .board_wrapper .deco.deco_animals img:nth-child(6) {
  animation-delay: 1s;
}
.landing_wrapper .pages .inpage .board_wrapper .deco.deco_detective {
  display: flex;
  align-items: end;
  justify-content: center;
}
.landing_wrapper .pages .inpage .board_wrapper .deco.deco_detective img {
  transform-origin: center bottom;
  width: 20%;
  animation: climbing 2s both infinite;
}
.landing_wrapper .pages .inpage .board_wrapper .deco.deco_detective img.mag {
  width: 75px;
  position: relative;
  left: -32.5px;
  animation: none;
}
.landing_wrapper .pages .inpage .board_wrapper .scrollContent {
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 202.5px;
  width: 100%;
  margin-top: 10px;
  overflow: auto;
}
.landing_wrapper .pages .inpage .board_wrapper .scrollContent p {
  margin: 25px auto 25px;
  font-size: 12px;
  line-height: 1.5;
  color: #000;
  text-align: center;
}
.landing_wrapper .pages .inpage .board_wrapper .mask_wrapper {
  margin: 15px auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1px;
}
.landing_wrapper .pages .inpage .board_wrapper .mask_wrapper a {
  display: inline-block;
  margin: 0 5px;
  transition: all 0.3s;
}
.landing_wrapper .pages .inpage .board_wrapper .mask_wrapper a:nth-child(odd) img {
  margin-bottom: 25px;
}
.landing_wrapper .pages .inpage .board_wrapper .mask_wrapper a:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.3));
}
.landing_wrapper .pages .inpage .board_wrapper .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounceInUp 0.8s both;
  animation-delay: 0.5s;
}
.landing_wrapper .pages .inpage .board_wrapper .cta > div {
  margin: 0 20px;
}
.landing_wrapper .pages .inpage .countdown {
  position: absolute;
  z-index: 1;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  width: 70px;
  line-height: 1;
  top: 101px;
  left: 186px;
  color: #c8a062;
}
.landing_wrapper .kv {
  display: none;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  animation: pageZoom 2.6s ease both;
}
.landing_wrapper .kv .logo {
  position: absolute;
  z-index: 8;
  left: 438px;
  top: 74px;
  width: 140px;
  height: auto;
  animation-delay: 2.4s;
}
.landing_wrapper .kv .slider {
  position: absolute;
  z-index: 9;
  right: -1px;
  top: 10px;
  width: 390px;
  height: 342px;
  -webkit-mask-image: url("../images/landing/mask_slider.svg");
  mask-image: url("../images/landing/mask_slider.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}
.landing_wrapper .kv .slider .slides {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.landing_wrapper .kv .slider .slides .slide {
  opacity: 0;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  overflow: hidden;
  transition: opacity 0.6s;
}
.landing_wrapper .kv .slider .slides .slide.empty {
  background: none;
}
.landing_wrapper .kv .slider .slides .slide.active {
  opacity: 1;
}
.landing_wrapper .kv .slider .slides .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  opacity: 0.75;
}
.landing_wrapper .kv .slider .slides-btns {
  position: absolute;
  text-align: center;
  left: 55px;
  bottom: 20px;
  z-index: 2;
  width: 100%;
}
.landing_wrapper .kv .slider .slides-btns > span {
  pointer-events: auto;
  display: inline-block;
  margin: 0 8px;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 100%;
  cursor: pointer;
  position: relative;
}
.landing_wrapper .kv .slider .slides-btns > span.active {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  animation: bounceIn 1s;
}
.landing_wrapper .kv .slider .slides-btns > span.active::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url("../images/common/chestnut.svg") center center no-repeat;
  background-size: contain;
  transform: scale(2.5);
}
.landing_wrapper .kv .intro {
  position: absolute;
  z-index: 8;
  left: 369px;
  top: 211px;
  width: 263px;
  height: auto;
  animation-delay: 2.7s;
}
.landing_wrapper .kv .btn_enter {
  position: absolute;
  z-index: 99;
  left: 434px;
  top: 272px;
  width: 138px;
  height: auto;
  animation-delay: 3s;
  cursor: pointer;
}
.landing_wrapper .kv .btn_enter img {
  width: 100%;
  height: auto;
}
.landing_wrapper .kv .page {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  animation: pageExpand 1s ease both;
  transform-origin: right top;
}
.landing_wrapper .kv .page.p1 {
  z-index: 7;
  animation-duration: 2.6s;
}
.landing_wrapper .kv .page.p2 {
  top: 5px;
  z-index: 6;
  animation-duration: 2.1s;
}
.landing_wrapper .kv .page.p3 {
  z-index: 5;
  animation-duration: 1.7s;
}
.landing_wrapper .kv .page.p4 {
  z-index: 4;
  animation-duration: 1.4s;
}
.landing_wrapper .kv .page.p5 {
  z-index: 3;
  animation-duration: 1.2s;
}
.landing_wrapper .kv .page.p6 {
  z-index: 2;
  animation-duration: 1s;
}
@keyframes pageExpand {
  from {
    -webkit-transform: scale(0.5, 1);
    transform: scale(0.5, 1);
  }
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes pageZoom {
  from {
    -webkit-transform: scale(1.5, 2) rotate(40deg) translate(700px, 0px);
    transform: scale(1.5, 2) rotate(40deg) translate(700px, 0px);
  }
  to {
    -webkit-transform: scale(1, 1) rotate(0deg) translate(0, 0);
    transform: scale(1, 1) rotate(0deg) translate(0, 0);
  }
}
@keyframes pageInto {
  from {
    -webkit-transform: scale(1, 1) rotate(0deg) translate(0, 0);
    transform: scale(1, 1) rotate(0deg) translate(0, 0);
  }
  to {
    -webkit-transform: scale(2.3, 2.3) translate(25px, -75px) rotate(-10deg);
    transform: scale(2.3, 2.3) translate(25px, -75px) rotate(-10deg);
  }
}
@keyframes jumpingNut {
  0% {
    -webkit-transform: scale(1) rotate(5deg) translate(0, 0);
    transform: scale(1) rotate(5deg) translate(0, 0);
  }
  20% {
    -webkit-transform: scale(1.1) rotate(0deg) translate(0, -10px);
    transform: scale(1.1) rotate(0deg) translate(0, -10px);
  }
  40% {
    -webkit-transform: scale(1) rotate(-5deg) translate(0, 0);
    transform: scale(1) rotate(-5deg) translate(0, 0);
  }
  50% {
    -webkit-transform: scale(1) rotate(-5deg) translate(0, 0);
    transform: scale(1) rotate(-5deg) translate(0, 0);
  }
  70% {
    -webkit-transform: scale(1.1) rotate(0deg) translate(0, -10px);
    transform: scale(1.1) rotate(0deg) translate(0, -10px);
  }
  90% {
    -webkit-transform: scale(1) rotate(5deg) translate(0, 0);
    transform: scale(1) rotate(5deg) translate(0, 0);
  }
  100% {
    -webkit-transform: scale(1) rotate(5deg) translate(0, 0);
    transform: scale(1) rotate(5deg) translate(0, 0);
  }
}
@keyframes jumpingBird {
  0% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
  20% {
    -webkit-transform: scale(1) translate(-4px, -5px);
    transform: scale(1) translate(-4px, -5px);
  }
  40% {
    -webkit-transform: scale(1) translate(-8px, 0px);
    transform: scale(1) translate(-8px, 0px);
  }
  50% {
    -webkit-transform: scale(-1, 1) translate(-8px, 0px);
    transform: scale(-1, 1) translate(-8px, 0px);
  }
  70% {
    -webkit-transform: scale(-1, 1) translate(-10px, -5px);
    transform: scale(-1, 1) translate(-10px, -5px);
  }
  90% {
    -webkit-transform: scale(-1, 1) translate(-13px, 0);
    transform: scale(-1, 1) translate(-13px, 0);
  }
  100% {
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
}
@keyframes swingBear {
  0% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  20% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
  60% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
}

.intro2 {
  display: none;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 45px;
  left: 102px;
  width: 456px;
}
.intro2 > img {
  width: 100%;
  height: auto;
}

.roles {
  display: none;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.roles.disabled .role {
  pointer-events: none;
}
.roles .role {
  pointer-events: auto;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  transform-origin: bottom center;
  animation-duration: 1.2s;
}
.roles .role img {
  height: auto;
}
.roles .role.cat {
  top: 242px;
  left: 333px;
}
.roles .role.cat .chestnut {
  top: -5px;
  left: 13px;
}
.roles .role.cat .bubble {
  top: -43px;
  left: -53px;
}
.roles .role.cat .eyes .eye {
  width: 5px;
  height: 5px;
}
.roles .role.cat .eyes .eye .pupil {
  background-color: #000;
}
.roles .role.cat > img {
  width: 111px;
}
.roles .role.cave {
  top: 144px;
  left: 200px;
}
.roles .role.cave .chestnut {
  top: 33px;
  left: 53px;
}
.roles .role.cave .bubble {
  transform-origin: top center;
  top: 104px;
  left: -65px;
}
.roles .role.cave .eyes .eye {
  width: 10px;
  height: 10px;
}
.roles .role.cave .eyes .eye .pupil {
  background-color: #846340;
}
.roles .role.cave > img {
  width: 112px;
}
.roles .role.bear {
  top: 177px;
  left: 474px;
}
.roles .role.bear .chestnut {
  top: 74px;
  left: 66px;
}
.roles .role.bear .bubble {
  top: 16px;
  left: -68px;
}
.roles .role.bear > img {
  animation: swingBear 5s infinite both;
  transform-origin: bottom left;
  width: 93px;
}
.roles .role.tree {
  top: 120px;
  left: 41px;
}
.roles .role.tree .chestnut {
  top: 66px;
  left: 84px;
}
.roles .role.tree .birdie {
  position: absolute;
  z-index: 1;
  top: 70px;
  left: 12px;
  width: 40px;
  animation: jumpingBird 2.8s infinite both;
}
.roles .role.tree .birdie img {
  width: 100%;
  height: auto;
}
.roles .role.tree .bubble {
  transform-origin: top center;
  top: 93px;
  left: 21px;
}
.roles .role.tree .eyes .eye {
  width: 8px;
  height: 8px;
}
.roles .role.tree .eyes .eye .pupil {
  background-color: #005fb0;
}
.roles .role.tree > img {
  width: 147px;
}
.roles .role .chestnut {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.roles .role .chestnut .smoke {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.roles .role .chestnut .smoke > img {
  width: 75px;
  height: auto;
}
.roles .role .chestnut:not(.lock) > img {
  width: 25px;
  animation: jumpingNut 2s infinite both;
}
.roles .role .chestnut > img {
  width: 30px;
  height: auto;
}
.roles .role .bubble {
  display: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  animation: bounceIn 1s both;
  transform-origin: bottom center;
}
.roles .role .eyes {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
}
.roles .role .eyes .eye {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.roles .role .eyes .eye .pupil {
  width: 50%;
  height: 50%;
  border-radius: 100%;
  background-color: #000;
}
.roles .role:hover {
  z-index: 2;
}
.roles .role:hover .bubble {
  display: block;
}

.stage {
  display: none;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.stage::after {
  pointer-events: none;
  content: "";
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  transition: background 1.5s;
}
.stage .bgs {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.stage .bgs img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.stage .bgs img.kumon {
  width: auto;
  height: auto;
  top: 323px;
  left: 12px;
  z-index: 7;
  width: 75px;
}
.stage .bgs img.layer3 {
  z-index: 5;
  transition: all 2.3s;
  transform: scale(2.5);
}
.stage .bgs img.layer2 {
  z-index: 3;
  transition: all 1.8s;
  transform: scale(1.7);
}
.stage .bgs img.layer1 {
  z-index: 1;
  transition: all 1.5s;
  transform: scale(1.3);
}
.stage.active::after {
  background: rgba(255, 255, 255, 0);
}
.stage.active .bgs img.layer3, .stage.active .bgs img.layer2, .stage.active .bgs img.layer1 {
  transform: scale(1);
  filter: brightness(1);
}

.root {
  width: 640px;
  height: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-fill-mode: forwards;
  z-index: 1;
}
.root > .alert {
  bottom: 45px;
  right: 27px;
}
.root main {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  box-sizing: content-box;
}
.root main > div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  box-sizing: content-box;
}
.root main > div.main {
  z-index: 2;
}
.root .flip_wrapper {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 25;
  width: 640px;
  height: 360px;
  pointer-events: none;
  perspective-origin: center center;
  -moz-perspective-origin: center center;
  -webkit-perspective-origin: center center;
  perspective: 1000px;
  -moz-perspective: 1000px;
  -webkit-perspective: 1000px;
}
.root .flip_wrapper.active {
  pointer-events: auto;
  opacity: 1;
}
.root .flip_wrapper .pc {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 320px;
  height: 360px;
  overflow: hidden;
  transform: rotateY(0deg);
  backface-visibility: hidden;
}
.root .flip_wrapper .pc > * {
  width: 200%;
}
.root .flip_wrapper .pc * {
  pointer-events: none !important;
}
.root .flip_wrapper .pc.p3 {
  z-index: 2;
  transform: rotateY(0deg);
}
.root .flip_wrapper .pc.p2 {
  left: 320px;
}
.root .flip_wrapper .pc.p2 > * {
  transform: translateX(-50%);
}
.root .flip_wrapper .pc.p4 {
  left: 320px;
}
.root .flip_wrapper .pc.p4 > * {
  transform: translateX(-50%);
}
.root .flip_wrapper.next .pc.p2 {
  transform-origin: top left;
  transform: rotateY(0deg);
  filter: brightness(1);
  z-index: 10;
}
.root .flip_wrapper.next .pc.p3 {
  transform-origin: top right;
  transform: rotateY(180deg);
  filter: brightness(0);
  z-index: 15;
}
.root .flip_wrapper.next.go .pc.p2 {
  transition: transform var(--flip-speed), filter var(--flip-speed);
  transform: rotateY(-180deg);
  filter: brightness(0);
}
.root .flip_wrapper.next.go .pc.p3 {
  transition: transform var(--flip-speed), filter var(--flip-speed);
  transform: rotateY(0deg);
  filter: brightness(1);
}
.root .flip_wrapper.next.go .pc.p1 {
  z-index: 0;
  transform: translate3d(0, 0, -1px) rotateY(0deg);
}
.root .flip_wrapper.prev .pc.p2 {
  transform-origin: top left;
  transform: rotateY(180deg);
  filter: brightness(0);
  z-index: 15;
}
.root .flip_wrapper.prev .pc.p3 {
  transform-origin: top right;
  transform: rotateY(0deg);
  filter: brightness(1);
  z-index: 10;
}
.root .flip_wrapper.prev.go .pc.p2 {
  transition: transform var(--flip-speed), filter var(--flip-speed);
  transform: rotateY(360deg);
  filter: brightness(1);
}
.root .flip_wrapper.prev.go .pc.p3 {
  transition: transform var(--flip-speed), filter var(--flip-speed);
  transform: rotateY(180deg);
  filter: brightness(0);
}
.root .flip_wrapper.prev.go .pc.p4 {
  z-index: 0;
  transform: translate3d(0, 0, -1px) rotateY(0deg);
}
.root .book_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 640px;
  height: 360px;
  transform-origin: top left;
  pointer-events: none;
  overflow: hidden;
}
.root .landing {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  box-sizing: content-box;
}
.root nav {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
  display: none;
}
.root nav .menu {
  position: absolute;
  top: 10px;
  left: 15px;
}
.root nav .menu.active .trigger {
  background-image: url("../images/common/btn_menu_close.svg");
}
.root nav .menu.active > ul {
  opacity: 1;
  transform: scaleX(1);
}
.root nav .menu.active > ul li,
.root nav .menu.active > ul a {
  pointer-events: auto;
}
.root nav .menu.demo > ul li,
.root nav .menu.demo > ul a {
  pointer-events: none !important;
}
.root nav .menu.demo .trigger {
  pointer-events: none;
}
.root nav .menu .trigger {
  display: inline-block;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #fff url("../images/common/btn_menu.svg") center center no-repeat;
  background-size: 20px 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.root nav .menu > ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0 20px 20px 0;
  height: 40px;
  padding-left: 20px;
  padding-right: 7px;
  margin-left: -20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scaleX(0.5);
  transition: all 0.5s;
  transform-origin: left top;
}
.root nav .menu > ul li,
.root nav .menu > ul a {
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  line-height: 1em;
  color: #7dccf3;
  margin: 0 8px;
  text-decoration: none;
}
.root nav .menu > ul li.selected,
.root nav .menu > ul a.selected {
  font-weight: 700;
  color: #0e6eb8;
}
.root nav .menu > ul #fullscreen {
  margin: 0 10px;
  cursor: pointer;
  pointer-events: auto;
}
.root nav .menu > ul #fullscreen img {
  width: 14px;
}
.root nav .social {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.root nav .social a {
  pointer-events: auto;
  display: inline-block;
  margin: 0 5px;
}
.root nav .social a img {
  width: 25px;
}
.root nav .login {
  position: absolute;
  bottom: 10px;
  right: 15px;
}
.root nav .login:hover .login_hint {
  opacity: 1;
  transform: scaleX(1);
}
.root nav .login:hover .login_hint p,
.root nav .login:hover .login_hint img {
  pointer-events: auto !important;
}
.root nav .login.active .login_hint {
  opacity: 1;
  transform: scaleX(1);
}
.root nav .login.active .login_hint p,
.root nav .login.active .login_hint img {
  pointer-events: auto !important;
}
.root nav .login.checking .login_hint p,
.root nav .login.checking .login_hint img {
  pointer-events: none !important;
}
.root nav .login.checking .trigger {
  pointer-events: none;
}
.root nav .login.checking .trigger::after {
  content: "";
  position: absolute;
  width: 95%;
  height: 95%;
  border-radius: 100%;
  border-width: 2px;
  border-style: dashed;
  border-color: #ff7058 #7dccf3 #c8a062 #14ae66;
  animation: selfRotate 4s linear infinite;
}
.root nav .login .trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.root nav .login .trigger img {
  width: 70%;
  aspect-ratio: 1;
  object-fit: contain;
}
.root nav .login .login_hint {
  margin-top: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 13px 0 0 13px;
  height: 27px;
  padding-left: 12.5px;
  padding-right: 17.5px;
  margin-right: -20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scaleX(0.5);
  transition: all 0.3s;
  transform-origin: right top;
}
.root nav .login .login_hint img {
  cursor: pointer;
}
.root nav .login .login_hint p {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
  color: #c8a062;
  margin: -1.5px 2.5px 0;
  text-decoration: underline;
}
.root nav .login .smoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  z-index: 2000;
  transform-origin: center center;
  margin-left: -25px;
  margin-top: -30px;
}
.root nav .login .smoke > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.root .loading {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: auto;
  display: none;
  background: #7dccf3;
}
.root .loading.bookMode {
  display: block;
  background: rgba(0, 0, 0, 0.3);
}
.root .loading.serverMode {
  display: block;
  background: rgba(0, 0, 0, 0.3);
}
.root .loading.serverMode > div.spin > P {
  color: rgba(255, 255, 255, 0);
}
.root .loading.serverMode > div.spin > P::after {
  content: "處理中...";
  margin-left: -30px;
  color: rgb(255, 255, 255);
}
.root .loading.serverMode > div.spin > P::before {
  display: none;
}
.root .loading.landingMode {
  display: block;
  background: #7dccf3;
}
.root .loading > div.spin {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.root .loading > div.spin .chestnut {
  display: flex;
  margin-bottom: 15px;
}
.root .loading > div.spin .chestnut img {
  width: 30px;
  height: auto;
  margin: 0 5px;
  animation: loadingSpin 1.6s both infinite ease-in-out;
}
.root .loading > div.spin .chestnut img:nth-child(1) {
  animation-delay: -0.3s;
}
.root .loading > div.spin .chestnut img:nth-child(2) {
  animation-delay: -0.2s;
}
.root .loading > div.spin .chestnut img:nth-child(3) {
  animation-delay: -0.1s;
}
@keyframes loadingSpin {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  75% {
    transform: translateY(-35px) rotate(115deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}
.root .loading > div.spin > P {
  font-size: 2rem;
  color: #fff;
  line-height: 20px;
  text-align: center;
  display: inline-flex;
}
.root .loading > div.spin > P::before {
  content: "";
  width: 69px;
  height: 20px;
  background: url("../images/common/loading.webp") center center no-repeat;
  background-size: contain;
  margin-right: 5px;
}

.wrapper {
  width: 100%;
  height: 100%;
  background: #7dccf3;
  background-size: cover;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.alert {
  position: absolute;
  z-index: 3000;
  bottom: 50px;
  right: 110px;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 25px 30px;
  background: url("../images/common/alert.webp") center center no-repeat;
  background-size: 100% 100%;
  color: #ffffff;
  pointer-events: auto !important;
  cursor: pointer;
  transform-origin: bottom right;
  animation: bounceIn 0.8s both;
  max-width: 280px;
}
.alert::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: url("../images/common/btn_close.svg") center center no-repeat;
  background-size: 100% 100%;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  touch-action: manipulation;
}

.assetsPreload {
  position: absolute;
  bottom: 1px;
  left: 0px;
  pointer-events: none;
}
.assetsPreload * {
  position: absolute;
  top: 100vh;
  left: -100vw;
  max-width: 4px;
  max-height: 4px;
  opacity: 0.1 !important;
  -moz-opacity: 0.1 !important;
  -khtml-opacity: 0.1 !important;
  filter: alpha(opacity=10) !important;
}

input {
  letter-spacing: 0;
  display: block;
  outline: none;
  background: none;
  border: none;
  min-width: 1px;
  padding: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.btn {
  pointer-events: auto;
  transition: all 0.4s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.3));
}

sup {
  -ms-transform: scale(0.6);
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  display: inline-block;
  margin-left: -2px;
}

b {
  font-weight: 700;
}

html,
body,
select,
option,
.modal,
input,
textarea {
  font-family: "Noto Sans TC", "Heiti TC", "儷黑 Pro", "LiHei Pro", "文泉驛正黑", "WenQuanYi Zen Hei", "微軟正黑體", "Microsoft JhengHei", "新細明體", sans-serif, Arial, Helvetica;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  user-select: none;
  position: relative;
  overflow: hidden;
}

@media screen and (pointer: coarse) {
  @supports (-webkit-backdrop-filter: blur(1px)) and (overscroll-behavior-y: none) {
    html {
      min-height: 100.3%;
      overscroll-behavior-y: none;
    }
  }
}
/* prevent pull-to-refresh for Safari 9~15 */
@media screen and (pointer: coarse) {
  @supports (-webkit-backdrop-filter: blur(1px)) and (not (overscroll-behavior-y: none)) {
    html {
      height: 100%;
      overflow: hidden;
    }
    body {
      margin: 0px;
      max-height: 100%; /* or `height: calc(100% - 16px);` if body has default margin */
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }
    /* in this case to disable pinch-zoom, set `touch-action: pan-x pan-y;` on `body` instead of `html` */
  }
}
/* prevent pull-to-refresh for Chrome 63+ */
body {
  overscroll-behavior-y: none;
}

/* prevent pinch-zoom for Chrome 36+, Safari 13+ */
html {
  touch-action: pan-x pan-y;
  min-height: 100%; /* prevent pinch-zoom at page bottom */
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  touch-action: manipulation;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #bbb;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #bbb;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #bbb;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #bbb;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}