@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/*-------------------------------------------------------------------------------*/
/*    $Base                                                                      */
/*-------------------------------------------------------------------------------*/
body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  background: black;
}
body.search-active {
  background: black;
}
@media (min-width: 1200px) {
  body {
    background: black;
  }
  body.search-active {
    background: black;
  }
}
body.no-select {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 100vh;
  overflow: hidden;
}
body.no-select > div {
  -webkit-filter: blur(7px);
          filter: blur(7px);
  -webkit-transition: all 0.3s ease-in-out 0.5s;
  transition: all 0.3s ease-in-out 0.5s;
}

html, body, form {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1920px) {
  html, body, form {
    background-size: 100%;
  }
}

img {
  vertical-align: middle;
}

input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
a:focus {
  outline: 0;
}

*::-moz-selection {
  background-color: rgb(255, 247.6428571429, 152);
  color: black;
}

*::selection {
  background-color: rgb(255, 247.6428571429, 152);
  color: black;
}
* {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#loader {
  -webkit-animation: show_img;
          animation: show_img;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
#loader img {
  max-width: 200px;
}

@-webkit-keyframes show_img {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes show_img {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*-------------------------------------------------------------------------------*/
/*    $Grid                                                                      */
/*-------------------------------------------------------------------------------*/
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.container::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 576px) {
  .container {
    width: 546px;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 728px;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 952px;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1168px;
    max-width: 100%;
  }
}
@media (min-width: 1560px) {
  .container {
    width: 1520px;
    max-width: 100%;
  }
}
@media (min-width: 1800px) {
  .container {
    width: 1760px;
    max-width: 100%;
  }
}

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.container-fluid::after {
  content: "";
  display: table;
  clear: both;
}

/*-------------------------------------------------------------------------------*/
/*    $Navigation                                                                */
/*-------------------------------------------------------------------------------*/
.wmpa-navigation {
  position: fixed;
  z-index: 3;
  top: 79px;
  width: 100%;
  height: calc(100% - 79px);
  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;
  background: rgba(0, 0, 0, 0.85);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media (min-width: 768px) {
  .wmpa-navigation {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.wmpa-navigation.mobile-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.wmpa-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 0 2rem;
  margin-top: -50px;
}
@media (min-width: 768px) {
  .wmpa-navigation ul {
    margin-top: 0;
  }
}
.wmpa-navigation li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 0;
}
.wmpa-navigation li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.wmpa-navigation li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 22px;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "Jost", sans-serif;
}
.wmpa-navigation li a.active {
  color: #d61217;
}
.wmpa-navigation li a.enter-now {
  margin-top: 1rem;
  width: initial;
  border: 1px solid #d61217;
  color: #d61217;
  border-radius: 12px;
}
.wmpa-navigation li a.enter-now:hover {
  color: rgba(255, 255, 255, 0.85);
  background: #d61217;
}

@media (min-width: 1200px) {
  .wmpa-navigation {
    -webkit-transform: none;
            transform: none;
    top: 48px;
    right: 80px;
    background: none;
    height: initial;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .wmpa-navigation.sticky {
    top: -95px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .wmpa-navigation ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 0;
  }
  .wmpa-navigation li {
    border: 0 !important;
  }
  .wmpa-navigation li a {
    padding: 1rem 1.5rem;
    font-size: 16px;
    pointer-events: auto;
  }
  .wmpa-navigation li a:hover {
    color: #d61217;
  }
  .wmpa-navigation li a.enter-now {
    margin: 0 0 0 1.5rem;
    border-radius: 10px;
  }
}
@media (min-width: 1560px) {
  .wmpa-navigation {
    top: 72px;
    right: 100px;
  }
  .wmpa-navigation li a {
    font-size: 18px;
  }
  .wmpa-navigation.sticky {
    top: -95px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
/*-------------------------------------------------------------------------------*/
/*    $Header                                                                    */
/*    A.主要框架                                                                  */
/*    B.行動版HEADER                                                              */
/*-------------------------------------------------------------------------------*/
.header-wrapper {
  position: fixed;
  z-index: 2;
  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;
  height: 80px;
  width: 100%;
  background: black;
}
.header-logo {
  width: 220px;
  cursor: pointer;
}

.cart-num {
  position: absolute;
  right: 0.5rem;
  top: 26px;
  width: 54px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.cart-num svg {
  width: 28px;
}
.cart-num .st0 {
  fill: #FFFFFF;
}
.cart-num span {
  position: absolute;
  left: 32px;
  top: 11px;
  color: white;
  font-family: 1em;
  font-size: 14px;
}

@media (min-width: 1200px) {
  .header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: initial;
    padding: 2.5rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header-wrapper.sticky {
    top: -140px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header-logo {
    width: 400px;
  }
  .header-logo.sticky {
    top: -140px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .cart-num {
    top: 68px;
    right: 2rem;
  }
  .cart-num span {
    color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .cart-num svg {
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .cart-num:hover svg .st0 {
    fill: #d61217;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .cart-num:hover span {
    color: #d61217;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 1560px) {
  .header-wrapper {
    padding: 2.5rem;
  }
  .header-wrapper.sticky {
    top: -169px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header-logo {
    width: 600px;
    margin-left: 2rem;
  }
  .cart-num {
    top: 96px;
    right: 3rem;
  }
}
/*-------------------------------------------------------------------------------*/
/*    B.行動版HEADER                                                              */
/*    1.基本HEADER框架                                                            */
/*-------------------------------------------------------------------------------*/
.mobile-toggler {
  position: absolute;
  top: 16px;
  left: 22px;
  width: 37px;
  height: 48px;
  clip-path: inset(0 0% 0 0);
}
@media (min-width: 1200px) {
  .mobile-toggler {
    display: none;
  }
}
.mobile-toggler .hamburger {
  position: relative;
  top: 50%;
  width: 100%;
  height: 1px;
  background: white;
}
.mobile-toggler .hamburger:before, .mobile-toggler .hamburger:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: white;
}
.mobile-toggler .hamburger:before {
  top: -9px;
}
.mobile-toggler .hamburger:after {
  bottom: -9px;
}
.mobile-toggler.active {
  -webkit-animation: show_hamburger 1s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0s;
          animation: show_hamburger 1s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0s;
}
.mobile-toggler.active .hamburger {
  background: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.1s ease-in-out 0.6s;
  transition: all 0.1s ease-in-out 0.6s;
}
.mobile-toggler.active .hamburger:before {
  -webkit-animation: show_before 1s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.3s;
          animation: show_before 1s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.3s;
}
.mobile-toggler.active .hamburger:after {
  -webkit-animation: show_after 0.7s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.4s;
          animation: show_after 0.7s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.4s;
}

@-webkit-keyframes show_hamburger {
  0% {
    clip-path: inset(0 0% 0 0);
  }
  40% {
    clip-path: inset(0 100% 0 0);
  }
  70% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}

@keyframes show_hamburger {
  0% {
    clip-path: inset(0 0% 0 0);
  }
  40% {
    clip-path: inset(0 100% 0 0);
  }
  70% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
@-webkit-keyframes show_before {
  0% {
    top: -10px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  40% {
    top: -10px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  70% {
    top: 50%;
    clip-path: inset(0 100% 0 0);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  100% {
    top: 50%;
    clip-path: inset(0 0% 0 0);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@keyframes show_before {
  0% {
    top: -10px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  40% {
    top: -10px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  70% {
    top: 50%;
    clip-path: inset(0 100% 0 0);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  100% {
    top: 50%;
    clip-path: inset(0 0% 0 0);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@-webkit-keyframes show_after {
  0% {
    bottom: -10px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  40% {
    bottom: -10px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  70% {
    bottom: unset;
    top: 50%;
    clip-path: inset(0 0 0 100%);
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  100% {
    bottom: unset;
    top: 50%;
    clip-path: inset(0 0 0 0%);
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
}
@keyframes show_after {
  0% {
    bottom: -10px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  40% {
    bottom: -10px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  70% {
    bottom: unset;
    top: 50%;
    clip-path: inset(0 0 0 100%);
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  100% {
    bottom: unset;
    top: 50%;
    clip-path: inset(0 0 0 0%);
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
}
/*-------------------------------------------------------------------------------*/
/*    $footer                                                                    */
/*-------------------------------------------------------------------------------*/
.footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  line-height: 2;
}
.footer-content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.footer-content .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 1rem 0;
}
.footer-content .copyright a {
  color: white;
}
.footer-content .copyright a:hover {
  color: #fff465;
}
@media (min-width: 576px) {
  .footer-content {
    padding: 5rem;
  }
}
@media (min-width: 1200px) {
  .footer-content {
    max-width: 1200px;
    padding: 7rem 5rem;
  }
}
@media (min-width: 1560px) {
  .footer-content {
    max-width: 1550px;
  }
}
.footer-link {
  color: #fff465 !important;
}

@media (min-width: 1200px) {
  .footer-content {
    margin: 1rem auto;
  }
  .footer-content .copyright {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
/*-------------------------------------------------------------------------------*/
/*    $Main                                                                      */
/*    1.mainbanner                                                               */
/*    2.main(主版、標題、文字、樣式)                                               */
/*-------------------------------------------------------------------------------*/
.mainbanner-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}
.mainbanner-wrapper figure {
  position: relative;
  width: 100%;
  overflow: hidden;
  will-change: transform; /* 通知瀏覽器優化渲染 */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* 觸發硬體加速 */
}
.mainbanner-wrapper figure:before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
@media (min-width: 1200px) {
  .mainbanner-wrapper figure:before {
    padding-top: 29.1%;
  }
}
.mainbanner-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* 防止 iOS 重繪 */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* 觸發硬體加速 */
}
.mainbanner-slogan {
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 2;
  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;
  width: 100%;
  height: calc(100% - 80px);
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.75));
          filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.75));
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mainbanner-slogan img {
  position: relative;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  width: 80%;
  max-width: 740px;
}

.no-banner {
  height: 80px;
}

@media (min-width: 1200px) {
  .mainbanner-wrapper {
    padding-top: 140px;
  }
  .mainbanner-slogan {
    top: 140px;
    height: calc(100% - 140px);
  }
  .no-banner {
    height: 140px;
  }
}
.main-wrapper.gray {
  background: #1a1a1a;
}
.main-wrapper.gray2 {
  background: #333333;
}
.main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 2.625em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.main-content {
  margin: 0 auto;
  padding: 4rem 2rem;
  color: white;
  line-height: 2;
}
@media (min-width: 576px) {
  .main-content {
    padding: 5rem;
  }
}
@media (min-width: 1200px) {
  .main-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    max-width: 1080px;
    text-align: justify;
  }
}
.main-subtitle {
  font-family: "Jost", sans-serif;
  font-size: 2em;
}
@media (min-width: 576px) {
  .main-subtitle {
    font-size: 2.25em;
  }
}
@media (min-width: 1200px) {
  .main-subtitle {
    font-size: 2.625em;
  }
}
@media (min-width: 1560px) {
  .main-subtitle {
    font-size: 3.15em;
  }
}
.main-tertiary {
  font-family: "Jost", sans-serif;
  font-size: 1.875em;
}
@media (min-width: 576px) {
  .main-tertiary {
    font-size: 2em;
  }
}
.main-space {
  height: 32px;
}

.main-text ol {
  padding: 1em 0 1em 1em;
  list-style: decimal;
}
.main-text ol.a {
  list-style-type: decimal;
}
.main-text ol.b {
  list-style-type: decimal-leading-zero;
}
.main-text ol.c {
  list-style-type: lower-alpha;
}
.main-text ol.d {
  list-style-type: upper-alpha;
}
.main-text ol.e {
  list-style-type: lower-roman;
}
.main-text ol.f {
  list-style-type: upper-roman;
}
.main-text ol.g {
  list-style-type: cjk-ideographic;
}
.main-text ol.h {
  list-style-type: hiragana;
}
.main-text ol.l {
  list-style-type: hiragana-iroha;
}
.main-text ol.i {
  list-style-type: katakana;
}
.main-text ol.j {
  list-style-type: katakana-iroha;
}
.main-text ol.k {
  list-style-type: lower-greek;
}

.main-text ul {
  padding: 1em 0 1em 1em;
  list-style: disc;
}
.main-text ul.a {
  list-style-type: disc;
}
.main-text ul.b {
  list-style-type: circle;
}
.main-text ul.c {
  list-style-type: square;
}

/*-------------------------------------------------------------------------------*/
/*    $Sidebar                                                                    */
/*-------------------------------------------------------------------------------*/
.sidebar {
  position: fixed;
  z-index: 9;
  right: 1.75rem;
  bottom: 1.75rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: FadeInTop 0.5s ease-in-out 3.3s forwards;
          animation: FadeInTop 0.5s ease-in-out 3.3s forwards;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.sidebar.hide {
  -webkit-animation: none;
          animation: none;
  opacity: 0 !important;
  pointer-events: none;
}
.sidebar a {
  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;
  width: 100%;
  height: 100%;
  margin-top: 10px;
  background: black;
  color: #fff;
  overflow: hidden;
  border-radius: 99em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar a.line {
  background: #399B4A;
}
.sidebar a.fb {
  background: #3A5883;
}

@-webkit-keyframes FadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes FadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.progress-wrap {
  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;
  margin-top: 10px;
  padding: 3px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.75;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: url(./../images/sidebar.svg) no-repeat center center/contain;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap svg {
  position: relative;
  z-index: 2;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.ct-form {
  margin-bottom: 3rem;
}
.ct-form ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ct-form li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (min-width: 992px) {
  .ct-form li {
    padding: 0;
  }
  .ct-form li.ct-always {
    width: 100%;
  }
  .ct-form li:nth-child(2), .ct-form li:nth-child(4) {
    position: relative;
  }
  .ct-form li:nth-child(2) .ct-group label, .ct-form li:nth-child(4) .ct-group label {
    position: relative;
  }
}
.ct-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ct-form ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ct-form ul:nth-child(2) {
  -webkit-box-flex: 1.35;
      -ms-flex: 1.35;
          flex: 1.35;
}
.ct-group {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 4px);
  margin: 10px 2px;
}
.ct-group label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.75rem;
  color: white;
}
@media (min-width: 1200px) {
  .ct-group label {
    position: static;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 0 1.5rem 0 0;
  }
  .ct-group label.required:before {
    top: 25px;
    left: 15px;
  }
}
.ct-half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
}
.ct-half span {
  padding: 5px;
}
@media (min-width: 768px) {
  .ct-half {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.ct-input {
  width: 100%;
  max-width: 100%;
  height: 46px;
  padding: 0.85rem;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #f7f9fc;
}
.ct-input::-webkit-input-placeholder {
  color: rgb(154.2727272727, 179.4545454545, 217.2272727273);
}
.ct-input::-moz-placeholder {
  color: rgb(154.2727272727, 179.4545454545, 217.2272727273);
}
.ct-input:-ms-input-placeholder {
  color: rgb(154.2727272727, 179.4545454545, 217.2272727273);
}
.ct-input::-ms-input-placeholder {
  color: rgb(154.2727272727, 179.4545454545, 217.2272727273);
}
.ct-input::placeholder {
  color: rgb(154.2727272727, 179.4545454545, 217.2272727273);
}
.ct-input {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ct-input:focus {
  color: black;
  outline: 2px solid #7da6eb;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .ct-input {
    font-size: 1em;
  }
}
.ct-input {
  background: white;
}
.ct-input[readonly] {
  background: #e5e7eb;
}
.ct-input[readonly]:focus {
  outline: 2px solid #e2e2e2;
}
.ct-input[type=datetime-local] {
  height: 46px;
}
.ct-input[type=radio], .ct-input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.ct-input[type=radio] + label, .ct-input[type=checkbox] + label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  margin: 0 0 0 1rem;
  line-height: 1.375;
  cursor: pointer;
}
.ct-input[type=radio] + label:before, .ct-input[type=radio] + label:after, .ct-input[type=checkbox] + label:before, .ct-input[type=checkbox] + label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 5px;
}
.ct-input[type=radio] + label:after, .ct-input[type=checkbox] + label:after {
  left: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.ct-input[type=radio]:checked + label:after, .ct-input[type=checkbox]:checked + label:after {
  background: black;
}
.ct-select {
  width: 100%;
  padding: 0.85rem 2.5rem 0.85rem 0.85rem;
  border: 0;
  height: 46px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../images/select-arrow.svg) no-repeat center right 1.25rem white;
  color: #4d4d4d;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .ct-select {
    font-size: 1em;
  }
}
.ct-select:focus {
  outline: 2px solid #f0f4fd;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ct-textarea {
  padding: 0.95rem;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f7f9fc;
  outline: 0;
}
.ct-textarea::-webkit-input-placeholder {
  color: rgb(154.2727272727, 179.4545454545, 217.2272727273);
}
.ct-textarea::-moz-placeholder {
  color: rgb(154.2727272727, 179.4545454545, 217.2272727273);
}
.ct-textarea:-ms-input-placeholder {
  color: rgb(154.2727272727, 179.4545454545, 217.2272727273);
}
.ct-textarea::-ms-input-placeholder {
  color: rgb(154.2727272727, 179.4545454545, 217.2272727273);
}
.ct-textarea::placeholder {
  color: rgb(154.2727272727, 179.4545454545, 217.2272727273);
}
.ct-textarea:focus {
  outline: 2px solid #f0f4fd;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .ct-textarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
.ct-textarea {
  min-height: 180px;
  background: white;
}
.ct-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 0;
  margin: 0 auto;
}
.ct-submit button, .ct-submit a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: inherit;
      align-content: inherit;
  line-height: 1.2;
  margin: 10px;
  padding: 1.25rem 1rem;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: black;
  color: white;
  font-size: 1rem;
}
.ct-submit button:hover, .ct-submit a:hover {
  background: #333333;
}
@media (min-width: 1200px) {
  .ct-submit button, .ct-submit a {
    padding: 1.5rem;
  }
}
.ct-submit button {
  background: #333333;
}
.ct-submit button span {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 150px;
}
.ct-submit button span:before, .ct-submit button span:after {
  content: "";
  position: absolute;
}
.ct-submit button span:before {
  right: 0;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 4px;
}
.ct-submit button span:after {
  right: 5px;
  top: calc(50% - 4px);
  width: 6px;
  height: 6px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (min-width: 1200px) {
  .ct-submit button span {
    min-width: 200px;
  }
}
.ct-sendto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -0.5rem;
}
.ct-sendto button, .ct-sendto a {
  position: relative;
  z-index: 0;
  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;
  width: 100%;
  height: 58px;
  margin: 2rem 0.5rem 0;
  padding: 0 20px 0 0;
  background: white;
  color: #7da6eb;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: auto !important;
  border: 1px solid #7da6eb;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.ct-sendto button span, .ct-sendto a span {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.ct-sendto button i svg, .ct-sendto a i svg {
  position: absolute;
  top: calc(50% - 7px);
  right: 1rem;
  height: 16px;
  top: calc(50% - 11px);
  height: 21px;
}
.ct-sendto button i .st0, .ct-sendto a i .st0 {
  fill: #7da6eb;
}
.ct-sendto button:hover, .ct-sendto a:hover {
  background: #333333;
  border-color: #333333;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ct-sendto button:hover span, .ct-sendto a:hover span {
  color: white;
}
.ct-sendto button:hover i svg .st0, .ct-sendto a:hover i svg .st0 {
  fill: white;
}
@media (min-width: 1200px) {
  .ct-sendto {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ct-sendto button, .ct-sendto a {
    margin: 0 0.5rem;
    min-width: 160px;
  }
}

/*-------------------------------------------------------------------------------*/
/*    $banner                                                                  */
/*-------------------------------------------------------------------------------*/
.banner-wrapper {
  position: relative;
  z-index: 1;
}
.banner-wrapper figure {
  position: relative;
  width: 100%;
  overflow: hidden;
  will-change: transform; /* 通知瀏覽器優化渲染 */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* 觸發硬體加速 */
}
.banner-wrapper figure:before {
  display: block;
  content: "";
  padding-top: 100%;
}
@media (min-width: 1200px) {
  .banner-wrapper figure:before {
    padding-top: 56.25%;
  }
}
.banner-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* 防止 iOS 重繪 */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* 觸發硬體加速 */
}
.banner-enter {
  position: absolute;
  bottom: 15%;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.75));
          filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.75));
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.banner-enter a {
  position: absolute;
  width: 30%;
  height: 33%;
  background: #ffc107;
  font-size: 0rem;
  opacity: 0;
}
@media (min-width: 576px) {
  .banner-enter a {
    height: 35%;
  }
}
.banner-enter img {
  position: relative;
  pointer-events: none;
}
@media (min-width: 1560px) {
  .banner-enter img {
    max-width: 1600px;
  }
}

@media (min-width: 1200px) {
  .banner-wrapper {
    padding-top: 139px;
    overflow: hidden;
  }
  .banner-enter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: 10%;
  }
}
/*-------------------------------------------------------------------------------*/
/*    $introduction                                                              */
/*-------------------------------------------------------------------------------*/
.introduction-content {
  padding: 4rem 2rem;
  color: white;
  line-height: 2;
}
@media (min-width: 576px) {
  .introduction-content {
    padding: 5rem;
  }
}
@media (min-width: 1200px) {
  .introduction-content {
    padding: 5rem;
    max-width: 980px;
    margin: 0 auto;
  }
}

/*-------------------------------------------------------------------------------*/
/*    $category                                                                  */
/*-------------------------------------------------------------------------------*/
.category-box:nth-child(even) .category-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1200px) {
  .category-box:nth-child(even) .category-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .category-box:nth-child(even) .category-content .category-inner {
    padding-left: 0;
  }
}
.category-box:nth-child(odd) {
  background: #333333;
}
@media (min-width: 1200px) {
  .category-box:nth-child(odd) .category-inner {
    padding-right: 0;
  }
}
.category-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 0;
  background: #333333;
  color: white;
  font-family: "Jost", sans-serif;
  font-size: 2.625em;
  font-weight: 600;
}
.category-content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: white;
  line-height: 2;
}
@media (min-width: 576px) {
  .category-content {
    padding: 5rem;
  }
}
@media (min-width: 1200px) {
  .category-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    max-width: 1200px;
  }
}
@media (min-width: 1560px) {
  .category-content {
    max-width: 1550px;
  }
}
.category-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.category-subtit {
  font-family: "Jost", sans-serif;
  font-size: 2em;
}
@media (min-width: 576px) {
  .category-subtit {
    font-size: 2.25em;
  }
}
@media (min-width: 1200px) {
  .category-subtit {
    font-size: 2.625em;
  }
}
@media (min-width: 1560px) {
  .category-subtit {
    font-size: 3.15em;
  }
}
.category-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 1rem 0;
}
.category-img figure {
  position: relative;
  width: 100%;
  overflow: hidden;
  will-change: transform; /* 通知瀏覽器優化渲染 */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* 觸發硬體加速 */
}
.category-img figure:before {
  display: block;
  content: "";
  padding-top: 75%;
}
.category-img img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* 防止 iOS 重繪 */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* 觸發硬體加速 */
}
.category-img.ty-a figure:before {
  padding-top: 75%;
}
.category-img.ty-b figure:before {
  padding-top: 133.5%;
}

@media (min-width: 1200px) {
  .category-title {
    font-size: 3.9375em;
    font-weight: 500;
  }
  .category-img {
    margin: 0;
  }
  .category-img.ty-a {
    max-width: 530px;
  }
  .category-img.ty-b {
    max-width: 412px;
  }
  .category-inner {
    max-width: 940px;
    margin-top: -3rem;
    padding: 0 5rem;
  }
}
/*-------------------------------------------------------------------------------*/
/*    $Enter Now                                                                 */
/*-------------------------------------------------------------------------------*/
.enter-wrapper {
  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;
  padding: 5rem 2rem;
  background: url(./../images/enter-bg.jpg) no-repeat center center/cover;
}
.enter-wrapper a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 1rem 2rem;
  font-family: "Jost", sans-serif;
  background: #d61217;
  color: white;
  font-weight: 500;
  border-radius: 0.5rem;
  font-size: 1.5em;
}
@media (min-width: 576px) {
  .enter-wrapper {
    padding: 8rem 2rem;
  }
}
@media (min-width: 1200px) {
  .enter-wrapper {
    min-height: 460px;
    padding: 0 2rem;
  }
  .enter-wrapper a {
    font-size: 2em;
    border-radius: 0.875rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .enter-wrapper a:hover {
    -webkit-filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.5));
            filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.5));
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 1560px) {
  .enter-wrapper {
    min-height: 560px;
  }
  .enter-wrapper a {
    padding: 1.25rem 3rem;
    font-size: 2.25em;
  }
}

/*-------------------------------------------------------------------------------*/
/*  $subscribe                                                                   */
/*-------------------------------------------------------------------------------*/
.subscribe-wrapper {
  background: #333333;
  color: white;
  line-height: 2;
}
.subscribe-content {
  margin: 0 auto;
  padding: 4rem 2rem;
}
@media (min-width: 576px) {
  .subscribe-content {
    padding: 5rem;
  }
}
@media (min-width: 1200px) {
  .subscribe-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1200px;
    padding: 7rem 5rem;
  }
}
@media (min-width: 1560px) {
  .subscribe-content {
    max-width: 1550px;
  }
}
.subscribe-title {
  margin-top: -1rem;
  font-family: "Jost", sans-serif;
  font-size: 2em;
}
@media (min-width: 576px) {
  .subscribe-title {
    font-size: 2.25em;
  }
}
@media (min-width: 1200px) {
  .subscribe-title {
    font-size: 2.625em;
  }
}
@media (min-width: 1560px) {
  .subscribe-title {
    font-size: 3.15em;
  }
}
.subscribe-formdata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}
.subscribe-formdata input {
  padding: 10px 15px;
  margin: 5px 0;
  background: rgba(51, 51, 51, 0);
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  color: white;
}
.subscribe-formdata input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.subscribe-formdata input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.subscribe-formdata input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.subscribe-formdata input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.subscribe-formdata input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.subscribe-formdata input:focus {
  outline: 1px solid white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.subscribe-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.subscribe-bottom button {
  min-width: 180px;
  padding: 10px 25px;
  margin: 0 0 1rem;
  background: #d61217;
  color: white;
  font-family: "Jost", sans-serif;
  font-size: 1.25rem;
  border: 0;
  border-radius: 5px;
}
.subscribe-bottom p {
  font-size: 0.575rem;
}

@media (min-width: 1200px) {
  .subscribe-title {
    margin: 0 5rem 0 0;
  }
  .subscribe-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .subscribe-formdata {
    -webkit-box-flex: 1.25;
        -ms-flex: 1.25;
            flex: 1.25;
    margin: 0 5rem 0 0;
  }
  .subscribe-formdata input {
    padding: 12px 15px;
  }
  .subscribe-bottom {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 5px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .subscribe-bottom button {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }
  .subscribe-bottom p {
    font-size: 0.575rem;
  }
}
@media (min-width: 1560px) {
  .subscribe-title {
    margin-right: 8rem;
  }
  .subscribe-formdata {
    margin-right: 8rem;
  }
}
/*-------------------------------------------------------------------------------*/
/*    $competition                                                               */
/*-------------------------------------------------------------------------------*/
.competition-awards {
  padding: 2rem 0;
}
@media (min-width: 1200px) {
  .competition-awards {
    margin: 0 -2rem;
  }
}

/*-------------------------------------------------------------------------------*/
/*    $Enter Now                                                                 */
/*-------------------------------------------------------------------------------*/
.enter-competition {
  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;
  padding: 5rem 2rem;
  background: url(./../images/enter-bg2.jpg) no-repeat center center/cover;
}
.enter-competition a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 1rem 2rem;
  font-family: "Jost", sans-serif;
  background: #d61217;
  color: white;
  font-weight: 500;
  border-radius: 0.5rem;
  font-size: 1.5em;
}
@media (min-width: 576px) {
  .enter-competition {
    padding: 8rem 2rem;
  }
}
@media (min-width: 1200px) {
  .enter-competition {
    min-height: 460px;
    padding: 0 2rem;
  }
  .enter-competition a {
    font-size: 2em;
    border-radius: 0.875rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .enter-competition a:hover {
    -webkit-filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.5));
            filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.5));
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media (min-width: 1560px) {
  .enter-competition {
    min-height: 560px;
  }
  .enter-competition a {
    padding: 1.25rem 3rem;
    font-size: 2.25em;
  }
}

/*-------------------------------------------------------------------------------*/
/*    $FAQ                                                                      */
/*-------------------------------------------------------------------------------*/
.faq-wrapper {
  counter-reset: num;
}
.faq-item {
  margin: 1rem 0;
}
.faq-item .qs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 1.5rem;
  background: #666666;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all linear 0.75s;
  transition: all linear 0.75s;
}
.faq-item .qs:before {
  counter-increment: num;
  content: counter(num) ". ";
}
.faq-item .qs:hover {
  background: #d61217;
}
.faq-item .ans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1.5rem;
  will-change: clip-path; /* 通知瀏覽器優化渲染 */
  clip-path: inset(0 0 100% 0); /* 觸發硬體加速 */
  height: 0;
  overflow: hidden;
  -webkit-transition: all linear 0.75s;
  transition: all linear 0.75s;
}
.faq-item.active .qs {
  background: #d61217;
  -webkit-transition: all linear 0.75s;
  transition: all linear 0.75s;
}
.faq-item.active .ans {
  padding: 1rem 1.5rem;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* 防止 iOS 重繪 */
  clip-path: inset(0 0 0% 0); /* 觸發硬體加速 */
  -webkit-transition: all linear 0.75s;
  transition: all linear 0.75s;
}

/*-------------------------------------------------------------------------------*/
/*    $account                                                                   */
/*    0.account                                                                  */
/*    1.login                                                                    */
/*-------------------------------------------------------------------------------*/
@media (min-width: 1200px) {
  .account-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .account-wrapper .login-box, .account-wrapper .register-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 1rem 2rem;
  }
}

.login-box, .register-box {
  margin: 10px 0;
}
.login-box label, .register-box label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 58px;
  margin: 5px;
  padding-left: 30px;
  cursor: pointer;
}
.login-box label span:before, .register-box label span:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  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;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.login-box label input, .register-box label input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.login-box label input:checked + span:before, .register-box label input:checked + span:before {
  content: "✓";
}
.login-box label:hover, .register-box label:hover {
  color: #d61217;
}
.login-box label:hover span:before, .register-box label:hover span:before {
  border-color: #d61217;
}
.login-group, .register-group {
  position: relative;
}
.login-group input[type=text], .login-group input[type=password], .register-group input[type=text], .register-group input[type=password] {
  width: 100%;
  padding: 15px 15px;
  margin: 5px 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0 !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: white;
}
.login-group input[type=text]::-webkit-input-placeholder, .login-group input[type=password]::-webkit-input-placeholder, .register-group input[type=text]::-webkit-input-placeholder, .register-group input[type=password]::-webkit-input-placeholder {
  color: white;
}
.login-group input[type=text]::-moz-placeholder, .login-group input[type=password]::-moz-placeholder, .register-group input[type=text]::-moz-placeholder, .register-group input[type=password]::-moz-placeholder {
  color: white;
}
.login-group input[type=text]:-ms-input-placeholder, .login-group input[type=password]:-ms-input-placeholder, .register-group input[type=text]:-ms-input-placeholder, .register-group input[type=password]:-ms-input-placeholder {
  color: white;
}
.login-group input[type=text]::-ms-input-placeholder, .login-group input[type=password]::-ms-input-placeholder, .register-group input[type=text]::-ms-input-placeholder, .register-group input[type=password]::-ms-input-placeholder {
  color: white;
}
.login-group input[type=text]::placeholder, .login-group input[type=password]::placeholder, .register-group input[type=text]::placeholder, .register-group input[type=password]::placeholder {
  color: white;
}
.login-group input[type=text]:focus, .login-group input[type=password]:focus, .register-group input[type=text]:focus, .register-group input[type=password]:focus {
  outline: 1px solid #d61217;
  border: 1px solid #d61217;
  color: white;
}
.login-group input[type=text]:focus::-webkit-input-placeholder, .login-group input[type=password]:focus::-webkit-input-placeholder, .register-group input[type=text]:focus::-webkit-input-placeholder, .register-group input[type=password]:focus::-webkit-input-placeholder {
  color: #d61217;
}
.login-group input[type=text]:focus::-moz-placeholder, .login-group input[type=password]:focus::-moz-placeholder, .register-group input[type=text]:focus::-moz-placeholder, .register-group input[type=password]:focus::-moz-placeholder {
  color: #d61217;
}
.login-group input[type=text]:focus:-ms-input-placeholder, .login-group input[type=password]:focus:-ms-input-placeholder, .register-group input[type=text]:focus:-ms-input-placeholder, .register-group input[type=password]:focus:-ms-input-placeholder {
  color: #d61217;
}
.login-group input[type=text]:focus::-ms-input-placeholder, .login-group input[type=password]:focus::-ms-input-placeholder, .register-group input[type=text]:focus::-ms-input-placeholder, .register-group input[type=password]:focus::-ms-input-placeholder {
  color: #d61217;
}
.login-group input[type=text]:focus::placeholder, .login-group input[type=password]:focus::placeholder, .register-group input[type=text]:focus::placeholder, .register-group input[type=password]:focus::placeholder {
  color: #d61217;
}
.login-btn .btn, .register-btn .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 15px;
  margin: 5px 0;
  background: #d61217;
  color: white;
  font-family: "Jost", sans-serif;
  outline: none;
  border: 0;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.login-group .icon-eye {
  position: absolute;
  right: 10px;
  top: 15px;
  width: 34px;
  height: 33px;
  background: url(../images/icon-eye.svg) no-repeat center center;
}
.login-group .icon-eye:hover {
  cursor: pointer;
}
.login-group .icon-eye.codeshow {
  background: url(../images/icon-eye-close.svg) no-repeat center center;
}
.login-group input {
  padding-right: 50px !important;
}
.login-lost a {
  color: #d61217;
  font-family: "Jost", sans-serif;
  font-size: 1.25em;
}

/*-------------------------------------------------------------------------------*/
/*    $Entry                                                                    */
/*-------------------------------------------------------------------------------*/
.entry-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "Jost", sans-serif;
}
.entry-top h3 {
  margin: 0 1rem;
}
@media (min-width: 1200px) {
  .entry-top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.entry-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1rem 0;
}
@media (min-width: 1200px) {
  .entry-box {
    margin: 0 -2rem;
  }
}
.entry-box .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem;
  width: calc(50% - 2rem);
  background: url(./../images/item-bg.png) no-repeat center center/contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (min-width: 576px) {
  .entry-box .item {
    width: calc(50% - 2rem);
  }
}
@media (min-width: 768px) {
  .entry-box .item {
    width: calc(33.333% - 2rem);
  }
}
@media (min-width: 1200px) {
  .entry-box .item {
    margin: 2rem;
    width: calc(33.333% - 4rem);
  }
}
.entry-box .item:hover {
  -webkit-filter: drop-shadow(0 0 10px rgba(255, 244, 101, 0.85));
          filter: drop-shadow(0 0 10px rgba(255, 244, 101, 0.85));
}