@charset "UTF-8";
/* --------------------------------------------------------- */
/* font */
/* Roboto - 400 700 */
/* noto-sans-tc -  300 400 500 700 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+TC:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* --------------------------------------------------------- */
/*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;
}

body {
  font: 16px/150% "Noto Sans TC", "Helvetica Neue", Helvetica, "微軟正黑體", sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  font-weight: 400;
}

html {
  /*safari內網頁的字體不會無緣無故變大*/
  -webkit-text-size-adjust: 100%;
  /*safari內網頁滑動起來不會卡卡的*/
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  transition-duration: 0.3s;
}

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;
}

/*reset end*/
.font-eng, .accesskey {
  font-family: "Roboto", "Noto Sans TC", "Helvetica Neue", Helvetica, "微軟正黑體", sans-serif;
}

:focus {
  outline: 3px dashed black;
  outline-offset: 0 5px;
}

/*----------------------------------------------------*/
/* mixin */
/*----------------------------------------------------*/
.color-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.color-black {
  color: #000;
}

.bg-black {
  background-color: #000;
}

.color-secondary {
  color: #9e0046;
}

.bg-secondary {
  background-color: #9e0046;
}

.color-secondary-dark {
  color: #7a3b44;
}

.bg-secondary-dark {
  background-color: #7a3b44;
}

.btn-primary, .featureList .inner .btn,
.featureList .btn-box .btn {
  color: #fff;
  background: #b7933b;
}
.btn-primary:hover, .featureList .inner .btn:hover,
.featureList .btn-box .btn:hover {
  background: rgb(163.7169421488, 131.5103305785, 52.7830578512);
}

.btn-secondary, .prizeArea .btn {
  color: #fff;
  background: #d25a60;
}
.btn-secondary:hover, .prizeArea .btn:hover {
  background: rgb(204.5357142857, 69.9642857143, 76.6928571429);
}

.btn-tertiary {
  color: #fff;
  background: #6b3668;
}
.btn-tertiary:hover {
  background: rgb(90.0527950311, 45.4472049689, 87.5279503106);
}

.key-red {
  color: #d25a60;
}

.key-purple {
  color: #9e0046;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-3-5 {
  margin-bottom: 35px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-10 {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .mb-5 {
    margin-bottom: 40px;
  }
  .mb-10 {
    margin-bottom: 40px;
  }
  .m-mb-1 {
    margin-bottom: 10px !important;
  }
}
.mr-1 {
  margin-right: 10px;
}

.mr-2 {
  margin-right: 20px;
}

.mr-3 {
  margin-right: 30px;
}

.pl-2 {
  padding-left: 20px;
}

/*----------------------------------------------------*/
/* base extend */
/*----------------------------------------------------*/
.featureList .bg-img::before, .featureList li, .btn {
  transition: 0.2s;
}

ul.point li:nth-last-child(1), ul.benefitsList li:nth-last-child(1) {
  margin: 0 !important;
}

/*----------------------------------------------------*/
/* common use */
/*----------------------------------------------------*/
.web {
  display: block;
}

.mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .web {
    display: none;
  }
  .mobile {
    display: block;
  }
}
/*---------------------------*/
/* 常用 */
.f-xs {
  font-size: 0.875rem;
}

.f-s {
  font-size: 0.9375rem;
}

.f-m {
  font-size: 1rem;
}

.f-l {
  font-size: 1.125rem !important;
}

.f-xl {
  font-size: 1.25rem !important;
}

.f-xl-glod {
  font-size: 1.25rem;
  color: #bf8f00;
  font-weight: bold;
}

.f-xs, .f-s, .f-m, .f-l, .f-xl {
  line-height: 1.5em;
}

@media all and (max-width: 767px) {
  .f-l {
    font-size: 1rem;
  }
  .f-xl {
    font-size: 1rem;
  }
  .m-f-m {
    font-size: 1rem;
  }
}
.line-m {
  line-height: 1em;
}

.w-light {
  font-weight: 300;
}

.w-normal {
  font-weight: 400;
}

.w-mid {
  font-weight: 500 !important;
}

.w-bold {
  font-weight: 700 !important;
}

.tL {
  text-align: left;
}

.tR {
  text-align: right;
}

.tC {
  text-align: center;
}

.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.j-between {
  justify-content: space-between;
}
.d-flex .item {
  flex: 0 0 auto;
}
.d-flex.wrap {
  flex-wrap: wrap;
}

.tB {
  font-weight: bold;
}

.imgbox img {
  display: block;
  max-width: 100%;
  height: auto;
}
.imgbox a {
  display: block;
  padding: 0;
}
.imgbox.full img {
  width: 100%;
}
.imgbox.center img {
  margin: 0 auto;
}
.imgbox.right img {
  margin: 0 0 0 auto;
}
@media all and (max-width: 767px) {
  .imgbox.m-center img {
    margin: 0 auto;
  }
}

/*------------------------------------*\
  input
\*------------------------------------*/
.inputbox input,
.inputbox select,
.inputbox textarea {
  width: 100%;
  min-width: 0;
  height: 50px;
  line-height: 3rem;
  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/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;
}

.btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.btn-box.inline {
  display: inline-flex;
}
.btn-box-block {
  display: block;
}
.btn-box-block .btn {
  display: block;
  margin: 0 0 15px;
}
.btn-box.btn-center .btn {
  margin-left: 10px;
  margin-right: 10px;
}
@media all and (max-width: 767px) {
  .btn-box.m-d-block {
    display: block;
  }
  .btn-box.m-d-block .btn {
    display: block;
    margin: 0 0 10px;
  }
  .btn-box.m-d-block .btn:nth-last-child(1) {
    margin: 0;
  }
}

.btn {
  margin-right: 10px;
  padding: 5px 12px;
  min-width: 48px;
  line-height: 1.4rem;
  text-align: center;
  font-size: 1.1rem;
}
.btn:nth-last-child(1) {
  margin-right: 0;
}
@media all and (max-width: 767px) {
  .btn {
    padding: 10px 12px;
    font-size: 1rem;
  }
}
.btn.withIcon {
  padding-left: 48px;
  background-size: auto 24px;
  background-position: left 16px center;
  background-repeat: no-repeat;
}
.btn.withIcon-doc span {
  padding-left: 32px;
  background: url(../images/btn-in-pdf.png) left center no-repeat;
  background-size: auto 24px;
}

.btn-main {
  min-width: 200px;
  margin-right: 25px;
}
.btn-icon {
  display: inline-block;
  min-width: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  overflow: hidden;
  color: transparent;
  background-position: center center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
.btn-icon span {
  opacity: 0;
}
.btn-icon.icon-pdf {
  background-image: url(../images/btn-pdf.png);
}

.btn-s {
  line-height: 2rem;
  font-size: 1rem;
}

ul.point, ul.benefitsList {
  list-style: none;
}
ul.point li, ul.benefitsList li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 15px;
}
ul.point li::before, ul.benefitsList li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(0.75em - 3px);
  left: 0;
  width: 6px;
  height: 6px;
  vertical-align: middle;
  border-radius: 50%;
  background: #9d7d37;
}

.btn-gameStart, .btn-gameBack {
  color: #fff;
  background-color: #da4235;
  width: 250px;
}
.btn-gameStart:hover, .btn-gameBack:hover {
  background-color: #d62c1d;
}

