@charset "UTF-8";
/*------------------------------------*\
  必要CSS檔
  ---
  如果SASS編譯出現子資料夾的檔案，請檢查設定
  "savePath": "~/../../css" //輸出資料夾
\*------------------------------------*/
/*------------------------------------*\
  color
\*------------------------------------*/
/*------------------------------------*\
  使用顏色設定_主要
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;600&family=Noto+Sans+TC:wght@400;500;700&display=swap");
.containerTitle::after, .foot-fold-btn, .foot-main::before, .login__btn.login--log {
  background: linear-gradient(to right, #d1ba81 0%, #997427 100%);
}

/*------------------------------------*\
  使用顏色設定_文字及背景顏色
\*------------------------------------*/
/*------------------------------------*\
  使用顏色設定_按鈕顏色
\*------------------------------------*/
/*------------------------------------*\
  使用顏色設定_chip顏色
\*------------------------------------*/
/*------------------------------------*\
  font face
\*------------------------------------*/
/* Roboto - 400 700 */
/* noto-sans-tc -  300 400 500 700 */
/*------------------------------------*\
  reset
\*------------------------------------*/
body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, select, textarea, label, p, blockquote, th, td, iframe, button, a, header, footer {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
  word-wrap: break-word;
}

body {
  font: 16px/150% "Noto Sans TC", "Helvetica Neue", Helvetica, "微軟正黑體", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2px;
  background: #fff;
}

html {
  /*safari內網頁的字體不會無緣無故變大*/
  -webkit-text-size-adjust: 100%;
  /*safari內網頁滑動起來不會卡卡的*/
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  background: none;
  outline: none;
  cursor: pointer;
}

table {
  width: auto;
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  outline: none;
}

img {
  /*防止chrome將圖片縮放時平滑化處理*/
  image-rendering: -webkit-optimize-contrast;
}

.page {
  background: #fff;
}

:hover {
  transition-duration: 0.3s;
}

/*------------------------------------*\
  font-family
\*------------------------------------*/
.font-eng, .pager a {
  font-family: "Lexend", "Helvetica Neue", Helvetica, "微軟正黑體", sans-serif;
}

/*------------------------------------*\
  _common.scss
  基礎全站變數
\*------------------------------------*/
/*------------------------------------*\
  base extend
\*------------------------------------*/
.btn-share:nth-last-child(1), .btn:nth-last-child(1), .headPanelLink--btn-text:nth-last-child(1), .flex-space .flex-item:nth-last-child(1),
.flex-space-l .flex-item:nth-last-child(1) {
  margin: 0;
}

/*------------------------------------*\
  RWD尺寸標準
\*------------------------------------*/
/*------------------------------------*\
  頁面寬度
\*------------------------------------*/
/*------------------------------------*\
  大小網
\*------------------------------------*/
.web {
  display: block;
}

.mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .web {
    display: none !important;
  }
  .mobile {
    display: block;
  }
}
/*------------------------------------*\
  天地
\*------------------------------------*/
/*------------------------------------*\
  login box
  改為獨立iframe
\*------------------------------------*/
/*------------------------------------*\
  login box
\*------------------------------------*/
/*------------------------------------*\
  兆豐e網通登入部分 改為獨立iframe
\*------------------------------------*/
.login {
  padding-top: 5px;
}

.login-inner {
  padding: 20px 20px 15px;
  background: #f3f3f3;
}

.login__title {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 700;
}

.login__link {
  margin-bottom: 12px;
  color: #343030;
}
.login__link a {
  padding: 0 10px;
}

.login__notice {
  font-size: 14px;
  color: #785919;
}

/*------------------------------------*/
.login__btn {
  display: block;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  border-radius: 5px;
}
.login__btn.login--log {
  transition: background 0.2s;
  color: #fff;
  background: linear-gradient(to right, #d1ba81 0%, #997427 51%, #997427 100%);
  background-size: 200% auto;
}
.login__btn.login--log:hover {
  background-size: 200% auto;
  background-position: right center;
}

.login--log.type1 {
  margin-bottom: 14px;
}

.login--entry span,
.login--log.type2 span {
  padding-left: 30px;
}

.login--log.type2 {
  position: relative;
}
.login--log.type2::after {
  content: "";
  display: block;
}
.login--log.type2 span {
  background: url(../images/frame/login-btn-1.png) left center no-repeat;
  background-size: 22px;
}

.login--entry {
  margin-bottom: 20px;
  border: solid 1px;
}
.login--entry.icon1 span {
  background: url(../images/frame/login-btn-3.png) left center no-repeat;
  background-size: 22px;
}
.login--entry.icon2 span {
  background: url(../images/frame/login-btn-4.png) left center no-repeat;
  background-size: 22px;
}

/*------------------------------------*/
.login-form {
  text-align: center;
  color: #223034;
}
.login-form input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 10px 0 40px;
  background-color: #fff;
  border-radius: 5px;
}
.login-form ::placeholder {
  color: #95999a;
  opacity: 1;
}
.login-form :-ms-input-placeholder {
  color: #95999a;
}
.login-form ::-ms-input-placeholder {
  color: #95999a;
}

.login__inputId {
  margin-bottom: 10px;
}
.login__inputId.inputbox input {
  padding-left: 40px;
}
.login__inputId input {
  background-image: url(../images/frame/login-input-1.png);
}

.login__inputPd {
  position: relative;
  margin-bottom: 10px;
}
.login__inputPd.inputbox input {
  padding-left: 40px;
}
.login__inputPd input {
  padding-right: 50px;
  background-image: url(../images/frame/login-input-2.png);
}
.login__inputPd input::-ms-reveal,
.login__inputPd input::-ms-clear {
  display: none;
}
.login__inputPd .inputPd__btn {
  position: absolute;
  top: 0;
  right: 5px;
  width: 40px;
  height: 40px;
  background: url(../images/frame/login-input-pw-hide.svg) center center no-repeat;
  background-size: 24px auto;
}
.login__inputPd .inputPd__btn.show {
  background: url(../images/frame/login-input-pw-show.svg) center center no-repeat;
  background-size: 24px auto;
}

/*驗證碼*/
.login__verify {
  margin-bottom: 20px;
}
.login__verify.inputbox {
  display: flex;
  justify-content: center;
}
.login__verify.inputbox input {
  padding-left: 40px;
  flex: 1 1 50%;
  margin-right: 10px;
  margin-bottom: 0;
}
.login__verify.inputbox .box-verify {
  display: flex;
}
@media all and (max-width: 1000px) {
  .login__verify.inputbox {
    display: block;
  }
  .login__verify.inputbox input {
    margin-bottom: 10px;
  }
}
.login__verify input {
  background-image: url(../images/frame/login-input-3.png);
  margin-bottom: 10px;
}
.login__verify .box-verify {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.login__verify .box-verify img.img-verify {
  width: 112px;
  height: 40px;
}
.login__verify .box-verify a {
  display: inline-block;
  text-align: center;
  line-height: 1.2em;
  font-weight: 700;
  color: #a70057;
  border-bottom: solid 1px;
  margin-left: 10px;
}

.login__inputId input,
.login__inputPd input,
.login__verify input {
  background-position: left 10px center;
  background-size: auto 20px;
  background-repeat: no-repeat;
}

.login-switch {
  display: flex;
  justify-content: space-between;
}
.login-switch a {
  display: block;
  flex: 1 1 auto;
  line-height: 42px;
  text-align: center;
  font-weight: 700;
  color: rgba(34, 48, 52, 0.8);
  border: solid 1px #f5f5f5;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.login-switch a:nth-child(1) {
  margin-right: 8px;
}
.login-switch a.on {
  color: rgba(34, 48, 52, 0.9);
  background: #f5f5f5;
}

/*------------------------------------*\
  popup
\*------------------------------------*/
/*------------------------------------*\
  popup
\*------------------------------------*/
.popup {
  display: none;
}

.openPopup .popup {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 140px 20px 40px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
}
@media all and (max-width: 767px) {
  .openPopup .popup {
    padding: 90px 15px 20px;
  }
}

.openPopup .wrapper {
  position: relative;
  width: 100%;
}

.popup-area {
  flex: 0 0 auto;
  position: relative;
  z-index: 2001;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
}
.popup-area.w-m {
  max-width: 500px;
}
.popup-area .popup-title {
  background: #fffaee;
}
.popup-area .popup-title h2 {
  font-size: 24px;
  color: #a70057;
}
.popup-area .popup-inner .inner-pd {
  padding: 30px 40px;
}
@media all and (max-width: 767px) {
  .popup-area .popup-inner .inner-pd {
    padding: 20px 15px;
  }
}
.popup-area .bgArea-gray-light {
  background-color: #f9f8f8;
  padding: 20px;
}
.popup-area .ol-num, .popup-area .editbox ol, .editbox .popup-area ol {
  list-style: none;
  padding-left: 0;
}
.popup-area .ol-num > li, .popup-area .editbox ol > li, .editbox .popup-area ol > li {
  counter-increment: num;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.popup-area .ol-num > li::before, .popup-area .editbox ol > li::before, .editbox .popup-area ol > li::before {
  content: counter(num);
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #7f7f7f;
  border-radius: 10px;
}
.popup-area .ol-num.list-primary > li::before, .popup-area .editbox ol.list-primary > li::before, .editbox .popup-area ol.list-primary > li::before {
  background: #c5972b;
}
.popup-area .ol-num.list-secondary > li::before, .popup-area .editbox ol.list-secondary > li::before, .editbox .popup-area ol.list-secondary > li::before {
  background: #a70057;
}

.popup-close {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: url(../images/frame/header-close.svg) center center no-repeat;
  background-size: 75%;
}
@media all and (max-width: 767px) {
  .popup-close {
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
  }
}

.popup-banner a {
  display: block;
}
.popup-banner img {
  display: block;
  width: 100%;
}

.popup-title {
  position: relative;
  padding: 18px 60px;
  text-align: center;
  background: #a27f35;
}
.popup-title h2 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
  color: #fff;
}

/*------------------------------------*\
  公告
\*------------------------------------*/
.popup .announceArea {
  position: relative;
  padding: 16px 24px 16px 136px;
}
.popup .announceArea.notitle {
  padding-left: 24px;
}
@media all and (max-width: 767px) {
  .popup .announceArea.notitle {
    padding-left: 0;
  }
}
.popup .announceArea .announceArea_title {
  min-height: 138px;
}
.popup .announceArea .announceArea_list {
  flex: 1 1 auto;
}
@media all and (max-width: 767px) {
  .popup .announceArea {
    padding: 0;
  }
  .popup .announceArea .announceArea_title {
    position: static;
    display: block;
    width: 100%;
    padding: 4px;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    min-height: auto;
  }
  .popup .announceArea .announceArea_title span {
    display: inline;
  }
  .popup .announceArea .announceArea_list {
    padding: 10px 15px;
  }
}

/*------------------------------------*\
  loading
\*------------------------------------*/
.popup-loading {
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  line-height: 2rem;
  width: 100%;
  max-width: 720px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2001;
}

.sk-chase {
  width: 70px;
  height: 70px;
  margin: 0 auto 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  80%, 100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%, 0% {
    transform: scale(1);
  }
}
/*------------------------------------*\
  天地框架及popup
\*------------------------------------*/
.pagesize, .container-nav {
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 20px;
}
@media all and (max-width: 1000px) {
  .pagesize, .container-nav {
    padding: 0 15px;
  }
}

/*------------------------------------*\
display
\*------------------------------------*/
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inblock {
  display: inline-block;
}

.d-flex {
  display: flex;
}
.d-flex.a-center {
  align-items: center;
}
.d-flex.a-end {
  align-items: flex-end;
}

.d-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 767px) {
  .d-flex-wrap .btn, .d-flex-wrap .headPanelLink--btn-text {
    margin-top: 10px;
  }
}

