@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap");
body {
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.header {
  height: 70px;
  background-color: rgba(170, 195, 92, 0.56);
  display: flex;
  width: 100%;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.header .logo {
  width: 200px;
  position: relative;
  top: 20px;
  z-index: 10;
}
.header:before {
  content: "";
  width: 100%;
  height: 61px;
  background-image: url("/assets/images/common/header_bg_s.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 100%;
}
@media (max-width: 1024px) {
  .header .logo {
    top: 10px;
  }
}
@media (max-width: 640px) {
  .header {
    height: 80px;
  }
  .header .logo {
    top: 5px;
  }
}

.mainbody {
  padding-top: 170px;
  padding-bottom: 170px;
  overflow-y: auto;
  width: 100%;
  min-height: calc(100vh - 70px);
  position: absolute;
  z-index: 10;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.mainbody.bg {
  background-color: rgba(170, 195, 92, 0.56);
}
.mainbody .container--right {
  display: flex;
  justify-content: flex-end;
}
.mainbody .examination {
  width: 100%;
  max-width: 80%;
}
@media (max-width: 1024px) {
  .mainbody {
    padding-bottom: 0px;
    align-items: flex-start;
  }
  .mainbody .examination {
    max-width: calc(100% - 300px);
  }
}
@media (max-width: 640px) {
  .mainbody .examination {
    max-width: calc(100% - 200px);
  }
}
@media (max-width: 480px) {
  .mainbody {
    padding-top: 130px;
  }
  .mainbody .examination {
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .mainbody {
    padding-top: 110px;
  }
}

.mainbody-end {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mainbody-end .title {
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 24px;
  color: #45876B;
}
.mainbody-end .subtitle {
  font-style: normal;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 24px;
  color: #45876B;
  margin-bottom: 20px;
}
.mainbody-end .score {
  font-size: 8rem;
  font-weight: 500;
  color: #45876B;
  line-height: 1.1;
  padding-bottom: 10px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-image: url("/assets/images/common/wada/score.png");
  margin-bottom: 30px;
  font-family: "Berlin Sans FB", "Noto Sans TC";
}
@media (max-width: 640px) {
  .mainbody-end .score {
    font-size: 7rem;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
}
.mainbody-end .btn_list {
  display: flex;
  position: relative;
}
@media (max-width: 640px) {
  .mainbody-end .btn_list {
    flex-direction: column;
  }
}

.eaxm-btn01 {
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
  background: rgb(69, 135, 107);
  padding: 7px 0;
  font-weight: 700;
  cursor: pointer;
  width: 130px;
  margin: 0 5px 10px 5px;
}

.eaxm-btn02 {
  border: 2px solid rgb(69, 135, 107);
  border-radius: 10px;
  color: rgb(69, 135, 107);
  font-size: 1.2rem;
  background-color: #fff;
  padding: 7px 0;
  font-weight: 700;
  width: 130px;
  margin: 0 5px 10px 5px;
  cursor: pointer;
}

.mainbody-start {
  position: relative;
  flex-direction: column;
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: rgb(235, 235, 235);
  min-height: calc(100vh - 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  box-sizing: border-box;
}
.mainbody-start .start-wrap {
  margin-bottom: 50px;
}
.mainbody-start .start-img {
  max-width: 80%;
  position: absolute;
  bottom: -20px;
  right: -30px;
}
.mainbody-start .title {
  font-style: normal;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #45876B;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .mainbody-start {
    margin-top: 50px;
    min-height: calc(100vh - 300px);
    align-items: flex-start;
  }
  .mainbody-start .start-img {
    max-width: 50%;
    bottom: -40px;
  }
  .mainbody-start .title {
    font-size: 1.6rem;
  }
}

.footer {
  width: 100%;
  background-image: url("/assets/images/common/footer_bg.png");
  height: 350px;
  background-size: cover;
  background-position: right top;
  position: fixed;
  bottom: 0;
}
@media (max-width: 640px) {
  .footer {
    height: 250px;
  }
}

.wada {
  width: 310px;
  height: 410px;
  position: fixed;
  bottom: 0;
  transform: scale(0.8);
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}
.wada.animate {
  animation-name: wada;
}
@media (max-width: 640px) {
  .wada {
    transform: scale(0.65);
    left: -30px;
  }
  .wada.center {
    left: calc(50% - 140px);
  }
}
@media (max-width: 400px) {
  .wada {
    bottom: -70px;
  }
  .wada.animate {
    animation-name: wada-small;
  }
}
.wada div {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
.wada-bg {
  width: 174px;
  height: 68px;
  background-image: url("/assets/images/common/wada/bg.svg");
  left: 60px;
  z-index: 0;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  transform-origin: center center;
  bottom: 0;
}
.wada-bg.animate {
  animation-name: bg;
}
.wada-left-hand {
  width: 95px;
  height: 85px;
  background-image: url("/assets/images/common/wada/left_hand.svg");
  left: 45px;
  top: 190px;
  transform-origin: bottom right 20px;
  transform: rotate(-25deg);
}
.wada-left-hand.animate {
  animation-timing-function: ease-in;
  animation-duration: 1.5s;
  animation-name: left-hand;
  animation-iteration-count: infinite;
}
.wada-right-hand {
  width: 105px;
  transform: rotate(-5deg);
  height: 76px;
  background-image: url(/assets/images/common/wada/right_hand.svg);
  left: 170px;
  top: 200px;
  transform-origin: bottom left 40px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  transform: rotate(20deg);
  animation-name: right-hand-normal;
}
.wada-right-hand.animate {
  animation-name: right-hand;
}
.wada-left-foot {
  width: 38px;
  height: 30px;
  background-image: url("/assets/images/common/wada/left_foot.svg");
  top: 355px;
  left: 100px;
  transform-origin: top center 40px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  transform: rotate(0deg) translate3d(0px, 0px, 0px);
  z-index: 100;
}
.wada-left-foot.animate {
  animation-name: left-foot;
}
.wada-right-foot {
  width: 38px;
  height: 30px;
  background-image: url("/assets/images/common/wada/right_foot.svg");
  top: 355px;
  left: 165px;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  transform: rotate(0deg) translate3d(0px, 0px, 0px);
}
.wada-right-foot.animate {
  animation-name: right-foot;
}
.wada-tail {
  width: 115px;
  height: 65px;
  background-image: url("/assets/images/common/wada/tail.svg");
  top: 235px;
}
.wada-body {
  width: 125px;
  height: 125px;
  z-index: 110;
  background-image: url("/assets/images/common/wada/body.svg");
  top: 237px;
  left: 87px;
}
.wada-head {
  width: 231px;
  height: 205px;
  background-image: url("/assets/images/common/wada/head.svg");
  top: 65px;
  left: 33px;
  z-index: 120;
  transform-origin: center bottom;
  transform: rotate(5deg);
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  animation-name: head;
}
.wada-hat {
  width: 111px;
  height: 90px;
  background-image: url("/assets/images/common/wada/hat.svg");
  top: 15px;
  transform: rotate(7deg);
  left: 100px;
  animation-duration: 1.5s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-name: hat-normal;
  transform-origin: center bottom;
}
.wada-hat.animate {
  animation-name: hat;
}

@keyframes head {
  from {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0);
  }
}
@keyframes left-hand {
  from {
    transform: rotate(-25deg);
  }
  50% {
    transform: rotate(0);
  }
}
@keyframes right-hand {
  from {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}
@keyframes right-hand-normal {
  from {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}
@keyframes left-foot {
  from {
    transform: rotate(0deg) translate3d(0px, 0px, 0px);
  }
  50% {
    transform: rotate(45deg) translate3d(-8px, 0px, 0px);
  }
}
@keyframes right-foot {
  from {
    transform: rotate(0deg) translate3d(0px, 0px, 0px);
  }
  50% {
    transform: rotate(-45deg) translate3d(20px, 3px, 0px);
  }
}
@keyframes wada {
  from {
    bottom: 0;
  }
  50% {
    bottom: 40px;
  }
}
@keyframes wada-small {
  from {
    bottom: -70px;
  }
  50% {
    bottom: -30px;
  }
}
@keyframes bg {
  from {
    bottom: 0;
  }
  50% {
    bottom: -80px;
    transform: scale(0.8);
  }
}
@keyframes hat {
  from {
    top: 15px;
  }
  50% {
    top: -15px;
  }
}
@keyframes hat-normal {
  from {
    transform: rotate(7deg);
    left: 100px;
  }
  50% {
    transform: rotate(0);
    left: 91px;
  }
}
.answer-item {
  border: 4px solid #45876B;
  border-radius: 10px;
  color: #45876B;
  display: flex;
  align-items: center;
  padding: 8px 20px;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
}
.answer-item span, .answer-item p {
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 700;
}
.answer-item .title {
  width: 50px;
}
.answer-item.active {
  background: #e4e4e4;
}
.answer-item.correct {
  background-color: #45876B;
  color: #fff;
}
@media (max-width: 640px) {
  .answer-item {
    margin-bottom: 10px;
  }
}

.question {
  background: rgba(217, 217, 217, 0.7);
  padding: 8px 25px;
  margin-bottom: 30px;
  position: relative;
}
.question:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 20px 10px 0;
  border-color: transparent rgba(217, 217, 217, 0.7) transparent transparent;
  position: absolute;
  left: -20px;
  top: calc(50% - 10px);
}
.question p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
}
@media (max-width: 640px) {
  .question {
    margin-bottom: 15px;
  }
}

.button-wrap {
  display: flex;
  justify-content: flex-end;
}

.next-button {
  border: 0;
  border-radius: 10px;
  color: #6D6D6D;
  font-size: 1.25rem;
  background: rgba(230, 230, 230, 0.83);
  padding: 8px 15px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  top: 0;
  transition: 0.3s;
}
.next-button:hover {
  top: -3px;
  box-shadow: 2px 2px 5px #C4C4C4;
}

.enterEmail {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.76);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enterEmail-warp {
  background-color: #fff;
  box-shadow: 2px 2px 5px #666;
  border-radius: 10px;
  width: 400px;
  max-width: 80%;
  padding: 30px 50px;
}
.enterEmail .title {
  font-style: normal;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 24px;
  color: #45876B;
}
.enterEmail .enter-mail-box {
  border: 1px solid #6D6D6D;
  height: 40px;
  padding: 0 10px;
  font-size: 1em;
  border-radius: 4px;
  font-weight: normal;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 20px;
}
.enterEmail .enter-mail-box:focus {
  outline: 2px solid #45876B;
  border-color: #fff;
}
.enterEmail .enter-mail-box.grow {
  flex-grow: 1;
}
.enterEmail .enter-mail-box::-moz-placeholder {
  color: rgba(112, 112, 112, 0.5);
}
.enterEmail .enter-mail-box::placeholder {
  color: rgba(112, 112, 112, 0.5);
}
.enterEmail .eaxm-btn01 {
  margin: 0 auto;
  display: block;
}/*# sourceMappingURL=examination.css.map */