.btn-gameAnswer {
  color: #fff;
  background-color: #820046;
  width: 105px;
}
.btn-gameAnswer:hover {
  background-color: #70003c;
}

.btn-gameNext {
  color: #fff;
  background-color: #842f80;
  width: 150px;
}
.btn-gameNext:hover {
  background-color: #771a73;
}

ul.point, ul.benefitsList {
  list-style: none;
}
ul.point li, ul.benefitsList li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 15px;
}
ul.point li::before, ul.benefitsList li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(0.75em - 3px);
  left: 0;
  width: 6px;
  height: 6px;
  vertical-align: middle;
  border-radius: 50%;
  background: #9d7d37;
}
ul.point-secondary li::before {
  background: #9e0046;
}
ul.point-tertiary li::before {
  background: #6b3668;
}

.num {
  padding-left: 2em;
}
.num li + li {
  margin-top: 10px;
}

.num-roman {
  list-style: lower-roman;
  padding-left: 1.5em;
}

/*---------------------------------------------------*/
.tag-event {
  display: inline-block;
  margin-right: 20px;
  padding: 0 15px;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.66em;
  color: #fff;
  border-radius: 30px;
}
.tag-event.type01 {
  background: #9d7d37;
}
.tag-event.type02 {
  background: #a70052;
}
.tag-event.type03 {
  background: #780e70;
}
@media all and (max-width: 767px) {
  .tag-event {
    padding: 0 10px;
    font-size: 0.875rem;
  }
}

/*---------------------------------------------------*/
input[type=radio] {
  width: 20px;
  height: 20px;
  margin-right: 2px;
  vertical-align: middle;
}

.rdobutton {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  border: 1px solid #9d7d37;
  border-radius: 25px;
  -moz-transition: background-color 0.2s ease-in;
  -webkit-transition: background-color 0.2s ease-in;
  -o-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}

.rdobutton::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: #9d7d37;
  border-radius: 99em;
  opacity: 0;
  -moz-transition: opacity 0.2s ease-in;
  -webkit-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

input:checked + .rdobutton { /* 當check時 按鈕顏色改變 */
  background-color: #fff;
}

input[type=radio]:checked + .rdobutton::before { /* 當check時 打勾消失 */
  opacity: 1;
}

input[type=radio] {
  display: none;
}

@media all and (max-width: 540px) {
  .rdobutton {
    width: 16px;
    height: 16px;
  }
  .rdobutton::before {
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
  }
}
/*---------------------------------------------------*/
.wrapper {
  background: #fff;
}
@media all and (max-width: 767px) {
  .wrapper {
    padding-top: 50px;
  }
}

.pagesize {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 20px;
}
@media all and (max-width: 1023px) {
  .pagesize {
    padding: 0 15px;
  }
}

.container {
  min-height: calc(100vh - 270px);
}

/* 無障礙錨點 */
.accesskey {
  font-weight: 700;
  font-size: 1rem;
  color: #b5b5b5;
}
@media all and (max-width: 767px) {
  .accesskey {
    font-size: 0.875em;
  }
}

/* 無障礙藏字 */
label.a-hide {
  font-size: 0;
  line-height: 0;
  display: none;
}

/* 跳到主要內容 */
.pagetab {
  overflow: hidden;
  opacity: 0;
  position: absolute;
  top: 5px;
  left: 5px;
  line-height: 1.1em;
  z-index: 102;
  font-size: 0.875em;
  background: #fff;
  padding: 5px;
}

.pagetab:active,
.pagetab:focus {
  overflow: visible;
  opacity: 1;
  z-index: 1002;
  width: auto;
  height: auto;
}

header .m-header {
  display: none;
}
@media all and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1009;
  }
}
header ul {
  list-style: none;
}

.topnav {
  position: relative;
  z-index: 1001;
  padding: 10px 0;
  background: #f8f0de;
}
.topnav .pagesize {
  display: flex;
  justify-content: flex-end;
}
.topnav .header-menu {
  display: none;
}
@media all and (max-width: 767px) {
  .topnav {
    height: 54px;
    padding: 10px 0 0;
  }
  .topnav .pagesize {
    align-items: center;
  }
  .topnav .header-menu {
    display: block;
    width: 28px;
    height: 28px;
    overflow: hidden;
    background: url(../images/header-menu.png) center center no-repeat;
    background-size: 100%;
  }
  .topnav .header-menu.open {
    background: url(../images/header-menu-on.png) center center no-repeat;
    background-size: 100%;
  }
  .topnav .header-menu span {
    width: 0;
    height: 0;
    opacity: 0;
  }
}

.top-link {
  display: flex;
  margin-right: 10px;
}
.top-link li {
  position: relative;
}
.top-link li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 9px;
  width: 1px;
  height: 14px;
  background-color: #815c0f;
}
.top-link > li:nth-last-child(1)::after {
  content: none;
}
.top-link a {
  display: block; /*test*/
  color: #815c0f;
  padding: 0 10px;
  letter-spacing: 0;
  font-size: 0.8rem;
  line-height: 1.875rem;
}

.social-link {
  display: flex;
}
.social-link a {
  margin-right: 5px;
  vertical-align: middle;
  font-size: 0;
  line-height: 0;
  width: 30px;
  height: 30px;
}
.social-link a:last-child {
  margin-right: 0;
}
.social-link a.btn_fb {
  background: url(../images/btn_fb.svg) no-repeat;
  background-size: contain;
}
.social-link a.btn_line {
  background: url(../images/btn_line.svg) no-repeat;
  background-size: contain;
}
.social-link a.btn_ig {
  background: url(../images/btn_ig.svg) no-repeat;
  background-size: contain;
}
.social-link a.btn_yt {
  background: url(../images/btn_yt.svg) no-repeat;
  background-size: contain;
}

.search-box {
  height: 30px;
  border-radius: 6px;
  background-color: #a70052;
  display: flex;
  margin-right: 5px;
}
.search-box a.btn_search {
  width: 30px;
  height: 30px;
  display: block;
  margin: 0;
  background: url(../images/btn_search.png) center center no-repeat;
  background-size: 30px auto;
  font-size: 0;
  line-height: 0;
}
.search-box input.search-txt {
  background-color: #a70052;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  color: #fff;
  width: 0;
  height: 30px;
  font-size: 0.8rem;
  line-height: 1.875rem;
  transition: 0.4s;
}
.search-box input.search-txt::placeholder {
  color: #fff;
}
.search-box:hover .search-txt {
  width: 120px;
  padding: 0 10px;
}
.search-box .search-txt:focus {
  width: 100px;
  padding: 0 10px;
}
.search-box:hover a.btn_search {
  position: relative;
}
.search-box:hover a.btn_search::after {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 15px;
  position: absolute;
  top: 7px;
  right: 0;
}

a.logo {
  display: block;
  width: 160px;
  height: 60px;
  font-size: 0;
  background: url(../images/logo.svg) center no-repeat;
  background-size: contain;
}
@media all and (max-width: 767px) {
  a.logo {
    width: 108px;
    height: 40px;
  }
}

.headerArea .pagesize {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  position: relative;
}
.headerArea ul {
  list-style: none;
}

