@charset "UTF-8";
/*===== base =====*/
/* -------------
    $ 變數
------------- */
/* ---------------------------------
    import font & font-face & 字形
------------------------------------ */
/* import font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Rubik+Mono+One&display=swap");
/* font-face */
/* 特殊字形 */
.SamsungSharpSans {
  font-family: SamsungSharpSans, Noto Sans TC, microsoft jhenghei, 微軟正黑體, Helvetica Neue, Helvetica, Arial, sans-serif;
}

/* -------------
     mixin
------------- */
/* -------------
    function
------------- */
.example {
  font-size: 1.5em;
  padding: 0.5em;
}

/*
*******************************************************************************************************************************
----------  RESET
*******************************************************************************************************************************
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (max-width: 768px) {
  .example {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .example {
    font-size: 16px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1200px) {
  .example {
    font-size: 24px;
  }
}

/* -------------
    keyframes
------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-3.125rem);
            transform: translateY(-3.125rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-3.125rem);
            transform: translateY(-3.125rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes navFixed {
  0% {
    -webkit-transform: translateX(-50%) translateY(-100%);
            transform: translateX(-50%) translateY(-100%);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
@keyframes navFixed {
  0% {
    -webkit-transform: translateX(-50%) translateY(-100%);
            transform: translateX(-50%) translateY(-100%);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
@-webkit-keyframes buttonAni {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes buttonAni {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@-webkit-keyframes aniDollshow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(12.5rem) scale(0);
            transform: translateY(12.5rem) scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes aniDollshow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(12.5rem) scale(0);
            transform: translateY(12.5rem) scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes aniDollshow2 {
  0% {
    opacity: 0;
    -webkit-transform: rotate(20deg) translateY(12.5rem) scale(0);
            transform: rotate(20deg) translateY(12.5rem) scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(20deg) translateY(0) scale(1);
            transform: rotate(20deg) translateY(0) scale(1);
  }
}
@keyframes aniDollshow2 {
  0% {
    opacity: 0;
    -webkit-transform: rotate(20deg) translateY(12.5rem) scale(0);
            transform: rotate(20deg) translateY(12.5rem) scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(20deg) translateY(0) scale(1);
            transform: rotate(20deg) translateY(0) scale(1);
  }
}
@-webkit-keyframes aniDollsResult {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    width: 15.1875rem;
    top: 9.375rem;
    margin-left: -18.75rem;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    width: 15.1875rem;
    top: 9.375rem;
    margin-left: -18.75rem;
  }
}
@keyframes aniDollsResult {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    width: 15.1875rem;
    top: 9.375rem;
    margin-left: -18.75rem;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    width: 15.1875rem;
    top: 9.375rem;
    margin-left: -18.75rem;
  }
}
@-webkit-keyframes aniDollsResultM {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    width: 15.625rem;
    top: 11.25rem;
    margin-left: -16.875rem;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    width: 15.625rem;
    top: 11.25rem;
    margin-left: -16.875rem;
  }
}
@keyframes aniDollsResultM {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  20% {
    width: 15.625rem;
    top: 11.25rem;
    margin-left: -16.875rem;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    width: 15.625rem;
    top: 11.25rem;
    margin-left: -16.875rem;
  }
}
/* -------------
    ALL USE
------------- */
/* html & body
-------------------*/
html, body {
  width: 100%;
  font-family: "SamsungSharpSans", "SamsungOneTCN 450", "Noto Sans", "微軟正黑體", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "新細明體", "蘋果儷黑體", Verdana, sans-serif;
  font-size: 16px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  html, body {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 2.1333333333vw;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  overflow-x: hidden;
}

/* 其他通用設定
-------------------*/
img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  display: block;
  text-decoration: none;
}

.c {
  clear: both;
}

.table {
  display: table;
}

.tr {
  display: table-row;
}

.th,
.td {
  display: table-cell;
  vertical-align: middle;
}

.hide {
  display: none !important;
}