.j-center {
  justify-content: center;
}

.j-between {
  justify-content: space-between;
}

.flex-item {
  flex: 0 0 auto;
}

.flex-1 {
  flex: 1 1 auto;
}

.flex-space .flex-item {
  margin-right: 15px;
}

.flex-space-l .flex-item {
  margin-right: 45px;
}

@media all and (max-width: 767px) {
  .m-d-block {
    display: block;
  }
  .m-d-none {
    display: none !important;
  }
  .m-d-block.flex-space .flex-item,
  .m-d-block.flex-space-l .flex-item {
    margin: 0 0 10px;
  }
}
/*------------------------------------*\
  header
\*------------------------------------*/
header ul {
  list-style: none;
}
/*------------------------------------*/
.headArea {
  position: fixed;
  z-index: 1000;
  top: 25px;
  width: 100%;
  transition: 0.2s;
}
@media all and (min-width: 768px) {
  .headArea .web-headMain {
    transition: padding 0.3s;
  }
  .headArea.js_sticky {
    top: 0;
    height: 98px;
    overflow: visible;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(37, 36, 36, 0.1);
  }
  .headArea.js_sticky .headMain {
    box-shadow: none;
  }
  .headArea.js_sticky .web-headMain {
    padding: 0;
  }
}
@media all and (max-width: 767px) {
  .headArea {
    top: 15px;
  }
  .headArea.js_sticky {
    top: 0;
  }
  .headArea.js_sticky .pagesize, .headArea.js_sticky .container-nav {
    padding: 0;
  }
  .headArea.js_sticky .headMain {
    border-radius: 0;
  }
}

@media all and (max-width: 767px) {
  .headCover {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
}
/*------------------------------------*/
.headMain {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 13px 25px 0 rgba(37, 36, 36, 0.22);
}
@media all and (max-width: 767px) {
  .headMain {
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 12px 0 rgba(37, 36, 36, 0.22);
  }
}

.web-headMain {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
@media all and (max-width: 1000px) {
  .web-headMain {
    padding: 0 16px;
  }
}

.m-headMain {
  display: none;
}

@media all and (max-width: 767px) {
  .web-headMain {
    display: none;
  }
  .m-headMain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    padding: 9px 13px 9px 15px;
  }
}
@media all and (max-width: 374px) {
  .m-headMain {
    padding: 9px 10px 9px 10px;
  }
}
/*------------------------------------*/
.headLogo {
  flex: 0 0 auto;
  align-self: center;
  display: flex;
  align-items: center;
}
.headLogo .headLogo-main {
  width: 200px;
  height: 66px;
  background: url(../images/frame/header-logo.jpg) left center no-repeat;
  background-size: auto 100%;
}
.headLogo .headLogo-sub {
  display: flex;
  align-items: center;
}
.headLogo .text {
  color: #a70057;
  font-weight: 500;
}
.headLogo .text span {
  display: block;
}
.headLogo .title {
  font-size: 22px;
}
@media all and (max-width: 1000px) {
  .headLogo .headLogo-main {
    width: 140px;
    height: 46px;
  }
  .headLogo .headLogo-sub {
    font-size: 13px;
  }
  .headLogo .text {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .headLogo {
    flex: 1 1 auto;
  }
  .headLogo .headLogo-main {
    width: 120px;
    height: 40px;
  }
  .headLogo .title {
    font-size: 18px;
  }
}
@media all and (max-width: 374px) {
  .headLogo .headLogo-main {
    width: 116px;
    height: 40px;
  }
  .headLogo .text {
    font-size: 13px;
    line-height: 20px;
  }
  .headLogo .title {
    font-size: 16px;
  }
}

.headMain-btn {
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
}

.btn-headUser {
  position: relative;
  margin-right: 16px;
  font-weight: 500;
  color: #9c782c;
  width: 100px;
}
.btn-headUser::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  width: 0;
  height: 100%;
  background: #d3d3d3;
}
@media all and (max-width: 1000px) {
  .btn-headUser {
    width: 80px;
    margin-right: 8px;
  }
  .btn-headUser::after {
    right: -4px;
  }
}
@media all and (max-width: 374px) {
  .btn-headUser {
    margin-right: 10px;
  }
  .btn-headUser::after {
    right: -5px;
  }
}

.btn-headMenu {
  background: url(../images/frame/header-m-menu.png);
  background-size: 100%;
}
.btn-headMenu.open {
  background: url(../images/frame/header-close.svg) center center no-repeat;
  background-size: 20px;
}

/*------------------------------------*/
.headPanel__link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.headPanel__nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

.headLink-text,
.headPanelNav {
  display: flex;
  justify-content: flex-end;
}

.headLink-text {
  padding: 14px 0 15px;
  color: #959595;
  line-height: 1.1em;
}
.headLink-text li {
  border-right: solid 1px;
}
.headLink-text li:nth-last-child(1) {
  border: none;
}
.headLink-text a {
  display: block;
  padding: 0 15px;
}
.headLink-text a:hover, .headLink-text a:active {
  color: #976F11;
}
@media all and (max-width: 1000px) {
  .headLink-text a {
    padding: 0 6px;
  }
}

.headLink-icon {
  display: flex;
  vertical-align: middle;
  margin-left: 10px;
}
.headLink-icon a {
  width: 28px;
  height: 28px;
  margin-left: 10px;
  border-radius: 5px;
}

.headLink-icon .icon-fb {
  background: url(../images/frame/header-link-fb.png);
  background-size: 100%;
}

.headLink-icon .icon-ig {
  background: url(../images/frame/header-link-ig.png);
  background-size: 100%;
}

.headLink-icon .icon-line {
  background: url(../images/frame/header-link-line.png);
  background-size: 100%;
}

.headLink-member {
  padding: 14px 0 15px;
  color: #959595;
  line-height: 1.1em;
}

.headLink-member-user {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  margin-left: 10px;
  background: url(../images/frame/bg-user.jpg) center no-repeat;
  background-size: contain;
  overflow: hidden;
}
.headLink-member-user > img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.headPanelNav a {
  display: block;
  padding: 4px 6px 8px;
  font-size: 18px;
  color: #333;
  border-bottom: solid 7px transparent;
  transition: border-color 0.2s;
}
.headPanelNav a.on {
  color: #976F11;
  border-color: #c5972b;
  background-color: #f9f9f9;
}
@media all and (max-width: 1000px) {
  .headPanelNav a {
    font-size: 15px;
    padding: 4px 4px 8px;
  }
}

.headPanelLink {
  margin-right: 10px;
  display: block;
  line-height: 24px;
  padding: 4px 0 23px;
  font-size: 18px;
  font-weight: 700;
  color: #9c782c;
  transition: color 0.2s;
}
.headPanelLink:hover {
  color: #bfa051;
}
@media all and (max-width: 1000px) {
  .headPanelLink {
    margin-left: 10px;
    font-size: 16px;
  }
}

.headPanelLink--btn {
  margin-left: 15px;
}
@media all and (max-width: 1000px) {
  .headPanelLink--btn {
    margin-left: 6px;
    font-size: 15px;
  }
}

.headPanelLink--btn .headPanelLink--btn-text {
  min-height: 34px;
  line-height: 26px;
  min-width: 75px;
  transition: all 0.2s;
}
@media all and (max-width: 1000px) {
  .headPanelLink--btn .headPanelLink--btn-text {
    min-width: 50px;
  }
}

/*------------------------------------*\
  主區域下拉
\*------------------------------------*/
.web-headHidden {
  display: none;
  position: relative;
  z-index: 999;
}

.web-headHidden__inner {
  color: #77776e;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #fff;
}

.headHidNav {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 30px 30px 10px;
  box-shadow: 0 4px 4px 0 rgba(37, 36, 36, 0.05);
  border-top: solid 1px #eee;
}
.headHidNav-item {
  flex: 0 0 20%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.headHidNav-item > p {
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #976F11;
  border-bottom: solid 1px;
}

.web-headHidden {
  position: relative;
}
.web-headHidden.navbox-1 {
  max-width: 210px;
}
.web-headHidden.navbox-1 .headHidNav {
  display: block;
}
.web-headHidden.navbox-1 {
  left: calc(100% - 475px);
}
@media all and (max-width: 1000px) {
  .web-headHidden.navbox-1 {
    left: calc(100% - 440px);
  }
}

.js_sticky .web-headHidden.navbox-1 {
  left: calc(100% - 475px);
}
.js_sticky .web-headHidden.navbox-1.s-login {
  left: calc(100% - 360px);
}
@media all and (max-width: 1000px) {
  .js_sticky .web-headHidden.navbox-1 {
    left: calc(100% - 440px);
  }
  .js_sticky .web-headHidden.navbox-1.s-login {
    left: calc(100% - 280px);
  }
}

/*------------------------------------*/
.m-headHidden {
  display: none;
}

.m-headHidNav {
  max-width: 320px;
  padding: 24px 14px 20px;
  background: #fff;
  border-radius: 0 0 5px 5px;
}
@media all and (min-width: 768px) {
  .m-headHidNav {
    margin: 0 0 0 auto;
    box-shadow: inset 0 20px 10px -20px rgba(37, 36, 36, 0.1);
  }
}

@media all and (max-width: 767px) {
  .m-headHidNav {
    max-width: 100%;
    overflow-y: scroll;
    max-height: calc(100vh - 100px);
    padding: 24px 14px 20px;
    background: #fff;
    border-radius: 0 0 5px 5px;
  }
  .m-headNav {
    margin-bottom: 40px;
  }
  .headPanel__link {
    justify-content: center;
  }
  .headLink-text {
    margin-bottom: 14px;
    padding: 0;
    justify-content: center;
    color: #282828;
  }
  .headLink-icon {
    justify-content: center;
    margin: 0;
    padding-top: 8px;
  }
  /*------------------------------------*/
  .headNav-1-tit {
    display: block;
    width: 100%;
    padding: 9px 20px 9px 10px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: #223034;
    border-bottom: solid 1px #d9d9d9;
  }
  .headNav-1-tit.js_foldTit {
    background-image: url(../images/frame/header-fold-1.svg);
  }
  .headNav-1-tit.js_open {
    color: #c5972b;
    background-image: url(../images/frame/header-fold-2.svg);
  }
  .headNav-1 a,
  .headNav-1 button {
    display: block;
    width: 100%;
    text-align: left;
  }
  .headNav-2 {
    padding: 4px 0;
    background: #f9f9f9;
  }
  .headNav-2-tit, .headNav-2-link {
    padding: 3px 10px 3px;
    font-size: 16px;
    font-weight: 700;
    color: #223034;
  }
  .headNav-2-tit.js_foldTit, .headNav-2-link.js_foldTit {
    background-image: url(../images/frame/header-fold-3.svg);
  }
  .headNav-2-tit.js_open, .headNav-2-link.js_open {
    background-image: url(../images/frame/header-fold-4.svg);
  }
  .headNav-3 {
    position: relative;
    margin-bottom: 10px;
    padding-left: 26px;
    font-size: 16px;
    font-weight: 400;
    color: #636a6c;
  }
  .headNav-1 .js_foldTit,
  .headNav-1 .js_open {
    background-size: 13px;
    background-position: right 6px center;
    background-repeat: no-repeat;
  }
}
/*------------------------------------*\
  footer
\*------------------------------------*/
footer {
  font-size: 14px;
  color: #fff;
}
.foot-main {
  position: relative;
  padding: 40px 0 25px;
  background: #27373b;
}
@media all and (max-width: 767px) {
  .foot-main {
    padding-top: 28px;
  }
}
.foot-main::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}
@media all and (max-width: 767px) {
  .foot-main::before {
    height: 3px;
  }
}

.footInfo {
  display: flex;
  align-items: center;
}
.footInfo > div:nth-child(2) {
  flex: 1 1 auto;
}
.footInfo .hr, .footInfo .hr--light {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #394c51;
  background: none;
}
@media all and (max-width: 767px) {
  .footInfo {
    display: block;
    padding: 0;
  }
}
.footInfo__item {
  flex: 1;
}

.footInfo-logo {
  height: 130px;
  margin-bottom: 16px;
  background: url(../images/frame/footer-logo.png) center center no-repeat;
  background-size: auto 100%;
}

.footInfo-qr {
  display: block;
  margin-bottom: 16px;
}
.footInfo-qr img {
  display: block;
  width: 100%;
}
@media all and (max-width: 767px) {
  .footInfo-qr {
    display: none;
  }
}

.footInfo-btn {
  display: block;
  line-height: 30px;
  text-align: center;
  background: #525f62;
  border-radius: 5px;
}

.footTitle {
  max-width: 110px;
  margin-right: 60px;
  margin-left: 15px;
}
@media all and (max-width: 1000px) {
  .footTitle {
    margin: 0 30px 0 0;
  }
}
@media all and (max-width: 767px) {
  .footTitle {
    max-width: 100%;
    margin: 0 0 20px;
  }
}

.footLink p {
  max-width: 130px;
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 12px;
  font-size: 18px;
  color: #c5972b;
  border-bottom: solid 1px #858e90;
}
.footLink p::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 38px;
  height: 4px;
  background: #c5972b;
}
@media all and (max-width: 767px) {
  .footLink p {
    max-width: 100%;
    background-image: url(../images/frame/footer-fold-1.svg);
    background-size: 12px auto;
    background-position: right 5px bottom 16px;
    background-repeat: no-repeat;
  }
  .footLink p.js_open {
    background-image: url(../images/frame/header-fold-2.svg);
    background-size: 12px auto;
    background-position: right 5px bottom 16px;
    background-repeat: no-repeat;
  }
}
.footLink ul {
  list-style: none;
}