@media all and (min-width: 768px) {
  .headerNav-main {
    display: flex;
  }
  .headerNav-main > li {
    margin-left: 20px;
    font-size: 1.25em;
    line-height: 1.625em;
    color: #262626;
    position: relative;
    height: 90px;
    padding: 5px;
  }
  .headerNav-main > li:nth-last-child(1) {
    padding-right: 0;
  }
  .headerNav-main > li > a {
    display: block;
  }
  .headerNav-main > li > a.hasSub {
    font-size: 1.125rem;
    line-height: 1.2rem;
    color: #222;
    padding: 10px;
    position: relative;
    height: 80px;
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .headerNav-main > li > a.hasSub::before {
    content: "";
    width: 100px;
    height: 5px;
    background-color: transparent;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .headerNav-main > li > a.hasSub:hover, .headerNav-main > li > a.hasSub.open {
    color: #a70057;
    font-weight: bold;
  }
  .headerNav-main > li > a.hasSub:hover::before, .headerNav-main > li > a.hasSub.open::before {
    background-color: #e3d5b4;
  }
  .headerNav-main > li > a.hasSub:hover:focus::before, .headerNav-main > li > a.hasSub.open:focus::before {
    background-color: transparent;
  }
  .headerNav-main > li > a.hasSub.open {
    font-weight: 700;
  }
  .headerNav-main > li .accesskey {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
  }
  .headerNav-main .inner {
    display: none;
  }
  .headerNav-main .hasSub + .inner {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
  .headerNav-main .hasSub + .inner.align-end {
    transform: translateX(-250px);
  }
  .headerNav-main .hasSub + .inner.multi-row {
    width: 1010px;
  }
  .headerNav-main .hasSub + .inner.multi-row .subArea {
    padding-right: 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  }
  .headerNav-main .hasSub + .inner.multi-row .sub-li {
    display: flex;
    flex-wrap: wrap;
  }
  .headerNav-main .hasSub + .inner.multi-row .sub-li > li {
    margin-right: 50px;
    margin-bottom: 50px;
    width: 190px;
  }
  .headerNav-main .subArea {
    background: #fff;
    padding: 30px 50px 40px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
  }
  .headerNav-main .subArea::before {
    content: "";
    width: 100%;
    height: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
  }
  .headerNav-main .nav-title {
    color: #815c0f;
    font-weight: bold;
    width: 130px;
    height: 200px;
    border-bottom-right-radius: 40px;
    text-align: center;
    padding: 50px 0 0;
    margin-bottom: 50px;
    background: linear-gradient(to right, rgb(227, 216, 195) 0%, rgb(242, 236, 220) 100%);
  }
  .headerNav-main .sub-li > li {
    width: 200px;
  }
  .headerNav-main .sub-li .sub-tt {
    color: #9e0046;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.25rem;
    border-bottom: 1px solid #9e0046;
    margin-bottom: 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
  .headerNav-main .sub-li .sub-tt a {
    display: block;
    flex: 1 1 100%;
    color: #9e0046;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.125rem;
    padding: 15px 30px 15px 0;
    position: relative;
  }
  .headerNav-main .sub-li .sub-tt a::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/arrow.svg) right center no-repeat;
    background-size: 24px;
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
  }
  .headerNav-main .sub-li .sub-tt a:hover::before, .headerNav-main .sub-li .sub-tt a:focus:before {
    opacity: 1;
    right: 0;
    transition-duration: 0.3s;
  }
  .headerNav-main .subSecond > li {
    font-size: 1rem;
    line-height: 1.25rem;
    padding: 5px 0;
  }
  .headerNav-main .subSecond > li a {
    padding: 3px 0;
    color: #222;
    display: inline-block;
    width: 100%;
  }
  .headerNav-main .subSecond > li a:hover {
    color: #9e0046;
  }
  .headerNav-main .subThird {
    padding-top: 5px;
  }
  .headerNav-main .subThird > li a {
    font-size: 0.9rem;
    line-height: 1rem;
    padding: 5px 0;
    color: #666666;
    display: inline-block;
    padding-left: 20px;
    position: relative;
  }
  .headerNav-main .subThird > li a:hover {
    color: #9e0046;
  }
  .headerNav-main .subThird > li a::before {
    content: "";
    background-color: #9e0046;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 12px;
    left: 5px;
    border-radius: 100%;
  }
}
@media all and (max-width: 1200px) {
  .headerNav-main {
    display: flex;
  }
  .headerNav-main .subArea {
    padding: 20px 40px 40px;
  }
  .headerNav-main .inner {
    display: none;
  }
  .headerNav-main .hasSub + .inner.align-end {
    transform: translateX(-230px);
  }
}
@media all and (max-width: 1023px) {
  .headerNavArea .accesskey {
    margin-right: 4px;
    line-height: 1.3rem;
  }
  .headerNav-main > li {
    margin-left: 0;
  }
}
@media all and (max-width: 940px) {
  .headerNav-main > li {
    margin-left: 0;
  }
  .headerNav-main > li > a.hasSub {
    font-size: 1rem;
    padding: 10px;
  }
  .headerNav-main > li > a.hasSub::before {
    width: 80px;
  }
}
@media all and (max-width: 767px) {
  header .social-link {
    display: none;
  }
  header .m-header {
    display: block;
    position: relative;
    padding: 0 0 0 10px;
    background-color: #fff;
    height: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
  header .m-header a.logo, header .m-header a.header-search, header .m-header a.header-lang {
    position: absolute;
    top: 0;
    display: block;
  }
  header .m-header a.logo {
    left: 10px;
    top: 5px;
  }
  header .m-header a.header-search {
    width: 40px;
    height: 50px;
    background: url(../images/ic-search.svg) center no-repeat;
    background-size: 20px;
    font-size: 0;
    right: 90px;
  }
  header .m-header a.header-lang {
    width: 40px;
    height: 50px;
    color: #bd9d4b;
    right: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
  }
  header .m-header .m-search-box {
    display: none;
    background-color: #a70052;
    padding: 8px;
    position: absolute;
    top: -50px;
    right: 0;
    left: 0;
    width: 100%;
  }
  header .m-header .m-search-box input[type=text] {
    background-color: #b93375;
    line-height: 2.5rem;
    border-radius: 20px;
    padding: 0 20px;
    width: 100%;
    color: #fff;
  }
  header .m-header.open-search a.header-search {
    background: url(../images/ic-search-on.svg) center no-repeat;
    background-size: 20px;
  }
  header .m-header.open-search .m-search-box {
    display: block;
    top: 50px;
  }
  header .m-header ::-webkit-input-placeholder {
    color: #fff;
  }
  .topnav, .headerArea {
    display: none;
  }
  .header_cover {
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -2;
  }
}
/* --------------------------------------- */
/* --------------------------------------- */
#pageMenu .hasSub button, .pageMenu-btn .line, #pageMenu, .page {
  transition: 0.6s;
}

/* --------------------------------------- */
/* page */
/* --------------------------------------- */
.page {
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.page_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -2;
}

.openmenu {
  position: fixed;
}

.page.openmenu .page_cover {
  z-index: 1001;
}

/* --------------------------------------- */
/* menu */
/* --------------------------------------- */
#pageMenu {
  position: fixed;
  z-index: 9999;
  width: 300px;
  height: 100vh;
  background: #fff;
  padding-bottom: 20px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
}
#pageMenu > ul {
  margin-bottom: 10px;
}

