@charset "UTF-8";
html,
body,
#main {
  color: #fff;
  font-family: 'Noto Sans Tc', sans-serif;
}

.bg-area {
  background: #675bff;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  right: 0;
  z-index: -5;
  width: 32em;
  margin: 0 auto;
  overflow: hidden;
  user-select: none;
  pointer-events: none;
}
.bg-area .bg-bottom {
  flex: 1 1 auto;
  background: url(/img/Edm/Draw/bg-bottom.jpg?v=20231207) top/100% auto repeat-y;
}
@media (max-width: 767px) {
  .bg-area .bg-bottom {
    background-size: 107%;
  }
}

#main {
  display: flow-root;
  padding-top: .1px;
}

#header {
  background: transparent;
}

.row {
  align-items: center;
}

img {
  max-width: 100%;
}

.no-style {
  margin: 0;
  padding: 0;
}
.no-style li {
  list-style: none;
}

/*==============*/
/* PAGE CONTENT */
.head-title {
  width: 100%;
  left: 0;
  right: 0;
  padding-top: 4.4em;
}
.head-title #draw-nav {
  width: 104%;
  left: -2%;
  max-width: 1050px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.head-title #draw-nav li {
  transform: scale(0.95);
  filter: brightness(0.8);
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease-out;
}
.head-title #draw-nav li .hand {
  position: absolute;
  right: 0;
  top: 60%;
  width: 1.75em;
  height: 1.75em;
  background-image: url(/img/Edm/Draw/dev-hand.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: drop-shadow(0.1em 0.2em 0.05em rgba(0, 0, 0, 0.25));
  animation: btnPointer 1.2s infinite ease-in-out;
  pointer-events: none;
  opacity: 1;
  transition: all 0.3s;
}
.head-title #draw-nav li:hover, .head-title #draw-nav li.is-active {
  filter: brightness(1);
}
.head-title #draw-nav li.is-active {
  filter: brightness(1);
  transform: scale(1.1);
}
.head-title #draw-nav li.is-active .hand {
  opacity: 0;
}
.head-title #draw-nav li.draw {
  width: 40%;
  margin-left: 2%;
}
.head-title #draw-nav li.quick {
  width: 31%;
  margin-right: 2%;
}
.head-title #draw-nav li img {
  animation: rotate-scale-up 0.65s ease-out 0.1s both;
}

@keyframes btnPointer {
  0% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: rotate(10deg) scale(1.1) translate(0.25em, 0.1em);
  }
}
@keyframes rotate-scale-up {
  0% {
    transform: scale(1) rotateY(0);
  }

  50% {
    transform: scale(1.5) rotateY(180deg);
  }

  100% {
    transform: scale(1) rotateY(360deg);
  }
}
#draw-content .box {
  width: 100%;
  height: 100%;
  padding-top: 0.95em;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
#draw-content .btn-wrapper {
  max-width: 630px;
  width: 65%;
  position: relative;
  top: -0.15em;
}
#draw-content .btn-wrapper .btn {
  width: 46%;
  padding-bottom: 20%;
  outline: none;
  border: none;
  background-color: transparent;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  transition: filter 0.3s;
}
#draw-content .btn-wrapper .btn.btn-draw {
  background-image: url(/img/Edm/Draw/btn-qauestion.png);
}
#draw-content .btn-wrapper .btn.btn-answer {
  background-image: url(/img/Edm/Draw/btn-answer.png);
}
#draw-content .btn-wrapper .btn:hover {
  filter: brightness(1.13);
}
#draw-content .btn-wrapper .btn.is-active {
  filter: brightness(1.13) drop-shadow(0 0 8px white);
}
@media (max-width: 767px) {
  #draw-content .btn-wrapper .btn.is-active {
    filter: brightness(1.13) drop-shadow(0 0 3px white);
  }
}

.imgWrapper {
  background-image: url(/img/Edm/Draw/book-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  padding: 1.3em 0.5em 1em 0.5em;
}
.imgWrapper .imgBox {
  border: 5px solid #fff;
  border-radius: 0.5em;
  box-shadow: 0 1px 2px #001483;
  overflow: hidden;
}

#content-area {
  width: 16.667em;
  max-width: 1000px;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  position: relative;
  border-radius: 0.5em;
  padding: 0 0.4em 0.7em 0.4em;
  margin-bottom: 0.2em;
}
#content-area::before {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(37, 23, 170, 0.4);
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: calc(100% - 1.3em);
  bottom: 0;
  border-radius: 0.5em;
  z-index: 1;
}
#content-area > * {
  position: relative;
  z-index: 1;
}

#Notice h2,
#Notice p {
  color: #fff;
}
#Notice .c-title h2 {
  font-size: 0.6em;
}
#Notice ul {
  max-width: 950px;
  font-size: 0.965em;
  margin-top: 0.25em;
  padding-left: 1em;
  list-style: none;
}
@media (max-width: 1200px) {
  #Notice ul {
    padding: 0 0.75em;
  }
}
#Notice ul li {
  font-size: 0.5em;
  line-height: 1.65;
  letter-spacing: -0.005em;
  padding-left: 1.3em;
  position: relative;
}
#Notice ul li::before {
  content: '※';
  display: block;
  position: absolute;
  top: 0.05em;
  left: 0.13em;
  z-index: 1;
}
@media (max-width: 767px) {
  #Notice {
    margin-bottom: 10px;
  }
  #Notice ul li {
    font-size: 0.6em;
  }
}

@media (max-width: 1200px) {
  #main #socials {
    position: static;
  }
  #main #socials .side-nav {
    width: 100%;
    flex-direction: row;
    left: auto;
  }
}
/*=====================*/
/* KEYFRAMES AND MEDIA */
.fade-scale {
  transform: scale(1.2) translateY(0.5em);
  transition: transform 1s ease-out;
}
.fade-scale.faded {
  transform: scale(1);
}

/*# sourceMappingURL=main.css.map */