.ab {
  position: absolute;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

._m {
  display: none;
}
@media screen and (max-width: 768px) {
  ._m {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  ._pc {
    display: none !important;
  }
}

.autoW {
  width: auto;
}

/*===== 主結構 =====*/
/* loading -----------------------------------------------------------*/
.loading {
  background: #0a419c;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  text-align: center;
  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;
}
.loading .inner {
  display: inline-block;
  vertical-align: middle;
}
.loading .line {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0 5px;
}
@media screen and (max-width: 768px) {
  .loading .line {
    width: 3vw;
    height: 3vw;
  }
}
.loading:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}

.loading .line:nth-last-child(1) {
  -webkit-animation: loadingC 0.6s 0.1s linear infinite;
          animation: loadingC 0.6s 0.1s linear infinite;
}

.loading .line:nth-last-child(2) {
  -webkit-animation: loadingC 0.6s 0.2s linear infinite;
          animation: loadingC 0.6s 0.2s linear infinite;
}

.loading .line:nth-last-child(3) {
  -webkit-animation: loadingC 0.6s 0.3s linear infinite;
          animation: loadingC 0.6s 0.3s linear infinite;
}

@-webkit-keyframes loadingC {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes loadingC {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/* lightbox
--------------------------------------------------------------------------------------*/
.lb {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  text-align: center;
  font-size: 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;
}
.lb:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.lb .btn_x {
  width: 4vw;
  position: absolute;
  top: 2vw;
  right: 2vw;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.lb .btn_x:hover {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lbbox {
  width: 80%;
  margin: auto;
  max-width: 37.375rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
/* -------------
    共用元件
------------- */
.anchor {
  position: relative;
}
.anchor#galaxyfan {
  top: -3.125rem;
}

.sectitle {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sectitle {
    font-size: 4rem;
    text-align: center;
  }
}
.sectitle p {
  display: inline-block;
  position: relative;
}
.sectitle p::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5rem;
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  border-radius: 0.625rem;
}
.sectitle p::before {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
}

.typeMenu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .typeMenu {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.25rem;
    padding: 2vw 0;
  }
}
.typeMenu li {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #898989;
  background-color: #f5f5f5;
  border-radius: 3.125rem;
  padding: 0.9375rem 1.25rem;
  cursor: pointer;
  -webkit-box-shadow: 0 0.3125rem 0.4375rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.3125rem 0.4375rem rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  .typeMenu li {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .typeMenu li {
    font-size: 1.625rem;
    font-weight: normal;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 1.5625rem 1.875rem;
  }
}
.typeMenu li:hover {
  -webkit-box-shadow: 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.typeMenu2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 768px) {
  .typeMenu2 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.typeMenu2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .typeMenu2 ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 1.5vw 0;
    gap: 0.9375rem;
    position: unset;
  }
}
.typeMenu2 li {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000;
  background-color: #f5f5f5;
  border-radius: 0.625rem;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  -webkit-box-shadow: 0 0.3125rem 0.4375rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.3125rem 0.4375rem rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  .typeMenu2 li {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .typeMenu2 li {
    font-size: 1.875rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 0.9375rem 1.875rem;
    border-radius: 1.25rem;
  }
}
.typeMenu2 li:hover {
  -webkit-box-shadow: 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.typeMenu2 li.active {
  -webkit-box-shadow: 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.2);
}
.typeMenu2 .submenu {
  position: absolute;
  top: 4.0625rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .typeMenu2 .submenu {
    top: 7.5rem;
  }
}
.typeMenu2 .submenu dd {
  font-size: 1.125rem;
  color: #000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .typeMenu2 .submenu dd {
    font-size: 1.875rem;
  }
}
.typeMenu2 .submenu dd:hover {
  color: #f19edc;
}
.typeMenu2 .submenu dd:before {
  content: "▶";
  display: inline-block;
  font-size: 0.75rem;
  color: #f19edc;
  vertical-align: middle;
  margin-right: 0.3125rem;
  position: relative;
  top: -0.125rem;
  opacity: 0;
}
.typeMenu2 .submenu dd.active:before {
  opacity: 1;
}

._customScroll .mCSB_inside > .mCSB_container {
  margin-right: 0;
}
._customScroll .mCustomScrollBox {
  overflow: unset;
  overflow-y: clip;
}
._customScroll .mCSB_scrollTools {
  width: 0.25rem;
  right: -1.25rem;
}
@media screen and (max-width: 768px) {
  ._customScroll .mCSB_scrollTools {
    width: 0.5rem;
  }
}
._customScroll .mCSB_scrollTools .mCSB_draggerRail {
  width: 100%;
  background-color: #e4e4e4;
}
._customScroll .mCSB_scrollTools .mCSB_dragger {
  height: 6.25rem;
}
._customScroll .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  border-radius: 0;
  background-color: #bbbbbb;
}

.canvasWrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.canvasWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fixbtn {
  width: 6.25rem;
  position: fixed;
  top: 50%;
  right: 0%;
  z-index: 999;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.fixbtn:hover {
  -webkit-transform: translateY(-8%);
      -ms-transform: translateY(-8%);
          transform: translateY(-8%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .fixbtn {
    width: 8.125rem;
    top: auto;
    bottom: 2%;
  }
}

.btnover {
  position: relative;
}
.btnover::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  opacity: 0;
}
.btnover:hover > img {
  opacity: 0;
}
.btnover:hover:after {
  opacity: 1;
}

/* -------------
    nav
------------- */
.navbox {
  z-index: 999;
  width: 100%;
  position: relative;
}
.navbox.is-fixed {
  max-width: 1300px;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: navFixed 0.3s ease-in-out;
          animation: navFixed 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .navbox.is-fixed {
    background-color: #f0f0f0;
    -webkit-box-shadow: 0 0.3125rem 0.3125rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.3125rem 0.3125rem rgba(0, 0, 0, 0.15);
  }
  .navbox.is-fixed .burger .line {
    background-color: #000000;
  }
}
@media screen and (max-width: 768px) {
  .navbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .navbox.is-open {
    background-color: #f0f0f0;
    -webkit-box-shadow: 0 0.625rem 0.625rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.625rem 0.625rem rgba(0, 0, 0, 0.15);
  }
}

.nav {
  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;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  background: #f0f0f0;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .nav {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 2.5rem 0;
  }
  .nav.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.nav .navbtn {
  line-height: 1.5;
  font-size: 1.125rem;
  color: #000000;
  font-weight: 600;
  margin: 1.25rem 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .nav .navbtn {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .nav .navbtn {
    font-size: 2.5rem;
  }
}
.nav .navbtn:after {
  content: "";
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 0;
  height: 0.1875rem;
  position: absolute;
  left: 0;
  bottom: -0.1875rem;
}
@media screen and (max-width: 768px) {
  .nav .navbtn:after {
    display: none;
  }
}
.nav .navbtn:before {
  content: "";
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 1.6875rem;
  height: 1.5625rem;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  position: absolute;
  left: -1.875rem;
  bottom: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.nav .navbtn:hover:after, .nav .navbtn.active:after {
  width: 100%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.nav .navbtn:hover:before, .nav .navbtn.active:before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
@media screen and (max-width: 768px) {
  .nav .navbtn:hover:before, .nav .navbtn.active:before {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
}
@media screen and (max-width: 768px) {
  .nav .navbtn:hover:nth-child(1), .nav .navbtn.active:nth-child(1) {
    color: #0a419c;
  }
  .nav .navbtn:hover:nth-child(2), .nav .navbtn.active:nth-child(2) {
    color: #b0cfff;
  }
  .nav .navbtn:hover:nth-child(3), .nav .navbtn.active:nth-child(3) {
    color: #f19edc;
  }
  .nav .navbtn:hover:nth-child(4), .nav .navbtn.active:nth-child(4) {
    color: #9fbd7b;
  }
  .nav .navbtn:hover:nth-child(5), .nav .navbtn.active:nth-child(5) {
    color: #e96450;
  }
}
.nav .navbtn:nth-child(1):after {
  background-color: #fcc93a;
}
.nav .navbtn:nth-child(1):before {
  background-image: url("../images/nav_icon1.png");
}
.nav .navbtn:nth-child(2):after {
  background-color: #b0cfff;
}
.nav .navbtn:nth-child(2):before {
  background-image: url("../images/nav_icon2.png");
}
.nav .navbtn:nth-child(3):after {
  background-color: #f19edc;
}
.nav .navbtn:nth-child(3):before {
  background-image: url("../images/nav_icon3.png");
}
.nav .navbtn:nth-child(4):after {
  background-color: #9fbd7b;
}
.nav .navbtn:nth-child(4):before {
  background-image: url("../images/nav_icon4.png");
}
.nav .navbtn:nth-child(5):after {
  background-color: #e96450;
}
.nav .navbtn:nth-child(5):before {
  background-image: url("../images/nav_icon5.png");
}

.burger {
  cursor: pointer;
  width: 6.6666666667vw;
  position: relative;
  margin-top: 1.875rem;
  margin-left: 1.875rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .burger._m {
    display: block !important;
  }
}
.burger .line {
  position: absolute;
  width: 100%;
  height: 0.8vw;
  background-color: #ffffff;
}
.burger .line:nth-child(2) {
  top: 0;
  left: 0;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: top 0.35s, left 0.35s, width 0.35s, opacity 0.35s;
  transition: top 0.35s, left 0.35s, width 0.35s, opacity 0.35s;
}
.burger .line:nth-child(3), .burger .line:nth-child(4) {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.35s;
  transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transition: transform 0.35s, -webkit-transform 0.35s;
  opacity: 0;
}
.burger .line:nth-child(3) {
  bottom: 0;
  left: 0;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: bottom 0.35s, left 0.35s, width 0.35s, opacity 0.35s;
  transition: bottom 0.35s, left 0.35s, width 0.35s, opacity 0.35s;
  opacity: 1;
}
.burger .line:nth-child(5) {
  bottom: 0;
}
.burger.is-click .line {
  background-color: #000000;
}
.burger.is-click .line:nth-child(2), .burger.is-click .line:nth-child(5) {
  width: 0;
  opacity: 0;
  left: 50%;
}
.burger.is-click .line:nth-child(2) {
  top: 50%;
}
.burger.is-click .line:nth-child(5) {
  bottom: 50%;
}
.burger.is-click .line:nth-child(3) {
  opacity: 1;
  -webkit-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg);
}
.burger.is-click .line:nth-child(4) {
  opacity: 1;
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
}

/* ====================================================================================
    header
======================================================================================*/
/* ====================================================================================
    footer
======================================================================================*/
#static_footer {
  line-height: 1.5;
}
#static_footer .gb-footer-2019__sitemap-items .gb-footer-2019__item-list li {
  line-height: 1.75;
}

#myfooter {
  width: 100%;
  font-size: 16px;
  color: #000;
  text-align: center;
  padding: 20px 0;
  background: #fff;
  line-height: 1.5;
  border-top: 1px solid #d5d5d5;
  font-family: "SamsungOneTCN 450", "microsoft jhenghei", "微軟正黑體", "Helvetica Neue,Helvetica", "Arial,sans-serif";
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  #myfooter {
    padding: 2vw 0;
    font-size: 1.8301610542vw;
  }
}
@media screen and (max-width: 768px) {
  #myfooter {
    font-size: 4vw;
    padding: 3vw 0 0;
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
  }
}

.backtop {
  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;
  text-align: right;
  z-index: 10;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .backtop {
    width: 100%;
    text-align: center;
    position: relative;
    top: auto;
    right: auto;
    padding: 0;
    margin-top: 1.25rem;
  }
}
.backtop p {
  display: inline-block;
  font-size: 14px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .backtop p {
    font-size: 4vw;
  }
}
.backtop:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  margin-left: 5px;
  margin-top: 3px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ----------------
    Layout結構
------------------- */
.wrapper {
  width: 100%;
  margin: 0 auto;
}

.sec {
  width: 100%;
  margin-bottom: 5rem;
  position: relative;
}
.sec:last-child {
  margin-bottom: 0;
}

.container {
  width: 92.5%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.content {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

/* ====================================================================================
    index
======================================================================================*/
/* sec1 - kv
----------------------------- */
@media screen and (max-width: 768px) {
  .sec1 .container {
    width: 100%;
  }
}
.sec1 .content {
  width: 100%;
  max-width: 1003px;
  margin: 0 auto;
}
.sec1 .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.sec1 ._slick .slick-dots {
  bottom: 0.3125rem;
}
.sec1 ._slick .slick-dots button {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec1 ._slick .slick-dots {
    bottom: 1%;
  }
}
.sec1 ._slick .slick-dots li {
  width: 9.375rem;
  height: 0.25rem;
  border-radius: 0.625rem;
  background-color: #fff;
  opacity: 0.5;
}
.sec1 ._slick .slick-dots li.slick-active {
  opacity: 1;
}
.sec1 .kv {
  width: 100%;
  position: relative;
}
.sec1 .kv .btnbox {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  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;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sec1 .kv .btnbox {
    width: 100%;
    right: auto;
    left: 50%;
    bottom: 6%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.sec1 .kv .kvbtn {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  background-color: #bbb8b7;
  border-radius: 1.875rem;
  padding: 0.625rem 1.25rem;
  letter-spacing: 0.1875rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .sec1 .kv .kvbtn {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .sec1 .kv .kvbtn {
    font-size: 2.25rem;
    padding: 0.9375rem 1.875rem;
    border-radius: 3.125rem;
  }
}
.sec1 .kv .kvbtn span {
  position: relative;
  z-index: 1;
  color: #000;
}
.sec1 .kv .kvbtn:last-child {
  letter-spacing: 0;
}
.sec1 .kv .kvbtn::after {
  content: "";
  display: block;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 1.875rem;
  -webkit-box-shadow: inset 0 0 0 0.1875rem #fff;
          box-shadow: inset 0 0 0 0.1875rem #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
  opacity: 0;
}
.sec1 .kv .kvbtn:hover span {
  color: #fff;
}
.sec1 .kv .kvbtn:hover::after {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

/* sec2 - 課程報名與查詢
----------------------------- */
.sec2 .sectitle p::after {
  background-color: #fcc93a;
}
.sec2 .sectitle p::before {
  width: 3.125rem;
  height: 3.5625rem;
  background-image: url("../images/sec2_sectitle_deco.png");
  right: -3.4375rem;
  bottom: -1.25rem;
}
@media screen and (max-width: 768px) {
  .sec2 .sectitle p::before {
    width: 3.75rem;
    height: 4.1875rem;
    right: -4.0625rem;
    bottom: -1.5625rem;
  }
}
.sec2 .courseCon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.9375rem;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .typeMenu {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .typeMenu li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 1;
            flex: 0 0 1;
  }
}
.sec2 .courseCon .typeMenu li:hover {
  color: #0a419c;
}
.sec2 .courseCon .typeMenu li.active {
  -webkit-box-shadow: 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.2), inset 0 0 0 0.125rem #0a419c;
          box-shadow: 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.2), inset 0 0 0 0.125rem #0a419c;
  color: #0a419c;
}
.sec2 .courseCon .areaMenu {
  width: 10.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  padding-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .areaMenu {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.sec2 .courseCon .areaMenu li {
  font-size: 1.25rem;
  color: #fff;
  font-weight: bold;
  background-color: #0a419c;
  border-radius: 0.625rem;
  padding: 1.25rem 0;
  cursor: pointer;
  -webkit-box-shadow: 0 0.3125rem 0.4375rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.3125rem 0.4375rem rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .areaMenu li {
    font-size: 2.125rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-weight: normal;
    padding: 4vw 0;
  }
}
.sec2 .courseCon .areaMenu li:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec2 .courseCon .areaMenu li.active {
  opacity: 1;
  -webkit-box-shadow: inset 0 0.3125rem 0.625rem 0.3125rem rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0.3125rem 0.625rem 0.3125rem rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec2 .courseCon .courseList {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-height: 48.125rem;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 3vw;
    max-height: 66.25rem;
  }
}
.sec2 .courseCon .courseList dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.1875rem 0;
}
.sec2 .courseCon .courseList dt, .sec2 .courseCon .courseList dd {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 0.3125rem);
          flex: 0 0 calc(33.333% - 0.3125rem);
  height: 15.1875rem;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList dt, .sec2 .courseCon .courseList dd {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.3125rem);
            flex: 0 0 calc(50% - 0.3125rem);
    height: 21.25rem;
    padding: 1vw;
  }
}
.sec2 .courseCon .courseList dt {
  background-color: #7d7d7d;
  border: 0.125rem solid #c7c7c7;
  border-radius: 0.9375rem;
  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;
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 0 1.25rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList dt {
    font-size: 1.75rem;
  }
}
.sec2 .courseCon .courseList dd {
  text-align: center;
  border: 0.125rem solid #c7c7c7;
  border-radius: 0.9375rem;
  margin-bottom: 0.625rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  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;
}
.sec2 .courseCon .courseList dd:hover {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border: 0.125rem solid #0a419c;
  -webkit-box-shadow: inset 0 0 0 0.125rem #0a419c, 0 0.3125rem 0.5rem rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 0 0.125rem #0a419c, 0 0.3125rem 0.5rem rgba(0, 0, 0, 0.3);
}
.sec2 .courseCon .courseList dd:hover .btnSignup {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.sec2 .courseCon .courseList dd a {
  height: 100%;
  padding: 1.5625rem 1.25rem 1.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec2 .courseCon .courseList dd.group-course a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sec2 .courseCon .courseList dd.group-course .title {
  font-size: 1.25rem;
  color: #000;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList dd.group-course .title {
    font-size: 1.75rem;
  }
}
.sec2 .courseCon .courseList .location {
  font-size: 1.25rem;
  color: #000;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList .location {
    font-size: 1.75rem;
  }
}
.sec2 .courseCon .courseList .location::after {
  content: "";
  display: inline-block;
  width: 1.5625rem;
  height: 1.3125rem;
  background-image: url("../images/sec2_icon_map.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList .location::after {
    width: 2rem;
    height: 1.6875rem;
  }
}
.sec2 .courseCon .courseList .time {
  color: #000;
  font-weight: bold;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList .time {
    margin-bottom: 0;
  }
}
.sec2 .courseCon .courseList .time p {
  font-size: 1.4375rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList .time p {
    font-size: 2rem;
  }
}
.sec2 .courseCon .courseList .time span {
  display: block;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList .time span {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}
.sec2 .courseCon .courseList .quota {
  font-size: 0.875rem;
  color: #686868;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList .quota {
    font-size: 1.25rem;
  }
}
.sec2 .courseCon .courseList .btnSignup {
  font-size: 1.0625rem;
  color: #fff;
  font-weight: bold;
  background-color: #0a419c;
  border-radius: 1.25rem;
  padding: 0.625rem 0;
  width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .sec2 .courseCon .courseList .btnSignup {
    font-size: 1.4375rem;
    width: 11.25rem;
    padding: 0.75rem 0;
    border-radius: 1.875rem;
  }
}
.sec2 .courseCon .courseList .btnSignup.notopen {
  background-color: #a5a5a5;
  cursor: not-allowed;
}

/* sec3 - 常用功能
----------------------------- */
.sec3 {
  background-color: #0a419c;
  padding: 3.125rem 0 0;
  position: relative;
  z-index: 1;
}
.sec3:after {
  content: "";
  display: block;
  width: 100%;
  height: 20.125rem;
  position: absolute;
  bottom: -20.125rem;
  left: 0;
  background-image: url("../images/sec3_bg_bottom.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec3:after {
    background-image: url("../images/m/sec3_bg_bottom.png");
    height: 20.6875rem;
    bottom: -16.875rem;
  }
}
.sec3::before {
  content: "";
  display: block;
  width: 10.1875rem;
  height: 11rem;
  position: absolute;
  bottom: -20%;
  left: 50%;
  margin-left: 28%;
  background-image: url("../images/sec3_deco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sec3::before {
    bottom: -9%;
    margin-left: 23%;
  }
}
@media screen and (max-width: 768px) {
  .sec3 .container {
    z-index: 2;
  }
}
.sec3 .sectitle p {
  color: #fff;
}
.sec3 .sectitle p::after {
  background-color: #b0cfff;
}
.sec3 .sectitle p::before {
  width: 2.6875rem;
  height: 2.75rem;
  background-image: url("../images/sec3_sectitle_deco.png");
  right: -3.125rem;
  bottom: -1.5625rem;
}
@media screen and (max-width: 768px) {
  .sec3 .sectitle p::before {
    width: 4.9375rem;
    height: 5.0625rem;
    right: -5.625rem;
    bottom: -1.875rem;
  }
}
.sec3 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
  margin-top: 5.625rem;
}
@media screen and (max-width: 768px) {
  .sec3 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3.75rem;
  }
}
.sec3 .inner._pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .sec3 .inner._pc {
    display: none;
  }
}
.sec3 .inner._m {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec3 .inner._m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sec3 .inner aside {
  width: 27.4193548387%;
}
@media screen and (max-width: 768px) {
  .sec3 .inner aside {
    width: 100%;
  }
}
.sec3 .inner aside .selectbox {
  position: relative;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sec3 .inner aside .selectbox {
    margin-bottom: 5vw;
  }
}
.sec3 .inner aside .selectbox select {
  width: 100%;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.25rem 1.25rem;
  border: 0.125rem solid #9ecadc;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1.125rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-box-shadow: inset 0 0.125rem 0.3125rem 0.125rem rgba(0, 0, 0, 0.4);
          box-shadow: inset 0 0.125rem 0.3125rem 0.125rem rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .sec3 .inner aside .selectbox select {
    font-size: 1.875rem;
    font-weight: normal;
    border: 0.25rem solid #9ecadc;
  }
}
.sec3 .inner aside .selectbox select option {
  font-size: 1.125rem;
  color: #000;
  font-weight: bold;
  text-align: left;
}
.sec3 .inner aside .selectbox select option:first-child {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec3 .inner aside .selectbox select option {
    font-size: 1.875rem;
  }
}
.sec3 .inner aside .selectbox::after {
  content: "";
  display: block;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 0.3125rem solid transparent;
  border-right: 0.3125rem solid transparent;
  border-top: 0.5rem solid #000;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .sec3 .inner aside .selectbox::after {
    border-left: 0.625rem solid transparent;
    border-right: 0.625rem solid transparent;
    border-top: 0.9375rem solid #000;
    right: 5vw;
  }
}
.sec3 .inner aside .sortbox {
  margin-bottom: 1.25rem;
}
.sec3 .inner aside .sortbox p {
  font-size: 1.125rem;
  color: #ced9eb;
  font-weight: bold;
  margin-bottom: 0.3125rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sec3 .inner aside .sortbox p {
    font-size: 1.875rem;
    font-weight: normal;
    margin-bottom: 2vw;
  }
}
.sec3 .inner aside .sortbox .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #ced9eb;
  padding: 1.25rem 1.25rem;
  border-radius: 1.875rem;
  -webkit-box-shadow: 0 0.3125rem 0.4375rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.3125rem 0.4375rem rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .sec3 .inner aside .sortbox .tabs {
    border-radius: 3.125rem;
    padding: 1.875rem 1.25rem;
  }
}
.sec3 .inner aside .sortbox .tabs li {
  font-size: 1.125rem;
  color: #000;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec3 .inner aside .sortbox .tabs li {
    font-size: 1.875rem;
    font-weight: normal;
  }
}
.sec3 .inner aside .sortbox .tabs li a {
  color: inherit;
}
.sec3 .inner aside .sortbox .tabs li:hover, .sec3 .inner aside .sortbox .tabs li.active {
  text-decoration: underline;
}
.sec3 .inner aside .qalist {
  padding-left: 0.3125rem;
}
.sec3 .inner aside .qalist dl {
  margin-bottom: 1.25rem;
}
.sec3 .inner aside .qalist dd {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.125rem 0;
  border-bottom: 0.0625rem solid #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec3 .inner aside .qalist dd a {
  color: inherit;
  position: relative;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec3 .inner aside .qalist dd::before {
  content: "+";
  margin-right: 0.625rem;
}
.sec3 .inner aside .qalist dd:hover {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec3 .inner aside .qalist dd:hover a {
  left: 0.625rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec3 .inner aside .qalist .openall {
  font-size: 0.9375rem;
  color: #d1d1d1;
  line-height: 1.5;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec3 .inner aside .qalist .openall:hover {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #fff;
  left: 0.625rem;
}
.sec3 .inner aside .YTbox {
  background-color: #e5dd4f;
  border-radius: 1.25rem;
  padding: 0.8125rem;
  margin-top: 5rem;
  -webkit-box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.5);
}
.sec3 .inner aside .YTbox .slick-arrow {
  width: 1.0625rem;
  height: 1.4375rem;
  background-image: url("../images/yt_ar.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  top: 48%;
}
.sec3 .inner aside .YTbox .slick-arrow::before {
  display: none;
}
.sec3 .inner aside .YTbox .slick-arrow.slick-prev {
  left: -1.5625rem;
}
.sec3 .inner aside .YTbox .slick-arrow.slick-prev:hover {
  -webkit-transform: translateX(-20%);
      -ms-transform: translateX(-20%);
          transform: translateX(-20%);
}
.sec3 .inner aside .YTbox .slick-arrow.slick-next {
  right: -1.5625rem;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.sec3 .inner aside .YTbox .slick-arrow.slick-next:hover {
  -webkit-transform: scaleX(-1) translateX(-20%);
      -ms-transform: scaleX(-1) translateX(-20%);
          transform: scaleX(-1) translateX(-20%);
}
.sec3 .inner aside .YTbox dd {
  background-color: #fff;
  text-align: center;
  padding: 0.9375rem 0;
}
.sec3 .inner aside .YTbox dd .sub {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.3125rem;
}
.sec3 .inner aside .YTbox dd img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec3 .inner aside .YTbox dd .t {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #7a7a7a;
  font-weight: bold;
  margin-top: 0.625rem;
}
.sec3 .inner article {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.sec3 .inner article h2 {
  font-size: 1.5625rem;
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  border-bottom: 0.125rem solid #fff;
  padding-bottom: 1.5625rem;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .sec3 .inner article h2 {
    font-size: 2.375rem;
    font-weight: normal;
    cursor: pointer;
  }
}
.sec3 .inner article h2::before {
  content: "+";
}
@media screen and (max-width: 768px) {
  .sec3 .inner article h2::before {
    position: relative;
    top: -0.5vw;
  }
}
.sec3 .inner article .con div:not(:last-child) {
  margin-bottom: 2.5rem;
}
.sec3 .inner article .text {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec3 .inner article .text {
    font-size: 1.875rem;
    font-weight: normal;
  }
}
.sec3 .inner article .YTbox {
  width: 14.0625rem;
  background-color: #e5dd4f;
  border-radius: 1.25rem;
  padding: 0.8125rem;
  margin-top: 5rem;
  -webkit-box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .sec3 .inner article .YTbox {
    width: 24.375rem;
    border-radius: 0.625rem;
    padding: 0.9375rem;
    margin: 0 auto;
    margin-top: 5vw;
  }
}
.sec3 .inner article .YTbox .slick-list {
  margin-bottom: 0 !important;
}
.sec3 .inner article .YTbox .slick-arrow {
  width: 1.0625rem;
  height: 1.4375rem;
  background-image: url("../images/yt_ar.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  top: 48%;
}
.sec3 .inner article .YTbox .slick-arrow::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec3 .inner article .YTbox .slick-arrow {
    width: 2.1875rem;
    height: 3.125rem;
  }
}
.sec3 .inner article .YTbox .slick-arrow.slick-prev {
  left: -1.5625rem;
}
@media screen and (max-width: 768px) {
  .sec3 .inner article .YTbox .slick-arrow.slick-prev {
    left: -3.125rem;
  }
}
.sec3 .inner article .YTbox .slick-arrow.slick-prev:hover {
  -webkit-transform: translateX(-20%);
      -ms-transform: translateX(-20%);
          transform: translateX(-20%);
}
.sec3 .inner article .YTbox .slick-arrow.slick-next {
  right: -1.5625rem;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .sec3 .inner article .YTbox .slick-arrow.slick-next {
    right: -3.125rem;
  }
}
.sec3 .inner article .YTbox .slick-arrow.slick-next:hover {
  -webkit-transform: scaleX(-1) translateX(-20%);
      -ms-transform: scaleX(-1) translateX(-20%);
          transform: scaleX(-1) translateX(-20%);
}
.sec3 .inner article .YTbox dd {
  background-color: #fff;
  text-align: center;
  padding: 0.9375rem 0;
}
.sec3 .inner article .YTbox dd .sub {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #000;
  font-weight: bold;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .sec3 .inner article .YTbox dd .sub {
    font-size: 1.875rem;
  }
}
.sec3 .inner article .YTbox dd img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec3 .inner article .YTbox dd .t {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #7a7a7a;
  font-weight: bold;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .sec3 .inner article .YTbox dd .t {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 768px) {
  .sec3 .inner article .arti .con {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sec3 .inner article .arti.active {
    padding-bottom: 5vw;
  }
  .sec3 .inner article .arti.active .con {
    display: block;
  }
}
.sec3 .inner article .all {
  font-size: 1.875rem;
  color: #d1d1d1;
  cursor: pointer;
  padding-left: 2vw;
}

/* sec4 - 最新影片
----------------------------- */
.sec4 {
  padding: 9.375rem 0 5rem;
  position: relative;
  background-image: url("../images/sec4_bg.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center 50%;
}
@media screen and (max-width: 768px) {
  .sec4 {
    padding: 25vw 0 10vw;
  }
}
.sec4::before {
  content: "";
  display: block;
  width: 7.6875rem;
  height: 12.5625rem;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -600px;
  background-image: url("../images/sec4_deco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 1;
}
.sec4 .container {
  z-index: 1;
}
.sec4 .sectitle p::after {
  background-color: #f19edc;
}
.sec4 .sectitle p::before {
  width: 3.125rem;
  height: 2.3125rem;
  background-image: url("../images/sec4_sectitle_deco.png");
  right: -3.4375rem;
  bottom: -0.625rem;
}
@media screen and (max-width: 768px) {
  .sec4 .sectitle p::before {
    width: 4.8125rem;
    height: 3.625rem;
    right: -5.3125rem;
  }
}
.sec4 .typeMenu2 li:hover {
  color: #f19edc;
}
.sec4 .typeMenu2 li.active {
  background-color: #f19edc;
  color: #fff;
}
.sec4 .typeMenu2 li.active .submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec4 .typeMenu2 .submenu {
  display: none;
}
.sec4 .videoList {
  margin-top: 6.25rem;
  max-height: 39.375rem;
}
@media screen and (max-width: 768px) {
  .sec4 .videoList {
    max-height: 76.875rem;
  }
}
.sec4 .videoList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 1.25rem;
  padding: 0.3125rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sec4 .videoList ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec4 .videoList ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 0.875rem);
          flex: 0 0 calc(33.333% - 0.875rem);
}
@media screen and (max-width: 768px) {
  .sec4 .videoList ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 70%;
  }
}
.sec4 .videoList ul li:not(:nth-child(3n)) {
  margin-right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sec4 .videoList ul li:not(:nth-child(3n)) {
    margin-right: 0;
  }
}
.sec4 .videoList ul li:hover img {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
  -webkit-transform: translateY(-12.5%) scale(1.1);
      -ms-transform: translateY(-12.5%) scale(1.1);
          transform: translateY(-12.5%) scale(1.1);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec4 .videoList ul li:hover .sub, .sec4 .videoList ul li:hover .t {
  color: #0a419c;
}
.sec4 .videoList ul .imgbox {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
  overflow: hidden;
  aspect-ratio: 25/14;
}
.sec4 .videoList ul .imgbox img {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateY(-12.5%);
      -ms-transform: translateY(-12.5%);
          transform: translateY(-12.5%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec4 .videoList ul .info {
  border: 1px solid #bababa;
  border-top: 0;
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  text-align: center;
}
.sec4 .videoList ul .info .sub {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: bold;
  color: #000;
  padding: 0.625rem 0.625rem;
  border-bottom: 1px solid #bababa;
  max-height: 2.6875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sec4 .videoList ul .info .sub {
    font-size: 1.9375rem;
    max-height: 4.0625rem;
    padding: 0.625rem 0.9375rem;
  }
}
.sec4 .videoList ul .info .t {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #000000;
  font-weight: bold;
  padding: 0.3125rem 0.9375rem;
  max-height: 2.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .sec4 .videoList ul .info .t {
    font-size: 1.625rem;
    max-height: 4.0625rem;
    padding: 0.625rem 0.9375rem;
  }
}

/* sec5 - 星粉互動
----------------------------- */
.sec5 {
  background-color: #fcc93a;
  padding: 5rem 0 0.3125rem;
  position: relative;
  z-index: 1;
}
.sec5::before, .sec5::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
}
.sec5::before {
  background-image: url("../images/sec5_bg_top.png");
  background-position: center top;
  height: 495px;
  top: -5rem;
  z-index: 1;
}
.sec5::after {
  background-image: url("../images/sec5_bg_bottom.png");
  background-position: center bottom;
  height: 148px;
  bottom: -5rem;
}
.sec5 .content {
  max-width: 1300px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 6.25rem;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
@media screen and (max-width: 768px) {
  .sec5 .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.625rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec5 .eachbtn {
  width: 18.4375rem;
}
@media screen and (max-width: 768px) {
  .sec5 .eachbtn {
    width: 25rem;
  }
}
.sec5 .eachbtn .in {
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
  border-radius: 1.875rem;
  -webkit-box-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.8);
          box-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.8);
  padding: 0.9375rem 0;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .sec5 .eachbtn .in {
    font-weight: normal;
    padding: 2vw 6vw 3vw;
  }
}
.sec5 .eachbtn .in p {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .sec5 .eachbtn .in p {
    font-size: 3.75rem;
  }
}
.sec5 .eachbtn .in span {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .sec5 .eachbtn .in span {
    font-size: 1.375rem;
  }
}
.sec5 .eachbtn .aniDoll {
  margin: 0 auto;
  margin-bottom: 0.625rem;
  top: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec5 .eachbtn:hover .in {
  -webkit-animation: buttonAni 0.4s ease-in-out;
          animation: buttonAni 0.4s ease-in-out;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0 1.875rem rgba(255, 255, 255, 0.9);
          box-shadow: 0 0 1.875rem rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec5 .eachbtn.btn1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 768px) {
  .sec5 .eachbtn.btn1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.sec5 .eachbtn.btn1 .in {
  background-color: #0a419c;
}
.sec5 .eachbtn.btn2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .sec5 .eachbtn.btn2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.sec5 .eachbtn.btn2 .in {
  background-color: #e96450;
}
.sec5 .eachbtn.btn3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width: 768px) {
  .sec5 .eachbtn.btn3 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
.sec5 .eachbtn.btn3 .in {
  background-color: #f2a31a;
}
.sec5 .eachbtn.active .in {
  -webkit-box-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.8), inset 0 0.625rem 1.25rem rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 1.25rem rgba(255, 255, 255, 0.8), inset 0 0.625rem 1.25rem rgba(0, 0, 0, 0.6);
}
.sec5 .eachbtn.active .aniDoll {
  opacity: 0;
  top: -6.25rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec5 .eachbtn.not-active .in span {
  display: none;
}
.sec5 .eachbtn.not-active .aniDoll {
  position: relative;
  top: 1.875rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec5 .con {
  width: 100%;
  display: none;
  margin-top: 4.375rem !important;
  opacity: 0;
  -webkit-transform: translateY(-3.125rem);
      -ms-transform: translateY(-3.125rem);
          transform: translateY(-3.125rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec5 .con {
    margin-top: -3.125rem !important;
  }
}
.sec5 .con .aniDoll {
  width: 9.375rem;
  position: absolute;
  top: -3.75rem;
  left: 50%;
  margin-left: 21.875rem;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-animation: aniDollshow 0.3s ease-in-out forwards;
          animation: aniDollshow 0.3s ease-in-out forwards;
}
@media screen and (max-width: 768px) {
  .sec5 .con .aniDoll {
    width: 8.75rem;
    margin-left: 13.75rem;
  }
}
.sec5 .con .aniDoll.inresult {
  -webkit-animation: aniDollsResult 0.5s ease-in-out forwards;
          animation: aniDollsResult 0.5s ease-in-out forwards;
}
@media screen and (max-width: 768px) {
  .sec5 .con .aniDoll.inresult {
    -webkit-animation: aniDollsResultM 0.5s ease-in-out forwards;
            animation: aniDollsResultM 0.5s ease-in-out forwards;
  }
}
.sec5 .con._1 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
@media screen and (max-width: 768px) {
  .sec5 .con._1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.sec5 .con._2 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
@media screen and (max-width: 768px) {
  .sec5 .con._2 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.sec5 .con._3 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}
@media screen and (max-width: 768px) {
  .sec5 .con._3 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
.sec5 .con._3 .aniDoll {
  width: 18.125rem;
  z-index: -1;
  top: 9.375rem;
  margin-left: 31.25rem;
  -webkit-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-animation: aniDollshow2 0.3s ease-in-out forwards;
          animation: aniDollshow2 0.3s ease-in-out forwards;
}
@media screen and (max-width: 768px) {
  .sec5 .con._3 .aniDoll {
    width: 21.875rem;
    margin-left: 3.75rem;
    top: 25rem;
  }
}
.sec5 .con.active {
  display: block;
  -webkit-animation: slideDown 0.3s ease-in-out forwards;
          animation: slideDown 0.3s ease-in-out forwards;
}
.sec5 .con .sendBtn {
  font-size: 1.75rem;
  color: #fff;
  font-weight: bold;
  border-radius: 1.875rem;
  padding: 0.8125rem 1.25rem;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.3);
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 11.25rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 2.5rem;
}
.sec5 .con .sendBtn a {
  color: inherit;
}
.sec5 .con .sendBtn:hover {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.4);
}
.sec5 .con.qa {
  max-width: 930px;
  margin: 0 auto;
}
.sec5 .con.qa .qabox {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.9)), color-stop(65%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.2)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 65%, rgba(255, 255, 255, 0.2) 100%);
  padding: 1.875rem;
  border-radius: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec5 .con.qa .qabox {
    padding: 3.125rem 1.875rem;
  }
}
.sec5 .con.qa .exam .qabox .ques {
  margin-bottom: 1.875rem;
}
.sec5 .con.qa .exam .qabox .ques .t {
  font-size: 1.875rem;
  font-weight: bold;
  color: #000;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .sec5 .con.qa .exam .qabox .ques .t {
    line-height: 1.4;
  }
}
.sec5 .con.qa .exam .qabox .ques .t b {
  font-size: 3rem;
}
.sec5 .con.qa .exam .qabox .ques .t._q {
  margin-bottom: 1.25rem;
}
.sec5 .con.qa .exam .qabox .ques .t._a {
  display: inline-block;
  text-align: left;
}
.sec5 .con.qa .exam .qabox .ans {
  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;
  gap: 1.875rem;
}
.sec5 .con.qa .exam .qabox .ans li {
  font-size: 1.75rem;
  color: #bcbcbc;
  font-weight: bold;
  background-color: #f3f3f3;
  border-radius: 1.875rem;
  padding: 0.8125rem 1.25rem;
  min-width: 11.25rem;
  -webkit-box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.sec5 .con.qa .exam .qabox .ans li.active {
  color: #fff;
  -webkit-box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.2), inset 0.1875rem 0.3125rem 0.625rem rgba(17, 12, 12, 0.4);
          box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.2), inset 0.1875rem 0.3125rem 0.625rem rgba(17, 12, 12, 0.4);
}
.sec5 .con.qa .exam .qabox .ans li:hover {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
          transform: scale3d(1.05, 1.05, 1.05);
  -webkit-box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.5);
  color: #fff;
}
.sec5 .con.qa .result .qabox {
  padding: 3.75rem 1.875rem;
}
.sec5 .con.qa .result .t {
  font-size: 1.875rem;
  color: #000;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.875rem;
}
.sec5 .con.qa .result .congrats {
  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;
  gap: 1.875rem;
}
.sec5 .con.qa .result .congrats .icon {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sec5 .con.qa .result .congrats .icon {
    width: 40%;
  }
}
.sec5 .con.qa .result .congrats .txt p {
  font-size: 1.5625rem;
  color: #5ab7ff;
  line-height: 1.5;
  font-weight: bold;
}
.sec5 .con.qa .result .congrats .txt font {
  font-size: 3rem;
}
.sec5 .con.qa .result .congrats .score {
  font-size: 6.25rem;
  color: #5ab7ff;
  font-family: "Rubik Mono One", monospace;
}
.sec5 .con.qa._1 .ans li.active {
  background-color: #5ab7ff;
}
.sec5 .con.qa._1 .ans li:hover {
  background-color: #5ab7ff;
}
.sec5 .con.qa._1 .sendBtn {
  background-color: #0a419c;
}
.sec5 .con.qa._2 .ans li.active {
  background-color: #f5bf60;
}
.sec5 .con.qa._2 .ans li:hover {
  background-color: #f5bf60;
}
.sec5 .con.qa._2 .sendBtn {
  background-color: #e96450;
}
.sec5 .con.qa._2 .result .congrats .txt p {
  color: #fe8537;
}
.sec5 .con.fans .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.9375rem;
}
@media screen and (max-width: 1024px) {
  .sec5 .con.fans .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.sec5 .con.fans .list li {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.9)), color-stop(65%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0.2)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 65%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 1.875rem;
  padding: 2.1875rem 0.3125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(25% - 0.3125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .sec5 .con.fans .list li {
    width: calc(50% - 0.625rem);
  }
}
.sec5 .con.fans .list .peo {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec5 .con.fans .list .peo {
    width: 6.5625rem;
  }
}
.sec5 .con.fans .list .peo img {
  border-radius: 50%;
}
.sec5 .con.fans .list .txtbox {
  color: #000;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
.sec5 .con.fans .list .txtbox .name {
  font-size: 1.875rem;
}
.sec5 .con.fans .list .txtbox .sub {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.sec5 .con.fans .list .txtbox p {
  font-size: 0.9375rem;
}
.sec5 .con.fans .sendBtn {
  background-color: #fe8537;
}
.sec5 .aniDoll {
  width: 6.25rem;
}
@media screen and (max-width: 768px) {
  .sec5 .aniDoll {
    width: 8.125rem;
  }
}
.sec5 .aniDoll .canvasWrapper {
  padding-bottom: 100%;
}

/* sec6 - 師資陣容
----------------------------- */
.sec6 {
  background-color: #e4e4e4;
  padding: 10.625rem 0 6.25rem;
  margin-top: -5rem;
  margin-bottom: 0;
}
.sec6::before {
  content: "";
  display: block;
  width: 13.8125rem;
  height: 11.75rem;
  position: absolute;
  top: 13.125rem;
  left: 50%;
  margin-left: -34.0625rem;
  background-image: url("../images/sec6_deco.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .sec6::before {
    top: 1.25rem;
    margin-left: -24.375rem;
  }
}
.sec6 .sectitle p::after {
  background-color: #9fbd7b;
}
.sec6 .sectitle p::before {
  width: 3rem;
  height: 4.0625rem;
  background-image: url("../images/sec6_sectitle_deco.png");
  right: -3.75rem;
  bottom: -0.9375rem;
}
.sec6 .typeMenu2 {
  margin-bottom: 3.75rem;
}
.sec6 .typeMenu2 li {
  min-width: 7.1875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec6 .typeMenu2 li {
    min-width: 12.5rem;
  }
}
.sec6 .typeMenu2 li:hover {
  color: #9fbd7b;
}
.sec6 .typeMenu2 li.active {
  background-color: #9fbd7b;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec6 .inner {
    width: 82%;
    margin: 0 auto;
  }
}
.sec6 .con {
  max-width: 680px;
  margin: 0 auto;
  display: none;
}
.sec6 .con.active {
  display: block;
}
.sec6 .listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sec6 .listing li {
  max-width: 168px;
  width: 25%;
  padding: 3.75rem 0;
}
@media screen and (max-width: 768px) {
  .sec6 .listing li {
    max-width: 100%;
    width: 50%;
    padding: 4.375rem 0;
  }
}
.sec6 .listing .imgbox {
  position: relative;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .sec6 .listing .imgbox {
    margin-bottom: 1.25rem;
  }
}
.sec6 .listing .imgbox .pic {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec6 .listing .imgbox img {
    width: 100%;
  }
}
.sec6 .listing .name {
  font-size: 1.125rem;
  color: #000;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sec6 .listing .name {
    font-size: 1.875rem;
    font-weight: normal;
  }
}
.sec6 ._slick .slick-dots li {
  width: 7.1875rem;
  height: 0.25rem;
  background-color: #f0f0f0;
  margin: 0;
}
.sec6 ._slick .slick-dots li button {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec6 ._slick .slick-dots li {
    height: 0.4375rem;
    width: 9.375rem;
  }
}
.sec6 ._slick .slick-dots li.slick-active {
  background-color: #bbbbbb;
}
/*# sourceMappingURL=main.min.css.map */