@charset "UTF-8";
/* ============================================================
Color
============================================================ */
/* ============================================================
Reset
============================================================ */
* {
  font-family: 'Cuprum', 'PingFangTC', '微軟正黑體', 'Microsoft JhengHei', 'Open Sans', sans-serif;
  font-weight: 400;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background: #eeeeeb;
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #333;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul,
li {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
em {
  margin: 0;
  padding: 0;
}

em {
  font-style: normal;
  text-transform: none;
  list-style: none;
}

p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: 0.03em;
}

::-moz-selection {
  color: #fff;
  background: #8d93a9;
}

::selection {
  color: #fff;
  background: #8d93a9;
}

.scrollfixed {
  overflow: hidden;
}

.mask-blur {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 5;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ============================================================
NAV
============================================================ */
nav {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

nav h1 {
  font-family: 'Russo One', sans-serif;
  font-size: 2em;
  color: #333;
  margin-left: 15px;
  margin-top: 6px;
}

nav h1 a {
  font-family: 'Russo One', sans-serif;
  color: #333;
  text-transform: uppercase;
}

nav h1 a em {
  font-family: 'Russo One', sans-serif;
  color: #333;
  text-transform: uppercase;
}

nav .nav-icon {
  width: 30px;
  height: 24px;
  position: absolute;
  right: 15px;
  top: calc((50px - 24px)/2);
  z-index: 2;
  cursor: pointer;
}

nav .slogan {
  height: 24px;
  position: absolute;
  left: 350px;
  top: calc((50px - 24px)/2);
  z-index: 2;
  cursor: pointer;
  font-size: large;
}

nav .nav-icon::before {
  content: '';
  display: table;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 1000px;
}

nav .nav-icon::after {
  content: '';
  display: table;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 1000px;
}

nav .nav-icon .nav-line {
  width: 70%;
  height: 3px;
  background: #333;
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  border-radius: 1000px;
}

nav .nav-icon.active::before {
  -webkit-animation: navIconLeft .3s linear forwards;
          animation: navIconLeft .3s linear forwards;
}

nav .nav-icon.active::after {
  -webkit-animation: navIconRight .3s linear forwards;
          animation: navIconRight .3s linear forwards;
}

nav .nav-icon.active .nav-line {
  -webkit-animation: fadeOut .3s linear forwards;
          animation: fadeOut .3s linear forwards;
}

@-webkit-keyframes navIconLeft {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0;
    right: 0;
  }
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 44%;
    right: -5px;
  }
}

@keyframes navIconLeft {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0;
    right: 0;
  }
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 44%;
    right: -5px;
  }
}

@-webkit-keyframes navIconRight {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    bottom: 0;
    right: 0;
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 43%;
    right: -5px;
  }
}

@keyframes navIconRight {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    bottom: 0;
    right: 0;
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 43%;
    right: -5px;
  }
}

nav .nav-icon.inactive::before {
  -webkit-animation: navIconLeftBack .3s linear forwards;
          animation: navIconLeftBack .3s linear forwards;
}

nav .nav-icon.inactive::after {
  -webkit-animation: navIconRightBack .3s linear forwards;
          animation: navIconRightBack .3s linear forwards;
}

nav .nav-icon.inactive .nav-line {
  -webkit-animation: fadeIn .3s linear forwards;
          animation: fadeIn .3s linear forwards;
}

@-webkit-keyframes navIconLeftBack {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 44%;
    right: -5px;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0;
    right: 0;
  }
}

@keyframes navIconLeftBack {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 44%;
    right: -5px;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0;
    right: 0;
  }
}

@-webkit-keyframes navIconRightBack {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 43%;
    right: -5px;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    bottom: 0;
    right: 0;
  }
}

@keyframes navIconRightBack {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 43%;
    right: -5px;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    bottom: 0;
    right: 0;
  }
}

nav .nav-menu {
  width: 80%;
  max-width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -300px;
  background: #fff;
  z-index: 1;
  -webkit-box-shadow: -2px 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: -2px 0 6px rgba(0, 0, 0, 0.2);
  display: none;
}

nav .nav-menu ul {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -70%);
          transform: translate(0, -70%);
}

nav .nav-menu ul li.menu-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 10px auto;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  color: #333;
  padding: 5px 20px;
  border-radius: 1000px;
  -webkit-transition: .15s linear;
  transition: .15s linear;
}

nav .nav-menu ul li.menu-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