.footLink-list {
  display: block;
}

@media all and (max-width: 767px) {
  .footLink-list {
    display: none;
  }
  .js_open + .footLink-list {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 767px) {
  .footContact p {
    font-size: 13px;
  }
}

.footContact-link {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .footContact-link {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 6px;
  }
}
.footContact-link .linkBtn {
  display: block;
  min-width: 106px;
  line-height: 30px;
  margin: 0 7px;
  padding: 0 10px;
  border-radius: 5px;
  background: #1f677c;
}
.footContact-link .linkBtn-type2 {
  background: #a70057;
}
@media all and (max-width: 767px) {
  .footContact-link .linkBtn {
    min-width: 0;
    flex: 0 0 calc(50% - 10px);
    margin: 0 0 10px;
  }
}

.foot-copyright {
  padding: 20px 0;
  text-align: center;
  background: #1d282b;
}
@media all and (max-width: 767px) {
  .foot-copyright {
    font-size: 13px;
    line-height: 20px;
  }
  .foot-copyright p:nth-child(1) {
    margin-bottom: 16px;
  }
}

.foot-fold-btn {
  position: absolute;
  top: 4px;
  left: calc(50% - 58px);
  width: 116px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 1rem;
  border-radius: 0 0 5px 5px;
}
@media all and (max-width: 767px) {
  .foot-fold-btn {
    display: none;
  }
}

/*------------------------------------*\
  cookie
\*------------------------------------*/
.cookie {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 70px;
  background: rgba(162, 127, 53, 0.9);
  overflow: visible;
}
.cookie--active {
  display: block;
}
.cookie .pagesize, .cookie .container-nav {
  color: #fff;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.cookie .pagesize p, .cookie .container-nav p {
  line-height: 34px;
  font-size: 15px;
  font-weight: normal;
}
@media all and (max-width: 1000px) {
  .cookie .pagesize, .cookie .container-nav {
    display: block;
  }
  .cookie .pagesize p, .cookie .container-nav p {
    line-height: 24px;
    text-align: center;
    margin-bottom: 20px;
  }
}
.cookie .pagesize .btn-box, .cookie .container-nav .btn-box {
  display: flex;
  flex: 1 1 auto;
  min-width: 200px;
}
.cookie .pagesize .btn-box a, .cookie .container-nav .btn-box a {
  width: 86px;
  border: 2px solid transparent;
  background-color: #fff;
  color: #a27f35;
  font-size: 16px;
}
.cookie .pagesize .btn-box a.outline, .cookie .container-nav .btn-box a.outline {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
}

/*------------------------------------*\
  需要的部分樣式 放置於parts/
\*------------------------------------*/
/*------------------------------------*\
  _btn.scss
  ___
  按鈕
\*------------------------------------*/
/*------------------------------------*\
  按鈕顏色
\*------------------------------------*/
.btn-primary {
  color: #fff;
  background: #bfa051;
}
.btn-primary:hover {
  background: rgb(180.2142857143, 148.1071428571, 66.2857142857);
}

.btn-gradient, .headPanelLink--btn-text {
  color: #fff;
  background: linear-gradient(to right, #d1ba81 0%, #997427 51%, #997427 100%);
}
.btn-gradient:hover, .headPanelLink--btn-text:hover {
  background: linear-gradient(to right, #d1ba81 0%, #997427 51%, #997427 100%);
}

.btn-primary-dark {
  color: #fff;
  background: #af9b6a;
}
.btn-primary-dark:hover {
  background: rgb(166.0917030568, 143.864628821, 89.4082969432);
}

.btn-secondary {
  color: #fff;
  background: #a70057;
}
.btn-secondary:hover {
  background: rgb(141.5, 0, 73.7155688623);
}

.btn-secondary.btn-line {
  color: #a70057;
  background: transparent;
}
.btn-secondary.btn-line:hover {
  background: rgba(167, 0, 87, 0.05);
}

.btn-tertiary {
  color: #fff;
  background: #27373b;
}
.btn-tertiary:hover {
  background: rgb(28.8520408163, 40.6887755102, 43.6479591837);
}

.btn-cancel {
  color: #878585;
  background: #e9e9e9;
}
.btn-cancel:hover {
  background: rgb(220.25, 220.25, 220.25);
}

.btn-link {
  color: #fff;
  background: #38bcd4;
}
.btn-link:hover {
  background: rgb(43.0888429752, 175.3615702479, 199.4111570248);
}

.btn-download {
  color: #fff;
  background: #fa877d;
}
.btn-download:hover {
  background: rgb(249.0555555556, 112.3333333333, 100.4444444444);
}

.btn-search {
  color: #fff;
  background: #48a4c2;
}
.btn-search:hover {
  background: rgb(60.125, 150.8053278689, 180.375);
}

.btn-map {
  color: #fff;
  background: #f0ad44;
}
.btn-map:hover {
  background: rgb(238.1064356436, 162.6485148515, 44.3935643564);
}

.btn-form {
  color: #fff;
  background: #f0ad44;
}
.btn-form:hover {
  background: rgb(238.1064356436, 162.6485148515, 44.3935643564);
}

.btn-sell {
  color: #fff;
  background: #91b24a;
}
.btn-sell:hover {
  background: rgb(130.3273809524, 159.9880952381, 66.5119047619);
}

.btn-buy {
  color: #fff;
  background: #eb6876;
}
.btn-buy:hover {
  background: rgb(232.0175438596, 81.4824561404, 97.5701754386);
}

.btn-fail {
  color: #fff;
  background: #6d6d6d;
}
.btn-fail:hover {
  background: rgb(96.25, 96.25, 96.25);
}

.btn-line {
  border: solid 1px;
}

.btn-gradient, .headPanelLink--btn-text {
  background-size: 200% auto;
}
.btn-gradient:hover, .headPanelLink--btn-text:hover {
  background-size: 200% auto;
  background-position: right center;
}

/*------------------------------------*\
  btn
\*------------------------------------*/
.btn, .headPanelLink--btn-text {
  transition: background 0.2s;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  line-height: 30px;
  border-radius: 8px;
}

/*------------------------------------*\
  按鈕尺寸
  height 50 40 36 30
\*------------------------------------*/
.btn-h-s {
  height: 30px;
  padding: 0 8px;
}

.btn-h-m, .headPanelLink--btn-text {
  min-width: 75px;
  height: 36px;
  padding: 3px 8px;
}

.btn-h-l {
  height: 40px;
  padding: 5px 8px;
}

.btn-h-xl {
  height: 50px;
  padding: 10px 8px;
  font-size: 20px;
}

.btn-w-xs {
  min-width: 80px;
  padding-left: 5px;
  padding-right: 5px;
}

.btn-w-s {
  min-width: 100px;
  padding-left: 5px;
  padding-right: 5px;
}

.btn-w-ms {
  min-width: 120px;
  padding-left: 5px;
  padding-right: 5px;
}

.btn-w-m {
  min-width: 140px;
  padding-left: 15px;
  padding-right: 15px;
}

.btn-w-check {
  min-width: 150px;
  margin-right: 30px;
  padding-left: 18px;
  padding-right: 18px;
}
.btn-w-check.check-l {
  min-width: 180px;
  padding-left: 8px;
  padding-right: 8px;
}
@media all and (max-width: 767px) {
  .btn-w-check {
    width: 100%;
    margin: 0 0 10px;
  }
}

.btn-icon {
  padding-left: 1.25em;
}

.btn-icon.icon-share {
  background: url(../images/inner/btn-icon-share.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-search {
  background: url(../images/inner/btn-icon-search.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-map {
  background: url(../images/inner/btn-icon-map.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-search-2 {
  background: url(../images/inner/btn-icon-search-2.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-map-2 {
  background: url(../images/inner/btn-icon-map-2.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-pc {
  background: url(../images/inner/btn-icon-pc.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-book {
  background: url(../images/inner/btn-icon-book.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-qa {
  background: url(../images/inner/btn-icon-qa.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-lock {
  background: url(../images/inner/btn-icon-lock.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-dl {
  background: url(../images/inner/btn-icon-dl.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-certi {
  background: url(../images/inner/btn-icon-certi.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-paper {
  background: url(../images/inner/btn-icon-paper.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-list {
  background: url(../images/inner/btn-icon-list.svg) left center no-repeat;
  background-size: auto 1em;
}

.btn-icon.icon-map-2 {
  background-size: auto 1.1em;
}

/*------------------------------------*\
  btn-share
\*------------------------------------*/
.btn-share {
  width: 42px;
  height: 42px;
  margin-right: 12px;
  border-radius: 5px;
}

.btn-share.share-mail {
  background: url(../images/inner/btn-share-mail.jpg);
  background-size: 100%;
}

.btn-share.share-line {
  background: url(../images/inner/btn-share-line.jpg);
  background-size: 100%;
}

.btn-share.share-fb {
  background: url(../images/inner/btn-share-fb.jpg);
  background-size: 100%;
}

.btn-share.share-msg {
  background: url(../images/inner/btn-share-msg.jpg);
  background-size: 100%;
}

/*------------------------------------*\
  btn box
\*------------------------------------*/
.btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.btn-box.tL {
  justify-content: flex-start;
}
.btn-box.tR {
  justify-content: flex-end;
}
.btn-box.d-block {
  display: block;
}
.btn-box.d-block .btn, .btn-box.d-block .headPanelLink--btn-text {
  display: block;
  margin-right: 0;
}

/*------------------------------------*\
  _Chip.scss
  ___
  小顆文字標籤
\*------------------------------------*/
.chip {
  display: inline-block;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
}
.chip.h-l {
  padding: 5px 8px;
}
.chip.w-l {
  min-width: 70px;
}

.chip.news-holders {
  background-color: #d6af54;
}

.chip.news-default {
  background-color: #eb6877;
}

.chip.news-announce {
  background-color: #f4ac00;
}

.chip.news-event {
  background-color: #13b5b1;
}

.chip.news-notice {
  background-color: #38bcd4;
}

.chip.news-hot {
  background-color: #cd47bc;
}

.chip.news-1 {
  background-color: #bfa051;
}

.chip.news-2 {
  background-color: #f7495d;
}

.chip.news-3 {
  background-color: #dc6fa8;
}

.chip.news-4 {
  background-color: #70a0d0;
}

.chip.news-5 {
  background-color: #91b24a;
}

.chip.news-6 {
  background-color: #3f9e88;
}

.chip.calendar-lecture {
  background-color: #38bcd4;
}

.chip.gray-light {
  background-color: #f1f1f1;
}

.chip.step-1 {
  background-color: #f39ca0;
}

.chip.step-2 {
  background-color: #eb8186;
}

.chip.step-3 {
  background-color: #f7767c;
}

.chip.step-hl-1 {
  background-color: #ea6d58;
}

.newsList .chip,
.newsTitle .chip {
  min-width: calc(4em + 16px);
}

.chip-box {
  margin-bottom: -10px;
}
.chip-box .chip {
  margin-bottom: 10px;
}

.chip-fill {
  padding: 0 5px;
  font-size: 13px;
  line-height: 20px;
  background: #a70057;
}

.chip-calendar {
  margin-right: 8px;
  padding: 4px 9px;
  font-size: 15px;
  border-radius: 0 25px 25px 0;
}

.chip-num {
  display: inline-block;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  border-radius: 12px;
}

/*------------------------------------*\
  _input.scss
  ___
  inputbox - 基本輸入框
  form - 表單單組項目(標題+內容為一組)
  驗證碼、檔案上傳等
\*------------------------------------*/
/*------------------------------------*\
  input
\*------------------------------------*/
.inputbox {
  /*datepicker*/
}
.inputbox input,
.inputbox select,
.inputbox textarea {
  width: 100%;
  min-width: 0;
  height: 50px;
  line-height: 48px;
  font-weight: 500;
  border: solid 1px #d4d4d4;
  border-radius: 8px;
  padding: 0 12px;
  background-color: #fff;
}
.inputbox input:disabled,
.inputbox select:disabled,
.inputbox textarea:disabled {
  background-color: #d4d4d4;
}
.inputbox input::placeholder {
  color: #999;
}
.inputbox input::-webkit-input-placeholder {
  color: #999;
}
.inputbox input::-moz-placeholder {
  color: #999;
}
.inputbox input:-ms-input-placeholder {
  color: #999;
}
.inputbox input:-moz-placeholder {
  color: #999;
}
.inputbox select {
  padding-right: 35px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/inner/input-select.svg);
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.inputbox select::-ms-expand {
  display: none;
}
.inputbox option:not(first-child) {
  color: #4c4c4c;
}
.inputbox.side-unit {
  position: relative;
}
.inputbox.side-unit .unit {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 30px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #999999;
  background-color: #fff;
  border-radius: 8px;
}
.inputbox input:disabled + .unit {
  background-color: #d4d4d4;
}
.inputbox.floatImg {
  position: relative;
  box-sizing: border-box;
}
.inputbox.floatImg img {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
}
.inputbox.floatImg input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/*------------------------------------*\
  checkbox  radio
\*------------------------------------*/
.radio input[type=radio] {
  display: none;
}
.radio input[type=radio]:checked + label:before {
  border-color: #caaf6b;
}
.radio input[type=radio]:checked + label:after {
  transform: scale(1);
}
.radio label {
  display: inline-block;
  min-height: 18px;
  position: relative;
  padding: 0 0 0 24px;
  margin-bottom: 0;
  cursor: pointer;
}
.radio label:before, .radio label:after {
  position: absolute;
  content: "";
  margin-top: 0.25em;
  transition: all 0.3s ease;
  transition-property: transform, border-color;
}
.radio label:before {
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 50%;
}
.radio label:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  transform: scale(0);
  background: #caaf6b;
  border-radius: 50%;
}

/*checkbox*/
.checkbox {
  text-align: left;
}
.checkbox label {
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  clear: both;
}
.checkbox label:not(:empty) {
  padding-left: 24px;
}
.checkbox label:before, .checkbox label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  box-sizing: border-box;
}
.checkbox label::before {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.checkbox label.d-block {
  display: block;
}
.checkbox input[type=checkbox] {
  flex: 0 0 auto;
  outline: 0;
  visibility: hidden;
  width: 0;
  margin: 0;
  display: block;
  float: left;
  font-size: inherit;
}
.checkbox input[type=checkbox]:checked + label::before {
  background: #caaf6b;
  border-color: #caaf6b;
}
.checkbox input[type=checkbox]:checked + label::after {
  transform: translate(4px, 5px) rotate(-45deg);
  width: 12px;
  height: 6px;
  border: 0.125em solid #fff;
  border-top-style: none;
  border-right-style: none;
}
.checkbox input[type=checkbox]:disabled + label:before {
  background-color: #fdfdfd;
  border-color: rgba(0, 0, 0, 0.26);
}
.radio.d-inblock,
.checkbox.d-inblock {
  display: inline-block;
  margin-right: 25px;
  margin-bottom: 10px;
}

textarea {
  width: 100%;
  min-height: 120px;
  padding: 10px 10px;
  overflow-y: auto;
  resize: none;
}

textarea::placeholder {
  color: #999;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-placeholder {
  color: #999;
}

textarea:-ms-input-placeholder {
  color: #999;
}

textarea:-moz-placeholder {
  color: #999;
}

/*------------------------------------*\
  表單
\*------------------------------------*/
.form {
  display: flex;
}
@media all and (max-width: 767px) {
  .form {
    display: block;
  }
}
.form.w-m {
  max-width: 512px;
  margin-right: auto;
  margin-left: auto;
}
.form.w-l {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
}
.form-title {
  flex: 0 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 140px;
  margin-right: 12px;
  font-weight: 500;
}
.form-title.w-l {
  min-width: 240px;
}
.form-title.w-auto {
  min-width: initial;
}
@media all and (max-width: 767px) {
  .form-title {
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.form-inner {
  flex: 1 1 auto;
}
.form .radio,
.form .checkbox {
  padding-top: 10px;
}

/*------------------------------------*\
  驗證碼
\*------------------------------------*/
.input-verify {
  display: flex;
  align-items: center;
}
@media all and (max-width: 540px) {
  .input-verify {
    flex-wrap: wrap;
  }
}
.input-verify .inputbox {
  flex: 0 0 200px;
  margin-right: 15px;
}
@media all and (max-width: 1000px) {
  .input-verify .inputbox {
    flex: 0 0 150px;
  }
}
@media all and (max-width: 767px) {
  .input-verify .inputbox {
    flex: 1 1 auto;
  }
}
@media all and (max-width: 540px) {
  .input-verify .inputbox {
    flex: 0 0 100%;
    margin: 0 0 10px;
  }
}
.input-verify img {
  flex: 0 0 auto;
  display: block;
  width: auto;
  height: 50px;
  margin-right: 15px;
}
.input-verify a {
  display: inline-block;
  line-height: 1.2em;
  font-weight: 500;
  color: #a70057;
  border-bottom: solid 1px;
}
@media all and (max-width: 767px) {
  .input-verify a {
    flex: 0 0 auto;
  }
}

/*------------------------------------*\
  密碼顯示/隱藏
\*------------------------------------*/
.input-pw {
  position: relative;
}
.input-pw__btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  background: url(../images/inner/login-input-pw-hide.svg) center center no-repeat;
  background-size: 24px auto;
}
.input-pw__btn.show {
  background: url(../images/inner/login-input-pw-show.svg) center center no-repeat;
  background-size: 24px auto;
}
.input-pw input {
  padding-right: 50px;
}
.input-pw input::-ms-reveal,
.input-pw input::-ms-clear {
  display: none;
}

/*------------------------------------*\
  上傳檔案
\*------------------------------------*/
.input-file {
  position: relative;
  display: flex;
}
.input-file .inputbox {
  flex: 1 1 auto;
  margin-right: 15px;
}
@media all and (max-width: 540px) {
  .input-file .btn, .input-file .headPanelLink--btn-text {
    min-width: 90px;
  }
}

.input-file__file {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/*------------------------------------*\
  輸入數值 增加減少按鈕
\*------------------------------------*/
.input-adjust {
  position: relative;
  display: flex;
  padding: 0 36px;
  height: 38px;
  border: 1px solid #a70057;
  border-radius: 8px;
  overflow: hidden;
}
.input-adjust .inputbox input {
  border-radius: 0;
  border: none;
}
.input-adjust button {
  width: 36px;
  height: 36px;
  background-color: #a70057;
  position: absolute;
  top: 0;
}
.input-adjust button.reduce {
  left: 0;
  background: #a70057 url(../images/inner/input-reduce.svg) center no-repeat;
  background-size: 24px;
}
.input-adjust button.add {
  right: 0;
  background: #a70057 url(../images/inner/input-add.svg) center no-repeat;
  background-size: 24px;
}
.input-adjust button:hover {
  background-color: #8e004a;
  transition-duration: 0.3s;
}
/*------------------------------------*\
  此頁樣式
\*------------------------------------*/
/*------------------------------------*\
_inner.scss
內頁樣式
\*------------------------------------*/
/*------------------------------------*\
顏色
\*------------------------------------*/
.color-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.color-black {
  color: #000;
}

.bg-black {
  background-color: #000;
}

.color-default {
  color: #4c4c4c;
}

.bg-default {
  background-color: #4c4c4c;
}

.color-default-dark {
  color: #333;
}

.bg-default-dark {
  background-color: #333;
}

.color-gray-dark {
  color: #666;
}

.bg-gray-dark {
  background-color: #666;
}

.color-gray {
  color: #999;
}

.bg-gray {
  background-color: #999;
}

.color-primary-light {
  color: #ffe7b5;
}

.bg-primary-light {
  background-color: #ffe7b5;
}

.color-primary {
  color: #bfa051;
}

.bg-primary {
  background-color: #bfa051;
}

.color-primary-dark {
  color: #a27f35;
}

.bg-primary-dark {
  background-color: #a27f35;
}

.color-secondary {
  color: #a70057;
}

.bg-secondary {
  background-color: #a70057;
}

.color-secondary-light {
  color: #c16b8f;
}

.bg-secondary-light {
  background-color: #c16b8f;
}

.color-tertiary-dark {
  color: #223034;
}

.bg-tertiary-dark {
  background-color: #223034;
}

.color-mark {
  color: #e3814c;
}

.bg-mark {
  background-color: #e3814c;
}

.color-sell {
  color: #91b24a;
}

.bg-sell {
  background-color: #91b24a;
}

.color-buy {
  color: #eb6876;
}

.bg-buy {
  background-color: #eb6876;
}

.color-hl-1 {
  color: #b95ead;
}

.bg-hl-1, .container-nav .swiper-wrapper .bg-hl-1:hover {
  background-color: #b95ead;
}

.color-hl-2 {
  color: #eb6876;
}

.bg-hl-2, .container-nav .swiper-wrapper .bg-hl-2:hover {
  background-color: #eb6876;
}

.color-hl-3 {
  color: #f0ad44;
}

.bg-hl-3, .container-nav .swiper-wrapper .bg-hl-3:hover {
  background-color: #f0ad44;
}

.color-hl-4 {
  color: #91b24a;
}

.bg-hl-4, .container-nav .swiper-wrapper .bg-hl-4:hover {
  background-color: #91b24a;
}

.color-hl-5 {
  color: #38bcd3;
}

.bg-hl-5, .container-nav .swiper-wrapper .bg-hl-5:hover {
  background-color: #38bcd3;
}

.color-hl-6 {
  color: #12b5b0;
}

.bg-hl-6, .container-nav .swiper-wrapper .bg-hl-6:hover {
  background-color: #12b5b0;
}

.color-hl-7 {
  color: #70a0d0;
}

.bg-hl-7, .container-nav .swiper-wrapper .bg-hl-7:hover {
  background-color: #70a0d0;
}

.color-hl-8 {
  color: #ea6d58;
}

.bg-hl-8, .container-nav .swiper-wrapper .bg-hl-8:hover {
  background-color: #ea6d58;
}

.color-hl-9 {
  color: #dc6fa8;
}

.bg-hl-9, .container-nav .swiper-wrapper .bg-hl-9:hover {
  background-color: #dc6fa8;
}

/*------------------------------------*\
間距
\*------------------------------------*/
.mb-0 {
  margin-bottom: 0;
}

.mb-1px {
  margin-bottom: 1px;
}

.mb-0-5 {
  margin-bottom: 5px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-1-5 {
  margin-bottom: 15px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-2-5 {
  margin-bottom: 25px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mr-0-5 {
  margin-right: 5px;
}

.mr-1 {
  margin-right: 10px;
}

.mr-1-5 {
  margin-right: 15px;
}

.mr-2 {
  margin-right: 20px;
}

.mr-3 {
  margin-right: 30px;
}

.p-1-5 {
  padding: 15px;
}

@media all and (max-width: 767px) {
  .m-mr-0 {
    margin-right: 0;
  }
  .m-mr-0 {
    margin-right: 0;
  }
  .m-mb-1 {
    margin-bottom: 10px;
  }
  .m-mb-2 {
    margin-bottom: 20px;
  }
  .m-pl-2-5 {
    padding-left: 25px;
  }
  .m-p-0 {
    padding: 0 !important;
  }
}
/*------------------------------------*\
font-size
\*------------------------------------*/
.fs-s {
  font-size: 0.875rem;
}

.fs-ms {
  font-size: 0.9375rem;
}

.fs-m {
  font-size: 1rem;
}

.fs-l {
  font-size: 1.125rem;
}

.fs-xl {
  font-size: 1.25rem;
}

.fs-xxl {
  font-size: 1.5rem;
}

@media all and (max-width: 767px) {
  .fs-l {
    font-size: 1rem;
  }
  .fs-xl {
    font-size: 1.125rem;
  }
  .m-fs-m {
    font-size: 1rem;
  }
}
.lh-s, .table-stripe.padding-xs {
  line-height: 1.25rem;
}

.lh-m {
  line-height: 1.5rem;
}

.lh-l {
  line-height: 30px;
}

.lh-xl {
  line-height: 36px;
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-mid {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

.tL {
  text-align: left;
}

.tR {
  text-align: right;
}

.tC {
  text-align: center;
}

.tJ {
  text-align: justify;
}

.v-m {
  vertical-align: middle;
}

.nowrap {
  white-space: nowrap;
}

.text-wrap {
  word-wrap: break-word;
  word-break: break-all;
}

.t-line {
  border-bottom: solid 1px;
}

/*------------------------------------*\
width
\*------------------------------------*/
.w-150 {
  width: 150px;
}

.w-200 {
  width: 200px;
}

.w-250 {
  width: 250px;
}

.w-500 {
  max-width: 500px;
}

@media all and (max-width: 767px) {
  .m-w-full {
    width: 100%;
    max-width: 100%;
  }
}
/*------------------------------------*\
ul
\*------------------------------------*/
.ul-point, .editbox ul,
.ul-flag,
.list-flag-bor {
  list-style: none;
}
.ul-point li, .editbox ul li,
.ul-flag li,
.list-flag-bor li {
  position: relative;
  padding-left: 30px;
}

.ul-point > li::before, .editbox ul > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 12px;
  width: 6px;
  height: 6px;
  vertical-align: middle;
  border-radius: 50%;
  background: #c5972b;
}
.ul-point.col-3, .editbox ul.col-3 {
  display: flex;
  flex-wrap: wrap;
}
.ul-point.col-3 li, .editbox ul.col-3 li {
  flex: 0 1 33%;
  padding-right: 5px;
}
@media all and (max-width: 767px) {
  .ul-point.col-3, .editbox ul.col-3 {
    display: block;
  }
  .ul-point.col-3 li, .editbox ul.col-3 li {
    padding-right: 0;
  }
}

.ul-flag > li::before, .list-flag-bor > li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #a70057;
}

.ul-flag.list-primary > li::before, .list-primary.list-flag-bor > li::before {
  border-color: transparent transparent transparent #c5972b;
}

.lh-m.ul-flag li::before, .lh-m.list-flag-bor li::before {
  top: 10px;
}

.ul-bor-dot, .sitemap-list, .list-flag-bor {
  list-style: none;
}
.ul-bor-dot > li, .sitemap-list > li, .list-flag-bor > li {
  border-bottom: dotted 2px #ddd5c5;
}
.ul-bor-dot.pd-m li, .pd-m.sitemap-list li, .pd-m.list-flag-bor li {
  padding-top: 12px;
  padding-bottom: 12px;
}
.ul-bor-dot.pd-l li, .pd-l.sitemap-list li, .pd-l.list-flag-bor li {
  padding-top: 20px;
  padding-bottom: 20px;
}

.list-flag-bor.pd-m li::before {
  top: 24px;
}

/*------------------------------------*\
ol
\*------------------------------------*/
.ol-num, .editbox ol {
  list-style: none;
  padding-left: 0;
}

.ol-num > li, .editbox ol > li {
  counter-increment: num;
  position: relative;
  padding-left: 30px;
}

.ol-num > li::before, .editbox ol > li::before {
  content: counter(num);
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #7f7f7f;
  border-radius: 10px;
}

.ol-num.list-primary > li::before, .editbox ol.list-primary > li::before {
  background: #c5972b;
}

.ol-num.list-secondary > li::before, .editbox ol.list-secondary > li::before {
  background: #a70057;
}

.list-item-border > li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #eee;
}
.list-item-border > li:nth-last-child(1) {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

.ul-flag.list-hl-1 > li::before, .editbox ol.ul-flag > li::before, .list-hl-1.list-flag-bor > li::before, .editbox ol.list-flag-bor > li::before {
  border-color: transparent transparent transparent #b95ead;
}

.ul-flag.list-hl-2 > li::before, .list-hl-2.list-flag-bor > li::before {
  border-color: transparent transparent transparent #eb6876;
}

.ul-flag.list-hl-3 > li::before, .list-hl-3.list-flag-bor > li::before {
  border-color: transparent transparent transparent #f0ad44;
}

.ul-flag.list-hl-4 > li::before, .list-hl-4.list-flag-bor > li::before {
  border-color: transparent transparent transparent #91b24a;
}

.ul-flag.list-hl-5 > li::before, .list-hl-5.list-flag-bor > li::before {
  border-color: transparent transparent transparent #38bcd3;
}

.ul-flag.list-hl-6 > li::before, .list-hl-6.list-flag-bor > li::before {
  border-color: transparent transparent transparent #12b5b0;
}

.ul-flag.list-hl-7 > li::before, .list-hl-7.list-flag-bor > li::before {
  border-color: transparent transparent transparent #70a0d0;
}

.ul-flag.list-hl-8 > li::before, .list-hl-8.list-flag-bor > li::before {
  border-color: transparent transparent transparent #ea6d58;
}

.ul-flag.list-hl-9 > li::before, .list-hl-9.list-flag-bor > li::before {
  border-color: transparent transparent transparent #dc6fa8;
}

.ul-point.list-hl-1 > li::before, .editbox ul.list-hl-1 > li::before,
.ol-num.list-hl-1 > li::before,
.editbox ol > li::before {
  background: #b95ead;
}

.ul-point.list-hl-2 > li::before, .editbox ul.list-hl-2 > li::before,
.ol-num.list-hl-2 > li::before,
.editbox ol.list-hl-2 > li::before {
  background: #eb6876;
}

.ul-point.list-hl-3 > li::before, .editbox ul.list-hl-3 > li::before,
.ol-num.list-hl-3 > li::before,
.editbox ol.list-hl-3 > li::before {
  background: #f0ad44;
}

.ul-point.list-hl-4 > li::before, .editbox ul.list-hl-4 > li::before,
.ol-num.list-hl-4 > li::before,
.editbox ol.list-hl-4 > li::before {
  background: #91b24a;
}

.ul-point.list-hl-5 > li::before, .editbox ul.list-hl-5 > li::before,
.ol-num.list-hl-5 > li::before,
.editbox ol.list-hl-5 > li::before {
  background: #38bcd3;
}

.ul-point.list-hl-6 > li::before, .editbox ul.list-hl-6 > li::before,
.ol-num.list-hl-6 > li::before,
.editbox ol.list-hl-6 > li::before {
  background: #12b5b0;
}

.ul-point.list-hl-7 > li::before, .editbox ul.list-hl-7 > li::before,
.ol-num.list-hl-7 > li::before,
.editbox ol.list-hl-7 > li::before {
  background: #70a0d0;
}

.ul-point.list-hl-8 > li::before, .editbox ul.list-hl-8 > li::before,
.ol-num.list-hl-8 > li::before,
.editbox ol.list-hl-8 > li::before {
  background: #ea6d58;
}

.ul-point.list-hl-9 > li::before, .editbox ul.list-hl-9 > li::before,
.ol-num.list-hl-9 > li::before,
.editbox ol.list-hl-9 > li::before {
  background: #dc6fa8;
}

/*------------------------------------*\
img
\*------------------------------------*/
.imgbox, .chartArea-img .imgbox, .chartArea-img .imgbox-share, .imgbox-share {
  overflow: hidden;
}
.imgbox img, .chartArea-img .imgbox img, .chartArea-img .imgbox-share img, .imgbox-share img {
  display: block;
  max-width: 100%;
  height: auto;
}
.imgbox a, .chartArea-img .imgbox a, .chartArea-img .imgbox-share a, .imgbox-share a {
  display: block;
  padding: 0;
}
.imgbox.full img, .full.imgbox-share img {
  width: 100%;
}
.imgbox.tC img, .tC.imgbox-share img {
  margin: 0 auto;
}

.imgbox-share {
  margin-bottom: 15px;
}
.imgbox-share img {
  width: 150px;
  margin: 0 auto;
  border: solid 1px #e8e8e8;
}

.imgbox-chart {
  padding: 18px;
  border: solid 1px #c5972b;
}

/*------------------------------------*\
btn
\*------------------------------------*/
.text-link {
  transition: color 0.2s;
}
.text-link:hover {
  color: #a70057;
}

/*------------------------------------*\
隱藏訊息
\*------------------------------------*/
.msg-hidden {
  position: relative;
}
.msg-hidden .msg-hidden-text {
  display: none;
  position: absolute;
  width: calc(100% - 40px);
  max-width: 300px;
  left: 50%;
  bottom: calc(100% + 10px);
  padding: 5px 20px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  transform: translateX(-50%);
}
.msg-hidden .msg-hidden-text::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 5px);
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: rgba(0, 0, 0, 0.6) transparent transparent transparent;
}

/*------------------------------------*\
table
\*------------------------------------*/
.tr-link {
  cursor: pointer;
}

.tr-bg {
  background: #fcfcfc;
}

.tr-bg-gray {
  background: #f2f2f2;
}

.tr-bg-primary {
  background: #fffaee;
}

.tr-bg-lightY {
  background: #f2e3bf;
}

.td-bor-t {
  border-top: solid 2px #caaf6b;
}

.td-bor-b {
  border-bottom: solid 2px #caaf6b;
}

.td-bor-r {
  border-right: solid 2px #caaf6b;
}

.td-bor-r-thin {
  border-right: solid 1px #dfcfa6;
}

.td-bor-b-thin {
  border-bottom: solid 1px #dfcfa6;
}

.td-bor-r-gray {
  border-right: solid 1px #e8e8e8;
}

.td-bor-b-gray {
  border-bottom: solid 1px #e8e8e8;
}

.table-stripe {
  width: 100%;
  color: #4c4c4c;
}
.table-stripe tbody tr td {
  border-bottom: solid 1px #e8e8e8;
}
.table-stripe .today {
  color: #ff323a;
}
.table-stripe .today::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../images/inner/ic-star.svg);
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  margin-bottom: 4px;
}
.table-stripe--primary tbody tr {
  border-bottom: solid 1px #dcc69a;
}
.table-stripe tbody tr.tr-bor-0 {
  border-bottom: none;
}
.table-stripe th {
  padding-left: 10px;
  padding-right: 10px;
}
@media all and (max-width: 767px) {
  .table-stripe th {
    padding: 10px;
  }
}
.table-stripe td {
  padding: 10px 15px;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  .table-stripe td {
    padding: 10px;
  }
}
.table-stripe.padding-xs thead th {
  padding: 10px 6px;
}
.table-stripe.padding-xs td {
  padding: 6px 6px;
}
.table-stripe.padding-s td {
  padding-left: 6px;
  padding-right: 6px;
}
.table-stripe.padding-m td {
  padding: 10px 18px;
}
@media all and (max-width: 767px) {
  .table-stripe.padding-m td {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.table-stripe.padding-l td {
  padding: 20px 10px;
}
.table-stripe td.td-block {
  padding: 0;
}
.table-stripe.bot-bor-0 tr:nth-last-child(1) {
  border-bottom: none;
}
.table-stripe input,
.table-stripe select,
.table-stripe textarea {
  height: 36px;
  line-height: 36px;
}

.table-sub,
.table-stripe .table-sub,
.table-fold .table-fold-td .table-sub {
  width: 100%;
}
.table-sub thead,
.table-stripe .table-sub thead,
.table-fold .table-fold-td .table-sub thead {
  background: #f2e3bf;
}
.table-sub tbody,
.table-stripe .table-sub tbody,
.table-fold .table-fold-td .table-sub tbody {
  background: #fffbf0;
}
.table-sub th,
.table-sub td,
.table-stripe .table-sub th,
.table-stripe .table-sub td,
.table-fold .table-fold-td .table-sub th,
.table-fold .table-fold-td .table-sub td {
  padding: 3px 5px;
}
.table-sub tr,
.table-stripe .table-sub tr,
.table-fold .table-fold-td .table-sub tr {
  border: none;
}

th.th-h-m {
  height: 40px;
}

th.th-h-l {
  height: 60px;
}

.th-bg, .table-th-stripe th, .th-bg--hl-2--light, .th-bg--hl-2, .th-bg--light, .table-th-stripe th:nth-child(even) {
  color: #fff;
  font-weight: 700;
  background: #caaf6a;
}

.th-bg--light, .table-th-stripe th:nth-child(even) {
  background: #d4bf88;
}

.th-bg--hl-2 {
  background: #eb6876;
}

.th-bg--hl-2--light {
  background: #ef8692;
}

.table-th th {
  background-color: #efefef;
  color: #4c4c4c;
  padding: 8px 4px;
}

.table-th-stripe th {
  line-height: 22px;
  padding: 5px;
}
.table-th-stripe th.bg-holiday {
  background: #a27f35;
}

.table-fold tr.table-fold-open {
  background: #fffaee;
}
.table-fold .table-fold-td {
  border-bottom: none;
}
.table-fold .table-fold-td td {
  padding: 0;
}
.table-fold .table-fold-inner {
  position: relative;
  padding: 25px 70px 25px 25px;
  text-align: left;
  background: #fff7df;
  border-bottom: solid 1px #e8e8e8;
}
@media all and (max-width: 540px) {
  .table-fold .table-fold-inner {
    padding: 40px 10px 15px;
  }
}
.table-fold .table-fold-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 30px;
  height: 30px;
  background: #c5972b url(../images/inner/close-white.svg) center center no-repeat;
  background-size: 40%;
  border-radius: 50%;
}
@media all and (max-width: 540px) {
  .table-fold .table-fold-close {
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
  }
}

.table-link tbody tr {
  cursor: pointer;
}

.table-dropdown {
  width: 100%;
  color: #4c4c4c;
  margin-bottom: 10px;
}
.table-dropdown-title {
  background-color: #efefef;
  padding: 10px 40px 10px 10px;
  position: relative;
}
.table-dropdown-title a.more {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
}
.table-dropdown-title a.more::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/inner/input-select.svg) center no-repeat;
  background-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}
.table-dropdown.open .table-dropdown-title a.more::before {
  background: url(../images/inner/qafold-arrow-1.svg) center no-repeat;
  background-size: 20px;
  transform: translateY(-50%) rotate(180deg);
  top: 50%;
}
.table-dropdown-tbody {
  padding: 0 10px 10px;
  border: 1px solid #efefef;
  display: none;
}
.table-dropdown-tbody li {
  display: flex;
}
.table-dropdown-tbody > li:nth-child(even) {
  background-color: #f8f8f8;
}
.table-dropdown-th {
  width: 40%;
  color: #777777;
  font-size: 16px;
  padding-left: 6px;
}
.table-dropdown-td {
  flex: 1 1 auto;
  color: #000000;
  font-weight: 500;
  text-align: right;
  padding-right: 6px;
}
.table-dropdown.open .table-dropdown-title a::before {
  background: url(../images/inner/qafold-arrow-1.svg) center no-repeat;
  background-size: 20px;
  transform: translateY(-50%) rotate(180deg);
}
.table-dropdown.open .table-dropdown-tbody {
  display: block;
}

@media all and (max-width: 767px) {
  .table-m-block table,
  .table-m-block tbody,
  .table-m-block tr,
  .table-m-block th,
  .table-m-block td {
    display: block;
  }
  .table-m-block thead {
    display: none;
  }
  .table-rwd table,
  .table-rwd tbody,
  .table-rwd tr,
  .table-rwd th,
  .table-rwd td {
    display: block;
  }
  .table-rwd thead {
    display: none;
  }
  .table-rwd td {
    display: flex;
    justify-content: space-between;
    position: relative;
    text-align: right;
  }
  .table-rwd td:before {
    content: attr(data-th);
    flex: 0 0 auto;
    max-width: 8em;
    text-align: left;
    margin-right: 10px;
    color: #222;
    font-weight: bold;
  }
  .table-rwd .td-block {
    display: block;
    padding: 0;
    width: 100%;
  }
  .table-rwd .td-block::before {
    content: none;
  }
  .table-rwd .table-fold-td td::before {
    content: none;
  }
}
.table-sticky-x {
  overflow: auto;
}
.table-sticky-x table {
  table-layout: fixed;
  width: auto;
  min-width: 100%;
  overflow: unset !important;
}
.table-sticky-x thead {
  position: sticky;
  top: 0;
  z-index: 4;
}
.table-sticky-x thead th {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.table-sticky-x .table-sticky-th,
.table-sticky-x tbody th {
  position: sticky;
  left: 0;
  z-index: 3;
}

/*------------------------------------*\
分隔線 hr
\*------------------------------------*/
.hr, .hr--light {
  border: none;
  height: 1px;
  margin-top: 0;
  background: #c5972b;
}
.hr--light {
  background: #dcc69a;
}

.hr-text {
  position: relative;
  text-align: center;
  font-weight: 700;
  color: #9d8038;
}
.hr-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c5972b;
}
.hr-text span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 18px;
  background: #fff;
}

/*------------------------------------*\
內頁修改popup
\*------------------------------------*/
.popup-title {
  background: #fffaee;
}
.popup-title h2 {
  font-size: 24px;
  color: #a70057;
}

.popup-inner .inner-pd {
  padding: 40px;
}
.popup-inner .inner-pd.pd-s {
  padding: 20px 40px;
}
@media all and (max-width: 767px) {
  .popup-inner .inner-pd {
    padding: 20px 15px;
  }
  .popup-inner .inner-pd.pd-s {
    padding: 20px;
  }
}

.shareArea {
  padding: 20px;
  background: #f4f4f4;
}
.shareArea p {
  margin-bottom: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

/*------------------------------------*\
內頁大區塊
\*------------------------------------*/
.container {
  line-height: 30px;
}
.container-head {
  min-height: 300px;
  padding: 180px 0 32px;
  background: url(../images/inner/inner-container-head-bg.jpg) center center;
  background-size: cover;
}
@media all and (max-width: 767px) {
  .container-head {
    min-height: 190px;
    padding-top: 104px;
    padding-bottom: 20px;
  }
}
.container-banner {
  display: block;
  height: 440px;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
@media all and (max-width: 767px) {
  .container-banner {
    height: 270px;
  }
}
@media all and (max-width: 540px) {
  .container-banner {
    height: 240px;
  }
}
.container-banner.text-left {
  background-position: right center;
}
@media all and (max-width: 1280px) {
  .container-banner.text-left {
    background-position: left center;
  }
}
@media all and (max-width: 540px) {
  .container-banner.text-left {
    background-position: left -60px center;
  }
}
.container-banner.text-right {
  background-position: left center;
}
@media all and (max-width: 1280px) {
  .container-banner.text-right {
    background-position: right center;
  }
}
@media all and (max-width: 540px) {
  .container-banner.text-right {
    background-position: right -60px center;
  }
}
.container-banner a {
  display: block;
  width: 100%;
}
.container-inner {
  padding: 40px 0;
  background: #f9f8f8;
  min-height: calc(100vh - 511px);
}
@media all and (max-width: 767px) {
  .container-inner {
    padding: 15px 0;
  }
}
.container.noHF {
  height: 100vh;
}
.container.noHF .container-head {
  min-height: auto;
  height: 200px;
  padding-top: 100px;
}
@media all and (max-width: 767px) {
  .container.noHF .container-head {
    height: 120px;
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.container.noHF .container-inner {
  min-height: calc(100vh - 200px);
}
@media all and (max-width: 767px) {
  .container.noHF .container-inner {
    min-height: calc(100vh - 120px);
  }
}

.containerTitle {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 28px;
  font-size: 36px;
  line-height: 1.1em;
  font-weight: 700;
  color: #a70057;
}
@media all and (max-width: 767px) {
  .containerTitle {
    padding-bottom: 16px;
    font-size: 28px;
  }
}
.containerTitle::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 45px);
  bottom: 0;
  width: 90px;
  height: 6px;
}
@media all and (max-width: 767px) {
  .containerTitle::after {
    left: calc(50% - 20px);
    width: 40px;
  }
}
.containerTitle .small {
  font-size: 24px;
}

.topArea {
  background: #fffaee;
  border-top: solid 1px #dcc69a;
}
.topArea-padding {
  padding: 18px 40px;
}
.topArea.pd-l {
  padding: 30px 40px;
}
@media all and (max-width: 767px) {
  .topArea-padding, .topArea.pd-l {
    padding: 15px;
  }
}

.content, .lectureTitle-inner {
  background: #fff;
  color: #4c4c4c;
}
.content-padding, .lectureTitle-inner {
  padding: 40px;
}
@media all and (max-width: 767px) {
  .content-padding, .lectureTitle-inner {
    padding: 15px;
  }
}
.content--banner {
  margin-top: -80px;
  border-top: solid 4px #c4aa6c;
}
@media all and (max-width: 767px) {
  .content--banner {
    margin-top: -40px;
  }
}

/*------------------------------------*\
上方區塊_連結
\*------------------------------------*/
.topLinkArea {
  display: flex;
  background-color: #f7f1e4;
  border-bottom: solid 4px #a70057;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media all and (max-width: 767px) {
  .topLinkArea {
    display: block;
  }
}
.topLinkArea a {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  line-height: 24px;
  padding: 10px 10px;
  font-size: 18px;
  font-weight: 500;
  color: #4e4e4e;
  transition: color 0.2s;
}
.topLinkArea a:hover {
  color: #a70057;
}
.topLinkArea a:hover.on {
  color: #fff;
}
@media all and (max-width: 767px) {
  .topLinkArea a {
    display: block;
    height: 50px;
  }
}
.topLinkArea .text {
  font-size: 20px;
}
.topLinkArea .on {
  background-color: #a70057;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #fff;
}
.topLinkArea .on .num {
  color: #a70057;
  background-color: #fff;
}
@media all and (max-width: 767px) {
  .topLinkArea .on {
    border-radius: 12px;
  }
}

.inputbox-topLink {
  margin-bottom: 20px;
}
.inputbox-topLink select {
  padding-left: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #4e4e4e;
  background-color: #f7f1e4;
  border: none;
  background-image: url(../images/inner/qafold-arrow-3.svg);
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: right 20px center;
}
.inputbox-topLink select option:checked {
  background: #a70057;
  color: #fff;
}

/*------------------------------------*\
小區塊
\*------------------------------------*/
.bgArea-padding {
  padding: 30px 36px;
}
.bgArea-padding-s {
  padding: 20px 25px;
}
.bgArea-padding-xs {
  padding: 10px 16px;
}
@media all and (max-width: 767px) {
  .bgArea-padding, .bgArea-padding-s {
    padding: 15px;
  }
  .bgArea-padding-xs {
    padding: 10px;
  }
}

.bgArea {
  background-color: #fffaee;
}
.bgArea-dark {
  background-color: #fff7df;
}
.bgArea-gray {
  background-color: #f5f4f4;
}
.bgArea-gray-light {
  background-color: #fcfcfc;
}

.borArea {
  border: solid 2px #d2d2d3;
  border-radius: 10px;
}
.borArea-padding {
  padding: 20px 15px;
}

.borBox {
  padding: 10px 20px;
  border: solid 2px #d4bf88;
  border-radius: 10px;
}

/*------------------------------------*\
標題
\*------------------------------------*/
.secTitle {
  font-size: 24px;
  font-weight: 700;
  color: #4c4c4c;
}
.secTitle .deco {
  padding-right: 20px;
  background: url(../images/inner/title-deco-1.png) right bottom 0.2em no-repeat;
  background-size: auto 14px;
}

.subTitle {
  font-size: 22px;
  font-weight: 700;
  color: #a27f35;
}

.bg-title {
  padding: 5px 16px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: #caaf6a;
}
.bg-title--secondary {
  background: #b93379;
}
.bg-title--secondary-dark {
  background: #a70057;
}

.bg-title--icon {
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
}
.bg-title--icon .icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin-right: 8px;
}
.bg-title--icon .text {
  flex: 1 1 auto;
}
.bg-title--icon .icon-lock {
  background: url(../images/inner/bg-title-icon-lock.png) center center no-repeat;
  background-size: 100%;
}

.strongTitle span, .sitemap-title span {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #a70057;
}
.strongTitle span::after, .sitemap-title span::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 40px);
  bottom: 0;
  width: 80px;
  height: 4px;
  background: #a70057;
}
@media all and (max-width: 767px) {
  .strongTitle span, .sitemap-title span {
    padding-bottom: 10px;
  }
}

.bor-title {
  position: relative;
  padding-left: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #b0914d;
}
.bor-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 1em;
  background: #b0914d;
}

.bor-title.color-hl-1 {
  color: #b95ead;
}
.bor-title.color-hl-1::after {
  background: #b95ead;
}

.bor-title.color-hl-2 {
  color: #eb6876;
}
.bor-title.color-hl-2::after {
  background: #eb6876;
}

.bor-title.color-hl-3 {
  color: #f0ad44;
}
.bor-title.color-hl-3::after {
  background: #f0ad44;
}

.bor-title.color-hl-4 {
  color: #91b24a;
}
.bor-title.color-hl-4::after {
  background: #91b24a;
}

.bor-title.color-hl-5 {
  color: #38bcd3;
}
.bor-title.color-hl-5::after {
  background: #38bcd3;
}

.bor-title.color-hl-6 {
  color: #12b5b0;
}
.bor-title.color-hl-6::after {
  background: #12b5b0;
}

.bor-title.color-hl-7 {
  color: #70a0d0;
}
.bor-title.color-hl-7::after {
  background: #70a0d0;
}

.bor-title.color-hl-8 {
  color: #ea6d58;
}
.bor-title.color-hl-8::after {
  background: #ea6d58;
}

.bor-title.color-hl-9 {
  color: #dc6fa8;
}
.bor-title.color-hl-9::after {
  background: #dc6fa8;
}

.bor-title-inner {
  padding-left: 16px;
}

.xlTitle {
  font-size: 32px;
  font-weight: 700;
}

.bor-title-xl {
  position: relative;
  padding-left: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #4c4c4c;
}
.bor-title-xl::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #a70057;
}

.noticeTitle {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.noticeTitle-main {
  flex: 0 0 auto;
  margin-right: 20px;
}
.noticeTitle-sub {
  flex: 0 0 auto;
  text-align: right;
}
@media all and (max-width: 767px) {
  .noticeTitle {
    display: block;
  }
  .noticeTitle-main {
    margin: 0;
  }
}

/*----------------------------------------------------------*\
內頁特殊區塊樣式
\*----------------------------------------------------------*/
span.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 6px;
}

.icon-step {
  display: inline-block;
  width: 1em;
  height: 1em;
}
.icon-step.down {
  background: url(../images/inner/inner-steplist-between-down.svg) center center no-repeat;
  background-size: 1em;
}

/*------------------------------------*\
container-nav
\*------------------------------------*/
.container-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -10px;
}
.container-nav-inner {
  max-width: 100%;
  padding: 0 36px;
  position: relative;
}
.container-nav .swiper {
  margin: 0 auto;
}
.container-nav .swiper-slide {
  width: auto;
}
.container-nav .container-nav-prev,
.container-nav .container-nav-next {
  position: absolute;
  top: calc(50% - 16px);
  width: 32px;
  height: 32px;
}
.container-nav .container-nav-prev.swiper-button-disabled,
.container-nav .container-nav-next.swiper-button-disabled {
  display: none;
}
.container-nav .container-nav-prev {
  left: 0;
  background: url(../images/inner/container-nav-prev.png) center center no-repeat;
  background-size: 50%;
}
.container-nav .container-nav-next {
  right: 0;
  background: url(../images/inner/container-nav-next.png) center center no-repeat;
  background-size: 50%;
}
.container-nav .swiper-wrapper a {
  transition: background 0.2s;
  display: block;
  min-width: 100px;
  height: 36px;
  line-height: 34px;
  margin: 0 8px;
  padding: 0 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #a70057;
  border: solid 1px;
  border-radius: 18px;
}
.container-nav .swiper-wrapper a.on {
  color: #fff;
  background: #a70057;
  border-color: #a70057;
}
@media all and (min-width: 768px) {
  .container-nav .swiper-wrapper a:hover {
    background: rgba(167, 0, 87, 0.1);
  }
  .container-nav .swiper-wrapper a.on:hover {
    background: #a70057;
  }
}
@media all and (max-width: 767px) {
  .container-nav .swiper-wrapper a {
    min-width: 0;
    height: 30px;
    line-height: 28px;
    margin: 0 4px;
    padding: 0 15px;
    font-size: 1rem;
  }
}

.container-nav .swiper-wrapper .bg-hl-1, .container-nav .swiper-wrapper .bg-hl-1:hover {
  color: #fff;
  border: none;
}
.container-nav .swiper-wrapper .bg-hl-1:hover {
  opacity: 0.8;
}

.container-nav .swiper-wrapper .bg-hl-2, .container-nav .swiper-wrapper .bg-hl-2:hover {
  color: #fff;
  border: none;
}
.container-nav .swiper-wrapper .bg-hl-2:hover {
  opacity: 0.8;
}

.container-nav .swiper-wrapper .bg-hl-3, .container-nav .swiper-wrapper .bg-hl-3:hover {
  color: #fff;
  border: none;
}
.container-nav .swiper-wrapper .bg-hl-3:hover {
  opacity: 0.8;
}

.container-nav .swiper-wrapper .bg-hl-4, .container-nav .swiper-wrapper .bg-hl-4:hover {
  color: #fff;
  border: none;
}
.container-nav .swiper-wrapper .bg-hl-4:hover {
  opacity: 0.8;
}

.container-nav .swiper-wrapper .bg-hl-5, .container-nav .swiper-wrapper .bg-hl-5:hover {
  color: #fff;
  border: none;
}
.container-nav .swiper-wrapper .bg-hl-5:hover {
  opacity: 0.8;
}

.container-nav .swiper-wrapper .bg-hl-6, .container-nav .swiper-wrapper .bg-hl-6:hover {
  color: #fff;
  border: none;
}
.container-nav .swiper-wrapper .bg-hl-6:hover {
  opacity: 0.8;
}

.container-nav .swiper-wrapper .bg-hl-7, .container-nav .swiper-wrapper .bg-hl-7:hover {
  color: #fff;
  border: none;
}
.container-nav .swiper-wrapper .bg-hl-7:hover {
  opacity: 0.8;
}

.container-nav .swiper-wrapper .bg-hl-8, .container-nav .swiper-wrapper .bg-hl-8:hover {
  color: #fff;
  border: none;
}
.container-nav .swiper-wrapper .bg-hl-8:hover {
  opacity: 0.8;
}

.container-nav .swiper-wrapper .bg-hl-9, .container-nav .swiper-wrapper .bg-hl-9:hover {
  color: #fff;
  border: none;
}
.container-nav .swiper-wrapper .bg-hl-9:hover {
  opacity: 0.8;
}

/*------------------------------------*\
pager
\*------------------------------------*/
.pager {
  text-align: center;
}
@media all and (max-width: 767px) {
  .pager {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.pager li {
  display: inline-block;
}
.pager a {
  display: inline-block;
  vertical-align: middle;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 4px;
  text-align: center;
  color: #000;
  border-radius: 4px;
}
.pager a.on {
  color: #fff;
  background: #caaf6a;
}
@media all and (max-width: 767px) {
  .pager a {
    height: 24px;
    line-height: 24px;
    margin: 0 3px;
  }
}

.pager_icon.first, .pager_icon.prev {
  margin: 0 15px 0 0;
}
@media all and (max-width: 767px) {
  .pager_icon.first, .pager_icon.prev {
    margin: 0 3px;
  }
}
.pager_icon.last, .pager_icon.next {
  margin: 0 0 0 15px;
}
@media all and (max-width: 767px) {
  .pager_icon.last, .pager_icon.next {
    margin: 0 3px;
  }
}

.pager_icon.first {
  background: #f9f8f8 url(../images/inner/pager-first.png) center center no-repeat;
  background-size: auto 16px;
}
@media all and (max-width: 767px) {
  .pager_icon.first {
    background-size: auto 14px;
  }
}

.pager_icon.prev {
  background: #f9f8f8 url(../images/inner/pager-prev.png) center center no-repeat;
  background-size: auto 16px;
}
@media all and (max-width: 767px) {
  .pager_icon.prev {
    background-size: auto 14px;
  }
}

.pager_icon.next {
  background: #f9f8f8 url(../images/inner/pager-next.png) center center no-repeat;
  background-size: auto 16px;
}
@media all and (max-width: 767px) {
  .pager_icon.next {
    background-size: auto 14px;
  }
}

.pager_icon.last {
  background: #f9f8f8 url(../images/inner/pager-last.png) center center no-repeat;
  background-size: auto 16px;
}
@media all and (max-width: 767px) {
  .pager_icon.last {
    background-size: auto 14px;
  }
}

/*------------------------------------*\
忘記密碼 table-member
\*------------------------------------*/
/*------------------------------------*\
訊息標題
\*------------------------------------*/
.news-title, .newsList a, .newsTitle {
  display: flex;
}
.news-title .chip, .newsList a .chip, .newsTitle .chip,
.news-title .date,
.newsList a .date,
.newsTitle .date {
  flex: 0 0 auto;
}
.news-title .chip, .newsList a .chip, .newsTitle .chip {
  align-self: flex-start;
  margin-right: 20px;
}
.news-title .text, .newsList a .text, .newsTitle .text {
  flex: 1 1 auto;
  margin-right: 16px;
}
.news-title .date, .newsList a .date, .newsTitle .date {
  flex: 0 0 auto;
  color: #585858;
}
@media all and (max-width: 767px) {
  .news-title, .newsList a, .newsTitle {
    flex-wrap: wrap;
  }
  .news-title .chip, .newsList a .chip, .newsTitle .chip {
    order: 1;
    margin: 0 10px 5px 0;
  }
  .news-title .text, .newsList a .text, .newsTitle .text {
    order: 3;
    flex: 0 0 100%;
    margin: 0;
    text-align: justify;
  }
  .news-title .date, .newsList a .date, .newsTitle .date {
    order: 2;
    flex: 1 1 auto;
    line-height: 24px;
    text-align: right;
  }
}

.newsTitle .text {
  font-size: 24px;
  font-weight: 700;
  color: #4c4c4c;
}
.newsTitle .chip {
  margin-top: 3px;
}
@media all and (max-width: 767px) {
  .newsTitle .text {
    font-size: 18px;
  }
}

/*------------------------------------*\
newsList
\*------------------------------------*/
.newsList {
  line-height: 1.5em;
  list-style: none;
}
.newsList li {
  padding: 12px 0;
  border-bottom: dotted 2px #ddd5c5;
}
.newsList .text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media all and (max-width: 767px) {
  .newsList li {
    padding: 6px 0;
  }
  .newsList .text {
    display: block;
    white-space: unset;
    overflow: auto;
    text-overflow: unset;
  }
}

/*------------------------------------*\
行事曆 calendar-nav stockCloseArea
\*------------------------------------*/
/*------------------------------------*\
行事曆_講座 calendar-lecture
\*------------------------------------*/
.calendar-lecture__img, .lectureTitle-img {
  flex: 0 0 auto;
  width: 230px;
  margin-right: 25px;
  border-radius: 24px 24px 0 24px;
  overflow: hidden;
}
.calendar-lecture__img img, .lectureTitle-img img {
  display: block;
  width: 100%;
}
@media all and (max-width: 767px) {
  .calendar-lecture__img, .lectureTitle-img {
    width: 100%;
    margin: 0 0 16px;
  }
}

.lectureTitle {
  padding-top: 40px;
}
.lectureTitle-inner {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 0;
}
.lectureTitle-inner.pb-0 {
  padding-bottom: 0;
}
@media all and (max-width: 767px) {
  .lectureTitle-inner {
    display: block;
  }
}

.lectureTitle-img {
  width: calc(50% - 50px);
  margin-top: -80px;
  margin-right: 50px;
}
@media all and (max-width: 767px) {
  .lectureTitle-img {
    width: 100%;
    margin-top: -40px;
  }
}

.lectureTitle-text {
  flex: 1 1 auto;
}
.lectureTitle-text .title {
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.5em;
  font-weight: 700;
}
@media all and (max-width: 767px) {
  .lectureTitle-text .title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.lectureTitle-text .chip-calendar {
  padding: 8px 13px 8px 10px;
  font-size: 18px;
}
.lectureTitle-text .time {
  font-size: 22px;
  font-weight: 700;
}
@media all and (max-width: 767px) {
  .lectureTitle-text .time {
    font-size: 20px;
  }
}

/*------------------------------------*\
QA qaBox
\*------------------------------------*/
/*------------------------------------*\
檔案下載 dlBox
\*------------------------------------*/
/*------------------------------------*\
連結清單
網站導覽
\*------------------------------------*/
.linklist-list {
  list-style: none;
  font-weight: 500;
  color: #656565;
}

.linklist--col-2 .linklist-list,
.linklist--col-4 .linklist-list {
  display: flex;
  flex-wrap: wrap;
}
.linklist--col-2 .linklist-list li,
.linklist--col-4 .linklist-list li {
  padding-right: 10px;
}
@media all and (max-width: 767px) {
  .linklist--col-2 .linklist-list,
  .linklist--col-4 .linklist-list {
    display: block;
  }
  .linklist--col-2 .linklist-list li,
  .linklist--col-4 .linklist-list li {
    padding: 0;
  }
}

.linklist--col-2 .linklist-list li {
  flex: 0 1 50%;
}

.linklist--col-4 .linklist-list li {
  flex: 0 1 25%;
}

/*------------------------------------*\
網站導覽
\*------------------------------------*/
.sitemap-list > li {
  display: flex;
  align-items: center;
  padding: 25px 0;
}
@media all and (max-width: 767px) {
  .sitemap-list > li {
    display: block;
    padding: 15px 0;
  }
}

.sitemap-title {
  flex: 0 0 160px;
  text-align: center;
}
.sitemap-title span {
  font-size: 20px;
}
.sitemap-title span::after {
  left: calc(50% - 20px);
  width: 40px;
}
@media all and (max-width: 767px) {
  .sitemap-title {
    margin-bottom: 5px;
  }
}

.sitemap-inner {
  flex: 1 1 auto;
}
.sitemap-inner.d-flex {
  flex-wrap: wrap;
  margin-bottom: -15px;
}
.sitemap-inner.d-flex .sitemap-item {
  flex: 0 1 25%;
  margin-bottom: 15px;
}
.sitemap-inner.d-flex .col-2 {
  flex: 0 1 50%;
}
@media all and (max-width: 767px) {
  .sitemap-inner.d-flex {
    display: block;
  }
}

/*------------------------------------*\
banner輪播 bannerArea
\*------------------------------------*/
/*------------------------------------*\
特色 featureBox featureList
page-00-1-4
\*------------------------------------*/
/*------------------------------------*\
content內側邊選單 sideArea
\*------------------------------------*/
/*------------------------------------*\
股票代號清單 stockList
\*------------------------------------*/
/*------------------------------------*\
stepList
\*------------------------------------*/
/*------------------------------------*\
新手上路連結 shortcutBox
\*------------------------------------*/
/*------------------------------------*\
00-1-3 行動VIP tradeQr
\*------------------------------------*/
/*------------------------------------*\
qabox
\*------------------------------------*/
.qaFold-que {
  margin-bottom: 20px;
  padding: 9px 40px 9px 18px;
  font-size: 18px;
  font-weight: 700;
  color: #b0914d;
  background: url(../images/inner/qafold-arrow-1.svg) right 20px center no-repeat;
  border: solid 1px #caaf6b;
  border-radius: 5px;
  cursor: pointer;
}
.qaFold-que-head {
  font-size: 22px;
}

.qaFold-ans {
  display: none;
}

.qaFold.open .qaFold-que {
  color: #fff;
  background: #caaf6b url(../images/inner/qafold-arrow-2.svg) right 20px center no-repeat;
}
.qaFold.open .qaFold-ans {
  margin-bottom: 30px;
}

/*------------------------------------*\
圖表
\*------------------------------------*/
.chartArea {
  display: flex;
  align-items: center;
}
.chartArea-text {
  margin-right: 40px;
  text-align: justify;
}
.chartArea-img {
  flex: 0 0 45%;
  text-align: center;
  color: #808080;
}
.chartArea-img .imgbox, .chartArea-img .imgbox-share {
  margin-bottom: 10px;
  border: solid 1px #d4bf88;
  border-radius: 10px;
}
.chartArea-img .imgbox img, .chartArea-img .imgbox-share img {
  margin: 0 auto;
}
@media all and (max-width: 1000px) {
  .chartArea {
    align-items: flex-start;
  }
}
@media all and (max-width: 767px) {
  .chartArea {
    display: block;
  }
  .chartArea-text {
    margin: 0 0 10px;
  }
}

/*------------------------------------*\
JS
\*------------------------------------*/
.JS_tabHiddenInner {
  display: none;
}

.resultbox {
  background-color: #f9f8f8;
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.resultbox .result-inner {
  display: flex;
  flex-wrap: wrap;
}
.resultbox .result-inner .result-inner-box {
  display: flex;
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}
.resultbox .result-inner .result-inner-box::before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #888;
  position: absolute;
  right: 0;
  top: calc(50% - 10px);
}
.resultbox .result-inner > .result-inner-box:last-child {
  margin-right: 0;
  padding-right: 0;
}
.resultbox .result-inner > .result-inner-box:last-child::before {
  display: none;
}
.resultbox .result-title {
  margin-right: 10px;
  font-size: 1rem;
  color: #666;
}
@media all and (max-width: 767px) {
  .resultbox {
    display: block;
  }
  .resultbox .result-inner {
    display: block;
  }
  .resultbox .result-inner .result-inner-box {
    margin-right: 0;
    padding-right: 0;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .resultbox .result-inner .result-inner-box::before {
    display: none;
  }
  .resultbox .result-inner > .result-inner-box:last-child {
    margin-bottom: 0;
  }
}

/*------------------------------------*\
  編輯器
\*------------------------------------*/
/*------------------------------------*\
  _editbox.scss
  ___
  編輯器
\*------------------------------------*/
.editbox p {
  margin-bottom: 10px;
}
.editbox a {
  color: #a70057;
  text-decoration: underline;
}
.editbox ol > li,
.editbox ul > li {
  margin-bottom: 5px;
}/*# sourceMappingURL=inner.css.map */