/* menu_清單 */
#pageMenu ul {
  list-style: none;
}

#pageMenu ul a {
  display: block;
  min-height: 50px;
  padding-left: 20px;
  line-height: 1.5rem;
  padding: 10px;
  color: inherit;
  font-size: 1.125rem;
  text-decoration: none;
}

#pageMenu ul.top-link {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
#pageMenu ul.top-link li.part {
  flex: 1 1 100%;
}
#pageMenu ul.top-link li.part::after {
  display: none;
}
#pageMenu ul.top-link a {
  font-size: 0.95rem;
  color: #815c0f;
  text-align: center;
  padding: 0 10px;
  height: 30px;
  line-height: 1.875rem;
}
#pageMenu .social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#pageMenu .social-link a {
  width: 40px;
  height: 40px;
  margin: 0 5px;
}

/* menu_按鈕 */
.pageMenu-btn {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  font-size: 0;
  background-color: #fff9e9;
}

.pageMenu-btn .line {
  display: block;
  position: absolute;
  right: 15px;
  width: 20px;
  height: 2px;
  background-color: #bd9d4b;
  border-radius: 2px;
}

.pageMenu-btn .line01 {
  top: 18px;
}

.pageMenu-btn .line02 {
  top: 24px;
  width: 24px;
}

.pageMenu-btn .line03 {
  top: 31px;
  width: 10px;
}

/* menu_按鈕_展開 */
.openmenu .pageMenu-btn .line01 {
  width: 30px;
  top: 25px;
  right: 10px;
  transform: rotate(-45deg);
}

.openmenu .pageMenu-btn .line02 {
  display: none;
}

.openmenu .pageMenu-btn .line03 {
  width: 30px;
  top: 25px;
  right: 10px;
  transform: rotate(45deg);
}

/* --------------------------------------- */
.show-left.openmenu {
  transform: translateX(300px);
}

.show-left ~ #pageMenu {
  top: 0;
  left: -300px;
}

.show-left.openmenu ~ #pageMenu {
  left: 0;
}

.show-right.openmenu {
  transform: translateX(-300px);
}

.show-right ~ #pageMenu {
  left: auto;
  right: -300px;
}

.show-right.openmenu ~ #pageMenu {
  right: 0;
}

.show-up ~ #pageMenu {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.show-up.openmenu ~ #pageMenu {
  top: 50px;
}

.show-up.openmenu {
  transform: translateX(0);
}

/* --------------------------------------- */
/* --------------------------------------- */
#pageMenu .hasSub {
  position: relative;
}
#pageMenu .hasSub button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: url(../images/ic-sub.svg) center center no-repeat;
  background-size: auto 24px;
  cursor: pointer;
  outline: none;
  border: none;
}
#pageMenu .hasSub.open > a {
  color: #9e0046;
  font-weight: bold;
}
#pageMenu .hasSub.open > button {
  background: url(../images/ic-sub-open.svg) center center no-repeat;
  background-size: auto 24px;
}
#pageMenu .hasSub.open > ul {
  background-color: #fffcf4; /*padding-left: 20px; border-bottom: 1px solid #ecdfc1;*/
}
#pageMenu .hasSub.open > ul a {
  font-size: 1rem;
  color: #666666;
}
#pageMenu .hasSub.open > ul li.open > a {
  color: #9e0046;
  font-weight: bold;
}
#pageMenu .hasSub.open > ul > li > ul {
  background-color: #faf5e8;
}
#pageMenu .hasSub.open > ul > li > ul > li > ul {
  background-color: #f5eeda;
}