nav .nav-menu ul li.menu-item.active {
  background: #8d93a9;
  color: #fff;
}

nav .nav-menu ul li.menu-item.active:hover {
  background: #8d93a9;
}

@media all and (min-width: 1100px) {
  nav .nav-menu ul li.menu-item:hover {
    background: rgba(141, 147, 169, 0.5);
  }
}

.popup {
  width: 90%;
  max-width: 300px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 8;
  opacity: 0;
  display: none;
}

.popup.result p, .popup.contact p {
  width: 90%;
  position: relative;
  margin: 0 auto;
  text-align: center;
  font-size: 1.5em;
  font-weight: 400;
  color: #333;
}

.popup.result p em, .popup.contact p em {
  font-size: 1.5em;
  font-weight: 700;
  color: #8d93a9;
}

.popup.result p a, .popup.contact p a {
  text-align: center;
  color: #333;
  text-decoration: underline;
}

.popup.result button, .popup.contact button {
  position: relative;
  margin: 10px auto 0;
}

.popup.game p {
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  line-height: 1.2em;
}

.popup.game p.success {
  color: #945156;
  font-size: 2.5em;
}

.popup.game p.fail {
  color: #e22727;
  font-size: 2.5em;
}

.popup.game p.start {
  color: #945156;
  font-size: 1.3em;
}

.popup.game p.comeback {
  color: #945156;
  font-size: 1.2em;
  margin: 10px 0;
}

.popup.game .btn-group {
  margin-top: 15px;
}

.popup.level {
  display: block;
  opacity: 1;
}

.popup.level p {
  font-size: 2em;
  font-weight: 700;
  text-align: center;
}

.popup.level .level-btn.active {
  background: #333;
  color: #fff;
}

.button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-align: center;
  font-size: 1.2em;
  font-weight: 400;
  padding: 5px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin: 10px auto 0;
  -webkit-transition: .15s linear;
  transition: .15s linear;
}

.button.green {
  background: #8d93a9;
  color: #fff;
  border: 1px solid #8d93a9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media all and (min-width: 1100px) {
  .button.green:hover {
    background: none;
    color: #8d93a9;
  }
}

.button.green-border {
  background: none;
  color: #8d93a9;
  border: 1px solid #8d93a9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media all and (min-width: 1100px) {
  .button.green-border:hover {
    background: #8d93a9;
    color: #fff;
  }
}

.button.yellow {
  background: #945156;
  color: #fff;
  border: 1px solid #945156;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media all and (min-width: 1100px) {
  .button.yellow:hover {
    background: none;
    color: #945156;
  }
}

.button.yellow-border {
  background: none;
  color: #945156;
  border: 1px solid #945156;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media all and (min-width: 1100px) {
  .button.yellow-border:hover {
    background: #945156;
    color: #fff;
  }
}

.button.black-border {
  background: none;
  color: #333;
  border: 1px solid #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media all and (min-width: 1100px) {
  .button.black-border:hover {
    background: #333;
    color: #fff;
  }
}

.button.black {
  background: #333;
  border: 1px solid #333;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media all and (min-width: 1100px) {
  .button.black:hover {
    color: #333;
    background: none;
    border: 1px solid #333;
  }
}

.button.disabled {
  background: #b7b7b7;
  color: #939393;
  border: 1px solid #b7b7b7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: no-drop;
}

@media all and (min-width: 1100px) {
  .button.disabled:hover {
    background: #b7b7b7;
    color: #939393;
  }
}

.btn-group {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.btn-group .button {
  margin: 0;
  margin-right: 10px;
}

.btn-group .button:nth-last-child(1) {
  margin-right: 0;
}

/* ============================================================
TERM
============================================================ */
section.term-content {
  width: 90%;
  max-width: 1000px;
  position: relative;
  margin: 80px auto 0;
  color: #333;
}

section.term-content .text-center {
  text-align: center;
}

section.term-content .text-left {
  text-align: left;
}

section.term-content .text-right {
  text-align: right;
}

section.term-content h3 {
  font-size: 1.5em;
  font-weight: 700;
}

section.term-content p,
section.term-content li {
  font-size: 1em;
  font-weight: 400;
}

section.term-content ol,
section.term-content ol li {
  list-style: decimal;
  margin-left: -13px;
}

section.term-content ul,
section.term-content ul li {
  list-style: disc;
  margin-left: 9px;
}
/*# sourceMappingURL=main.css.map */