footer {
  position: relative;
  color: #fff;
  font-size: 0.9rem;
  background: url(../images/bg-footer.jpg) top center;
  background-size: 100% 100%;
}
footer .pagesize {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  text-align: center;
}
footer .copyright {
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .copyright p {
  display: block;
}
footer .copyright .footer-mark {
  margin-left: 10px;
  display: block;
}
footer .copyright .footer-mark img {
  width: 88px;
  height: 31px;
  display: block;
}
@media all and (max-width: 767px) {
  footer {
    font-size: 0.9375rem;
    background: #f2ecdc;
    color: #444444;
  }
  footer::after {
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: url(../images/bg-footer.jpg) center center;
    background-size: 100% 100%;
  }
  footer .pagesize {
    height: auto;
    display: block;
    padding: 25px 10px 30px;
  }
  footer .footer-info {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
  footer .copyright {
    flex-wrap: wrap;
    font-size: 0.8rem;
  }
  footer .copyright p {
    margin-bottom: 10px;
  }
  footer .copyright .footer-mark {
    margin: 0 auto;
  }
}

.footer-inner {
  position: relative;
}
.footer-inner .accesskey {
  position: absolute;
  left: 4px;
  color: #fff;
}
@media all and (max-width: 767px) {
  .footer-inner {
    padding: 0;
    text-align: center;
    color: #444;
  }
  .footer-inner .accesskey {
    top: -20px;
    left: 0;
    color: #f2ecdc;
  }
}

.footer-info {
  margin-bottom: 10px;
}
.footer-info .part {
  display: inline;
}
.footer-info .part p {
  display: inline-block;
}
.footer-info .part p::after {
  content: "｜";
  margin: 0 10px;
  color: #fff;
}
@media all and (max-width: 1023px) {
  .footer-info .part p::after {
    margin: 0;
    color: #444;
  }
}
.footer-info .part:nth-last-child(1) p:nth-last-child(1)::after {
  content: none;
}
@media all and (max-width: 767px) {
  .footer-info p::after {
    margin: 0;
  }
  .footer-info .part {
    display: block;
  }
  .footer-info .part p:nth-last-child(1)::after {
    content: none;
  }
}

.footer-link {
  font-size: 1.125em;
  padding-left: 45px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-link a {
  display: block;
  font-size: 1rem;
  line-height: 1.2rem;
  position: relative;
  padding: 0 14px 4px 14px;
  margin: 0 6px;
}
.footer-link a::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  right: -6px;
  top: 3px;
}
.footer-link .part {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.footer-link .part:nth-last-child(1) a:nth-last-child(1)::after {
  content: none;
}
@media all and (max-width: 767px) {
  .footer-link {
    color: #444;
    padding: 0;
    display: block;
    font-size: 0.9375rem;
  }
  .footer-link a {
    margin-bottom: 10px;
    display: inline-block;
  }
  .footer-link a::after {
    background-color: #444;
  }
  .footer-link .part {
    display: block;
    margin-bottom: 0;
  }
  .footer-link .part a:nth-last-child(1)::after {
    content: none;
  }
}
@media all and (max-width: 374px) {
  .footer-link a::after {
    margin: 0 2px;
  }
}

.popup_overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 1011;
}

.popup_info {
  background-color: #fff;
  position: fixed;
  z-index: 1011;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.popup_info.video_frame {
  width: 1000px;
}
.popup_info.video_frame .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.popup_info.video_frame .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup_info.video_frame a.btn_close {
  top: -80px;
  right: -80px;
}
.popup_info.img_frame {
  padding: 10px;
  width: 1000px;
}
.popup_info.img_frame img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}
.popup_info.txt_frame {
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
  border-bottom: 20px solid #9e0046;
  width: 900px;
}
.popup_info a.btn_close {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: linear-gradient(to right, rgb(120, 0, 64) 0%, rgb(158, 0, 70) 100%);
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 0;
  line-height: 0;
}
.popup_info a.btn_close::before {
  content: "";
  background: url(../images/btn_close.svg) center center no-repeat;
  background-size: 28px auto;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
}
.popup_info .pop_tt {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  padding: 20px 0;
  border-bottom: 1px solid #c4c4c4;
  margin-bottom: 20px;
}
.popup_info .pop_content {
  overflow-y: auto;
  max-height: 320px;
}
.popup_info .pop_content p {
  font-size: 1rem;
  line-height: 1.875rem;
}
.popup_info .pop_content ul.pop_li {
  list-style: none;
}
.popup_info .pop_content ul.pop_li > li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.popup_info .pop_content ul.pop_li > li::before {
  content: "";
  background-color: #9d7d37;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  position: absolute;
  top: 9px;
  left: 5px;
}
.popup_info .pop_content ul.pop_li > li > ol {
  margin-top: 5px;
}
.popup_info .pop_content ol.pop_ol {
  list-style: none;
}
.popup_info .pop_content ol.pop_ol li {
  counter-increment: decimal-counter;
  margin-bottom: 10px;
}
.popup_info .pop_content ol.pop_ol li::before {
  content: "(" counter(decimal-counter) ")";
}
.popup_info .pop_content a {
  color: #9d7d37;
}
.popup_info .pop_content .imgbox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup_info .pop_content .imgbox.b-shadow {
  padding: 20px;
}
.popup_info .pop_content .imgbox.b-shadow img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.popup_info .showMail {
  color: #555;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 12px;
  word-break: break-all;
  border: 1px solid #eee;
  padding: 10px;
  text-align: center;
}
.popup_info p.hint {
  color: #9e0046;
  font-size: 1.87rem;
  line-height: 1.2;
}
@media all and (max-width: 1023px) {
  .popup_info a.btn_close {
    width: 40px;
    height: 40px;
    top: -20px;
    right: -10px;
  }
  .popup_info a.btn_close::before {
    background-size: 20px auto;
    width: 40px;
    height: 40px;
  }
  .popup_info.video_frame {
    width: 90%;
  }
  .popup_info.video_frame a.btn_close {
    top: -60px;
    right: 0;
  }
  .popup_info.img_frame {
    width: 80%;
    padding: 5px;
  }
  .popup_info.txt_frame {
    width: 90%;
    padding: 10px 30px 30px;
  }
}
@media all and (max-width: 767px) {
  .popup_info {
    width: 90%;
  }
  .popup_info P.showMail {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }
  .popup_info p.hint {
    font-size: 1.25rem;
  }
}
@media all and (max-width: 374px) {
  .popup_info P.showMail {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  .popup_info p.hint {
    font-size: 1.12rem;
  }
}

h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.25em;
  line-height: 1.2em;
}
@media all and (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
}

/*---------------------------------------------------*/
.kvArea .imgbox img {
  width: 100%;
}
@media all and (max-width: 767px) {
  .kvArea {
    padding-bottom: 20px;
  }
  .kvArea .swiper {
    overflow: visible;
  }
}

/*---------------------------------------------------*/
.featureArea {
  padding: 36px 0;
  color: #5c5444;
}
.featureArea .pagesize {
  max-width: 1280px;
}
.featureArea .accesskey {
  display: inline-block;
  margin-bottom: 5px;
}
@media all and (max-width: 767px) {
  .featureArea {
    padding: 0 0 20px;
  }
}

.featureList {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.featureList li {
  width: 25%;
  position: relative;
  list-style: none;
  background-color: #eeebe2;
}
@media all and (max-width: 767px) {
  .featureList li {
    width: 50%;
  }
}
.featureList .item05 {
  order: 6;
}
.featureList .item06 {
  order: 5;
}
.featureList .item07 {
  order: 8;
}
.featureList .item08 {
  order: 7;
}
@media all and (max-width: 767px) {
  .featureList .item03 {
    order: 5;
  }
  .featureList .item04 {
    order: 6;
  }
  .featureList .item05 {
    order: 4;
  }
  .featureList .item06 {
    order: 3;
  }
  .featureList .item07 {
    order: 8;
  }
  .featureList .item08 {
    order: 7;
  }
}
.featureList .bg-color:hover {
  background-color: #f2f0ea;
}
.featureList .bg-img {
  color: #fff;
}
.featureList .bg-img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.featureList .bg-img:hover::before {
  opacity: 1;
}
.featureList .bg-img.img01 {
  background: url(../img/index-feature-01.jpg) center center;
  background-size: cover;
}
.featureList .bg-img.img02 {
  background: url(../img/index-feature-02.jpg) center center;
  background-size: cover;
}
.featureList .bg-img.img03 {
  background: url(../img/index-feature-03.jpg) center center;
  background-size: cover;
}
.featureList .bg-img.img04 {
  background: url(../img/index-feature-04.jpg) center center;
  background-size: cover;
}
.featureList .inner,
.featureList .btn-box {
  position: relative;
  z-index: 3;
}
.featureList .inner {
  padding: 56px 40px 40px;
}
.featureList .inner h3 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 500;
}
.featureList .inner p {
  font-size: 1.125rem;
  line-height: 1.875rem;
  max-height: 9.375rem;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media all and (max-width: 1023px) {
  .featureList .inner {
    padding: 56px 24px 40px;
  }
}
@media all and (max-width: 767px) {
  .featureList .inner {
    padding: 24px 18px 30px;
  }
  .featureList .inner h3 {
    font-size: 1.125rem;
    margin-bottom: 18px;
  }
  .featureList .inner p {
    font-size: 0.9375rem;
    line-height: 1.5rem;
    max-height: 7.5rem;
  }
}
.featureList .btn-box {
  justify-content: flex-end;
  margin-bottom: 20px;
}

.shortcutList {
  list-style: none;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.shortcutList li {
  text-align: center;
  position: relative;
  border-bottom: 3px solid transparent;
  padding: 0 10px 50px;
}
.shortcutList li .shortcut-tt {
  font-size: 1.25rem;
  color: #222;
  font-weight: 500;
}
.shortcutList li:hover, .shortcutList li:focus {
  border-color: #aa8420;
  transition-duration: 0.3s;
}
.shortcutList li:hover .shortcut-tt, .shortcutList li:focus .shortcut-tt {
  color: #aa8420;
}
.shortcutList .shortcut-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 10px;
}
.shortcutList .shortcut-img img {
  display: block;
  width: 100%;
  height: auto;
}
.shortcutList .btn {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  font-size: 0;
  padding: 0;
}
@media all and (max-width: 767px) {
  .shortcutList {
    justify-content: center;
  }
  .shortcutList li {
    width: 33%;
    padding-bottom: 30px;
  }
  .shortcutList li .shortcut-tt {
    font-size: 1.1rem;
  }
  .shortcutList li:hover {
    border-color: transparent;
  }
  .shortcutList .shortcut-img {
    width: 60px;
    height: 60px;
  }
}

.ind-title {
  color: #9e0046;
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 70px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
@media all and (max-width: 767px) {
  .ind-title {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 30px;
  }
}

.box-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ind-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 60px;
  font-size: 1.25rem;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(to right, rgb(120, 0, 64) 0%, rgb(158, 0, 70) 100%);
}
.ind-btn::after {
  content: "";
  background: url(../images/arrow-w.svg) center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  filter: grayscale(100%) brightness(1000%);
}
.ind-btn:hover {
  background: linear-gradient(to left, rgb(120, 0, 64) 0%, rgb(158, 0, 70) 100%);
  transition-duration: 0.3s;
}

/*---------------------------------------------------*/
.newsArea {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.newsArea::before {
  content: "";
  width: 1920px;
  height: 540px;
  background: url(../images/ind-bg-1.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}
.newsArea ul {
  list-style: none;
}
.newsArea .time {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
}
.newsArea .pagesize {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin-bottom: 90px;
  position: relative;
}
.newsArea .newsMain {
  min-width: 500px;
  position: relative;
  border-top-right-radius: 40px;
  overflow: hidden;
  background-color: #ccb062;
}
.newsArea .newsMain .newsImg img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.newsArea .newsMain .newsTxt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  width: 100%;
  background: url(../images/ind-news-bg.png) bottom center no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  align-items: end;
}
.newsArea .newsMain .newsTxt .newsBtn {
  display: block;
  padding: 0 40px 30px;
}
.newsArea .newsMain .newsTxt .newsTitle {
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: bold;
  width: 100%;
  height: 3.75rem;
  -webkit-line-clamp: 2; /*限制2行*/
}
.newsArea .newsBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newsArea .newsBox li {
  flex: 1 1 auto;
  width: 300px;
  background-color: #fffaec;
  border-top-right-radius: 20px;
  margin: 0 0 30px 30px;
}
.newsArea .newsBox > li:nth-child(2), .newsArea .newsBox > li:nth-child(3) {
  background-color: #f7edd1;
}
.newsArea .newsBox .newsBtn {
  padding: 24px 24px 40px;
  display: block;
  height: 180px;
  position: relative;
}
.newsArea .newsBox .newsBtn::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../images/arrow.svg) bottom right no-repeat;
  background-size: 30px;
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.newsArea .newsBox .time {
  color: #aa8420;
}
.newsArea .newsBox .newsTitle {
  font-size: 1rem;
  color: #222;
  line-height: 1.75rem;
  -webkit-line-clamp: 3; /*限制3行*/
  word-break: break-all;
}
@media all and (max-width: 1400px) {
  .newsArea .pagesize {
    align-items: center;
  }
  .newsArea .newsMain {
    min-width: initial;
    max-width: 50%;
  }
  .newsArea .newsBox {
    display: block;
  }
  .newsArea .newsBox li {
    background-color: #fffaec;
    margin: 0 0 20px 20px;
  }
  .newsArea .newsBox > li:last-child {
    margin-bottom: 0;
  }
  .newsArea .newsBox > li:nth-child(2), .newsArea .newsBox > li:nth-child(3) {
    background-color: initial;
  }
  .newsArea .newsBox > li:nth-child(odd) {
    background-color: #fffaec;
  }
  .newsArea .newsBox > li:nth-child(even) {
    background-color: #f7edd1;
  }
  .newsArea .newsBox .newsBtn {
    padding: 10px 40px 10px 10px;
    height: auto;
  }
  .newsArea .newsBox .newsBtn::before {
    bottom: initial;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
  .newsArea .newsBox .newsTitle {
    -webkit-line-clamp: 1; /*限制3行*/
  }
}
@media all and (max-width: 767px) {
  .newsArea {
    padding: 40px 0 60px;
  }
  .newsArea::before {
    width: 100%;
    height: 100%;
    background: url(../images/m-ind-bg-1.png) center 0 no-repeat;
    background-size: cover;
    top: 0;
  }
  .newsArea .time {
    font-size: 0.95rem;
    margin-bottom: 0;
  }
  .newsArea .ind-title {
    margin-bottom: 60px;
  }
  .newsArea .pagesize {
    display: block;
    margin-bottom: 30px;
  }
  .newsArea .pagesize .newsMain {
    margin-bottom: 15px;
    min-width: initial;
    width: 100%;
    max-width: initial;
  }
  .newsArea .pagesize .newsMain .newsTxt .newsBtn {
    display: block;
    padding: 0 20px 20px;
  }
  .newsArea .pagesize .newsBox {
    display: block;
  }
  .newsArea .pagesize .newsBox li {
    margin: 0 0 15px;
    max-width: initial;
    width: 100%;
  }
  .newsArea .pagesize .newsBox .newsBtn {
    padding: 20px 40px 20px 20px;
    height: auto;
  }
  .newsArea .pagesize .newsBox .newsTitle {
    -webkit-line-clamp: 2;
  }
}

.multi {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  /* -webkit-line-clamp: 2; 限制行數另外寫*/
}

/*---------------------------------------------------*/
.serveArea {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.serveArea::before {
  content: "";
  width: 1920px;
  height: 658px;
  background: url(../images/ind-bg-2.png) center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.serveArea ul {
  list-style: none;
}
.serveArea .pagesize {
  display: flex;
  justify-content: center;
  align-items: center;
}
.serveArea .serveBox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.serveArea .serveBox li {
  width: 300px;
  height: 220px;
  border-radius: 20px;
  margin: 0 20px 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  position: relative;
}
.serveArea .serveBox li::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 20px;
}
.serveArea .serveBox li:hover::before {
  background-color: transparent;
  transition-duration: 0.3s;
}
.serveArea .serveBox li .serveTxt {
  color: #fff;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  text-shadow: 0 0 15px rgb(0, 0, 0);
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.serveArea .serveBox li .serveTxt:focus {
  border-radius: 20px;
}
.serveArea .serveBox li.item01 {
  background: url(../images/serve/serve-01.jpg) center no-repeat;
  background-size: cover;
}
.serveArea .serveBox li.item02 {
  background: url(../images/serve/serve-02.jpg) center no-repeat;
  background-size: cover;
}
.serveArea .serveBox li.item03 {
  background: url(../images/serve/serve-03.jpg) center no-repeat;
  background-size: cover;
}
.serveArea .serveBox li.item04 {
  background: url(../images/serve/serve-04.jpg) center no-repeat;
  background-size: cover;
}
.serveArea .serveBox li.item05 {
  background: url(../images/serve/serve-05.jpg) center no-repeat;
  background-size: cover;
}
.serveArea .serveBox li.item06 {
  background: url(../images/serve/serve-06.jpg) center no-repeat;
  background-size: cover;
}
.serveArea .serveBox li.item07 {
  background: url(../images/serve/serve-07.jpg) center no-repeat;
  background-size: cover;
}
@media all and (max-width: 1400px) {
  .serveArea::before {
    background-size: contain;
    height: 600px;
  }
  .serveArea .serveBox li {
    width: 220px;
    height: 160px;
    margin: 0 10px 20px;
  }
}
@media all and (max-width: 1023px) {
  .serveArea::before {
    background-size: contain;
    height: 500px;
  }
  .serveArea .serveBox li {
    width: 160px;
    height: 118px;
    margin: 0 10px 20px;
    border-radius: 10px;
  }
  .serveArea .serveBox li .serveTxt {
    font-size: 1.25rem;
  }
}
@media all and (max-width: 767px) {
  .serveArea {
    padding: 40px 0 20px;
  }
  .serveArea::before {
    background-size: contain;
    height: 300px;
  }
  .serveArea .serveBox li {
    width: 110px;
    height: 80px;
    margin: 0 5px 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }
  .serveArea .serveBox li .serveTxt {
    font-size: 1rem;
  }
}
@media all and (max-width: 540px) {
  .serveArea::before {
    width: 100%;
    height: 100%;
    background: url(../images/m-ind-bg-2.png) center no-repeat;
    background-size: cover;
  }
  .serveArea .serveBox {
    justify-content: center;
    width: 340px;
  }
  .serveArea .serveBox li {
    width: 300px;
    height: 118px;
    margin: 0 5px 20px;
  }
  .serveArea .serveBox li .serveTxt {
    font-size: 1.25rem;
  }
}

.adArea {
  padding: 70px 0;
}
.adArea .pagesize {
  padding: 0;
}
@media all and (max-width: 1023px) {
  .adArea {
    padding: 40px 0;
  }
}

.adSwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  margin-bottom: 50px;
}
.adSwiper .swiper-slide {
  width: 25%;
  height: 100%;
  cursor: pointer;
  border-left: 1px solid #c4c4c4;
  color: #241f2d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.adSwiper .swiper-slide p {
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-align: center;
  position: relative;
  padding-left: 30px;
  display: inline-block;
}
.adSwiper .swiper-slide p::before {
  content: "";
  background: url(../images/ic-adArea.svg) center no-repeat;
  background-size: 12px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  filter: grayscale(100%);
  opacity: 0.5;
}
.adSwiper .swiper-wrapper > .swiper-slide:first-child {
  border-left: none;
}
.adSwiper .swiper-slide-thumb-active {
  color: #aa8420;
}
.adSwiper .swiper-slide-thumb-active p::before {
  content: "";
  background: url(../images/ic-adArea.svg) center no-repeat;
  background-size: 12px;
  filter: grayscale(0%);
  opacity: 1;
}
@media all and (max-width: 1023px) {
  .adSwiper {
    margin-bottom: 20px;
  }
}

.adSwiper-video {
  position: relative;
  width: 1060px;
  padding: 0 100px;
}
.adSwiper-video .swiper-slide {
  width: 860px;
  height: 484px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.adSwiper-video .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.adSwiper-video .video-play {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.adSwiper-video .video-play::before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background: linear-gradient(to bottom, rgb(200, 176, 111) 0%, rgb(215, 176, 59) 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}
.adSwiper-video .video-play::after {
  content: "";
  background: url(../images/ic-adArea.svg) center no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -18px;
  filter: grayscale(100%) brightness(1000%);
}
.adSwiper-video .video-play:hover {
  background-color: rgba(0, 0, 0, 0);
}
.adSwiper-video .swiper-button-next, .adSwiper-video .swiper-button-prev {
  background: url(../images/btn-swiper-ad.svg) center no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
}
.adSwiper-video .swiper-button-next {
  right: 0;
}
.adSwiper-video .swiper-button-prev {
  left: 0;
  transform: rotate(180deg);
}
.adSwiper-video .swiper-button-next::after, .adSwiper-video .swiper-button-prev::after {
  font-size: 0;
}
@media all and (max-width: 1400px) {
  .adSwiper-video {
    width: 680px;
    padding: 0 50px;
  }
  .adSwiper-video .swiper-slide {
    width: 580px;
    height: 326px;
  }
  .adSwiper-video .swiper-button-next, .adSwiper-video .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
@media all and (max-width: 767px) {
  .adSwiper-video {
    width: 540px;
    padding: 0 20px;
  }
  .adSwiper-video .swiper-slide {
    width: 500px;
    height: 280px;
  }
  .adSwiper-video .swiper-button-next, .adSwiper-video .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
@media all and (max-width: 540px) {
  .adSwiper-video {
    width: 360px;
    padding: 0 20px;
  }
  .adSwiper-video .swiper-slide {
    width: 300px;
    height: 170px;
  }
  .adSwiper-video .swiper-button-next, .adSwiper-video .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .adSwiper-video .video-play::before {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
  }
  .adSwiper-video .video-play::after {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
  }
}

/*---------------------------------------------------*/
.prizeArea {
  color: #5c5444;
  background: url(../images/index-prize-bg-01.jpg) right bottom no-repeat;
  background-size: contain;
}
.prizeArea h2 {
  margin-bottom: 30px;
}
.prizeArea .pagesize {
  position: relative;
  padding: 38px 80px 28px;
  max-width: 1360px;
}
.prizeArea .pagesize::before {
  content: "";
  display: block;
  width: 100px;
  height: 230px;
  position: absolute;
  left: 10px;
  bottom: 0;
  background: url(../images/index-prize-01.png) right bottom no-repeat;
  background-size: contain;
}
.prizeArea .btn {
  min-width: 140px;
}
@media all and (max-width: 767px) {
  .prizeArea .btn {
    min-width: 100px;
  }
}
@media all and (max-width: 767px) {
  .prizeArea {
    background-size: auto 170px;
    border-bottom: solid 2px #76580a;
  }
  .prizeArea h2 {
    margin-bottom: 15px;
  }
  .prizeArea .pagesize {
    padding: 24px 15px 44px;
  }
  .prizeArea .pagesize::before {
    width: 50px;
    height: 125px;
  }
}

.prize-table {
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.25em;
  line-height: 1.75em;
}
.prize-table thead {
  font-weight: 700;
  border-top: solid 1px;
  border-bottom: solid 1px;
}
.prize-table th {
  padding: 11px 0;
}
.prize-table td {
  padding: 10px 60px;
  color: #262626;
}
.prize-table td a {
  color: #9e0046;
  border-bottom: solid 1px #9e0046;
}
@media all and (max-width: 1200px) {
  .prize-table td {
    padding: 10px 30px;
  }
}
.prize-table .date,
.prize-table .by {
  white-space: nowrap;
}
@media all and (max-width: 767px) {
  .prize-table {
    margin-bottom: 24px;
    font-size: 0.9375rem;
    line-height: 1.6em;
  }
  .prize-table thead {
    display: none;
  }
  .prize-table table, .prize-table tbody, .prize-table tr, .prize-table td {
    display: block;
    width: 100%;
  }
  .prize-table tbody tr:nth-child(even) {
    background: #f2f2f2;
  }
  .prize-table td {
    color: #6a6253;
    padding: 5px 15px;
  }
  .prize-table .date {
    text-align: center;
    font-weight: 700;
    border-top: solid 1px #9c978b;
    border-bottom: solid 1px #9c978b;
  }
  .prize-table .name {
    min-height: calc(3.2em + 20px);
  }
}

/*---------------------------------------------------*/
.recruitArea {
  position: relative;
  font-size: 1.25em;
  line-height: 1.8em;
  color: #fff;
  background: url(../images/index-recruit-bg-color.jpg);
}
.recruitArea::before {
  content: "";
  display: block;
  position: absolute;
  right: calc(50% + 700px);
  top: 0;
  width: 50%;
  height: 100%;
  background: #eee;
}
.recruitArea .pagesize {
  display: flex;
  align-items: stretch;
}
.recruitArea h2 {
  text-align: left;
  font-size: 3rem;
  font-weight: 500;
}
@media all and (max-width: 767px) {
  .recruitArea h2 {
    font-size: 1.5rem;
  }
}
.recruitArea p {
  margin-bottom: 30px;
}
@media all and (max-width: 1023px) {
  .recruitArea p {
    margin-bottom: 20px;
  }
}
.recruitArea .link {
  text-align: right;
}
.recruitArea .link a {
  display: inline-block;
  padding-right: 50px;
  color: #664b04;
  background: url(../images/index-recruit-link.png) right center no-repeat;
  background-size: auto 16px;
}
@media all and (max-width: 767px) {
  .recruitArea .link a {
    font-size: 1rem;
  }
}
@media all and (max-width: 767px) {
  .recruitArea {
    font-size: 0.9375rem;
  }
  .recruitArea::before {
    content: none;
  }
  .recruitArea .pagesize {
    display: block;
    padding-top: calc(51vw + 30px);
    padding-bottom: 24px;
    background: url(../images/index-recruit-bg-m.jpg) top center no-repeat;
    background-size: 100% auto;
  }
}

.recruit-bg {
  flex: 0 0 auto;
  width: 500px;
  min-height: 540px;
  background: url(../images/index-recruit-bg.jpg) left bottom no-repeat;
  background-size: 100% auto;
}
@media all and (max-width: 1200px) {
  .recruit-bg {
    width: 420px;
  }
}
@media all and (max-width: 1023px) {
  .recruit-bg {
    width: 380px;
    background-size: 420px auto;
  }
}
@media all and (max-width: 767px) {
  .recruit-bg {
    display: none;
  }
}

.recruit-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 0 24px 16px;
}
@media all and (max-width: 767px) {
  .recruit-inner {
    padding: 0;
  }
}

.benefitsList {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
.benefitsList li {
  width: 25%;
  margin: 0;
  padding-right: 10px;
}
.benefitsList li.web-space {
  width: 50%;
}
.benefitsList li::before {
  top: 0.65em;
  background: #d5c69f;
}
@media all and (max-width: 1200px) {
  .benefitsList li, .benefitsList li.web-space {
    width: 33.3%;
  }
}
@media all and (max-width: 1023px) {
  .benefitsList li, .benefitsList li.web-space {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .benefitsList li.mobile-space {
    width: 100%;
  }
}
@media all and (max-width: 1023px) {
  .benefitsList {
    margin-bottom: 20px;
  }
}

/*---------------------------------------------------*/
.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  padding: 10px;
  width: 100%;
  z-index: 9;
}
.btn-container .btn-swiper {
  color: #fff;
  padding: 0;
  position: relative;
  font-size: 1rem;
}
.btn-container .btn-pause, .btn-container .btn-start {
  font-size: 0;
  line-height: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.btn-container .btn-pause {
  background: url(../images/btn-ic-pause.svg) center no-repeat;
  background-size: 20px;
}
.btn-container .btn-start {
  background: url(../images/btn-ic-start.svg) center no-repeat;
  background-size: 20px;
}
.btn-container .swiper-pagination {
  position: relative;
}
.btn-container .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: initial;
  position: relative;
  bottom: initial;
}

.swiper-horizontal > .swiper-pagination-bullets {
  bottom: 30px;
  height: 15px;
  line-height: 0.95rem;
}
@media all and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets {
    bottom: -20px;
    height: 8px;
    line-height: 0.5rem;
  }
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  background: transparent;
  border-radius: 6px;
  opacity: 1;
}
@media all and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 0.7;
    border: none;
  }
}

.swiper-pagination-bullet-active {
  background: #ffffff;
  width: 40px;
  transition-duration: 0.3s;
}
@media all and (max-width: 767px) {
  .swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
@media all and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}

.bottom-other-info {
  border-top: 1px solid #eee;
  background-color: #fff;
  padding: 50px 0 40px;
}
.bottom-other-info ul {
  list-style-type: none;
}
.bottom-other-info .other-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.bottom-other-info .logo {
  width: 100px;
  height: 130px;
}
.bottom-other-info .logo a {
  display: block;
  width: 100px;
  height: 130px;
}
.bottom-other-info .logo img {
  display: block;
  width: 100%;
  height: auto;
}
.bottom-other-info .flex-item {
  display: flex;
  flex: 1 1 50%;
}
.bottom-other-info .other-section {
  margin-left: 50px;
}
.bottom-other-info .other-section .other-tt {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.125rem;
  color: #222;
}
.bottom-other-info .other-section .other-li li {
  margin-top: 10px;
}
.bottom-other-info .other-section .other-li a {
  display: block;
  color: #444;
  font-size: 1rem;
}
.bottom-other-info .other-section .other-li a:hover {
  color: #815c0f;
}
.bottom-other-info .e-news {
  flex: 1 1 50%;
}
.bottom-other-info .e-news-tt {
  font-size: 1.56rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.bottom-other-info .e-news-input {
  border-width: 0.2rem;
  border-style: solid;
  border-color: transparent;
  border-image-source: linear-gradient(to right, #936e29, #cbb16f);
  border-image-slice: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bottom-other-info .e-news-input input[type=text] {
  line-height: 3rem;
  padding: 0 20px;
  flex: 1 1 calc(100% - 150px);
}
.bottom-other-info .e-news-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  text-align: center;
  color: #815c0f;
  border-left: 3px solid #cbb16f;
  font-size: 1.25rem;
  line-height: 3rem;
}
.bottom-other-info .e-news-btn::before {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../images/b-btn-ok.png) center no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.bottom-other-info .e-news-btn:hover {
  font-weight: bold;
}
.bottom-other-info .e-news span.input-prompt {
  color: #ff0000;
  white-space: nowrap;
  padding: 0 5px;
}
.bottom-other-info .e-news span.input-tip {
  color: #ff0000;
  margin-top: 5px;
  font-size: 1rem;
  display: inline-block;
}
.bottom-other-info .other-links {
  display: flex;
  padding-left: 150px;
  flex-wrap: wrap;
}
.bottom-other-info .other-links li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.bottom-other-info .other-links a {
  padding: 13px 22px;
  text-align: center;
  display: block;
  color: #815c0f;
  font-size: 1.125rem;
  background: linear-gradient(to right, rgb(227, 216, 195) 0%, rgb(242, 236, 220) 100%);
}
.bottom-other-info .other-links a:hover {
  background: #815c0f;
  color: #fff;
}
@media all and (max-width: 1023px) {
  .bottom-other-info {
    padding: 30px 10px 20px;
  }
  .bottom-other-info .other-flex {
    display: block;
    margin-bottom: 20px;
  }
  .bottom-other-info .flex-item {
    margin-bottom: 20px;
  }
  .bottom-other-info .other-section {
    margin-left: 10%;
  }
  .bottom-other-info .e-news-input input[type=text] {
    line-height: 3rem;
    padding: 0 10px;
    flex: 1 1 auto;
    width: 100px;
  }
  .bottom-other-info .e-news-btn {
    width: 100px;
    font-size: 1.125rem;
    line-height: 3rem;
  }
  .bottom-other-info .e-news-btn::before {
    width: 30px;
    height: 30px;
    margin-right: 5px;
    margin-top: 2px;
  }
  .bottom-other-info .other-links {
    padding: 0;
  }
}
@media all and (max-width: 540px) {
  .bottom-other-info .flex-item {
    justify-content: space-between;
  }
  .bottom-other-info .other-section {
    margin-left: 0;
  }
}/*# sourceMappingURL=index.css.map */